pkgsrc/devel/p4/Makefile.common
schmonz 86e9a256ee Update to 2006.1, based on PR pkg/35287 by Marc Tooley. From the changelog:
* Client file tamper checking
* New client option 'SubmitOptions'
* Speedup of 'p4 submit' branched files
* 'Automatic' labels
* Improved management of remote depots
* New MaxLockTime in 'p4 group'
* Improved license file handling
* User file access tracking
* 'p4 integrate' improvements
* Optimization of head revision operations
* Speedup for the 'integ' command
* Early release of db.working/db.resolve during sync
* Server Performance Tracking
* Spec depot interferes less with other commands
* Special handling for @changelist
* Speedup for clients with many opened files
* External authentication triggers
* UTF-16 support
* Speedup for the 'dirs' command
* Speedup for the 'obliterate' command
* Btree passive reorganization
* MapState simplification
* Spec depot
* Partial filetypes
* Delete triggers
* Authorization and security levels
* New login/logout commands
* New trigger support
* New indirect integration default
* New smart resolve logic
* Filepaths that contain characters @#%* can be added to the depot
* New tag command provides easy way to assign a label to a filelist
* Optimization for frequent syncs
* Label use speedups
* Locking and memory use improvements
* Speedups for large client views and protections tables
* Indirect integration much faster
* New monitor command displays status of running p4 processes
* Integrate across distant branches
* New annotate command shows history of lines in a file
* Sharing clients using multiple client roots
* Sprucing up diffs
* tempobj filetype redux
* New protection level for semi-super users

and a bunch of other features and bug fixes.
2007-03-15 07:14:27 +00:00

60 lines
1.3 KiB
Makefile

# $NetBSD: Makefile.common,v 1.11 2007/03/15 07:14:27 schmonz Exp $
#
P4_VERS= 2006.1
PKGNAME= ${DISTNAME}-${P4_VERS}
CATEGORIES= devel scm
MAINTAINER= schmonz@NetBSD.org
NO_CONFIGURE= yes
NO_BUILD= yes
WRKSRC= ${WRKDIR}
DIST_SUBDIR= perforce
.if defined(P4BINONLY)
DIST_SUBDIR= perforce/${P4ARCH}
MASTER_SITES= ftp://ftp.perforce.com/pub/perforce/r06.1/bin.${P4ARCH}/
DISTFILES= ${DISTNAME}
EXTRACT_ONLY= # none
_STRIPFLAG_INSTALL= # none
.include "../../mk/bsd.prefs.mk"
. if ${OPSYS} == "Darwin"
. if ${OS_VERSION:M8.*}
. if ${MACHINE_ARCH} == "i386"
P4ARCH?= darwin80x86
. elif ${MACHINE_ARCH} == "powerpc"
P4ARCH?= darwin80ppc
. endif
. endif
. elif ${OPSYS} == "Linux"
. if ${OS_VERSION:M2.6.*}
. if ${MACHINE_ARCH} == "i386"
P4ARCH?= linux26x86
. elif ${MACHINE_ARCH} == "x86_64"
P4ARCH?= linux26x86_64
. endif
. elif ${OS_VERSION:M2.4.*}
. if ${MACHINE_ARCH} == "i386"
P4ARCH?= linux24x86
. endif
. endif
. elif ${OPSYS} == "NetBSD"
. if ${OS_VERSION:M3.1.*} || ${OS_VERSION:M4.*}
. if ${MACHINE_ARCH} == "i386"
P4ARCH?= netbsd31x86
. elif ${MACHINE_ARCH} == "x86_64"
P4ARCH?= netbsd31x86_64
. endif
. endif
. endif
. if !defined(P4ARCH)
NOT_FOR_PLATFORM= ${MACHINE_PLATFORM}
. endif
.endif # P4BINONLY