Sat Aug 18 16:30:00 2012 UTC ()
remove support for suse 11.3.


(chs)
diff -r1.215 -r1.216 pkgsrc/mk/defaults/mk.conf
diff -r1.6 -r1.7 pkgsrc/mk/emulator/linux-suse.mk
diff -r1.18 -r1.19 pkgsrc/mk/emulator/linux.mk

cvs diff -r1.215 -r1.216 pkgsrc/mk/defaults/mk.conf (expand / switch to unified diff)

--- pkgsrc/mk/defaults/mk.conf 2012/07/30 07:03:46 1.215
+++ pkgsrc/mk/defaults/mk.conf 2012/08/18 16:29:59 1.216
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: mk.conf,v 1.215 2012/07/30 07:03:46 sbd Exp $ 1# $NetBSD: mk.conf,v 1.216 2012/08/18 16:29:59 chs Exp $
2# 2#
3 3
4# This file provides default values for variables that may be overridden 4# This file provides default values for variables that may be overridden
5# in the MAKECONF file, which is /etc/mk.conf by default. 5# in the MAKECONF file, which is /etc/mk.conf by default.
6# 6#
7# Note: This file is included after the MAKECONF file, so you cannot query 7# Note: This file is included after the MAKECONF file, so you cannot query
8# these default values in the MAKECONF using the ".if" and ".for" 8# these default values in the MAKECONF using the ".if" and ".for"
9# preprocessing directives. 9# preprocessing directives.
10 10
11# ************************************************************************ 11# ************************************************************************
12# NOTE TO PEOPLE EDITING THIS FILE - USE LEADING SPACES, NOT LEADING TABS. 12# NOTE TO PEOPLE EDITING THIS FILE - USE LEADING SPACES, NOT LEADING TABS.
13# ************************************************************************ 13# ************************************************************************
14 14
@@ -1642,27 +1642,27 @@ SILC_CLIENT_WITH_PERL?= YES @@ -1642,27 +1642,27 @@ SILC_CLIENT_WITH_PERL?= YES
1642SSH_SUID?= NO 1642SSH_SUID?= NO
1643# Used in ssh to enable setuid installation of "ssh" binary. 1643# Used in ssh to enable setuid installation of "ssh" binary.
1644# Possible: YES, or NO. 1644# Possible: YES, or NO.
1645# Default: NO 1645# Default: NO
1646 1646
1647SSYNC_PAWD?= pwd 1647SSYNC_PAWD?= pwd
1648# If you are using amd you'll want to use pawd instead of pwd to derive 1648# If you are using amd you'll want to use pawd instead of pwd to derive
1649# the current working directory. 1649# the current working directory.
1650# Possible: pawd, pwd 1650# Possible: pawd, pwd
1651# Default: pwd 1651# Default: pwd
1652 1652
1653#SUSE_PREFER?= 10.0 1653#SUSE_PREFER?= 10.0
1654# Which version of the suse packages to prefer. 1654# Which version of the suse packages to prefer.
1655# Possible: 12.1, 11.3, 10.0 1655# Possible: 12.1, 10.0
1656# Default: depends on operating system version 1656# Default: depends on operating system version
1657 1657
1658TEX_DEFAULT?= teTeX3 1658TEX_DEFAULT?= teTeX3
1659# Specify the user's favorite latex implementation 1659# Specify the user's favorite latex implementation
1660# Possible values: teTeX3 1660# Possible values: teTeX3
1661# Default: teTeX3 1661# Default: teTeX3
1662 1662
1663#TEXMFSITE= 1663#TEXMFSITE=
1664# Used in TeXfamily package which depends on teTeX package to specify 1664# Used in TeXfamily package which depends on teTeX package to specify
1665# site-local texmf configuration. 1665# site-local texmf configuration.
1666# Since teTeX package uses ${PREFIX}/share/texmf directory, TeXfamily 1666# Since teTeX package uses ${PREFIX}/share/texmf directory, TeXfamily
1667# package uses ${PREFIX}/share/texmf.local. Therefore, though you can 1667# package uses ${PREFIX}/share/texmf.local. Therefore, though you can
1668# use /usr/local/share/texmf as TEXMFSITE, it causes a conflict if you 1668# use /usr/local/share/texmf as TEXMFSITE, it causes a conflict if you

cvs diff -r1.6 -r1.7 pkgsrc/mk/emulator/linux-suse.mk (expand / switch to unified diff)

