naddy d159f8d1ad Make use of "find -exec {} +" (which is POSIX) and "find -delete"
(which is not) throughout the ports Makefiles.

* Replace find|xargs with find -exec {} +
* Replace -exec {} \; with -exec {} + if applicable.
* Use the -delete operator to remove files and empty directories.
* Combine and tweak some find(1) invocations while here.

ok kn@ rsadowski@ espie@
2020-03-20 16:44:21 +00:00

93 lines
2.4 KiB
Makefile

# $OpenBSD: Makefile,v 1.28 2020/03/20 16:44:22 naddy Exp $
COMMENT= open-source LDAP software (server, legacy version)
DISTNAME= openldap-2.3.43
PKGNAME= ${DISTNAME:S/-/-server-/}
REVISION= 21
CATEGORIES= databases net
HOMEPAGE= http://www.openldap.org/
PERMIT_PACKAGE= Yes
WANTLIB += c crypto m perl pthread sasl2 ssl util
MASTER_SITES= http://mirror.switch.ch/ftp/mirror/OpenLDAP/openldap-release/ \
http://mirror.aarnet.edu.au/pub/openldap/openldap-release/ \
ftp://ftp.OpenLDAP.org/pub/OpenLDAP/openldap-release/ \
http://ftp.ntua.gr/mirror/OpenLDAP/openldap-release/
EXTRACT_SUFX= .tgz
SEPARATE_BUILD= Yes
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS+= --enable-ipv6
# slapd options
CONFIGURE_ARGS+= --enable-slapd \
--enable-cleartext \
--enable-crypt \
--enable-rewrite \
--with-cyrus-sasl \
--enable-spasswd
# slapd modules
CONFIGURE_ARGS+= --enable-dnssrv \
--enable-ldap \
--enable-ldbm \
--enable-meta \
--enable-monitor \
--enable-null \
--enable-passwd \
--enable-perl \
--enable-shell
# slurpd modules
CONFIGURE_ARGS+= --enable-slurpd
MODGNU_CONFIG_GUESS_DIRS= ${WRKSRC} ${WRKSRC}/build
TEST_TARGET= test
LIB_DEPENDS+= security/cyrus-sasl2
CPPFLAGS+= -I${LOCALBASE}/include/sasl
CONFIGURE_ARGS+= --disable-bdb --disable-hdb
CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" \
LDFLAGS="-L${LOCALBASE}/lib ${LDFLAGS}" \
LIBS="${LIBS}"
pre-build:
@cd ${WRKBUILD}; ${MAKE_PROGRAM} depend
pre-configure:
@sed -i 's,database bdb,database ldbm,' \
${WRKSRC}/servers/slapd/slapd.conf
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/openldap
${INSTALL_DATA} ${DESTDIR}${SYSCONFDIR}/openldap/*.conf \
${PREFIX}/share/examples/openldap
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/openldap/schema
${INSTALL_DATA} ${DESTDIR}${SYSCONFDIR}/openldap/schema/*.schema \
${PREFIX}/share/examples/openldap/schema
${INSTALL_DATA} ${WRKSRC}/servers/slapd/DB_CONFIG \
${PREFIX}/share/examples/openldap
rm -rf ${DESTDIR}${SYSCONFDIR}/openldap
rm -rf ${DESTDIR}/var/openldap-data ${DESTDIR}/var/openldap-slurp
#Remove the client part
cd ${PREFIX} && rm -fR bin include lib man/man5/ldap.conf.5 \
man/man5/ldif.5 share/examples/openldap/ldap.conf \
man/man3/ld_errno.3
find ${PREFIX}/man/man1 -name 'ldap*' -delete
find ${PREFIX}/man/man3 \
\( -name 'ber_*' -o -name 'lber*' -o -name 'ldap*' \) -delete
find ${PREFIX}/man/man5 -name 'slapo*' -delete
.include <bsd.port.mk>