From owner-svn-ports-all@FreeBSD.ORG Thu Oct 4 15:35:14 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 54590106564A; Thu, 4 Oct 2012 15:35:14 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3DFD68FC1A; Thu, 4 Oct 2012 15:35:14 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q94FZEZE078136; Thu, 4 Oct 2012 15:35:14 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q94FZEeX078131; Thu, 4 Oct 2012 15:35:14 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210041535.q94FZEeX078131@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 4 Oct 2012 15:35:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305261 - in head/misc: compat7x compat8x compat9x X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 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: Thu, 04 Oct 2012 15:35:14 -0000 Author: bapt Date: Thu Oct 4 15:35:13 2012 New Revision: 305261 URL: http://svn.freebsd.org/changeset/ports/305261 Log: lower a bit more the minimal version to install it. we want to be able to create the package from a N jail to be use on N+ systems Approved by: garga (maintainer via irc) Modified: head/misc/compat7x/Makefile head/misc/compat8x/Makefile head/misc/compat9x/Makefile Modified: head/misc/compat7x/Makefile ============================================================================== --- head/misc/compat7x/Makefile Thu Oct 4 15:06:16 2012 (r305260) +++ head/misc/compat7x/Makefile Thu Oct 4 15:35:13 2012 (r305261) @@ -27,8 +27,8 @@ USE_LDCONFIG= ${TARGET_DIR} .include -.if ${OSVERSION} < 800000 -IGNORE= is for FreeBSD 8.x and newer +.if ${OSVERSION} < 700000 +IGNORE= is for FreeBSD 7.x and newer .endif .if ${ARCH} == amd64 Modified: head/misc/compat8x/Makefile ============================================================================== --- head/misc/compat8x/Makefile Thu Oct 4 15:06:16 2012 (r305260) +++ head/misc/compat8x/Makefile Thu Oct 4 15:35:13 2012 (r305261) @@ -26,8 +26,8 @@ USE_LDCONFIG= ${TARGET_DIR} .include -.if ${OSVERSION} < 900000 -IGNORE= is for FreeBSD 9.x and newer +.if ${OSVERSION} < 800000 +IGNORE= is for FreeBSD 8.x and newer .endif .if ${ARCH} == amd64 Modified: head/misc/compat9x/Makefile ============================================================================== --- head/misc/compat9x/Makefile Thu Oct 4 15:06:16 2012 (r305260) +++ head/misc/compat9x/Makefile Thu Oct 4 15:35:13 2012 (r305261) @@ -26,8 +26,8 @@ USE_LDCONFIG= ${TARGET_DIR} .include -.if ${OSVERSION} < 1000000 -IGNORE= is for FreeBSD 10.x and newer +.if ${OSVERSION} < 900000 +IGNORE= is for FreeBSD 9.x and newer .endif .if ${ARCH} == amd64