summaryrefslogtreecommitdiffstats
path: root/sysutils/system-tools-backends
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2008-03-24 13:30:51 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2008-03-24 13:30:51 +0800
commita6888a2a213b49d671bf658e58428d9a1d342f66 (patch)
tree73b4b8892d2a32df0f24d16b19046bc481baf971 /sysutils/system-tools-backends
parenta740241125f843ca61310f787f0eea0d5b40784f (diff)
downloadmarcuscom-ports-a6888a2a213b49d671bf658e58428d9a1d342f66.tar
marcuscom-ports-a6888a2a213b49d671bf658e58428d9a1d342f66.tar.gz
marcuscom-ports-a6888a2a213b49d671bf658e58428d9a1d342f66.tar.bz2
marcuscom-ports-a6888a2a213b49d671bf658e58428d9a1d342f66.tar.lz
marcuscom-ports-a6888a2a213b49d671bf658e58428d9a1d342f66.tar.xz
marcuscom-ports-a6888a2a213b49d671bf658e58428d9a1d342f66.tar.zst
marcuscom-ports-a6888a2a213b49d671bf658e58428d9a1d342f66.zip
Remove these ports now that they have been merged into the FreeBSD ports tree.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@10818 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'sysutils/system-tools-backends')
-rw-r--r--sysutils/system-tools-backends/Makefile40
-rw-r--r--sysutils/system-tools-backends/distinfo3
-rw-r--r--sysutils/system-tools-backends/files/patch-Users_Users.pm47
-rw-r--r--sysutils/system-tools-backends/files/patch-dispatcher_main.c11
-rw-r--r--sysutils/system-tools-backends/pkg-descr4
-rw-r--r--sysutils/system-tools-backends/pkg-plist62
6 files changed, 0 insertions, 167 deletions
diff --git a/sysutils/system-tools-backends/Makefile b/sysutils/system-tools-backends/Makefile
deleted file mode 100644
index 35890cb61..000000000
--- a/sysutils/system-tools-backends/Makefile
+++ /dev/null
@@ -1,40 +0,0 @@
-# New ports collection makefile for: system-tools-backends
-# Date created: 11 February 2005
-# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
-#
-# $FreeBSD$
-# $MCom: ports/sysutils/system-tools-backends/Makefile,v 1.50 2008/03/05 18:25:57 mezz Exp $
-#
-
-PORTNAME= system-tools-backends
-PORTVERSION= 2.6.0
-CATEGORIES= sysutils gnome
-MASTER_SITES= GNOME
-DIST_SUBDIR= gnome2
-
-MAINTAINER= gnome@FreeBSD.org
-COMMENT= Backend system admin scripts for gnome-system-tools
-
-BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Net/DBus.pm:${PORTSDIR}/devel/p5-Net-DBus
-LIB_DEPENDS= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \
- polkit-dbus.2:${PORTSDIR}/sysutils/policykit
-RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Net/DBus.pm:${PORTSDIR}/devel/p5-Net-DBus
-
-USE_BZIP2= yes
-USE_GMAKE= yes
-USE_PERL5= yes
-USE_GNOME= gnomehack intlhack glib20
-GNU_CONFIGURE= yes
-USE_GNOME_SUBR= yes
-CONFIGURE_ARGS= --with-stb-group=wheel \
- --localstatedir=/var
-CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
- LDFLAGS="-L${LOCALBASE}/lib"
-
-.include <bsd.port.pre.mk>
-
-.if ${PERL_LEVEL} <= 500800
-RUN_DEPENDS+= ${SITE_PERL}/File/Temp.pm:${PORTSDIR}/devel/p5-File-Temp
-.endif
-
-.include <bsd.port.post.mk>
diff --git a/sysutils/system-tools-backends/distinfo b/sysutils/system-tools-backends/distinfo
deleted file mode 100644
index 3e804006b..000000000
--- a/sysutils/system-tools-backends/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (gnome2/system-tools-backends-2.6.0.tar.bz2) = faf321012e92b72305878cd684547c54
-SHA256 (gnome2/system-tools-backends-2.6.0.tar.bz2) = 5c35820a7a3d7fc3af5c6e3ce7c7529359809e486fdafecb68601ac4d2bfa6f0
-SIZE (gnome2/system-tools-backends-2.6.0.tar.bz2) = 421806
diff --git a/sysutils/system-tools-backends/files/patch-Users_Users.pm b/sysutils/system-tools-backends/files/patch-Users_Users.pm
deleted file mode 100644
index 5e2598972..000000000
--- a/sysutils/system-tools-backends/files/patch-Users_Users.pm
+++ /dev/null
@@ -1,47 +0,0 @@
---- Users/Users.pm.orig Thu Oct 5 09:27:21 2006
-+++ Users/Users.pm Sun Apr 22 23:05:41 2007
-@@ -458,7 +458,7 @@
-
- if ($Utils::Backend::tool{"system"} eq "FreeBSD")
- {
-- $command = "$cmd_pw userdel -n \'" . $$user[$LOGIN] . "\' ";
-+ $command = "$cmd_pw userdel -n \'" . $$user[$LOGIN] . "\' -r ";
- }
- else
- {
-@@ -538,10 +538,10 @@
- {
- my $pwdpipe;
- my $home;
-+ my $user;
-
-- # FreeBSD doesn't create the home directory
- $home = $$user[$HOME];
-- &Utils::File::run ("$tool_mkdir -p $home");
-+ $user = $$user[$LOGIN];
-
- $command = "$cmd_pw useradd " .
- " -n \'" . $$user[$LOGIN] . "\'" .
-@@ -549,11 +549,12 @@
- " -d \'" . $$user[$HOME] . "\'" .
- " -g \'" . $$user[$GID] . "\'" .
- " -s \'" . $$user[$SHELL] . "\'" .
-- " -H 0"; # pw(8) reads password from STDIN
-+ " -m -h 0"; # pw(8) reads password from STDIN
-
- $pwdpipe = &Utils::File::run_pipe_write ($command);
- print $pwdpipe $$user[$PASSWD];
- &Utils::File::close_file ($pwdpipe);
-+ &Utils::File::run ("chown -R $user $home");
- }
- elsif ($Utils::Backend::tool{"system"} eq "SunOS")
- {
-@@ -629,7 +630,7 @@
- " -d \'" . $$new_user[$HOME] . "\'" .
- " -g \'" . $$new_user[$GID] . "\'" .
- " -s \'" . $$new_user[$SHELL] . "\'" .
-- " -H 0"; # pw(8) reads password from STDIN
-+ " -h 0"; # pw(8) reads password from STDIN
-
- $pwdpipe = &Utils::File::run_pipe_write ($command);
- print $pwdpipe $$new_user[$PASSWD];
diff --git a/sysutils/system-tools-backends/files/patch-dispatcher_main.c b/sysutils/system-tools-backends/files/patch-dispatcher_main.c
deleted file mode 100644
index b575cbfd4..000000000
--- a/sysutils/system-tools-backends/files/patch-dispatcher_main.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- dispatcher/main.c.orig 2007-10-29 20:36:16.890317344 -0400
-+++ dispatcher/main.c 2007-10-29 20:37:02.584773483 -0400
-@@ -47,7 +47,7 @@
-
- setsid ();
-
-- if ((pidfile_fd = open (LOCALSTATEDIR "/run/system-tools-backends.pid", O_CREAT | O_WRONLY)) != -1)
-+ if ((pidfile_fd = open (LOCALSTATEDIR "/run/system-tools-backends.pid", O_CREAT | O_WRONLY, 0600)) != -1)
- {
- str = g_strdup_printf ("%d", getpid ());
- write (pidfile_fd, str, strlen (str));
diff --git a/sysutils/system-tools-backends/pkg-descr b/sysutils/system-tools-backends/pkg-descr
deleted file mode 100644
index 3434030ae..000000000
--- a/sysutils/system-tools-backends/pkg-descr
+++ /dev/null
@@ -1,4 +0,0 @@
-System-tools-backends is a collection of scripts (mostly Perl) used by
-gnome-system-tools to perform system administration tasks.
-
-WWW: http://www.gnome.org/projects/gst/
diff --git a/sysutils/system-tools-backends/pkg-plist b/sysutils/system-tools-backends/pkg-plist
deleted file mode 100644
index c67960723..000000000
--- a/sysutils/system-tools-backends/pkg-plist
+++ /dev/null
@@ -1,62 +0,0 @@
-bin/system-tools-backends
-etc/dbus-1/system.d/system-tools-backends.conf
-libdata/pkgconfig/system-tools-backends-2.0.pc
-share/PolicyKit/policy/system-tools-backends.policy
-share/dbus-1/system-services/org.freedesktop.SystemToolsBackends.GroupsConfig.service
-share/dbus-1/system-services/org.freedesktop.SystemToolsBackends.HostsConfig.service
-share/dbus-1/system-services/org.freedesktop.SystemToolsBackends.IfacesConfig.service
-share/dbus-1/system-services/org.freedesktop.SystemToolsBackends.NFSConfig.service
-share/dbus-1/system-services/org.freedesktop.SystemToolsBackends.NTPConfig.service
-share/dbus-1/system-services/org.freedesktop.SystemToolsBackends.Platform.service
-share/dbus-1/system-services/org.freedesktop.SystemToolsBackends.SMBConfig.service
-share/dbus-1/system-services/org.freedesktop.SystemToolsBackends.ServicesConfig.service
-share/dbus-1/system-services/org.freedesktop.SystemToolsBackends.TimeConfig.service
-share/dbus-1/system-services/org.freedesktop.SystemToolsBackends.UserConfig.service
-share/dbus-1/system-services/org.freedesktop.SystemToolsBackends.UsersConfig.service
-share/dbus-1/system-services/org.freedesktop.SystemToolsBackends.service
-share/system-tools-backends-2.0/files/general_gprs_chatscript
-share/system-tools-backends-2.0/files/general_isdn_ppp_options
-share/system-tools-backends-2.0/files/general_pppoe_ppp_options
-share/system-tools-backends-2.0/scripts/GroupsConfig.pm
-share/system-tools-backends-2.0/scripts/HostsConfig.pm
-share/system-tools-backends-2.0/scripts/IfacesConfig.pm
-share/system-tools-backends-2.0/scripts/Init/Services.pm
-share/system-tools-backends-2.0/scripts/Init/ServicesList.pm
-share/system-tools-backends-2.0/scripts/NFSConfig.pm
-share/system-tools-backends-2.0/scripts/NTPConfig.pm
-share/system-tools-backends-2.0/scripts/Network/Hosts.pm
-share/system-tools-backends-2.0/scripts/Network/Ifaces.pm
-share/system-tools-backends-2.0/scripts/Platform.pm
-share/system-tools-backends-2.0/scripts/SMBConfig.pm
-share/system-tools-backends-2.0/scripts/ServicesConfig.pm
-share/system-tools-backends-2.0/scripts/Shares/NFS.pm
-share/system-tools-backends-2.0/scripts/Shares/SMB.pm
-share/system-tools-backends-2.0/scripts/StbObject.pm
-share/system-tools-backends-2.0/scripts/SystemToolsBackends.pl
-share/system-tools-backends-2.0/scripts/Time/NTP.pm
-share/system-tools-backends-2.0/scripts/Time/TimeDate.pm
-share/system-tools-backends-2.0/scripts/TimeConfig.pm
-share/system-tools-backends-2.0/scripts/UserConfig.pm
-share/system-tools-backends-2.0/scripts/Users/Groups.pm
-share/system-tools-backends-2.0/scripts/Users/Shells.pm
-share/system-tools-backends-2.0/scripts/Users/Users.pm
-share/system-tools-backends-2.0/scripts/UsersConfig.pm
-share/system-tools-backends-2.0/scripts/Utils/Backend.pm
-share/system-tools-backends-2.0/scripts/Utils/DBus.pm
-share/system-tools-backends-2.0/scripts/Utils/File.pm
-share/system-tools-backends-2.0/scripts/Utils/Monitor.pm
-share/system-tools-backends-2.0/scripts/Utils/Parse.pm
-share/system-tools-backends-2.0/scripts/Utils/Platform.pm
-share/system-tools-backends-2.0/scripts/Utils/Replace.pm
-share/system-tools-backends-2.0/scripts/Utils/Report.pm
-share/system-tools-backends-2.0/scripts/Utils/Util.pm
-share/system-tools-backends-2.0/scripts/Utils/XML.pm
-@dirrm share/system-tools-backends-2.0/scripts/Utils
-@dirrm share/system-tools-backends-2.0/scripts/Users
-@dirrm share/system-tools-backends-2.0/scripts/Time
-@dirrm share/system-tools-backends-2.0/scripts/Shares
-@dirrm share/system-tools-backends-2.0/scripts/Network
-@dirrm share/system-tools-backends-2.0/scripts/Init
-@dirrm share/system-tools-backends-2.0/scripts
-@dirrm share/system-tools-backends-2.0/files
-@dirrm share/system-tools-backends-2.0