--- pkgsrc/mk/emulator/linux-suse.mk 2012/03/21 13:44:59 1.6
+++ pkgsrc/mk/emulator/linux-suse.mk 2012/08/18 16:30:00 1.7
@@ -1,31 +1,28 @@ @@ -1,31 +1,28 @@
1# $NetBSD: linux-suse.mk,v 1.6 2012/03/21 13:44:59 obache Exp $ 1# $NetBSD: linux-suse.mk,v 1.7 2012/08/18 16:30:00 chs Exp $
2# 2#
3# SuSE Linux 3# SuSE Linux
4# 4#
5 5
6# When building the SuSE packages, force the Linux type to be the specific 6# When building the SuSE packages, force the Linux type to be the specific
7# version of SuSE that is being built. 7# version of SuSE that is being built.
8# 8#
9.if defined(SUSE_PKG) && defined(SUSE_VERSION) 9.if defined(SUSE_PKG) && defined(SUSE_VERSION)
10EMUL_TYPE.linux= suse-${SUSE_VERSION} 10EMUL_TYPE.linux= suse-${SUSE_VERSION}
11.endif 11.endif
12 12
13# EMUL_TYPE.linux can be "suse" or "suse-[0-9]*". If the former, then use 13# EMUL_TYPE.linux can be "suse" or "suse-[0-9]*". If the former, then use
14# the default SuSE version, otherwise use the specific version requested. 14# the default SuSE version, otherwise use the specific version requested.
15# 15#
16.if !empty(EMUL_TYPE.linux:Msuse-10.[0x]) 16.if !empty(EMUL_TYPE.linux:Msuse-10.[0x])
17. include "${PKGSRCDIR}/emulators/suse100_linux/emulator.mk" 17. include "${PKGSRCDIR}/emulators/suse100_linux/emulator.mk"
18 18
19.elif !empty(EMUL_TYPE.linux:Msuse-11.[3x]) 
20. include "${PKGSRCDIR}/emulators/suse113_linux/emulator.mk" 
21 
22.elif !empty(EMUL_TYPE.linux:Msuse-12.[1x]) 19.elif !empty(EMUL_TYPE.linux:Msuse-12.[1x])
23. include "${PKGSRCDIR}/emulators/suse121_linux/emulator.mk" 20. include "${PKGSRCDIR}/emulators/suse121_linux/emulator.mk"
24 21
25.else 22.else
26EMUL_DISTRO= suse-0 23EMUL_DISTRO= suse-0
27PKG_FAIL_REASON+= "[linux-suse.mk] ${EMUL_TYPE.linux} is not a supported EMUL_TYPE.linux" 24PKG_FAIL_REASON+= "[linux-suse.mk] ${EMUL_TYPE.linux} is not a supported EMUL_TYPE.linux"
28.endif 25.endif
29 26
30# XXX There should be a check here to verify that ${EMUL_DISTRO} satisfies 27# XXX There should be a check here to verify that ${EMUL_DISTRO} satisfies
31# XXX suse>=${SUSE_VERSION_REQD}. 28# XXX suse>=${SUSE_VERSION_REQD}.

cvs diff -r1.18 -r1.19 pkgsrc/mk/emulator/linux.mk (expand / switch to unified diff)

--- pkgsrc/mk/emulator/linux.mk 2012/06/16 14:21:25 1.18
+++ pkgsrc/mk/emulator/linux.mk 2012/08/18 16:30:00 1.19
@@ -1,33 +1,30 @@ @@ -1,33 +1,30 @@
1# $NetBSD: linux.mk,v 1.18 2012/06/16 14:21:25 obache Exp $ 1# $NetBSD: linux.mk,v 1.19 2012/08/18 16:30:00 chs Exp $
2# 2#
3# Linux binary emulation framework 3# Linux binary emulation framework
4# 4#
5 5
6.if ${OPSYS} == "Linux" 6.if ${OPSYS} == "Linux"
7. if ${EMUL_ARCH} == ${MACHINE_ARCH} 7. if ${EMUL_ARCH} == ${MACHINE_ARCH}
8EMUL_TYPE.linux?= native 8EMUL_TYPE.linux?= native
9. else 9. else
10EMUL_TYPE.linux?= none 10EMUL_TYPE.linux?= none
11. endif 11. endif
12.else 12.else
13 13
14# NetBSD 5.99.50 or later default to 11.3, otherwise 10.0 14# NetBSD 6 or later default to 12.1, otherwise 10.0
15.if ${OPSYS} == "NetBSD" && ${EMUL_ARCH} != "powerpc" 15.if ${OPSYS} == "NetBSD" && ${EMUL_ARCH} != "powerpc"
16. if empty(OS_VERSION:M[0-5].*)  16. if empty(OS_VERSION:M[0-5].*)
17SUSE_PREFER?= 12.1 17SUSE_PREFER?= 12.1
18. elif !empty(OS_VERSION:M5.99.[5-9][0-9]) || \ 
19 !empty(OS_VERSION:M5.99.[0-9][0-9][0-9]*) 
20SUSE_PREFER?= 11.3 
21. endif 18. endif
22.endif 19.endif
23SUSE_PREFER?= 10.0 20SUSE_PREFER?= 10.0
24 21
25.for _version_ in ${EMUL_REQD:Msuse>=*:S/suse>=//} 22.for _version_ in ${EMUL_REQD:Msuse>=*:S/suse>=//}
26SUSE_VERSION_REQD?= ${_version_} 23SUSE_VERSION_REQD?= ${_version_}
27.endfor 24.endfor
28.if !defined(SUSE_VERSION_REQD) || ${SUSE_PREFER} > ${SUSE_VERSION_REQD} 25.if !defined(SUSE_VERSION_REQD) || ${SUSE_PREFER} > ${SUSE_VERSION_REQD}
29SUSE_VERSION_REQD= ${SUSE_PREFER} 26SUSE_VERSION_REQD= ${SUSE_PREFER}
30.endif 27.endif
31 28
32EMUL_TYPE.linux?= suse-${SUSE_VERSION_REQD} 29EMUL_TYPE.linux?= suse-${SUSE_VERSION_REQD}
33.endif 30.endif