From owner-svn-ports-all@FreeBSD.ORG Tue Mar 25 11:05:34 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DC06F2D0; Tue, 25 Mar 2014 11:05:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AF9CCB92; Tue, 25 Mar 2014 11:05:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s2PB5YYh043027; Tue, 25 Mar 2014 11:05:34 GMT (envelope-from garga@svn.freebsd.org) Received: (from garga@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s2PB5YY7043022; Tue, 25 Mar 2014 11:05:34 GMT (envelope-from garga@svn.freebsd.org) Message-Id: <201403251105.s2PB5YY7043022@svn.freebsd.org> From: Renato Botelho Date: Tue, 25 Mar 2014 11:05:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r349124 - in head/misc: compat7x compat8x compat9x X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Mar 2014 11:05:34 -0000 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@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 -.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@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 -.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@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 -.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