diff options
author | James Meyer <james.meyer@operamail.com> | 2012-08-07 15:02:13 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2012-08-07 15:02:13 (GMT) |
commit | 62eebb5008f03daadd268ccd1b6be9ed31c235c3 (patch) | |
tree | f26e9c808b93b30cb0a00ae9b7cd9c53f03fcbfd /abs/core/libldap/PKGBUILD | |
parent | 6016ae1748f867b838c917f551aac9add83d4801 (diff) | |
download | linhes_pkgbuild-62eebb5008f03daadd268ccd1b6be9ed31c235c3.zip linhes_pkgbuild-62eebb5008f03daadd268ccd1b6be9ed31c235c3.tar.gz linhes_pkgbuild-62eebb5008f03daadd268ccd1b6be9ed31c235c3.tar.bz2 |
libldap, removed
built as part of openldap
Diffstat (limited to 'abs/core/libldap/PKGBUILD')
-rw-r--r-- | abs/core/libldap/PKGBUILD | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/abs/core/libldap/PKGBUILD b/abs/core/libldap/PKGBUILD deleted file mode 100644 index d99212b..0000000 --- a/abs/core/libldap/PKGBUILD +++ /dev/null @@ -1,74 +0,0 @@ -# $Id: PKGBUILD 90284 2010-09-10 11:31:02Z andrea $ -# Maintainer: -# Contributor: Judd Vinet <jvinet@zeroflux.org> - -pkgname=libldap -pkgver=2.4.23 -pkgrel=1 -pkgdesc="Lightweight Directory Access Protocol (LDAP) client libraries" -arch=('i686' 'x86_64') -license=('custom') -url="http://www.openldap.org/" -backup=(etc/openldap/ldap.conf) -depends=('libsasl' 'openssl') -makedepends=('tcp_wrappers') -options=('!libtool') -source=("ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/openldap-${pkgver}.tgz" - 'ntlm.patch') -md5sums=('90150b8c0d0192e10b30157e68844ddf' - 'dfa9eb6f2fd9d0a3dab0e1860923489e') - -build() { - cd ${srcdir}/openldap-${pkgver} - - patch -Np1 -i ${srcdir}/ntlm.patch - - ./configure --prefix=/usr \ - --libexecdir=/usr/sbin \ - --sysconfdir=/etc \ - --mandir=/usr/share/man \ - --localstatedir=/var/lib/openldap \ - --enable-crypt --enable-dynamic \ - --with-threads --enable-wrappers \ - --enable-spasswd --with-cyrus-sasl \ - --disable-bdb --disable-hdb - - cd include - make - - cd ../libraries - make depend - make - - cd ../doc/man/man3 - make - - cd ../man5 - make -} - -package() { - cd ${srcdir}/openldap-${pkgver} - - cd include - make DESTDIR=${pkgdir} install - - cd ../libraries - make DESTDIR=${pkgdir} install - - cd ../doc/man/man3 - make DESTDIR=${pkgdir} install - - cd ../man5 - install -Dm644 ldap.conf.5.tmp \ - ${pkgdir}/usr/share/man/man5/ldap.conf.5 - - # get rid of duplicate default conf files - rm ${pkgdir}/etc/openldap/*.default - - ln -sf liblber.so ${pkgdir}/usr/lib/liblber.so.2 - ln -sf libldap.so ${pkgdir}/usr/lib/libldap.so.2 - - install -Dm644 ${srcdir}/openldap-${pkgver}/LICENSE \ - ${pkgdir}/usr/share/licenses/$pkgname/LICENSE -} |