aboutsummaryrefslogtreecommitdiffstats
path: root/net/openldap20/Makefile
blob: eb4c85044eeb06e3465c3a3ec91dd30587d2090c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# New ports collection makefile for:    OpenLDAP 2.x
# Date created:     20 Sep 1998
# Whom:         Lachlan O'Dea
#
# $FreeBSD$
#

PORTNAME=   openldap20
PORTVERSION=    2.0.25
PORTREVISION=   3
CATEGORIES= net databases
MASTER_SITES=   ftp://ftp.OpenLDAP.org/pub/OpenLDAP/%SUBDIR%/ \
        ftp://ftp.net.lut.ac.uk/openldap/%SUBDIR%/ \
        ftp://sunsite.cnlab-switch.ch/mirror/OpenLDAP/%SUBDIR%/ \
        ftp://mirror.aarnet.edu.au/pub/OpenLDAP/%SUBDIR%/ \
        ftp://gd.tuwien.ac.at/infosys/network/OpenLDAP/%SUBDIR%/ \
        http://www.unibase.cz/ldapcz/Programy/Free/OpenLDAP/%SUBDIR%/ \
        ftp://ftp.ntua.gr/mirror/OpenLDAP/%SUBDIR%/ \
        ftp://ftp.loxinfo.co.th/pub/unix/LDAP/OpenLDAP/%SUBDIR%/ \
        ftp://ftp.zcu.cz/pub/network/openldap/%SUBDIR%/
MASTER_SITE_SUBDIR= openldap-release
DISTNAME=   openldap-${PORTVERSION}
EXTRACT_SUFX=   .tgz

MAINTAINER= ports@FreeBSD.org
COMMENT=    Open source LDAP client and server software

LIB_DEPENDS=    db3.3:${PORTSDIR}/databases/db3

USE_AUTOCONF_VER=213
USE_LIBTOOL=    yes
USE_OPENSSL=    yes
USE_REINPLACE=  yes

LATEST_LINK=    openldap2

CONFIGURE_ARGS= --localstatedir=/var/db \
        --with-threads \
        --enable-shared \
        --enable-dnssrv \
        --with-tls=openssl

# Include tcp-wrapper support
.if exists(/usr/include/tcpd.h)
CONFIGURE_ARGS+=    --enable-wrappers
.endif

# math.h uses _REENTRANT and stdio.h uses _THREAD_SAFE, so define both.
CPPFLAGS+=  -D_REENTRANT ${PTHREAD_CFLAGS} \
        -I${LOCALBASE}/include \
        -I${LOCALBASE}/include/db3
LDFLAGS+=   -L${LOCALBASE}/lib

.if defined(WITH_SASL)
LIB_DEPENDS+=   sasl.8:${PORTSDIR}/security/cyrus-sasl
CPPFLAGS+=  -I${LOCALBASE}/include/sasl1
.endif

.if defined(WITH_ODBC)
LIB_DEPENDS+=   iodbc.3:${PORTSDIR}/databases/libiodbc
CONFIGURE_ARGS+=--enable-sql
.endif

CONFIGURE_ENV=  CPPFLAGS="${CPPFLAGS}" \
        LDFLAGS="${LDFLAGS}"

INSTALLS_SHLIB= yes

BINS=       bin/ldapadd \
        bin/ldapdelete \
        bin/ldapmodify \
        bin/ldapmodrdn \
        bin/ldappasswd \
        bin/ldapsearch \
        bin/ud \
        libexec/fax500 \
        libexec/go500 \
        libexec/go500gw \
        libexec/in.xfingerd \
        libexec/mail500 \
        libexec/maildap \
        libexec/rcpt500 \
        libexec/rp500 \
        libexec/slapd \
        libexec/slurpd

.include <bsd.port.pre.mk>
.include "${FILESDIR}/manpages"

post-patch:
    @${REINPLACE_CMD} -e 's@%LOCALSTATEDIR%/slapd[.]pid@/var/run/slapd.pid@g; \
        s@%LOCALSTATEDIR%/slapd[.]args@/var/run/slapd.args@g' ${WRKSRC}/servers/slapd/slapd.conf

post-configure:
    @cd ${WRKSRC} ; ${PATCH} < ${FILESDIR}/libtool.diff

pre-build:
    @cd ${WRKSRC} ; ${MAKE} depend

post-build:
    @${SED} 's,@@PREFIX@@,${PREFIX},g' ${FILESDIR}/slapd.sh >${WRKDIR}/slapd.sh

post-install:
.for f in ${BINS}
    @strip ${PREFIX}/${f}
.endfor
    @${INSTALL_SCRIPT} ${WRKDIR}/slapd.sh ${PREFIX}/etc/rc.d/slapd.sh.sample
    @${CAT} ${PKGMESSAGE}

.include <bsd.port.post.mk>