summaryrefslogtreecommitdiffstats
path: root/openldap/Pkgfile
diff options
context:
space:
mode:
authortnut <tnut at nutyx dot com>2012-01-08 12:15:45 +0100
committertnut <tnut at nutyx dot com>2012-01-08 12:15:45 +0100
commit3f57a7f93b3e7550cbd73036f6a56654e17d1d5c (patch)
tree819b14ab0377fe2054fe59866669d904e9e0b4b5 /openldap/Pkgfile
parentc9972ec7f32bf9d37388e853fe9bf633e242d05a (diff)
downloadnutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.tar.gz
nutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.tar.bz2
nutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.tar.xz
nutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.zip
split de git pakxe et NuTyX-extra
Diffstat (limited to 'openldap/Pkgfile')
-rw-r--r--openldap/Pkgfile74
1 files changed, 74 insertions, 0 deletions
diff --git a/openldap/Pkgfile b/openldap/Pkgfile
new file mode 100644
index 000000000..84e7e634e
--- /dev/null
+++ b/openldap/Pkgfile
@@ -0,0 +1,74 @@
+# Description: Outil permettant d'accéder au protocol LDAP
+# URL: http://www.openldap.org
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on: libldap
+# Run on: libldap
+
+name=openldap
+version=2.4.26
+release=1
+source=(ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/$name-$version.tgz)
+
+build() {
+ source /etc/blfs-bootscripts
+ wget http://nutyx.meticul.eu/files/patchs/aaabasicfs/blfs-bootscripts-$scriptsversion.tar.bz2
+# wget http://www.linuxfromscratch.org/blfs/downloads/svn/$scripts-$scriptsversion.tar.bz2
+ tar xvf $scripts-$scriptsversion.tar.bz2
+ cd $name-$version
+ export CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
+
+ ./configure --prefix=/usr \
+ --sysconfdir=/etc \
+ --libexecdir=/usr/sbin \
+ --mandir=/usr/share/man \
+ --localstatedir=/var/openldap \
+ --disable-nls \
+ --enable-syslog \
+ --with-threads \
+ --with-tls \
+ --with-cyrus-sasl \
+ --enable-spasswd \
+ --enable-dynamic \
+ --enable-ipv6 \
+ --enable-modules \
+ --enable-crypt \
+ --enable-rewrite \
+ --enable-ldbm \
+ --enable-ldbm-api=berkeley \
+ --enable-ldbm-type=btree \
+ --enable-bdb \
+ --enable-hdb \
+ --enable-ldap \
+ --enable-meta \
+ --enable-monitor \
+ --enable-dnssrv \
+ --enable-null \
+ --enable-perl \
+ --with-dyngroup \
+ --with-proxycache \
+ --enable-wrappers \
+ --enable-aci \
+ --enable-shared
+
+ make depend
+ make
+ make DESTDIR=$PKG install
+
+ sed -i -e "s|-L${PKG}/usr/lib||g" $PKG/usr/lib/*.la
+ /sbin/ldconfig -n $PKG/usr/lib
+
+ # compatiblity links
+ (cd $PKG/usr/lib;
+ ln -s liblber.so liblber.so.2;
+ ln -s libldap.so libldap.so.2;
+ ln -s libldap_r.so libldap_r.so.2) || exit 1
+ # Installation of the script
+ cd ../$scripts-$scriptsversion
+ make DESTDIR=$PKG install-openldap1
+ # Suppress files from libldap
+ rm -r $PKG/usr/share/man/man{3,5}
+ rm -r $PKG/usr/{lib,include}
+ rm -f $PKG/etc/openldap/schema/README
+}
+