aboutsummaryrefslogtreecommitdiffstats
path: root/community/gvm-libs
diff options
context:
space:
mode:
Diffstat (limited to 'community/gvm-libs')
-rw-r--r--community/gvm-libs/APKBUILD52
-rw-r--r--community/gvm-libs/malloc-trim.patch24
2 files changed, 76 insertions, 0 deletions
diff --git a/community/gvm-libs/APKBUILD b/community/gvm-libs/APKBUILD
new file mode 100644
index 0000000000..408bd692cb
--- /dev/null
+++ b/community/gvm-libs/APKBUILD
@@ -0,0 +1,52 @@
+# Contributor: Francesco Colista <fcolista@alpinelinux.org>
+# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
+pkgname=gvm-libs
+pkgver=10.0.0
+pkgrel=0
+pkgdesc="Greenbone Vulnerability Management Libraries"
+url="http://www.openvas.org/"
+arch="all"
+license="GPL-2.0"
+makedepends="cmake bison glib-dev doxygen xmltoman graphviz 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
+ clang-dev"
+replaces="openvas-libraries"
+subpackages="$pkgname-dev $pkgname-doc"
+source="$pkgname-$pkgver.tar.gz::https://github.com/greenbone/$pkgname/archive/v$pkgver.tar.gz
+ malloc-trim.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
+}
+
+doc() {
+ default_doc
+ cd "$builddir"
+ make doc
+ mkdir -p "$subpkgdir"/usr/share/doc/$pkgname
+ mv doc/generated/* "$subpkgdir"/usr/share/doc/$pkgname
+}
+sha512sums="18ada48bea523ab22b886ca4f6c72724cfd18269d78c29b71d30ce2898b3056c4354a41992c42a0c55ade08f17cb8f7f056e73752c768cf043b6b9d2955a76b4 gvm-libs-10.0.0.tar.gz
+ae93ac7ec929325926d785bb58ed9c09f8bdaf518adf09db54bb9a8a4b5e4474c0ab61fc987c91114f2013cbe39868115006b528865fbd027e5b88eca58f1954 malloc-trim.patch"
diff --git a/community/gvm-libs/malloc-trim.patch b/community/gvm-libs/malloc-trim.patch
new file mode 100644
index 0000000000..fb566b50b0
--- /dev/null
+++ b/community/gvm-libs/malloc-trim.patch
@@ -0,0 +1,24 @@
+diff --git a/base/hosts.c b/base/hosts.c
+index 74f5d92..1073e2c 100644
+--- a/base/hosts.c
++++ b/base/hosts.c
+@@ -1013,7 +1013,9 @@ gvm_hosts_deduplicate (gvm_hosts_t *hosts)
+ hosts->count -= duplicates;
+ hosts->removed += duplicates;
+ hosts->current = 0;
++#ifdef __GLIBC__
+ malloc_trim (0);
++#endif
+ }
+
+ /**
+@@ -1208,7 +1210,9 @@ gvm_hosts_new_with_max (const gchar *hosts_str, unsigned int max_hosts)
+ gvm_hosts_deduplicate (hosts);
+
+ g_strfreev (split);
++#ifdef __GLIBC__
+ malloc_trim (0);
++#endif
+ return hosts;
+ }
+