diff options
author | alane <alane@FreeBSD.org> | 2003-01-13 01:48:19 +0800 |
---|---|---|
committer | alane <alane@FreeBSD.org> | 2003-01-13 01:48:19 +0800 |
commit | e3cffc3b09219030cbf7364f6e9ad8d2ee57c267 (patch) | |
tree | c754ed9627602791ff71d834853bf7b8f03bcef4 /www/zope210/Makefile | |
parent | 498860b97a010586a6f0cffda596f2caa9606c79 (diff) | |
download | freebsd-ports-gnome-e3cffc3b09219030cbf7364f6e9ad8d2ee57c267.tar.gz freebsd-ports-gnome-e3cffc3b09219030cbf7364f6e9ad8d2ee57c267.tar.zst freebsd-ports-gnome-e3cffc3b09219030cbf7364f6e9ad8d2ee57c267.zip |
Updated to 2.6.0. Simon, you forgot to remove the temp files before making
the plist ;)
PR: 46168
Submitted by: Simon 'corecode' Schubert <corecode@eikonww2.eikon.e-technik.tu-muenchen.de>
Diffstat (limited to 'www/zope210/Makefile')
-rw-r--r-- | www/zope210/Makefile | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/www/zope210/Makefile b/www/zope210/Makefile index dff4a8834605..31ec2ea7089b 100644 --- a/www/zope210/Makefile +++ b/www/zope210/Makefile @@ -6,8 +6,7 @@ # PORTNAME= zope -PORTVERSION= 2.5.1 -PORTREVISION= 2 +PORTVERSION= 2.6.0 CATEGORIES= www python zope MASTER_SITES= http://www.zope.org/Products/Zope/${PORTVERSION}/ DISTNAME= Zope-${PORTVERSION}-src @@ -16,7 +15,6 @@ EXTRACT_SUFX= .tgz MAINTAINER= alane@FreeBSD.org USE_PYTHON= yes -PYTHON_VERSION= python2.1 DIST_SUBDIR= zope @@ -54,14 +52,6 @@ PLIST_SUB= ZOPEBASEDIR=${SZOPEBASEDIR} \ # 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} "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 @@ -69,6 +59,12 @@ pre-install: # since in there, Zope can live on its own. I can use Zope's own building # mechanism. do-install: + @if test ! -d ${CGIBINDIR}; then \ + ${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 @if [ -e ${ZOPEBASEDIR}/var/Data.fs ] ; then \ ${ECHO} "Saving existing Database to ${ZOPEBASEDIR}/var/Data.fs.preserve." ; \ ${MV} ${ZOPEBASEDIR}/var/Data.fs ${ZOPEBASEDIR}/var/Data.fs.preserve; \ |