summaryrefslogtreecommitdiff
path: root/net/cvsup/Makefile
diff options
context:
space:
mode:
authorJohn Polstra <jdp@FreeBSD.org>2003-04-14 18:31:00 +0000
committerJohn Polstra <jdp@FreeBSD.org>2003-04-14 18:31:00 +0000
commita8fdbc0ec0ec506b2c4ec66e265c0009a3955260 (patch)
tree880e8efef12acc037575b0a9f54a294f1e11b56a /net/cvsup/Makefile
parentChase libxine shared library version (diff)
Update to version 16.1h. This version provides a portability fix
for glibc 2.3.2 on Linux. There are no significant functional changes. Add support for FreeBSD/sparc64 in the port Makefile. This requires the new version of Ezm3 (1.1) which I will commit soon. Drop support for versions of FreeBSD prior to 4.1-RELEASE.
Notes
Notes: svn path=/head/; revision=78973
Diffstat (limited to 'net/cvsup/Makefile')
-rw-r--r--net/cvsup/Makefile27
1 files changed, 11 insertions, 16 deletions
diff --git a/net/cvsup/Makefile b/net/cvsup/Makefile
index 2840bdbf5124..fbe591470f4d 100644
--- a/net/cvsup/Makefile
+++ b/net/cvsup/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= cvsup
-PORTVERSION?= 16.1g
+PORTVERSION?= 16.1h
PORTREVISION?= 0
CATEGORIES= net devel
MASTER_SITES= ${MASTER_SITE_FREEBSD_ORG}
@@ -37,26 +37,21 @@ M3FLAGS+= -DSTATIC
.include <bsd.port.pre.mk>
-.if ${PORTOBJFORMAT} == "aout"
-TARGET= FreeBSD2
-.elif ${ARCH} == "i386"
-.if ${OSVERSION} < 400011
-TARGET= FreeBSD3
-.else
-TARGET= FreeBSD4
-.endif
-.elif ${ARCH} == "alpha"
-.if ${OSVERSION} < 400011
-BROKEN= Not supported on older versions of FreeBSD/Alpha
+ONLY_FOR_ARCHS= alpha i386 sparc64
+
+.if ${OSVERSION} < 410000
+BROKEN= Not supported on versions earlier than 4.1-RELEASE
.endif
+
+.if ${ARCH} == "alpha"
TARGET= FBSD_ALPHA
+.elif ${ARCH} == "i386"
+TARGET= FreeBSD4
+.elif ${ARCH} == "sparc64"
+TARGET= FBSD_SPARC64
.endif
pre-fetch:
-.if !defined(TARGET)
- @${ECHO_MSG} "Cannot determine M3 target for this architecture"
- @${FALSE}
-.endif
.ifndef WITHOUT_X11
@${ECHO_MSG} "*****************************************************"
@${ECHO_MSG} "* To build CVSup without X11 (and without the GUI), *"