blob: 4b32782d9b7e0b37662938a2962b2e536dac188a (
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
|
# New ports collection makefile for: LDAP-Account-Manager
# Date created: August, 2nd 2003
# Whom: Clement Laforet <sheepkiller@cultdeadsheep.org>
#
# $FreeBSD$
#
PORTNAME= LDAP-Account-Manager
PORTVERSION= 2.1.0
CATEGORIES= sysutils www
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= lam
DISTNAME= ${PORTNAME:L}-${PORTVERSION}
MAINTAINER= dimma@higis.ru
COMMENT= Webfrontend for managing accounts stored in an OpenLDAP server
RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Quota.pm:${PORTSDIR}/sysutils/p5-Quota\
${SITE_PERL}/Net/LDAP.pm:${PORTSDIR}/net/p5-perl-ldap
USE_PERL5= yes
USE_PHP= pcre xml gettext session mcrypt ldap mhash iconv
WANT_PHP_WEB= yes
NO_BUILD= YES
WRKSRC= ${WRKDIR}/${PORTNAME:L}-${PORTVERSION}
WWW_ROOT?= www/lam
PKGINSTALL= ${WRKDIR}/pkg-install
PLIST_SUB+= WWWROOT=${WWW_ROOT}
WWW_DATA= index.html config graphics help lib sess style templates tmp
WWW_LOCALE= locale
.include <bsd.port.pre.mk>
.if defined(WITHOUT_NLS)
PLIST_SUB+= NLS="@comment "
.else
USE_GETTEXT= yes
PLIST_SUB+= NLS=""
FLAG_NLS= true
.endif
MYPORTDOCS = COPYING HISTORY INSTALL README TODO copyright \
docs/README.Kolab.txt docs/README.fpdf.htm \
docs/README.hosts.txt docs/README.lamdaemon.txt \
docs/README.openldap.txt docs/README.schema.txt \
docs/README.security.txt docs/README.upgrade.txt
LAM_SCRIPTS= lib/lamdaemon.pl
HTMLPORTDOCS= docs/devel
do-configure:
@${RM} ${WRKSRC}/config/shells
do-install:
@${MKDIR} ${PREFIX}/${WWW_ROOT}
@cd ${WRKSRC} && ${TAR} cf - ${WWW_DATA} | ${TAR} xf - -C ${PREFIX}/${WWW_ROOT}
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
cd ${WRKSRC} && ${TAR} cf - ${MYPORTDOCS} | ${TAR} xf - -C ${DOCSDIR}
@${MKDIR} ${PREFIX}/${WWW_ROOT}/html
cd ${WRKSRC} && ${TAR} -C ${HTMLPORTDOCS} -cf - . | ${TAR} xf - -C ${PREFIX}/${WWW_ROOT}/html
.endif
.if defined(FLAG_NLS)
cd ${WRKSRC} && ${TAR} cf - ${WWW_LOCALE} | ${TAR} xf - -C ${PREFIX}/${WWW_ROOT}
.endif
@${MKDIR} ${PREFIX}/${WWW_ROOT}/tmp
@[ -e ${PREFIX}/${WWW_ROOT}/config/config.cfg ] || \
${INSTALL_DATA} ${WRKSRC}/config/config.cfg_sample ${PREFIX}/${WWW_ROOT}/config/config.cfg
@[ -e ${PREFIX}/${WWW_ROOT}/config/lam.conf ] || \
${INSTALL_DATA} ${WRKSRC}/config/lam.conf_sample ${PREFIX}/${WWW_ROOT}/config/lam.conf
post-patch:
@${SED} -e "s;%%WWWOWN%%;${WWWOWN};g" \
-e "s;%%WWWGRP%%;${WWWGRP};g" \
-e "s;%%WWW_ROOT%%;${WWW_ROOT};g" \
${.CURDIR}/pkg-install > ${PKGINSTALL}
post-install:
@${ECHO_MSG} "===> Setting correct permissions"
@${FIND} ${PREFIX}/${WWW_ROOT} -type f -exec ${CHMOD} 644 {} \;
@${FIND} ${PREFIX}/${WWW_ROOT} -type d -exec ${CHMOD} 755 {} \;
@cd ${PREFIX}/${WWW_ROOT} ; ${CHMOD} 755 ${LAM_SCRIPTS}
@${LN} -sf /etc/shells ${PREFIX}/${WWW_ROOT}/config/shells
@PKG_PREFIX=${PREFIX} WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} WWW_ROOT=${WWW_ROOT} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>
|