aboutsummaryrefslogtreecommitdiffstats
path: root/testing/gdnsd
diff options
context:
space:
mode:
authorTimo Teräs <timo.teras@iki.fi>2012-02-29 13:53:57 +0200
committerTimo Teräs <timo.teras@iki.fi>2012-02-29 13:55:21 +0200
commit4a4b5ecca0e32124f5ee5ea3a84c03266aede444 (patch)
tree5f671186d95a57d79928e3d8887bb14cc12d5a81 /testing/gdnsd
parenta43847299489c56cd2c7a275dd75dec6de69dd43 (diff)
downloadaports-4a4b5ecca0e32124f5ee5ea3a84c03266aede444.tar.bz2
aports-4a4b5ecca0e32124f5ee5ea3a84c03266aede444.tar.xz
testing/gdnsd: fix libtool / autotools braindamage
- fast-install is needed because libtool relink fails; otherwise we end up having the libtool wrapper scripts in the package instead of the real binaries - use /etc instead of /usr/etc
Diffstat (limited to 'testing/gdnsd')
-rw-r--r--testing/gdnsd/APKBUILD4
1 files changed, 3 insertions, 1 deletions
diff --git a/testing/gdnsd/APKBUILD b/testing/gdnsd/APKBUILD
index e353e12c69..c89aae670b 100644
--- a/testing/gdnsd/APKBUILD
+++ b/testing/gdnsd/APKBUILD
@@ -2,7 +2,7 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=gdnsd
pkgver=1.6.2
-pkgrel=0
+pkgrel=1
pkgdesc="Geographic Authoritative DNS server"
url="http://code.google.com/p/gdnsd/"
arch="all"
@@ -28,7 +28,9 @@ prepare() {
build() {
cd "$_builddir"
./configure --prefix=/usr \
+ --sysconfdir=/etc \
--localstatedir=/var \
+ --enable-fast-install \
|| return 1
make || return 1
}