diff options
author | Leonardo Arena <rnalrd@gmail.com> | 2009-12-16 10:22:39 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@gmail.com> | 2009-12-16 10:22:39 +0000 |
commit | 4e7c99b0941bbcdbc639e9001e71edcdd73cd60b (patch) | |
tree | cccaa92f420081b3e26d6562e55a3505ae226b4e /testing | |
parent | ce357695adc8eebcc8a96789b3c618afad86491f (diff) | |
download | aports-4e7c99b0941bbcdbc639e9001e71edcdd73cd60b.tar.bz2 aports-4e7c99b0941bbcdbc639e9001e71edcdd73cd60b.tar.xz |
testing/ucarp: upgrade to 1.5.1
Diffstat (limited to 'testing')
-rw-r--r-- | testing/ucarp/APKBUILD | 20 | ||||
-rw-r--r-- | testing/ucarp/nocxx.patch | 15 |
2 files changed, 10 insertions, 25 deletions
diff --git a/testing/ucarp/APKBUILD b/testing/ucarp/APKBUILD index 4deee45da9..e061ae0d65 100644 --- a/testing/ucarp/APKBUILD +++ b/testing/ucarp/APKBUILD @@ -1,7 +1,7 @@ -# Contributor: +# Contributor: Leonardo Arena <rnalrd@gmail.com> # Maintainer: pkgname=ucarp -pkgver=1.5 +pkgver=1.5.1 pkgrel=0 pkgdesc="Share common IP and do fail over" url="http://www.ucarp.org" @@ -11,26 +11,26 @@ makedepends="libpcap-dev" install= subpackages="" source="http://download.pureftpd.org/pub/ucarp/$pkgname-$pkgver.tar.gz - nocxx.patch ucarp.initd ucarp.confd" build() { cd "$srcdir/$pkgname-$pkgver" - patch configure < ../nocxx.patch || return 1 ./configure --prefix=/usr \ --sysconfdir=/etc \ --mandir=/usr/share/man \ - --infodir=/usr/share/info + --infodir=/usr/share/info make || return 1 - make DESTDIR="$pkgdir" install +} - install -m755 -D "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname - install -m644 -D "$srcdir"/$pkgname.confd "$pkgdir"/etc/conf.d/$pkgname +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install || return 1 + install -m755 -D "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname + install -m644 -D "$srcdir"/$pkgname.confd "$pkgdir"/etc/conf.d/$pkgname } -md5sums="ba585233e73f0dbce80427d04f431048 ucarp-1.5.tar.gz -28513788ba4d556ccd538867dc6205ab nocxx.patch +md5sums="391caa69fc17ffbc8a3543d8692021c9 ucarp-1.5.1.tar.gz e8f1e2fd144797524025343603dbe2b8 ucarp.initd bf914f6ce4fe4fea33a45d4d5b2c1fff ucarp.confd" diff --git a/testing/ucarp/nocxx.patch b/testing/ucarp/nocxx.patch deleted file mode 100644 index beb1ab9006..0000000000 --- a/testing/ucarp/nocxx.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- a/configure 2004-12-07 21:34:23.205172545 +0000 -+++ b/configure 2004-12-07 21:37:17.726654782 +0000 -@@ -5148,10 +5148,8 @@ - : - else - { { echo "$as_me:$LINENO: error: C++ preprocessor \"$CXXCPP\" fails sanity check --See \`config.log' for more details." >&5 --echo "$as_me: error: C++ preprocessor \"$CXXCPP\" fails sanity check --See \`config.log' for more details." >&2;} -- { (exit 1); exit 1; }; } -+See \`config.log' for more details." >&5;} -+ { echo "C++ sucks, ignoring ..." >&5; }; } - fi - - ac_ext=cc |