diff options
author | SADA Kenji <sada@FreeBSD.org> | 1999-07-26 18:17:00 +0000 |
---|---|---|
committer | SADA Kenji <sada@FreeBSD.org> | 1999-07-26 18:17:00 +0000 |
commit | 521370ce3635a5e5ae2b2dfbfa1e79e9b76ce955 (patch) | |
tree | ad40472a273d14373fd25c247fd57ee226b6ea3f /devel/cvsweb3 | |
parent | 07aba06f10335deaa00babf2e8f62c6d6054dc51 (diff) | |
download | ports-521370ce3635a5e5ae2b2dfbfa1e79e9b76ce955.tar.gz ports-521370ce3635a5e5ae2b2dfbfa1e79e9b76ce955.zip |
Move category from net to devel.
Cope with package-build time problem.
Requested by: hoek
Notes
Notes:
svn path=/head/; revision=20354
Diffstat (limited to 'devel/cvsweb3')
-rw-r--r-- | devel/cvsweb3/Makefile | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/devel/cvsweb3/Makefile b/devel/cvsweb3/Makefile index 219912bc8427..4ea74948f53e 100644 --- a/devel/cvsweb3/Makefile +++ b/devel/cvsweb3/Makefile @@ -3,11 +3,11 @@ # Date created: 27 Jun 1999 # Whom: SADA Kenji <sada@FreeBSD.ORG> # -# $Id: Makefile,v 1.1.1.1 1999/06/28 17:26:34 sada Exp $ +# $Id: Makefile,v 1.1.1.1 1999/07/26 18:06:44 sada Exp $ # DISTNAME= cvsweb-1.0 -CATEGORIES= net www +CATEGORIES= devel www MASTER_SITES= http://www.freebsd.org/~fenner/cvsweb/ MAINTAINER= sada@FreeBSD.ORG @@ -28,11 +28,10 @@ do-configure: ${WRKSRC}/cvsweb > ${WRKDIR}/cvsweb do-install: - @if PKG_PREFIX=${PREFIX} ${SH} ${PKGREQ} ${PKGNAME} INSTALL; then \ - ${MKDIR} ${PREFIX}/www/cgi-bin; \ - ${INSTALL_SCRIPT} ${WRKDIR}/cvsweb ${PREFIX}/www/cgi-bin/; \ - else \ - exit 1; \ - fi +.if !defined(PACKAGE_BUILDING) + @if PKG_PREFIX=${PREFIX} ${SH} ${PKGREQ} ${PKGNAME} INSTALL +.endif + @${MKDIR} ${PREFIX}/www/cgi-bin + @${INSTALL_SCRIPT} ${WRKDIR}/cvsweb ${PREFIX}/www/cgi-bin/ .include <bsd.port.mk> |