diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-08-26 13:01:00 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-08-26 13:01:00 +0800 |
commit | 59237a4a8e0eacf109312f917a912facf57843f2 (patch) | |
tree | 5be99a218f04ba64ce6bfe3bf58e570b54aec2ec /sysutils | |
parent | e399631640fd9c7e2e0b9212e459f035a0e28fe7 (diff) | |
download | marcuscom-ports-59237a4a8e0eacf109312f917a912facf57843f2.tar.gz marcuscom-ports-59237a4a8e0eacf109312f917a912facf57843f2.tar.zst marcuscom-ports-59237a4a8e0eacf109312f917a912facf57843f2.zip |
Add support for FreeBSD 7.X.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@4640 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'sysutils')
9 files changed, 167 insertions, 4 deletions
diff --git a/sysutils/system-tools-backends/Makefile b/sysutils/system-tools-backends/Makefile index 9b0714ab7..8a4b4c7e1 100644 --- a/sysutils/system-tools-backends/Makefile +++ b/sysutils/system-tools-backends/Makefile @@ -3,11 +3,12 @@ # Whom: Joe Marcus Clarke <marcus@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/sysutils/system-tools-backends/Makefile,v 1.9 2005/08/09 04:35:55 marcus Exp $ +# $MCom: ports/sysutils/system-tools-backends/Makefile,v 1.10 2005/08/24 01:23:22 marcus Exp $ # PORTNAME= system-tools-backends PORTVERSION= 1.3.92 +PORTREVISION= 1 CATEGORIES= sysutils gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/1.3 diff --git a/sysutils/system-tools-backends/files/patch-network-conf.in b/sysutils/system-tools-backends/files/patch-network-conf.in new file mode 100644 index 000000000..e23863c28 --- /dev/null +++ b/sysutils/system-tools-backends/files/patch-network-conf.in @@ -0,0 +1,11 @@ +--- network-conf.in.orig Fri Aug 26 00:54:38 2005 ++++ network-conf.in Fri Aug 26 00:55:10 2005 +@@ -75,7 +75,7 @@ + "conectiva-9", "conectiva-10", + "vine-3.0", "vine-3.1", + "slackware-9.1.0", "slackware-10.0.0", "slackware-10.1.0", +- "gentoo", "vlos-1.2", "freebsd-5", "freebsd-6"); ++ "gentoo", "vlos-1.2", "freebsd-5", "freebsd-6", "freebsd-7"); + + $description =<<"end_of_description;"; + Configures all network parameters and interfaces. diff --git a/sysutils/system-tools-backends/files/patch-network.pl.in b/sysutils/system-tools-backends/files/patch-network.pl.in index 1b4422df9..22a06fbb3 100644 --- a/sysutils/system-tools-backends/files/patch-network.pl.in +++ b/sysutils/system-tools-backends/files/patch-network.pl.in @@ -1,6 +1,14 @@ ---- network.pl.in.orig Sat Jul 16 12:42:30 2005 -+++ network.pl.in Fri Jul 29 01:10:14 2005 -@@ -791,7 +791,7 @@ +--- network.pl.in.orig Tue Aug 23 05:58:01 2005 ++++ network.pl.in Fri Aug 26 00:56:03 2005 +@@ -522,6 +522,7 @@ + "vlos-1.2" => "debian-2.2", + "freebsd-5" => "debian-2.2", + "freebsd-6" => "debian-2.2", ++ "freebsd-7" => "debian-2.2", + ); + + return $cmd_map{$dist_map{$gst_dist}}; +@@ -791,7 +792,7 @@ $types_cache{$dev} = "modem"; } } @@ -9,3 +17,51 @@ { $types_cache{$dev} = "ethernet"; } +@@ -1803,6 +1804,7 @@ + "gentoo" => \&gst_network_deb22_get_file, + "freebsd-5" => \&gst_network_deb22_get_file, + "freebsd-6" => \&gst_network_deb22_get_file, ++ "freebsd-7" => \&gst_network_deb22_get_file, + ); + + $proc = $dist_map{$gst_dist}; +@@ -3906,6 +3908,7 @@ + "vlos-1.2" => "", + "freebsd-5" => "", + "freebsd-6" => "", ++ "freebsd-7" => "", + ); + + $dev = $dist_map {$gst_dist}; +@@ -4034,6 +4037,7 @@ + "vlos-1.2" => "vlos-1.2", + "freebsd-5" => "freebsd-5", + "freebsd-6" => "freebsd-5", ++ "freebsd-7" => "freebsd-5", + ); + + my %dist_tables = +@@ -4478,6 +4482,7 @@ + "vlos-1.2" => "vlos-1.2", + "freebsd-5" => "freebsd-5", + "freebsd-6" => "freebsd-5", ++ "freebsd-7" => "freebsd-5", + ); + + my %dist_tables = +@@ -5352,6 +5357,7 @@ + "vlos-1.2" => "vlos-1.2", + "freebsd-5" => "freebsd-5", + "freebsd-6" => "freebsd-5", ++ "freebsd-7" => "freebsd-5", + ); + + my %dist_tables = +@@ -5782,6 +5788,7 @@ + "vlos-1.2" => "vlos-1.2", + "freebsd-5" => "freebsd-5", + "freebsd-6" => "freebsd-5", ++ "freebsd-7" => "freebsd-5", + ); + + my %dist_tables = diff --git a/sysutils/system-tools-backends/files/patch-platform.pl.in b/sysutils/system-tools-backends/files/patch-platform.pl.in new file mode 100644 index 000000000..81ad3b2e9 --- /dev/null +++ b/sysutils/system-tools-backends/files/patch-platform.pl.in @@ -0,0 +1,10 @@ +--- platform.pl.in.orig Fri Aug 26 00:56:21 2005 ++++ platform.pl.in Fri Aug 26 00:56:36 2005 +@@ -77,6 +77,7 @@ + "freebsd-4" => "FreeBSD 4", + "freebsd-5" => "FreeBSD 5", + "freebsd-6" => "FreeBSD 6", ++ "freebsd-7" => "FreeBSD 7", + "gentoo" => "Gentoo Linux", + "vlos-1.2" => "Vida Linux OS 1.2", + "archlinux-0.7" => "Arch Linux 0.7", diff --git a/sysutils/system-tools-backends/files/patch-service.pl.in b/sysutils/system-tools-backends/files/patch-service.pl.in new file mode 100644 index 000000000..1162f2730 --- /dev/null +++ b/sysutils/system-tools-backends/files/patch-service.pl.in @@ -0,0 +1,18 @@ +--- service.pl.in.orig Fri Aug 26 00:57:01 2005 ++++ service.pl.in Fri Aug 26 00:57:13 2005 +@@ -227,6 +227,7 @@ + + "freebsd-5" => "freebsd-5", + "freebsd-6" => "freebsd-5", ++ "freebsd-7" => "freebsd-5", + ); + + %runlevels= +@@ -1571,6 +1572,7 @@ + + "freebsd-5" => \&gst_service_rcng_get_status, + "freebsd-6" => \&gst_service_rcng_get_status, ++ "freebsd-7" => \&gst_service_rcng_get_status, + ); + my $proc; + diff --git a/sysutils/system-tools-backends/files/patch-services-conf.in b/sysutils/system-tools-backends/files/patch-services-conf.in new file mode 100644 index 000000000..5a05ce271 --- /dev/null +++ b/sysutils/system-tools-backends/files/patch-services-conf.in @@ -0,0 +1,11 @@ +--- services-conf.in.orig Fri Aug 26 00:57:28 2005 ++++ services-conf.in Fri Aug 26 00:57:37 2005 +@@ -55,7 +55,7 @@ + "pld-1.0", "pld-1.1", "pld-1.99", + "slackware-9.1.0", "slackware-10.0.0", "slackware-10.1.0", + "vine-3.0", "vine-3.1", +- "gentoo", "vlos-1.2", "freebsd-5", "freebsd-6", "suse-9.0", "suse-9.1"); ++ "gentoo", "vlos-1.2", "freebsd-5", "freebsd-6", "freebsd-7", "suse-9.0", "suse-9.1"); + + $description =<<"end_of_description;"; + Configures which services are to be started or stopped at which runlevels diff --git a/sysutils/system-tools-backends/files/patch-shares-conf.in b/sysutils/system-tools-backends/files/patch-shares-conf.in new file mode 100644 index 000000000..5fa1e78a5 --- /dev/null +++ b/sysutils/system-tools-backends/files/patch-shares-conf.in @@ -0,0 +1,10 @@ +--- shares-conf.in.orig Fri Aug 26 00:57:50 2005 ++++ shares-conf.in Fri Aug 26 00:57:57 2005 +@@ -557,6 +557,7 @@ + "vlos-1.2" => "gentoo", + "freebsd-5" => "freebsd-5", + "freebsd-6" => "freebsd-5", ++ "freebsd-7" => "freebsd-5", + ); + + my %dist_table = diff --git a/sysutils/system-tools-backends/files/patch-time-conf.in b/sysutils/system-tools-backends/files/patch-time-conf.in new file mode 100644 index 000000000..1fe69aaf8 --- /dev/null +++ b/sysutils/system-tools-backends/files/patch-time-conf.in @@ -0,0 +1,27 @@ +--- time-conf.in.orig Fri Aug 26 00:58:10 2005 ++++ time-conf.in Fri Aug 26 00:58:28 2005 +@@ -71,7 +71,7 @@ + "slackware-8.0.0", "slackware-8.1", "slackware-9.0.0", "slackware-9.1.0", "slackware-10.0.0", "slackware-10.1.0", + "gentoo", "vlos-1.2", "pld-1.0", "pld-1.1", "pld-1.99", "fedora-1", "fedora-2", "fedora-3", "specifix", + "vine-3.0", "vine-3.1", +- "freebsd-5", "freebsd-6"); ++ "freebsd-5", "freebsd-6", "freebsd-7"); + + $description =<<"end_of_description;"; + Configures your system clock, timezone and time server list. +@@ -551,6 +551,7 @@ + + "freebsd-5" => "freebsd-5", + "freebsd-6" => "freebsd-5", ++ "freebsd-7" => "freebsd-5", + ); + + my %dist_tables = +@@ -782,6 +783,7 @@ + + "freebsd-5" => "freebsd-5", + "freebsd-6" => "freebsd-5", ++ "freebsd-7" => "freebsd-5", + ); + + my %dist_tables = diff --git a/sysutils/system-tools-backends/files/patch-users-conf.in b/sysutils/system-tools-backends/files/patch-users-conf.in new file mode 100644 index 000000000..11f701593 --- /dev/null +++ b/sysutils/system-tools-backends/files/patch-users-conf.in @@ -0,0 +1,19 @@ +--- users-conf.in.orig Fri Aug 26 00:58:40 2005 ++++ users-conf.in Fri Aug 26 00:58:54 2005 +@@ -76,7 +76,7 @@ + "debian-2.2", "debian-3.0", "debian-sarge", + "suse-7.0", "suse-9.0", "suse-9.1", "turbolinux-7.0", + "slackware-8.0.0", "slackware-8.1", "slackware-9.0.0", "slackware-9.1.0", "slackware-10.0.0", "slackware-10.1.0", +- "freebsd-4", "freebsd-5", "freebsd-6", ++ "freebsd-4", "freebsd-5", "freebsd-6", "freebsd-7", + "gentoo", "vlos-1.2", + "archlinux-0.7", + "pld-1.0", "pld-1.1", "pld-1.99", "fedora-1", "fedora-2", "fedora-3", "specifix", "vine-3.0", "vine-3.1"); +@@ -373,6 +373,7 @@ + 'freebsd-4' => $freebsd_logindefs_defaults, + 'freebsd-5' => $freebsd_logindefs_defaults, + 'freebsd-6' => $freebsd_logindefs_defaults, ++ 'freebsd-7' => $freebsd_logindefs_defaults, + 'suse-7.0' => $gentoo_logindefs_defaults, + 'suse-9.0' => $gentoo_logindefs_defaults, + 'suse-9.1' => $gentoo_logindefs_defaults, |