diff options
author | lth <lth@FreeBSD.org> | 2005-02-20 14:54:00 +0000 |
---|---|---|
committer | lth <lth@FreeBSD.org> | 2005-02-20 14:54:00 +0000 |
commit | 2efd0101fb592b008e87f4913449905a32d66b66 (patch) | |
tree | d81aaffc09da351e1d9d2a334bfbcb28f262fc62 /devel/p4p/Makefile | |
parent | 8175c910f74eca2ee0a617cb6dedb592b2724c21 (diff) | |
download | FreeBSD-ports-2efd0101fb592b008e87f4913449905a32d66b66.zip FreeBSD-ports-2efd0101fb592b008e87f4913449905a32d66b66.tar.gz |
- Now builds on amd64 [1]
- Fixed output redirection for p4web [2]
Submitted by: arved [1], "Ryan F." <ryan@kalama.no-ip.org> [2]
Diffstat (limited to 'devel/p4p/Makefile')
-rw-r--r-- | devel/p4p/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/devel/p4p/Makefile b/devel/p4p/Makefile index 5c2532d..bdf3771a 100644 --- a/devel/p4p/Makefile +++ b/devel/p4p/Makefile @@ -13,7 +13,6 @@ CATEGORIES= devel MASTER_SITES= ftp://ftp.perforce.com/pub/perforce/r${PORTVERSION}/bin.${PLATFORM}/ EXTRACT_SUFX= DISTFILES= ${BIN_FILES} ${SBIN_FILES} -DIST_SUBDIR= perforce/${VERSION}/${ARCH} EXTRACT_ONLY= # none MAINTAINER= lth@FreeBSD.org @@ -26,21 +25,24 @@ COMMENT= Perforce client and server ARCH!= /usr/bin/uname -p ARCH?= i386 -MD5_FILE= ${MASTERDIR}/distinfo.${ARCH} -.if ${ARCH} == i386 +.if (${ARCH} == i386) || (${ARCH} == amd64) +DIST_SUBDIR= perforce/${VERSION}/i386 VERSION= 04.2 -REVISION= 9 +REVISION= 10 PLATFORM= freebsd4 BIN_FILES= p4 SBIN_FILES= p4d p4ftpd p4p p4web REL_NOTES= http://www.perforce.com/perforce/doc.042/user/relnotes.txt +MD5_FILE= ${MASTERDIR}/distinfo.i386 .elif ${ARCH} == alpha +DIST_SUBDIR= perforce/${VERSION}/${ARCH} VERSION= 99.1 REVISION= 1 PLATFORM= freebsdaxp BIN_FILES= p4 SBIN_FILES= p4d REL_NOTES= http://www.perforce.com/perforce/doc.991/user/relnotes.txt +MD5_FILE= ${MASTERDIR}/distinfo.${ARCH} .else VERSION= 0 IGNORE= "Unsupported platform, sorry." |