123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- # $OpenBSD: Makefile,v 1.152 2017/06/03 13:17:41 sthen Exp $
- DPB_PROPERTIES = parallel
- COMMENT-main = open-source LDAP software (client)
- COMMENT-server = open-source LDAP software (server)
- DISTNAME = openldap-2.4.45
- PKGNAME-main = ${DISTNAME:S/-/-client-/}
- PKGNAME-server = ${DISTNAME:S/-/-server-/}
- # overwrite -main pkgname/path to strip FLAVOR, aci only affects the server
- FULLPKGNAME-main = ${DISTNAME:S/-/-client-/}${FLAVOR_EXT:S/-aci//}
- FULLPKGPATH-main = databases/openldap,-main${FLAVOR_EXT:S/-aci//:S/-/,/g}
- SHARED_LIBS += lber 12.0 # 12.6
- SHARED_LIBS += lber-2.4 12.0
- SHARED_LIBS += ldap 13.1 # 12.6
- SHARED_LIBS += ldap-2.4 13.1
- SHARED_LIBS += ldap_r 13.1
- SHARED_LIBS += ldap_r-2.4 13.1
- CATEGORIES = databases net
- HOMEPAGE = http://www.openldap.org/
- MAINTAINER = Stuart Henderson <sthen@openbsd.org>
- # OpenLDAP Public License
- PERMIT_PACKAGE_CDROM = Yes
- WANTLIB += c crypto ssl
- MASTER_SITES = http://mirror.switch.ch/ftp/mirror/OpenLDAP/openldap-release/ \
- http://gd.tuwien.ac.at/infosys/network/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
- AUTOCONF_VERSION = 2.65
- CONFIGURE_STYLE = autoconf
- # formatting is ok with mandoc, but it uses soelim
- USE_GROFF = Yes
- FLAVOR ?=
- FLAVORS = aci gssapi
- CONFIGURE_ARGS += --enable-ipv6 \
- --with-tls=openssl
- # slapd options
- CONFIGURE_ARGS += --enable-slapd \
- --enable-cleartext \
- --enable-crypt \
- --enable-rewrite \
- --with-cyrus-sasl \
- --enable-spasswd
- # slapd modules
- CONFIGURE_ARGS += --enable-bdb \
- --enable-dnssrv \
- --enable-hdb \
- --enable-ldap \
- --enable-meta \
- --enable-monitor \
- --enable-null \
- --enable-overlays \
- --enable-passwd \
- --enable-perl \
- --enable-shell
- # MDB assumes UBC; see http://www.openldap.org/pub/hyc/mdm-paper.pdf
- # section 3.1, references 17, 18, and 19.
- #
- # However, note (from Howard Chu): "This requirement can be relaxed in
- # the current version of the library. If you create the environment
- # with the MDB_WRITEMAP option then all reads and writes are performed
- # using mmap, so the file buffer cache is irrelevant. Of course then
- # you lose the protection that the read-only map offers."
- #
- # A patch has been added to this port to enforce that MDB_WRITEMAP is
- # used, however crashes have been seen with mdb in use, so this is
- # disabled at this time.
- #
- CONFIGURE_ARGS += --disable-mdb
- .if ${FLAVOR:Maci}
- CONFIGURE_ARGS += --enable-aci
- .endif
- .if ${FLAVOR:Mgssapi}
- CONFIGURE_ARGS += --enable-gssapi=${LOCALBASE}/heimdal
- MODULES += security/heimdal
- WANTLIB += heimdal/lib/gssapi
- WANTLIB += heimdal/lib/heimntlm
- WANTLIB += heimdal/lib/heimsqlite
- .endif
- MODGNU_CONFIG_GUESS_DIRS = ${WRKSRC} ${WRKSRC}/build
- TEST_TARGET = test
- MULTI_PACKAGES = -main -server
- LIB_DEPENDS += security/cyrus-sasl2
- WANTLIB += pthread sasl2
- CPPFLAGS += -I${LOCALBASE}/include/sasl
- LIB_DEPENDS-server = ${LIB_DEPENDS-main} \
- sysutils/e2fsprogs \
- textproc/icu4c \
- databases/db/v4,no_java,no_tcl
- CONFIGURE_ENV += CPPFLAGS="-I${LOCALBASE}/include/sasl -I${LOCALBASE}/include/db4 -I${LOCALBASE}/include" \
- LDFLAGS="-L${LOCALBASE}/lib/db4 -L${LOCALBASE}/lib"
- RUN_DEPENDS-server = databases/openldap,-main
- WANTLIB-server += ${WANTLIB} perl m icudata icuuc uuid
- WANTLIB-server += ${LIBCXX} lib/db4/db>=4
- pre-build:
- @cd ${WRKBUILD}; ${MAKE_PROGRAM} depend
- 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
- .include <bsd.port.mk>
|