1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00
freebsd-ports/net/phpldapadmin098/Makefile
Marcus Alves Grando 2837d0fae3 - Update to 0.9.8.3
PR:		97212
Submitted by:	maintainer
Security:	http://www.vuxml.org/freebsd/6d78202e-e2f9-11da-8674-00123ffe8333.html
2006-05-14 03:55:31 +00:00

112 lines
2.9 KiB
Makefile

# New ports collection makefile for: phpLDAPadmin
# Date created: 30 Apr 2004
# Whom: Matthew Seaman
#
# $FreeBSD$
#
PORTNAME= phpldapadmin098
PORTVERSION= 0.9.8.3
PORTEPOCH= 1
CATEGORIES= net www
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= phpldapadmin
DISTNAME= ${PORTNAME:S/098//}-${PORTVERSION}
MAINTAINER= m.seaman@infracaninophile.co.uk
COMMENT= A set of PHP-scripts to administer LDAP over the web
NO_BUILD= yes
USE_PHP= gettext ldap openssl pcre session
.if defined(WITH_SUPHP)
PKGNAMESUFFIX+= -suphp
RUN_DEPENDS+= ${LOCALBASE}/sbin/suphp:${PORTSDIR}/www/suphp
WANT_PHP_CGI= yes
PLAUSR?= pldapadm
SUB_LIST+= PLAUSR=${PLAUSR} \
PLAGRP=${PLAGRP}
SUB_FILES+= pkg-install pkg-deinstall
.else
WANT_PHP_WEB= yes
.endif
# PLAUSR is only used WITH_SUPHP
PLADIR?= www/${PORTNAME}
PLADIRX?= ${PLADIR:S/098//}
PLAGRP?= ${WWWGRP}
CFGDIR= config
CFGFILE= config.php
SUB_LIST+= PKGNAME=${PKGNAME} \
PLADIR=${PLADIR} \
PLADIRX=${PLADIRX}
SUB_FILES+= pkg-message
PLIST= ${WRKDIR}/plist
PLIST_SUB+= PLADIR=${PLADIR} PLAGRP=${PLAGRP}
.SILENT:
pre-everything::
${ECHO_MSG} ""
${ECHO_MSG} "You may use the following build options:"
${ECHO_MSG} ""
${ECHO_MSG} " WITH_SUPHP=yes Install appropriately for use with"
${ECHO_MSG} " the www/suphp port [default: no]"
${ECHO_MSG} ""
${ECHO_MSG} "This port will operate with either PHP4 or PHP5. If"
${ECHO_MSG} "you require PHP5 support, for best results, please"
${ECHO_MSG} "install lang/php5 before installing this port."
${ECHO_MSG} ""
post-patch:
cd ${WRKSRC} ; \
${FIND} . ! -type d ! -name ${CFGFILE}.example ! -name .cvsignore | \
${SORT} | ${SED} -e "s!^\.!%%PLADIR%%!" >${PLIST} ; \
${CAT} ${PKGDIR}/pkg-plist-chunk >>${PLIST} ; \
${FIND} . -type d | ${SORT} -r | ${SED} \
-e 's!^\./${CFGDIR}$$!@dirrmtry %%PLADIR%%/${CFGDIR}!' \
-e 's!^\.$$!@dirrmtry %%PLADIR%%!' \
-e 's!^\.!@dirrm %%PLADIR%%!' >>${PLIST}
pre-install:
.if defined(WITH_SUPHP)
${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
.endif
do-install: install-app install-conf
install-app:
cd ${WRKSRC} ; \
for src in $$( ${FIND} . ! -name .cvsignore ) ; do \
dst=${PREFIX}/${PLADIR}$${src#.} ; \
if ${TEST} -d $$src ; then \
${MKDIR} $$dst ; \
else \
${INSTALL_DATA} $$src $$dst ; \
fi \
done
install-conf:
cd ${PREFIX}/${PLADIR}/${CFGDIR} ; \
${CHMOD} 0640 ${CFGFILE}.example ; \
${CHGRP} ${PLAGRP} ${CFGFILE}.example ; \
if ${TEST} ! -f ${CFGFILE} ; then \
${CP} -p ${CFGFILE}.example ${CFGFILE} ; \
fi
post-install:
.if defined(WITH_SUPHP)
${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
.endif
${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>