milis/talimatname/genel/o/openldap/talimat

53 lines
1.1 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Tanım: Basit Dizin Erişim Protokolü (LDAP) Araç Seti
# URL: https://www.openldap.org/
# Paketçi: milisarge
# Gerekler: cyrus-sasl
# Grup: sistem
isim=openldap
surum=2.4.44
devir=1
kaynak=(https://www.openldap.org/software/download/OpenLDAP/openldap-release/$isim-$surum.tgz
$isim-config.patch slapd bdb.yama)
derle() {
cd $isim-$surum
patch -p0 -i $SRC/$isim-config.patch
patch -p0 -i $SRC/bdb.yama
./configure --prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/sbin \
--localstatedir=/var/openldap \
--enable-syslog \
--with-threads \
--with-tls \
--with-cyrus-sasl \
--enable-spasswd \
--enable-dynamic \
--enable-ipv6 \
--enable-modules \
--enable-crypt \
--enable-rewrite \
--enable-bdb \
--enable-hdb \
--enable-ldap \
--enable-meta \
--enable-monitor \
--enable-dnssrv \
--enable-null \
--enable-perl \
--enable-aci \
--enable-shared
make depend
make
make DESTDIR=$PKG install
ln -sf liblber.so $PKG/usr/lib/liblber.so.2
ln -sf libldap.so $PKG/usr/lib/libldap.so.2
ln -sf libldap_r.so $PKG/usr/lib/libldap_r.so.2
install -D -m 0755 $SRC/slapd $PKG/etc/rc.d/init.d/slapd
}