mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
37f54e0f66
- Convert to USES=libtool and bump dependent ports - Avoid USE_AUTOTOOLS - Don't use PTHREAD_LIBS - Use MAKE_CMD databases/glom: - Drop :keepla - Add INSTALL_TARGET=install-strip databases/libgda4* databases/libgda5*: - Convert to USES=libtool and bump dependent ports - USES=tar:xz - Use INSTALL_TARGET=install-strip - Use @sample databases/libgdamm: - Drop :keepla - USES=tar:bzip2 - Use INSTALL_TARGET=install-strip databases/libgdamm5: - Add INSTALL_TARGET=install-strip - Drop --enable-static (inherited from old repocopy) devel/anjuta x11-toolkits/py-gnome-extras: - Drop :keepla dns/powerdns dns/powerdns-devel: - Convert to USES=libtool - Add INSTALL_TARGET=install-strip - Disable static modules - Stop creating library symlinks with .0 suffix, not needed for dynamically opened modules mail/dovecot2: - Add USES=libtool mail/dovecot2-pigeonhole: - Drop CONFIGURE_TARGET (incorrect for Dragonfly) - Add USES=libtool and INSTALL_TARGET=install-strip math/gnumeric: - USES=libtool tar:xz Approved by: portmgr (implicit, bump unstaged ports)
52 lines
1.2 KiB
Makefile
52 lines
1.2 KiB
Makefile
# Created by: Jean Milanez Melo <jmelo@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= qmail-activedir
|
|
PORTVERSION= 0.17
|
|
PORTREVISION= 2
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://fo2k.com/qmail-activedir/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Programs to allow qmail to authenticate users through a MS ad
|
|
|
|
USES= qmail:run
|
|
SUB_FILES= pkg-message
|
|
SUB_LIST+= QMAIL_PREFIX=${QMAIL_PREFIX}
|
|
USE_OPENLDAP= yes
|
|
|
|
BINARIES= checkadpassword qmail-adgetpw create_alias_files
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib -Wall -lldap
|
|
|
|
.if defined(WITH_OPENLDAP_VER)
|
|
WANT_OPENLDAP_VER= ${WITH_OPENLDAP_VER}
|
|
.endif
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.options.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} ${STAGEDIR}${PREFIX}/bin/
|
|
.endfor
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${WRKSRC}/INSTALL ${STAGEDIR}${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|