diff options
author | Leonardo Boshell <leonardop@gentoo.org> | 2005-03-03 09:36:37 +0000 |
---|---|---|
committer | Leonardo Boshell <leonardop@gentoo.org> | 2005-03-03 09:36:37 +0000 |
commit | ed00f19b983253389e0dbdca451eacdc5dc7dd8e (patch) | |
tree | 6384872fa9cebb1ce4110a64fd2ab69d65747ab8 /app-admin | |
parent | New release (0.3.6). Removed old ebuild. (diff) | |
download | gentoo-2-ed00f19b983253389e0dbdca451eacdc5dc7dd8e.tar.gz gentoo-2-ed00f19b983253389e0dbdca451eacdc5dc7dd8e.tar.bz2 gentoo-2-ed00f19b983253389e0dbdca451eacdc5dc7dd8e.zip |
Removing old ebuilds
(Portage version: 2.0.51.18)
Diffstat (limited to 'app-admin')
9 files changed, 0 insertions, 227 deletions
diff --git a/app-admin/gnome-system-tools/files/digest-gnome-system-tools-0.33.0 b/app-admin/gnome-system-tools/files/digest-gnome-system-tools-0.33.0 deleted file mode 100644 index 572f12df0036..000000000000 --- a/app-admin/gnome-system-tools/files/digest-gnome-system-tools-0.33.0 +++ /dev/null @@ -1 +0,0 @@ -MD5 08efc3dff61a7a988bc2f8f5da67f4b8 gnome-system-tools-0.33.0.tar.bz2 1898103 diff --git a/app-admin/gnome-system-tools/files/digest-gnome-system-tools-0.34.0-r1 b/app-admin/gnome-system-tools/files/digest-gnome-system-tools-0.34.0-r1 deleted file mode 100644 index 51e083767478..000000000000 --- a/app-admin/gnome-system-tools/files/digest-gnome-system-tools-0.34.0-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 0cd6ad61cb86cce72b86fce3e439fd17 gnome-system-tools-0.34.0.tar.bz2 1891817 diff --git a/app-admin/gnome-system-tools/files/digest-gnome-system-tools-0.92.0 b/app-admin/gnome-system-tools/files/digest-gnome-system-tools-0.92.0 deleted file mode 100644 index 978153ee9f5d..000000000000 --- a/app-admin/gnome-system-tools/files/digest-gnome-system-tools-0.92.0 +++ /dev/null @@ -1 +0,0 @@ -MD5 1c2e3ae388e179b669ffa8d293bd17f1 gnome-system-tools-0.92.0.tar.bz2 2614845 diff --git a/app-admin/gnome-system-tools/files/digest-gnome-system-tools-1.0.2 b/app-admin/gnome-system-tools/files/digest-gnome-system-tools-1.0.2 deleted file mode 100644 index 560520aa7868..000000000000 --- a/app-admin/gnome-system-tools/files/digest-gnome-system-tools-1.0.2 +++ /dev/null @@ -1 +0,0 @@ -MD5 674611d3fb195fde940223821cfa6dda gnome-system-tools-1.0.2.tar.bz2 2766787 diff --git a/app-admin/gnome-system-tools/files/gnome-system-tools-0.34.0-fix-nopasswd-auth.patch b/app-admin/gnome-system-tools/files/gnome-system-tools-0.34.0-fix-nopasswd-auth.patch deleted file mode 100644 index f02f26ec89ed..000000000000 --- a/app-admin/gnome-system-tools/files/gnome-system-tools-0.34.0-fix-nopasswd-auth.patch +++ /dev/null @@ -1,97 +0,0 @@ ---- gnome-system-tools-0.34.0/backends/general.pl.in 2004-07-05 17:08:11.752058480 +0200 -+++ gnome-system-tools-0.34.0.az/backends/general.pl.in 2004-07-05 17:08:32.256941264 +0200 -@@ -323,6 +323,22 @@ - { - my ($name, $version, $description, $directives, @args) = @_; - my (%tool, $arg); -+ my @iargs = @_; -+ my $i; -+ -+ # used to sync with gst_auth_write_password() - it checks for -+ # "Backend Init" and then writes a CR -+ while ($arg = shift (@iargs)) -+ { -+ if ($arg eq "--pw-prompt") { -+ print "Backend Init"; -+ do { -+ $i = <STDIN>; -+ } while ($1 != "\n"); -+ goto end_pw_prompt_loop; -+ } -+ } -+end_pw_prompt_loop: - - # print a CR for synchronysm with the frontend - print "\n"; -@@ -369,7 +385,7 @@ - $tool{"do_report"} = $gst_do_report = 1; - &gst_report_set_threshold (99); - } -- else -+ elsif ($arg ne "--pw-prompt") - { - print STDERR "Error: Unrecognized option '$arg'.\n\n"; - &gst_print_usage (\%tool, 1); ---- gnome-system-tools-0.34.0/src/common/gst-auth.c 2004-07-05 17:08:02.965394256 +0200 -+++ gnome-system-tools-0.34.0.az/src/common/gst-auth.c 2004-07-05 17:08:25.608951912 +0200 -@@ -158,25 +158,34 @@ - gst_auth_write_password (GstTool *tool, gchar *pwd) - { - gchar *answer = "yes\n"; -- gboolean cont = FALSE; -+ gboolean cont = FALSE, authed = FALSE; - gchar *str; - - /* read all the su or ssh output and flush the descriptors */ - while (!cont) { -- str = gst_tool_read_from_backend (tool, "assword:", "/no)?", NULL); -+ str = gst_tool_read_from_backend (tool, "assword:", "/no)?", "ackend Init", NULL); - - /* FIXME: hope that someday we can get rid of this ssh output string parsing */ - if (g_strrstr (g_ascii_strup (str, -1), "AUTHENTICITY") != NULL) { - /* it's the "add to known hosts list" ssh's message, just answer "yes" */ - gst_tool_write_to_backend (tool, answer); - } else if (g_strrstr (g_ascii_strup (str, -1), "PASSWORD") != NULL) { -+ authed = TRUE; -+ gst_tool_write_to_backend (tool, pwd); -+ -+ /* we pass --pw-prompt to the backend when we try to auth with su or -+ * ssh - it then prints "Backend Init" to allow us to sync with it -+ * in case the user can su/ssh without a password (pam module in the -+ * case of su, or DSA key in the case of ssh */ -+ } else if (g_strrstr (g_ascii_strup (str, -1), "BACKEND INIT") != NULL) { -+ /* we need to write '\n' to the backend, as it will wait for a CR -+ * before it continues (if --pw-prompt was passed to it) */ -+ gst_tool_write_to_backend (tool, "\n"); - cont = TRUE; - } - - g_free (str); - } -- -- gst_tool_write_to_backend (tool, pwd); - } - - static GladeXML * -@@ -336,7 +345,9 @@ - g_string_append (command, "`pkg-config --variable=backenddir system-tools-backends`"); - g_string_append (command, "/"); - g_string_append (command, tool->script_name); -- g_string_append (command, " --report"); -+ /* --pw-prompt is for gst_auth_write_password() to be able to sync -+ * with the backends */ -+ g_string_append (command, " --pw-prompt --report"); - - if (tool->current_platform) { - g_string_append (command, " --platform "); -@@ -364,7 +375,9 @@ - command = g_string_new (NULL); - gst_auth_save_locale (command); - command = g_string_append (command, tool->script_path); -- command = g_string_append (command, " --report"); -+ /* --pw-prompt is for gst_auth_write_password() to be able to sync -+ * with the backends */ -+ command = g_string_append (command, " --pw-prompt --report"); - - if (tool->current_platform) { - g_string_append (command, " --platform "); diff --git a/app-admin/gnome-system-tools/gnome-system-tools-0.33.0.ebuild b/app-admin/gnome-system-tools/gnome-system-tools-0.33.0.ebuild deleted file mode 100644 index 3ad85d51dba9..000000000000 --- a/app-admin/gnome-system-tools/gnome-system-tools-0.33.0.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/gnome-system-tools/gnome-system-tools-0.33.0.ebuild,v 1.9 2005/01/01 11:03:01 eradicator Exp $ - -inherit gnome2 - -DESCRIPTION="Tools aimed to make easy the administration of UNIX systems" -HOMEPAGE="http://www.gnome.org/projects/gst/" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 amd64 ppc" -IUSE="" - -RDEPEND="net-misc/openssh - sys-apps/shadow - >=gnome-base/libgnomeui-1.109 - >=gnome-base/libglade-1.99.5 - >=gnome-base/gconf-2.2 - >=dev-libs/libxml2-2.4.12" -DEPEND="${RDEPEND} - dev-util/pkgconfig - >=dev-util/intltool-0.29" - -DOCS="AUTHORS BUGS ChangeLog HACKING NEWS README TODO" - -USE_DESTDIR="1" diff --git a/app-admin/gnome-system-tools/gnome-system-tools-0.34.0-r1.ebuild b/app-admin/gnome-system-tools/gnome-system-tools-0.34.0-r1.ebuild deleted file mode 100644 index 15e168795509..000000000000 --- a/app-admin/gnome-system-tools/gnome-system-tools-0.34.0-r1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/gnome-system-tools/gnome-system-tools-0.34.0-r1.ebuild,v 1.5 2005/01/01 11:03:01 eradicator Exp $ - -inherit gnome2 eutils - -DESCRIPTION="Tools aimed to make easy the administration of UNIX systems" -HOMEPAGE="http://www.gnome.org/projects/gst/" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 amd64 ppc" -IUSE="" - -RDEPEND="net-misc/openssh - sys-apps/shadow - >=x11-libs/gtk+-2.4 - >=gnome-base/libgnomeui-1.109 - >=gnome-base/libglade-1.99.5 - >=gnome-base/gconf-2.2 - >=dev-libs/libxml2-2.4.12" -DEPEND="${RDEPEND} - dev-util/pkgconfig - >=dev-util/intltool-0.29" - -DOCS="AUTHORS BUGS ChangeLog HACKING NEWS README TODO" - -USE_DESTDIR="1" - -src_unpack() { - unpack ${A} - - cd ${S} - # http://bugs.gnome.org/show_bug.cgi?id=147362 - epatch ${FILESDIR}/${P}-fix-nopasswd-auth.patch -} diff --git a/app-admin/gnome-system-tools/gnome-system-tools-0.92.0.ebuild b/app-admin/gnome-system-tools/gnome-system-tools-0.92.0.ebuild deleted file mode 100644 index 7237eec163b4..000000000000 --- a/app-admin/gnome-system-tools/gnome-system-tools-0.92.0.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/gnome-system-tools/gnome-system-tools-0.92.0.ebuild,v 1.2 2005/01/01 11:03:01 eradicator Exp $ - -inherit gnome2 eutils - -DESCRIPTION="Tools aimed to make easy the administration of UNIX systems" -HOMEPAGE="http://www.gnome.org/projects/gst/" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86 ~amd64 ~ppc" -IUSE="" - -RDEPEND="net-misc/openssh - sys-apps/shadow - >=x11-libs/gtk+-2.4 - >=gnome-base/libgnomeui-1.109 - >=gnome-base/libglade-1.99.5 - >=gnome-base/gconf-2.2 - >=dev-libs/libxml2-2.4.12" -DEPEND="${RDEPEND} - dev-util/pkgconfig - >=dev-util/intltool-0.29" - -DOCS="AUTHORS BUGS ChangeLog HACKING NEWS README TODO" - -USE_DESTDIR="1" - -# --enable-disks is not supported for Gentoo at the moment. -G2CONF="${G2CONF} --enable-boot --enable-services" diff --git a/app-admin/gnome-system-tools/gnome-system-tools-1.0.2.ebuild b/app-admin/gnome-system-tools/gnome-system-tools-1.0.2.ebuild deleted file mode 100644 index a5c42317cc3d..000000000000 --- a/app-admin/gnome-system-tools/gnome-system-tools-1.0.2.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/gnome-system-tools/gnome-system-tools-1.0.2.ebuild,v 1.2 2005/01/01 11:03:01 eradicator Exp $ - -inherit gnome2 eutils - -DESCRIPTION="Tools aimed to make easy the administration of UNIX systems" -HOMEPAGE="http://www.gnome.org/projects/gst/" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86 ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~sparc ~alpha" -IUSE="" - -RDEPEND="net-misc/openssh - sys-apps/shadow - >=x11-libs/gtk+-2.4 - >=gnome-base/libgnomeui-1.109 - >=gnome-base/libglade-1.99.5 - >=gnome-base/gconf-2.2 - >=dev-libs/libxml2-2.4.12" - -DEPEND="${RDEPEND} - dev-util/pkgconfig - >=dev-util/intltool-0.29" - -DOCS="AUTHORS BUGS ChangeLog HACKING NEWS README TODO" - -USE_DESTDIR="1" - -# --enable-disks is not supported for Gentoo at the moment. -G2CONF="${G2CONF} --enable-boot --enable-services" |