diff options
author | vs <vs@FreeBSD.org> | 2004-06-05 07:11:24 +0000 |
---|---|---|
committer | vs <vs@FreeBSD.org> | 2004-06-05 07:11:24 +0000 |
commit | 04806a816d6f4b3b6dd8a53557a949eb338b568f (patch) | |
tree | 44114e1f416bac12849438693407a8813d632657 /www/urchin5/Makefile | |
parent | e5bd552d4e181705d01ddc810f3163ba20e181cd (diff) | |
download | FreeBSD-ports-04806a816d6f4b3b6dd8a53557a949eb338b568f.zip FreeBSD-ports-04806a816d6f4b3b6dd8a53557a949eb338b568f.tar.gz |
Update to 5.600.r2
PR: ports/65792, ports/66900
Submitted by: Doug Silver / Urchin.com
Diffstat (limited to 'www/urchin5/Makefile')
-rw-r--r-- | www/urchin5/Makefile | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/www/urchin5/Makefile b/www/urchin5/Makefile index f49570c..60084dc 100644 --- a/www/urchin5/Makefile +++ b/www/urchin5/Makefile @@ -6,10 +6,10 @@ # PORTNAME= urchin -PORTVERSION= 5.501 +PORTVERSION= 5.600.r2 CATEGORIES= www MASTER_SITES= ftp://ftp.urchin.com/pub/urchin5/ -DISTNAME= urchin5501_freebsd4x +DISTNAME= urchin5600r2_freebsd4x MAINTAINER= freebsd@urchin.com COMMENT= The most powerful web traffic analysis program available @@ -20,8 +20,7 @@ RESTRICTED= "Commercial software, also comes bundled with Apache-SSL" NO_BUILD= YES NO_CDROM= "Our installer must be run for proper permissions to be set" NO_PACKAGE= "Our installer must be run for proper permissions to be set" - -BROKEN= "Does not build with a read-only ports tree" +WRKSRC= ${WRKDIR} # Feel free to change this to the user you want Urchin 5 to # run as and the files to be owned by (except root). It's *strongly* @@ -35,22 +34,21 @@ QUIET= -q START_SERVERS= yes do-configure: - ${CP} ${FILESDIR}/install.sh ./work + ${CP} ${FILESDIR}/install.sh ${WRKSRC} do-install: @if test -f ${INSTALLDIR}/data/conf/uconf.uni; then \ ${ECHO_CMD} "The Urchin configuration files already exist,"; \ ${ECHO_CMD} "so I will attempt to do an upgrade instead of a new installation."; \ ${ECHO_CMD} ; \ - cd ./work; \ + cd ${WRKSRC}; \ ${SH} ./install.sh ${QUIET} -d ${INSTALLDIR} -p ${PORT} -u ${USER} -g ${GROUP} -s ${START_SERVERS} -m; \ else \ - cd ./work; \ + cd ${WRKSRC}; \ ${SH} ./install.sh ${QUIET} -d ${INSTALLDIR} -p ${PORT} -u ${USER} -g ${GROUP} -s ${START_SERVERS} -n; \ fi post-install: - ${INSTALL_DATA} ${INSTALLDIR}/util/urchin_daemons ${PREFIX}/etc/rc.d/urchin5_daemons.sh-dist @if [ ! -f ${PREFIX}/etc/rc.d/urchin5_daemons.sh ]; then \ ${ECHO} "Installing ${PREFIX}/etc/rc.d/urchin5_daemons.sh startup file."; \ ${INSTALL_SCRIPT} ${INSTALLDIR}/util/urchin_daemons ${PREFIX}/etc/rc.d/urchin5_daemons.sh; \ |