diff options
Diffstat (limited to 'community/openvas-libraries')
-rw-r--r-- | community/openvas-libraries/000-fortify-source.patch | 13 | ||||
-rw-r--r-- | community/openvas-libraries/001-maxhostnamelen.patch | 12 | ||||
-rw-r--r-- | community/openvas-libraries/002-timeval.patch | 13 | ||||
-rw-r--r-- | community/openvas-libraries/APKBUILD | 46 |
4 files changed, 84 insertions, 0 deletions
diff --git a/community/openvas-libraries/000-fortify-source.patch b/community/openvas-libraries/000-fortify-source.patch new file mode 100644 index 0000000000..26ceb25ca9 --- /dev/null +++ b/community/openvas-libraries/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/openvas-libraries/001-maxhostnamelen.patch b/community/openvas-libraries/001-maxhostnamelen.patch new file mode 100644 index 0000000000..373554d4ab --- /dev/null +++ b/community/openvas-libraries/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/openvas-libraries/002-timeval.patch b/community/openvas-libraries/002-timeval.patch new file mode 100644 index 0000000000..937473da6f --- /dev/null +++ b/community/openvas-libraries/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/openvas-libraries/APKBUILD b/community/openvas-libraries/APKBUILD new file mode 100644 index 0000000000..f03868770b --- /dev/null +++ b/community/openvas-libraries/APKBUILD @@ -0,0 +1,46 @@ +# Contributor: Francesco Colista <fcolista@alpinelinux.org> +# Maintainer: Francesco Colista <fcolista@alpinelinux.org> +pkgname=openvas-libraries +_pkgname=gvm-libs +pkgver=9.0.3 +pkgrel=2 +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="gvm-libs" +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="bca213309e06a39d2dcd790cacb01f2a71471622887424e41cc025a2bc25feb6a9b2c1d904f739df6fd87d8ec7af5171b31d1f5d08411c5143e4be1e6723397a openvas-libraries-9.0.3.tar.gz +1e27ced30f20f0010a04abd17a9a2c4d90e5d159d341018fa1f66b887ef8b24b490297a27b9dbb241dbd88e33c363c06fa0e7345707792411bda4825b770edea 001-maxhostnamelen.patch +2316c4808627da9a2daf0ea971fd9856cd77a62d6376f0d186c18fd7f90be217df2a17ccd2fccc88a583a830c593cb93b32d867ce5f0dd3ecb43cd75fa2b83ea 002-timeval.patch" |