mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
fa042ad457
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
23 lines
448 B
Makefile
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
|