diff options
author | bsam <bsam@FreeBSD.org> | 2008-04-30 03:20:52 +0800 |
---|---|---|
committer | bsam <bsam@FreeBSD.org> | 2008-04-30 03:20:52 +0800 |
commit | f99a860d84226273a882c42d7bdfb0a46a86495f (patch) | |
tree | d48159276363458ff7b1a17b2959cb5200f3b9ff /Mk | |
parent | ff6e0905aa9631ba6e5e272049dab0d24802628f (diff) | |
download | freebsd-ports-gnome-f99a860d84226273a882c42d7bdfb0a46a86495f.tar.gz freebsd-ports-gnome-f99a860d84226273a882c42d7bdfb0a46a86495f.tar.zst freebsd-ports-gnome-f99a860d84226273a882c42d7bdfb0a46a86495f.zip |
Add valid values fc6, f7 and f8:
. to USE_LINUX variable, so users can install linux ports which [1]
use AUTOMATIC_PLIST (while those values are assigned to
OVERRIDE_LINUX_BASE_PORT variable);
. to IGNORE message.
netchild said: "I don't think it will hurt if the fix for fc6 is committed.
There are users out there which already use the experimental 2.6.16 support,
and it would make their life easier."
me decided: "Why should we segragate f7/f8 users?" and committed f7/f8
parts as well.
PR: ports/122826 [1]
Submitted by: Naram Qashat <cyberbotx at cyberbotx.com> [1]
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.linux-rpm.mk | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/Mk/bsd.linux-rpm.mk b/Mk/bsd.linux-rpm.mk index 394a544c2ed7..658841da7a9c 100644 --- a/Mk/bsd.linux-rpm.mk +++ b/Mk/bsd.linux-rpm.mk @@ -1,7 +1,7 @@ #-*- mode: Makefile; tab-width: 4; -*- # ex:ts=4 # -# $FreeBSD: /tmp/pcvs/ports/Mk/bsd.linux-rpm.mk,v 1.11 2006-10-05 17:20:25 bsam Exp $ +# $FreeBSD: /tmp/pcvs/ports/Mk/bsd.linux-rpm.mk,v 1.12 2008-04-29 19:20:52 bsam Exp $ # # Variables: @@ -109,9 +109,15 @@ BRANDELF_FILES?= . if ${USE_LINUX} == "fc4" || ${USE_LINUX:L} == "yes" _LINUX_BASE_SUFFIX= fc4 +. elif ${USE_LINUX} == "fc6" +_LINUX_BASE_SUFFIX= fc6 +. elif ${USE_LINUX} == "f7" +_LINUX_BASE_SUFFIX= f7 +. elif ${USE_LINUX} == "f8" +_LINUX_BASE_SUFFIX= f8 . else # other linux_base ports do not provide a pkg-plist file -IGNORE= uses AUTOMATIC_PLIST with an unsupported USE_LINUX, \"${USE_LINUX}\". Supported values are \"yes\" and \"fc4\" +IGNORE= uses AUTOMATIC_PLIST with an unsupported USE_LINUX, \"${USE_LINUX}\". Supported values are \"yes\", \"fc4\", \"fc6\", \"f7\" and \"f8\" . endif PLIST?= ${WRKDIR}/.PLIST.linux-rpm |