diff options
author | sada <sada@FreeBSD.org> | 2002-05-18 00:22:48 +0000 |
---|---|---|
committer | sada <sada@FreeBSD.org> | 2002-05-18 00:22:48 +0000 |
commit | d5b84f3f6153d5d4c145b52754d213a34d3be7db (patch) | |
tree | 59491cdd3655d1d945035fe055fc128fef5dcc7a /deskutils/horde4-nag/Makefile | |
parent | 19dbe707a8d658719c8cf7219c1e215e28f41a3c (diff) | |
download | FreeBSD-ports-d5b84f3f6153d5d4c145b52754d213a34d3be7db.zip FreeBSD-ports-d5b84f3f6153d5d4c145b52754d213a34d3be7db.tar.gz |
Add new port: deskutils/nag - Horde's task list manager.
PR: ports/36908
Submitted by: Thierry Thomas <thierry@pompo.net>
Diffstat (limited to 'deskutils/horde4-nag/Makefile')
-rw-r--r-- | deskutils/horde4-nag/Makefile | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/deskutils/horde4-nag/Makefile b/deskutils/horde4-nag/Makefile new file mode 100644 index 0000000..38813be --- /dev/null +++ b/deskutils/horde4-nag/Makefile @@ -0,0 +1,67 @@ +# Ports collection makefile for: Nag +# Date created: Sun Dec 14, 2001 +# Whom: Thierry Thomas (<thierry@pompo.net>) +# +# $FreeBSD$ +# + +PORTNAME= nag +PORTVERSION= 1.0 +CATEGORIES= deskutils www +MASTER_SITES= ftp://ftp.horde.org/pub/nag/tarballs/ +DISTNAME= ${PORTNAME}-${PORTVERSION}-RC2 + +MAINTAINER= thierry@pompo.net + +RUN_DEPENDS= ${LOCALBASE}/www/horde/imp/index.php:${PORTSDIR}/mail/imp3 + +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +NO_BUILD= yes +PLIST_SUB= HORDEDIR=${LHORDEDIR} NAGDIR=${LNAGDIR} + +DOCS= COPYING README docs/CHANGES docs/CREDITS docs/INSTALL \ + docs/TODO +CONFFILE= conf.php html.php menu.php motd.php prefs.php +SUB_DIRS= config graphics lib locale po scripts templates + +LHORDEDIR?= www/horde +LNAGDIR?= ${LHORDEDIR}/nag + +HORDEDIR= ${PREFIX}/${LHORDEDIR} +NAGDIR= ${PREFIX}/${LNAGDIR} +CONFDIR= ${NAGDIR}/config + +HORDE_INC= ${LOCALBASE}/etc/horde + +do-install: + @${MKDIR} ${NAGDIR} +.for REP in ${SUB_DIRS} + @${CP} -Rp ${WRKSRC}/${REP} ${NAGDIR} +.endfor + @${CP} -p ${WRKSRC}/*.php ${NAGDIR} +.for FILE in ${CONFFILE} + @if [ ! -f ${CONFDIR}/${FILE} ]; then \ + ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \ + fi +.endfor + @${CHOWN} -R www:www ${NAGDIR} + @${CHMOD} -R o-rwx ${CONFDIR} + @${CP} -p ${FILESDIR}/httpd.conf.nag ${HORDE_INC} + @${PERL} -pi -e "s:/home/httpd/html/horde/nag:${NAGDIR}:g" \ + ${HORDE_INC}/httpd.conf.nag + @${PERL} -pi -e "s://UNCOMMENTWHENINSTNAG::" ${HORDEDIR}/config/registry.php +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} +.for FILE in ${DOCS} + @${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR} +.endfor + @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." +.endif + +post-install: + @${ECHO_MSG} + @${CAT} ${PKGMESSAGE} | \ + ${SED} -e "s:%%NAGDIR%%:${NAGDIR}:g;s:%%PORTSDIR%%:${PORTSDIR}:g;s:%%CONFDIR%%:${CONFDIR}:g;s:%%HORDEDIR%%:${HORDEDIR}:" + @${ECHO_MSG} + +.include <bsd.port.mk> |