diff options
author | Martin Matuska <mm@FreeBSD.org> | 2007-04-20 11:21:55 +0000 |
---|---|---|
committer | Martin Matuska <mm@FreeBSD.org> | 2007-04-20 11:21:55 +0000 |
commit | 90ae3a72cb00bfc9aedf776adf1567c9f9f2355e (patch) | |
tree | 8fb7930cdf34b08762ff71a2e2647e46b866e6da /www/openacs | |
parent | 34cb4b65848629dc5385deb55d0ea24926f20d1e (diff) | |
download | ports-90ae3a72cb00bfc9aedf776adf1567c9f9f2355e.tar.gz ports-90ae3a72cb00bfc9aedf776adf1567c9f9f2355e.zip |
- added dependency on AOLserver XOTcl module
- added optional dependency on tclwebtest
Approved by: garga (mentor)
Notes
Notes:
svn path=/head/; revision=190435
Diffstat (limited to 'www/openacs')
-rw-r--r-- | www/openacs/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/www/openacs/Makefile b/www/openacs/Makefile index 6b5e38c46ab8..cfd5ea34eb5d 100644 --- a/www/openacs/Makefile +++ b/www/openacs/Makefile @@ -7,7 +7,7 @@ PORTNAME?= openacs PORTVERSION?= 5.3.0 -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES= www MASTER_SITES?= http://openacs.org/projects/openacs/download/download/ EXTRACT_SUFX?= .tgz?revision_id=583060 @@ -20,6 +20,7 @@ RUN_DEPENDS= ${AOLSERVERBASE}/bin/nscache.so:${PORTSDIR}/www/aolserver-nscache \ ${AOLSERVERBASE}/bin/nsopenssl.so:${PORTSDIR}/security/aolserver-nsopenssl \ ${AOLSERVERBASE}/bin/nssha1.so:${PORTSDIR}/security/aolserver-nssha1 \ ${AOLSERVERBASE}/bin/nspostgres.so:${PORTSDIR}/databases/aolserver-nspostgres \ + ${AOLSERVERBASE}/modules/tcl/xotcl.tcl:${PORTSDIR}/www/aolserver-xotcl \ ${LOCALBASE}/lib/tdomConfig.sh:${PORTSDIR}/www/tdom USE_RC_SUBR?= ${PORTNAME} @@ -47,11 +48,15 @@ PKGDEINSTALL= ${WRKDIR}/pkg-deinstall .if !defined(NOPORTDOCS) PORTDOCS= ChangeLog readme.txt license.txt .endif - -OPTIONS= EXAMPLES "Install various example files" on +OPTIONS= EXAMPLES "Install various example files" on \ + TCLWEBTEST "Require tclwebteset" on .include <bsd.port.pre.mk> +.if !defined(WITHOUT_TCLWEBTEST) +RUN_DEPENDS+= ${LOCALBASE}/bin/tclwebtest:${PORTSDIR}/www/tclwebtest +.endif + post-patch: @${SED} -e 's|service0|${OPENACS_USER}|' \ -e 's|/var/lib/aolserver/$${server}|${OPENACSBASE}|' \ |