diff options
author | Francesco Colista <fcolista@alpinelinux.org> | 2017-12-13 16:57:33 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2017-12-13 18:26:18 +0000 |
commit | 5bf3801f41912e2319ec1bcc04cc4825b7f5d228 (patch) | |
tree | 9d42197bad7c92b7920cef6b3f24c6191b29cdae /community/gvm-libs | |
parent | 4f6881473b58fac44a53d34989157bd650bec56f (diff) | |
download | aports-5bf3801f41912e2319ec1bcc04cc4825b7f5d228.tar.bz2 aports-5bf3801f41912e2319ec1bcc04cc4825b7f5d228.tar.xz |
community/gvm-libs: renamed openvas-libraries, removed unused dependencies, improved APKBUILD
Diffstat (limited to 'community/gvm-libs')
-rw-r--r-- | community/gvm-libs/000-fortify-source.patch | 13 | ||||
-rw-r--r-- | community/gvm-libs/001-maxhostnamelen.patch | 12 | ||||
-rw-r--r-- | community/gvm-libs/002-timeval.patch | 13 | ||||
-rw-r--r-- | community/gvm-libs/APKBUILD | 45 |
4 files changed, 83 insertions, 0 deletions
diff --git a/community/gvm-libs/000-fortify-source.patch b/community/gvm-libs/000-fortify-source.patch new file mode 100644 index 0000000000..26ceb25ca9 --- /dev/null +++ b/community/gvm-libs/000-fortify-source.patch @@ -0,0 +1,13 @@ +diff --git a/CMakeLists.txt b/CMakeLists.txt +index a85088f..9d47f3a 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -302,7 +302,7 @@ if (NOT MINGW) + + endif (NOT MINGW) + +-set (HARDENING_FLAGS "-Wformat -Wformat-security -O2 -D_FORTIFY_SOURCE=2 -fstack-protector -Wl,-z,relro -Wl,-z,now") ++set (HARDENING_FLAGS "-Wformat -Wformat-security -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector -Wl,-z,relro -Wl,-z,now") + set (CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -Werror") + + diff --git a/community/gvm-libs/001-maxhostnamelen.patch b/community/gvm-libs/001-maxhostnamelen.patch new file mode 100644 index 0000000000..373554d4ab --- /dev/null +++ b/community/gvm-libs/001-maxhostnamelen.patch @@ -0,0 +1,12 @@ +diff --git a/misc/pcap.c b/misc/pcap.c +index 125ea24..fa24299 100644 +--- a/misc/pcap.c ++++ b/misc/pcap.c +@@ -16,6 +16,7 @@ + * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + ++#include <sys/param.h> + #include <netinet/in.h> + #include <resolv.h> + #include <pcap.h> diff --git a/community/gvm-libs/002-timeval.patch b/community/gvm-libs/002-timeval.patch new file mode 100644 index 0000000000..937473da6f --- /dev/null +++ b/community/gvm-libs/002-timeval.patch @@ -0,0 +1,13 @@ +diff --git a/nasl/proto.h b/nasl/proto.h +index cb16a3e..f293782 100644 +--- a/nasl/proto.h ++++ b/nasl/proto.h +@@ -24,7 +24,7 @@ + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +-#include <time.h> ++#include <sys/time.h> + #include "smb.h" + /*implemented in genrand.c*/ + void generate_random_buffer_ntlmssp( unsigned char *out, int len); diff --git a/community/gvm-libs/APKBUILD b/community/gvm-libs/APKBUILD new file mode 100644 index 0000000000..f4c55e8d96 --- /dev/null +++ b/community/gvm-libs/APKBUILD @@ -0,0 +1,45 @@ +# Contributor: Francesco Colista <fcolista@alpinelinux.org> +# Maintainer: Francesco Colista <fcolista@alpinelinux.org> +pkgname=gvm-libs +pkgver=9.0.1 +pkgrel=1 +pkgdesc="OpenVAS libraries" +url="http://www.openvas.org/" +arch="all" +license="GPL" +makedepends="cmake bison glib-dev doxygen xmltoman perl-sql-translator + libpcap-dev libssh-dev hiredis-dev gnutls-dev util-linux-dev + libgcrypt-dev libksba-dev openldap-dev gpgme-dev net-snmp-libs e2fsprogs-dev" +replaces="openvas-libraries" +subpackages="$pkgname-dev $pkgname-doc" +source="$pkgname-$pkgver.tar.gz::https://github.com/greenbone/$pkgname/archive/v$pkgver.tar.gz + 001-maxhostnamelen.patch + 002-timeval.patch" +builddir="$srcdir"/$pkgname-$pkgver + +build() { + cd "$builddir" + export LDFLAGS="$LDFLAGS -Wl,--no-as-needed" + cmake -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DBUILD_STATIC=0 \ + -DBUILD_SHARED=1 \ + -DLIBDIR=/usr/lib \ + -DSYSCONFDIR=/etc \ + -DLOCALSTATEDIR=/var . + make +} + +check() { + cd "$builddir" + make test +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir/" install + rmdir "$pkgdir"/var/run +} +sha512sums="f95bffb76ae0374bb376dc59056992bdaca173e5551ee2bbb0af55a6139cebbec13a97f17e12d437f3b75a4db6af99a09e58a9016b422b3da3283233e5325d5d gvm-libs-9.0.1.tar.gz +1e27ced30f20f0010a04abd17a9a2c4d90e5d159d341018fa1f66b887ef8b24b490297a27b9dbb241dbd88e33c363c06fa0e7345707792411bda4825b770edea 001-maxhostnamelen.patch +2316c4808627da9a2daf0ea971fd9856cd77a62d6376f0d186c18fd7f90be217df2a17ccd2fccc88a583a830c593cb93b32d867ce5f0dd3ecb43cd75fa2b83ea 002-timeval.patch" |