summaryrefslogtreecommitdiff
path: root/www/zope29
diff options
context:
space:
mode:
authorAlan Eldridge <alane@FreeBSD.org>2002-11-03 13:17:17 +0000
committerAlan Eldridge <alane@FreeBSD.org>2002-11-03 13:17:17 +0000
commitdf279c0135ce9ee71408491103e02dedf55cb71b (patch)
tree86dc3a70774a823e4675fa76b9b8bbf1e97a0465 /www/zope29
parent1. Update version to 1.7.1. (diff)
Create the cgi-bin dir for Zope's cgi scripts if it doesn't exist, rather
than just bomb.
Notes
Notes: svn path=/head/; revision=69341
Diffstat (limited to 'www/zope29')
-rw-r--r--www/zope29/Makefile28
1 files changed, 13 insertions, 15 deletions
diff --git a/www/zope29/Makefile b/www/zope29/Makefile
index e28583b8447e..dff4a8834605 100644
--- a/www/zope29/Makefile
+++ b/www/zope29/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