diff options
author | Alan Eldridge <alane@FreeBSD.org> | 2002-11-03 13:17:17 +0000 |
---|---|---|
committer | Alan Eldridge <alane@FreeBSD.org> | 2002-11-03 13:17:17 +0000 |
commit | df279c0135ce9ee71408491103e02dedf55cb71b (patch) | |
tree | 86dc3a70774a823e4675fa76b9b8bbf1e97a0465 /www/zope211/Makefile | |
parent | 9168fa04558713d0af82754ee4ae36216dda18c1 (diff) | |
download | ports-df279c0135ce9ee71408491103e02dedf55cb71b.tar.gz ports-df279c0135ce9ee71408491103e02dedf55cb71b.zip |
Notes
Diffstat (limited to 'www/zope211/Makefile')
-rw-r--r-- | www/zope211/Makefile | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/www/zope211/Makefile b/www/zope211/Makefile index e28583b8447e..dff4a8834605 100644 --- a/www/zope211/Makefile +++ b/www/zope211/Makefile @@ -18,10 +18,12 @@ MAINTAINER= alane@FreeBSD.org USE_PYTHON= yes PYTHON_VERSION= python2.1 -#RUN_DEPENDS= ${LOCALBASE}/sbin/apache:${PORTSDIR}/www/apache13-modssl - DIST_SUBDIR= zope +# Note: the notes that follow reflect the decisions of prior maintainers +# of this port. IOW, don't blame me if you don't like the way it's done. +# Exceptions to this are marked as such. + # Build has to be done in the final location after installing the sources # there. It was a major action to fix all paths otherwise. do-build: # empty, but needs to be there for the python dependency. @@ -49,20 +51,16 @@ PLIST_SUB= ZOPEBASEDIR=${SZOPEBASEDIR} \ WEBBASEDIR=${WEBBASEDIR} # Force the cgi-bin dir or link to exist. -pre-everything: +# If we have to create it, call it -dist to emphasize that the port +# set it up. <alane> + +pre-everything: @if test ! -d ${CGIBINDIR}; then \ - ${ECHO_CMD} \ - "============================================================";\ - ${ECHO_CMD} \ - "===> ${CGIBINDIR} does not exist.";\ - ${ECHO_CMD} \ - "===> Please create it (it can be a link to an existing";\ - ${ECHO_CMD} \ - "===> directory) and run ${MAKE} again.";\ - ${ECHO_CMD} \ - "============================================================";\ - ${FALSE}; \ - fi + ${ECHO_CMD} "The directory for Zope's CGI scripts does"\ + "not exist, so I will create it.";\ + ${ECHO_CMD} "They will be placed in ${CGIBINDIR}.";\ + ${ECHO_CMD} ;\ + ${MKDIR} ${CGIBINDIR}; ${CHMOD} 0755 ${CGIBINDIR}; fi pre-install: PKG_PREFIX=${PREFIX} ${SH} pkg-install ${PKGNAME} PRE-INSTALL |