diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-06-16 13:07:37 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-06-16 13:07:37 +0000 |
commit | cd7fc545efbe103541edccb91e648c6269508ca9 (patch) | |
tree | 51eacf01d8fc6df149388009f08572dc07377066 /extra/heimdal | |
parent | 14ac2c166226aa455ce1bab6e254798840f89d64 (diff) | |
download | aports-cd7fc545efbe103541edccb91e648c6269508ca9.tar.bz2 aports-cd7fc545efbe103541edccb91e648c6269508ca9.tar.xz |
extra/heimdal: update autotools after building. fix -dev depend
this fix makes the sqlite patch work and probably other stuff too.
Diffstat (limited to 'extra/heimdal')
-rw-r--r-- | extra/heimdal/APKBUILD | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/extra/heimdal/APKBUILD b/extra/heimdal/APKBUILD index a7b52ae06..d35d2e039 100644 --- a/extra/heimdal/APKBUILD +++ b/extra/heimdal/APKBUILD @@ -2,12 +2,13 @@ # Contributor: Natanael Copa <ncopa@alpinelinux.org> pkgname=heimdal pkgver=1.2.1 -pkgrel=1 +pkgrel=2 pkgdesc="An implementation of Kerberos 5" url="http://www.h5l.org/" license="BSD" -depends="uclibc sqlite readline openssl e2fsprogs" -makedepends="gawk readline-dev e2fsprogs-dev" +depends= +makedepends="gawk readline-dev e2fsprogs-dev sqlite-dev autoconf automake + libtool" install= subpackages="$pkgname-doc $pkgname-dev $pkgname-ftp $pkgname-telnet \ $pkgname-su $pkgname-rsh $pkgname-rcp $pkgname-pagsh $pkgname-kf" @@ -24,6 +25,9 @@ heimdal-r23235-kb5-libwind_la.patch heimdal-r23238-kb5_locl_h-wind_h.patch " +# krb5.h needs com_err.h +depends_dev="e2fsprogs-dev" + build() { [ -e /usr/lib/libasn1.so ] && echo "## remove old heimdal pkg first ##" && return 1 @@ -47,6 +51,7 @@ build() { doc/setup.texi doc/heimdal.info kadmin/kadmind.8 kdc/kdc.8 \ lib/hdb/hdb.h lib/krb5/krb5.conf.5 lib/krb5/krb5.conf.cat5 + sh ./autogen.sh || return 1 export LDFLAGS="${LDFLAGS} -Wl,--as-needed" |