mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
121 lines
3.8 KiB
Bash
Executable file
121 lines
3.8 KiB
Bash
Executable file
# Maintainer: Allan McRae <allan@archlinux.org>
|
|
# Contributor: Jan de Groot <jgc@archlinux.org>
|
|
|
|
# Plugbox Changes: compile_et and libcom_err conflict with e2fsprogs
|
|
# Arch Linux has these files in e2fsprogs, and these
|
|
# changes help us do the same.
|
|
|
|
#
|
|
### Attention: remove old pkg before building - it links against itself! ###
|
|
#
|
|
|
|
pkgname=heimdal
|
|
pkgver=1.3.3
|
|
pkgrel=4
|
|
plugrel=1
|
|
pkgdesc="Implementation of Kerberos V5 libraries"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.h5l.org/"
|
|
license=('custom')
|
|
depends=('db' 'openssl' 'sqlite3' 'e2fsprogs' 'libldap')
|
|
backup=(etc/krb5.conf)
|
|
options=('!libtool' '!emptydirs')
|
|
install=heimdal.install
|
|
source=(http://www.h5l.org/dist/src/${pkgname}-${pkgver}.tar.gz
|
|
001_all_heimdal-no_libedit.patch
|
|
002_all_heimal-fPIC.patch
|
|
003_all_heimdal-rxapps.patch
|
|
005_all_heimdal-suid_fix.patch
|
|
012_all_heimdal-berkdb.patch
|
|
013_all_heimdal-pthread-lib.patch
|
|
014_all_heimdal-path.patch
|
|
heimdal-kdc.rc
|
|
kadmind.rc
|
|
kpasswd.rc)
|
|
md5sums=('963c09f1b14c41660be70b55fae9f163'
|
|
'98e28f11f906c967aac22d6184102c9e'
|
|
'6d5571bdedba2e2423b90bccdbac2c0a'
|
|
'2feec3924ee5230b54175b4d4000c872'
|
|
'45aeb207f360f9f4e9e0fabc8bfeecbc'
|
|
'56f5d10d0ec40f2fda82ef144ffac1e0'
|
|
'1b8665b771c4eb6b56ea8582c96e56e3'
|
|
'8208ae8c0b6ff5ab4f64af1693e9e396'
|
|
'e59650992b9541a30dfce727a194f6e0'
|
|
'1f2f86a67bbfddb7af581d35fdca9627'
|
|
'f8f1eca95b9d3f2b4ebf2417b71b81cf')
|
|
|
|
build() {
|
|
cd ${srcdir}/heimdal-${pkgver}
|
|
patch -Np0 -i ${srcdir}/001_all_heimdal-no_libedit.patch
|
|
patch -Np0 -i ${srcdir}/002_all_heimal-fPIC.patch
|
|
patch -Np0 -i ${srcdir}/003_all_heimdal-rxapps.patch
|
|
patch -Np0 -i ${srcdir}/005_all_heimdal-suid_fix.patch
|
|
patch -Np1 -i ${srcdir}/012_all_heimdal-berkdb.patch
|
|
patch -Np1 -i ${srcdir}/013_all_heimdal-pthread-lib.patch
|
|
patch -Np0 -i ${srcdir}/014_all_heimdal-path.patch
|
|
|
|
sed -i -e 's|var/heimdal|var/lib/heimdal|g' configure.in \
|
|
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
|
|
|
|
sed -i 's|$(LIB_NDBM)|$(LIB_NDBM) $(LIB_db_create)|' lib/otp/Makefile.am
|
|
|
|
libtoolize --force
|
|
aclocal -I cf
|
|
autoconf
|
|
automake
|
|
|
|
./configure --prefix=/usr --enable-shared=yes --without-x \
|
|
--sysconfdir=/etc --mandir=/usr/share/man \
|
|
--datadir=/var/lib/heimdal \
|
|
--localstatedir=/var/lib/heimdal \
|
|
--with-openssl=/usr \
|
|
--with-readline-lib=/usr/lib \
|
|
--with-readline-include=/usr/include/readline \
|
|
--with-sqlite3-lib=/usr/lib \
|
|
--with-sqlite3-include=/usr/include \
|
|
--with-openldap=/usr \
|
|
--libexecdir=/usr/sbin
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/heimdal-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
|
|
# Rename daemons and their manpages
|
|
for i in telnetd ftpd rshd; do
|
|
mv ${pkgdir}/usr/share/man/man8/{,k}${i}.8
|
|
mv ${pkgdir}/usr/sbin/{,k}${i}
|
|
done
|
|
|
|
# Rename clients and their manpages
|
|
for i in rcp rsh telnet ftp su login; do
|
|
if [ -f ${pkgdir}/usr/share/man/man1/${i}.1 ]; then
|
|
mv ${pkgdir}/usr/share/man/man1/{,k}${i}.1
|
|
fi
|
|
mv ${pkgdir}/usr/bin/{,k}${i}
|
|
done
|
|
rm -rf ${pkgdir}/usr/share/man/cat{1,3,5,8}
|
|
|
|
# Arch could be a KDC too
|
|
install -d ${pkgdir}/etc/rc.d
|
|
install -m644 ${srcdir}/heimdal-${pkgver}/krb5.conf ${pkgdir}/etc/
|
|
for i in heimdal-kdc kadmind kpasswd; do
|
|
install -m755 ${srcdir}/${i}.rc ${pkgdir}/etc/rc.d/${i}
|
|
done
|
|
|
|
# Remove conflicts
|
|
rm ${pkgdir}/usr/share/man/man5/ftpusers.5* # man-pages
|
|
rm ${pkgdir}/usr/share/man/man3/{DES,DH,EVP,OpenSSL,RAND,RSA}* # openssl (a bit overzealous...)
|
|
rm ${pkgdir}/usr/share/man/man3/os.3* # erlang
|
|
|
|
# Remove e2fsprogs conflicts (Plugbox modifications)
|
|
rm $pkgdir/usr/bin/compile_et
|
|
rm -rf $pkgdir/usr/lib/libcom_err.*
|
|
|
|
# Install the license
|
|
install -Dm644 ${srcdir}/${pkgname}-${pkgver}/LICENSE \
|
|
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
|
|
}
|