blob: 21a43af819e016813d3414163f4df69bf30bb428 (
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
|
# New ports collection makefile for: qmail-activedir
# Date created: 2005-11-08
# Whom: Jean Milanez Melo <jmelo@freebsdbrasil.com.br>
#
# $FreeBSD$
#
PORTNAME= qmail-activedir
PORTVERSION= 0.15
PORTREVISION= 1
CATEGORIES= mail
MASTER_SITES= http://fo2k.com/qmail-activedir/
MAINTAINER= jmelo@freebsdbrasil.com.br
COMMENT= Programs to allow qmail to authenticate users through a MS ad
USE_QMAIL_RUN= yes
SUB_FILES= pkg-message
SUB_LIST+= QMAIL_PREFIX=${QMAIL_PREFIX}
USE_OPENLDAP= yes
USE_REINPLACE= yes
BINARIES= checkadpassword qmail-adgetpw create_alias_files
CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib -Wall -lldap
PLIST_FILES= bin/checkadpassword \
bin/create_alias_files \
bin/qmail-adgetpw
PORTDOCS= INSTALL README
.if defined(WITH_OPENLDAP_VER)
WANT_OPENLDAP_VER= ${WITH_OPENLDAP_VER}
.endif
.include <bsd.port.pre.mk>
post-patch:
@${REINPLACE_CMD} -e 's,/var/qmail,${QMAIL_PREFIX},g' \
-e 's,\(#define AD_USE_GC\) 1,\1 0,' \
-e 's,\(#define AD_ONLY_USE_SSL\) 1,\1 0,' \
${WRKSRC}/ad_func.h
do-build:
.for prog in ${BINARIES}
${CC} ${CFLAGS} ${WRKSRC}/${prog}.c ${WRKSRC}/ad_func.c -o \
${WRKSRC}/${prog}
.endfor
do-install:
.for prog in ${BINARIES}
${INSTALL_PROGRAM} ${WRKSRC}/${prog} ${PREFIX}/bin/
.endfor
${CHMOD} 700 ${PREFIX}/bin/checkadpassword \
${PREFIX}/bin/create_alias_files
${CHMOD} 711 ${PREFIX}/bin/qmail-adgetpw
${CHOWN} root:qmail ${PREFIX}/bin/qmail-adgetpw
${CHOWN} root:wheel ${PREFIX}/bin/create_alias_files
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for i in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
.endfor
.endif
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>
|