svn commit: r349124 - in head/misc: compat7x compat8x compat9x
Renato Botelho
garga at FreeBSD.org
Tue Mar 25 11:05:34 UTC 2014
Author: garga
Date: Tue Mar 25 11:05:33 2014
New Revision: 349124
URL: http://svnweb.freebsd.org/changeset/ports/349124
QAT: https://qat.redports.org/buildarchive/r349124/
Log:
- Fix LICENSE
- Replace USE_XZ by USES=tar:xz
- Fix OSVERSION check, compatNx should be allowed only on systems running N+1
Modified:
head/misc/compat7x/Makefile
head/misc/compat8x/Makefile
head/misc/compat9x/Makefile
Modified: head/misc/compat7x/Makefile
==============================================================================
--- head/misc/compat7x/Makefile Tue Mar 25 11:05:16 2014 (r349123)
+++ head/misc/compat7x/Makefile Tue Mar 25 11:05:33 2014 (r349124)
@@ -11,9 +11,9 @@ DISTNAME= ${PORTNAME}-${ARCH}-${PORTVERS
MAINTAINER= garga at FreeBSD.org
COMMENT= A convenience package to install the compat7x libraries
-LICENSE= BSD
+LICENSE= BSD2CLAUSE
-USE_XZ= yes
+USES= tar:xz
NO_BUILD= yes
ONLY_FOR_ARCHS= i386 amd64
PLIST= ${PKGDIR}/pkg-plist.${ARCH}
@@ -23,8 +23,8 @@ USE_LDCONFIG= ${TARGET_DIR}
.include <bsd.port.pre.mk>
-.if ${OSVERSION} < 700000
-IGNORE= is for FreeBSD 7.x and newer
+.if ${OSVERSION} < 800000
+IGNORE= is for FreeBSD 8.x and newer
.endif
.if ${ARCH} == amd64
Modified: head/misc/compat8x/Makefile
==============================================================================
--- head/misc/compat8x/Makefile Tue Mar 25 11:05:16 2014 (r349123)
+++ head/misc/compat8x/Makefile Tue Mar 25 11:05:33 2014 (r349124)
@@ -12,9 +12,9 @@ DISTNAME= ${PORTNAME}-${ARCH}-${PORTVERS
MAINTAINER= garga at FreeBSD.org
COMMENT= A convenience package to install the compat8x libraries
-LICENSE= BSD
+LICENSE= BSD2CLAUSE
-USE_XZ= yes
+USES= tar:xz
NO_BUILD= yes
ONLY_FOR_ARCHS= i386 amd64
PLIST= ${PKGDIR}/pkg-plist.${ARCH}
@@ -24,8 +24,8 @@ USE_LDCONFIG= ${TARGET_DIR}
.include <bsd.port.pre.mk>
-.if ${OSVERSION} < 800000
-IGNORE= is for FreeBSD 8.x and newer
+.if ${OSVERSION} < 900000
+IGNORE= is for FreeBSD 9.x and newer
.endif
# libstdc++.so.6 could be necessary to run an 8.x binary
Modified: head/misc/compat9x/Makefile
==============================================================================
--- head/misc/compat9x/Makefile Tue Mar 25 11:05:16 2014 (r349123)
+++ head/misc/compat9x/Makefile Tue Mar 25 11:05:33 2014 (r349124)
@@ -11,9 +11,9 @@ DISTNAME= ${PORTNAME}-${ARCH}-${PORTVERS
MAINTAINER= garga at FreeBSD.org
COMMENT= A convenience package to install the compat9x libraries
-LICENSE= BSD
+LICENSE= BSD2CLAUSE
-USE_XZ= yes
+USES= tar:xz
NO_BUILD= yes
ONLY_FOR_ARCHS= i386 amd64
PLIST= ${PKGDIR}/pkg-plist.${ARCH}
@@ -23,8 +23,8 @@ USE_LDCONFIG= ${TARGET_DIR}
.include <bsd.port.pre.mk>
-.if ${OSVERSION} < 900000
-IGNORE= is for FreeBSD 9.x and newer
+.if ${OSVERSION} < 1000000
+IGNORE= is for FreeBSD 10.x and newer
.endif
.if ${ARCH} == amd64
More information about the svn-ports-head
mailing list