freebsd-ports/devel/p4/Makefile.inc
Gordon Tetlow fa042ad457 Upgrade Perforce related ports to 2011.1/370818. Of note is the loss of
sparc64 and support for FreeBSD 5.x releases. Older versions of Perforce
are still supported and those needing support for those platforms can
download the last version at ftp://ftp.perforce.com/perforce/r10.2/

Submitted by:	gibbs@
Feature safe:	yes
2011-11-22 05:10:44 +00:00

23 lines
448 B
Makefile

# Figure out what to install
.if ${ARCH} == amd64
. if ${OSVERSION} >= 700043
PLATFORM= freebsd70x86_64
. elif ${OSVERSION} >= 600033
PLATFORM= freebsd60x86_64
. else
IGNORE= unsupported OS release, sorry
. endif
.elif ${ARCH} == i386
. if ${OSVERSION} >= 700043
PLATFORM= freebsd70x86
. elif ${OSVERSION} >= 600033
PLATFORM= freebsd60x86
. else
IGNORE= unsupported OS release, sorry
. endif
.else
IGNORE= unsupported OS release, sorry
.endif