1999-11-01 02:40:07 +00:00
|
|
|
# New ports collection makefile for: Zope
|
|
|
|
# Date created: Sat 21 Aug 1999
|
|
|
|
# Whom: Peter Cornelius <pcc@gmx.net>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
2000-04-10 00:07:29 +00:00
|
|
|
#
|
1999-11-01 02:40:07 +00:00
|
|
|
|
2000-04-10 00:07:29 +00:00
|
|
|
PORTNAME= zope
|
2000-08-15 14:09:41 +00:00
|
|
|
PORTVERSION= 2.2.1b1
|
1999-11-01 02:40:07 +00:00
|
|
|
CATEGORIES= www python
|
2000-05-29 02:49:55 +00:00
|
|
|
MASTER_SITES= http://www.zope.org/Products/Zope/${PORTVERSION}/
|
2000-04-10 00:07:29 +00:00
|
|
|
DISTNAME= Zope-${PORTVERSION}-src
|
1999-11-01 02:40:07 +00:00
|
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
|
2000-08-08 20:01:47 +00:00
|
|
|
MAINTAINER= nbm@FreeBSD.org
|
1999-11-01 02:40:07 +00:00
|
|
|
|
|
|
|
BUILD_DEPENDS= python1.5:${PORTSDIR}/lang/python
|
2000-08-15 14:09:41 +00:00
|
|
|
#RUN_DEPENDS= ${LOCALBASE}/sbin/apache:${PORTSDIR}/www/apache13-modssl
|
1999-11-01 02:40:07 +00:00
|
|
|
|
|
|
|
# Build has to be done in the final location after installing the sources
|
|
|
|
# there. It were a major action to fix all paths otherwise.
|
|
|
|
do-build: # empty, but needs to be there for the python dependency.
|
|
|
|
|
|
|
|
# The web server's "root" directory used to be ${PREFIX}/www, and from
|
|
|
|
# then on, data, cgi-bin and such. Thus, I decided that Zope belongs
|
|
|
|
# there, too. I don't know whether this still applies to current apache
|
|
|
|
# releases, though. I still run 2.2.8-STABLE.
|
2000-08-15 14:09:41 +00:00
|
|
|
PLIST_SUB= ZOPEBASEDIR=www/Zope CGIBINDIR=www/cgi-bin.default VERSION=${PORTVERSION}
|
1999-11-01 02:40:07 +00:00
|
|
|
WEBBASEDIR?= ${PREFIX}/www
|
2000-08-15 14:09:41 +00:00
|
|
|
ZOPEBASEDIR?= ${WEBBASEDIR}/Zope
|
|
|
|
CGI_BIN_DIR?= ${PREFIX}/www/cgi-bin.default
|
1999-11-01 02:40:07 +00:00
|
|
|
APACHE_CONFDIR?= ${PREFIX}/etc/apache
|
2000-08-15 14:09:41 +00:00
|
|
|
PYTHON15?= ${LOCALBASE}/bin/python1.5
|
1999-11-01 02:40:07 +00:00
|
|
|
|
|
|
|
# I decided to consider the whole souce tree to be part of the package
|
|
|
|
# since in there, Zope can live on its own. It does leave some *.o files
|
|
|
|
# around (about four), but I can use Zope's own building mechanism.
|
|
|
|
do-install: #
|
|
|
|
@if [ -e ${ZOPEBASEDIR}/var/Data.fs ] ; then \
|
|
|
|
${ECHO} "Saving existing Database to /tmp/Data.fs.BAK." ; \
|
|
|
|
${MV} ${ZOPEBASEDIR}/var/Data.fs /tmp/Data.fs.BAK ; \
|
|
|
|
fi
|
|
|
|
@( ${MKDIR} ${ZOPEBASEDIR} ; \
|
|
|
|
${ECHO} "===> Please be patient, some builds need their time." ; \
|
|
|
|
${ECHO} "===> Copying..." ; \
|
|
|
|
${CP} -Rp ${WRKSRC}/* ${ZOPEBASEDIR}/ ; \
|
|
|
|
cd ${ZOPEBASEDIR} ; \
|
|
|
|
${PYTHON15} w_pcgi.py ; \
|
|
|
|
${PYTHON15} wo_pcgi.py ; \
|
|
|
|
${MV} Zope.cgi Zope.cgi.orig ; \
|
|
|
|
${ECHO} "#! ${CGI_BIN_DIR}/pcgi-wrapper" > Zope.cgi ; \
|
|
|
|
${CAT} Zope.cgi.orig >> Zope.cgi ; \
|
2000-08-15 14:09:41 +00:00
|
|
|
${MKDIR} ${CGI_BIN_DIR} ; \
|
1999-11-01 02:40:07 +00:00
|
|
|
${INSTALL} -o nobody -m 555 Zope.cgi pcgi/pcgi-wrapper ${CGI_BIN_DIR} ; \
|
|
|
|
${ECHO} "===> Fixing permissions of Zope's own var directory..." ; \
|
|
|
|
${CHMOD} ugo+rwt var ; \
|
2000-05-29 02:49:55 +00:00
|
|
|
${CHOWN} nobody var ; \
|
|
|
|
${CHOWN} nobody var/* ; \
|
1999-11-01 02:40:07 +00:00
|
|
|
${ECHO} "===> Setting user/password to zopemaster/test..." ; \
|
|
|
|
${PYTHON15} zpasswd.py -u zopemaster -p test -e CLEARTEXT access ; \
|
2000-05-29 02:49:55 +00:00
|
|
|
${CHOWN} nobody access; \
|
|
|
|
${ECHO} "===> Copying Apache config file changes to ${APACHE_CONFDIR}/apache.conf.Zope-Changes." ; \
|
2000-08-15 14:09:41 +00:00
|
|
|
${MKDIR} ${APACHE_CONFDIR} ; \
|
2000-05-29 02:49:55 +00:00
|
|
|
${CP} -p ${FILESDIR}/apache.conf.Zope-Changes ${APACHE_CONFDIR}/ ; \
|
1999-11-01 02:40:07 +00:00
|
|
|
${ECHO} "===> Please have a look at this file and the instructions" ; \
|
|
|
|
${ECHO} "===> therein and incorporate them to your apache.conf." ; \
|
2000-04-10 00:07:29 +00:00
|
|
|
${ECHO} "===> Creating rc startup file for Zope-${PORTVERSION}..." ; \
|
2000-07-05 12:37:06 +00:00
|
|
|
${SED} -e "s|%%ZOPEBASEDIR%%|${ZOPEBASEDIR}|g" -e "s|%%CGI_BIN_DIR%%|${CGI_BIN_DIR}|g" \
|
2000-08-08 18:10:52 +00:00
|
|
|
< ${FILESDIR}/zope.sh.in > ${PREFIX}/etc/rc.d/zope.sh; \
|
1999-11-01 02:40:07 +00:00
|
|
|
${CHMOD} ug+x,o-rwx ${PREFIX}/etc/rc.d/zope.sh ; \
|
|
|
|
${ECHO} "===> Done with ${PREFIX}/etc/rc.d/zope.sh." ; \
|
|
|
|
${CAT} ${FILESDIR}/Message ; \
|
|
|
|
${ECHO} "===> Your Zope base directory is ${ZOPEBASEDIR}." ; \
|
|
|
|
${ECHO} "===> The Zope license is in ${ZOPEBASEDIR}/LICENSE.txt." ; \
|
2000-05-29 02:49:55 +00:00
|
|
|
${ECHO} "===> For Apache changes see ${APACHE_CONFDIR}/apache.conf.Zope-Changes." ; \
|
1999-11-01 02:40:07 +00:00
|
|
|
${ECHO} "===> Zope.cgi and pcgi-wrapper live in ${CGI_BIN_DIR}." )
|
|
|
|
|
|
|
|
#pre-deinstall: # Save Database contents. I expect /tmp to have sufficient
|
|
|
|
# # space to hold it for the time being.
|
|
|
|
# @if [ -e ${ZOPEBASEDIR}/var/Data.fs ] ; then \
|
|
|
|
# ${ECHO} "Saving existing Database to /tmp/Data.fs.bak." ; \
|
|
|
|
# ${MV} ${ZOPEBASEDIR}/var/Data.fs /tmp/Data.fs.bak ; \
|
|
|
|
# fi
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|