diff options
author | Leonardo Arena <rnalrd@gmail.com> | 2010-10-23 09:40:43 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@gmail.com> | 2010-10-23 09:40:47 +0000 |
commit | 7516a68481085e666873390e8ac58b03dec83401 (patch) | |
tree | 4765d8bbdda77112f8cd4f26c04d59d88e0f1d00 /main/ulogd | |
parent | e58878564d2932fe68aa4c9f5b99d36b2399e2ba (diff) | |
download | aports-7516a68481085e666873390e8ac58b03dec83401.tar.bz2 aports-7516a68481085e666873390e8ac58b03dec83401.tar.xz |
main/ulogd: subpkgs depend from pkg
Diffstat (limited to 'main/ulogd')
-rw-r--r-- | main/ulogd/APKBUILD | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/main/ulogd/APKBUILD b/main/ulogd/APKBUILD index 887b8785e..cb9fc73d7 100644 --- a/main/ulogd/APKBUILD +++ b/main/ulogd/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Leonardo Arena <rnalrd@gmail.com> pkgname=ulogd pkgver=1.24 -pkgrel=1 +pkgrel=2 pkgdesc="A userspace logging daemon for netfilter/iptables related logging" url="http://netfilter.org/projects/ulogd/index.html" license="GPL" @@ -41,11 +41,13 @@ package() { } sqlite() { + depends="$pkgname" mkdir -p "$subpkgdir"/usr/lib/ulogd/ mv "$pkgdir"/usr/lib/ulogd/ulogd_SQLITE3.so "$subpkgdir"/usr/lib/ulogd/ } pgsql() { + depends="$pkgname" mkdir -p "$subpkgdir"/usr/lib/ulogd/ mv "$pkgdir"/usr/lib/ulogd/ulogd_PGSQL.so "$subpkgdir"/usr/lib/ulogd/ } |