diff options
author | Daniel Gryniewicz <dang@gentoo.org> | 2008-05-24 16:11:15 +0000 |
---|---|---|
committer | Daniel Gryniewicz <dang@gentoo.org> | 2008-05-24 16:11:15 +0000 |
commit | 909d1f72a99955c06c764a8565c3ce2fc039f7a0 (patch) | |
tree | 22d623e97d2ab2a713ab37cd99ef8ea48b9d40f1 /x11-libs | |
parent | Stable on ppc wrt bug 2228731 (diff) | |
download | gentoo-2-909d1f72a99955c06c764a8565c3ce2fc039f7a0.tar.gz gentoo-2-909d1f72a99955c06c764a8565c3ce2fc039f7a0.tar.bz2 gentoo-2-909d1f72a99955c06c764a8565c3ce2fc039f7a0.zip |
Fix bug #158469
(Portage version: 2.1.5.2)
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/gksu/ChangeLog | 9 | ||||
-rw-r--r-- | x11-libs/gksu/gksu-2.0.0-r1.ebuild | 67 |
2 files changed, 75 insertions, 1 deletions
diff --git a/x11-libs/gksu/ChangeLog b/x11-libs/gksu/ChangeLog index 2fdef75065b6..4c210bd25544 100644 --- a/x11-libs/gksu/ChangeLog +++ b/x11-libs/gksu/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for x11-libs/gksu # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/gksu/ChangeLog,v 1.46 2008/05/02 15:36:49 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gksu/ChangeLog,v 1.47 2008/05/24 16:11:15 dang Exp $ + +*gksu-2.0.0-r1 (24 May 2008) + + 24 May 2008; Daniel Gryniewicz <dang@gentoo.org> +gksu-2.0.0-r1.ebuild: + Bug #158469 + - Only install gksu.desktop if use gnome + - Make it use gnome-terminal 02 May 2008; Doug Goldstein <cardoe@gentoo.org> gksu-2.0.0.ebuild: remove global scoped variables diff --git a/x11-libs/gksu/gksu-2.0.0-r1.ebuild b/x11-libs/gksu/gksu-2.0.0-r1.ebuild new file mode 100644 index 000000000000..aa53362294b2 --- /dev/null +++ b/x11-libs/gksu/gksu-2.0.0-r1.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gksu/gksu-2.0.0-r1.ebuild,v 1.1 2008/05/24 16:11:15 dang Exp $ + +inherit gnome2 fixheadtails eutils autotools + +DESCRIPTION="A gtk+ frontend for libgksu" +HOMEPAGE="http://www.nongnu.org/gksu/" +SRC_URI="http://people.debian.org/~kov/gksu/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="doc gnome" + +RDEPEND=">=x11-libs/libgksu-2 + >=x11-libs/gtk+-2.4.0 + >=gnome-base/gconf-2.0 + gnome? ( + >=gnome-base/gnome-vfs-2 + >=gnome-base/nautilus-2 + )" +DEPEND="${RDEPEND} + doc? ( dev-util/gtk-doc )" + +pkg_setup() { + DOCS="AUTHORS ChangeLog NEWS README" + G2CONF="$(use_enable doc gtk-doc) $(use_enable gnome nautilus-extension)" + USE_DESTDIR="1" +} + +src_unpack() { + gnome2_src_unpack + ht_fix_file "${S}/gksu-migrate-conf.sh" + + epatch "${FILESDIR}"/${P}-gnome-2.22.patch + + if use gnome ; then + sed -i 's/x-terminal-emulator/gnome-terminal/' gksu.desktop + else + sed -i 's/dist_desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)/dist_desktop_DATA =/' Makefile.am + sed -i 's/dist_desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)/dist_desktop_DATA =/' Makefile.in + fi + + eautoreconf +} + +src_install() { + gnome2_src_install + chmod +x "${D}/usr/share/gksu/gksu-migrate-conf.sh" +} + +pkg_postinst() { + gnome2_pkg_postinst + einfo 'updating configuration' + "${ROOT}"/usr/share/gksu/gksu-migrate-conf.sh + einfo "" + einfo "A note on gksudo: It actually runs sudo to get it's work done" + einfo "However, by default, Gentoo's sudo wipes your environment." + einfo "This means that gksudo will fail to run any X-based programs." + einfo "You need to either add yourself to wheel and uncomment this line" + einfo "in your /etc/sudoers:" + einfo "Defaults:%wheel !env_reset" + einfo "Or remove the env_reset line entirely. This can cause security" + einfo "problems; if you don't trust your users, don't do this, use gksu" + einfo "instead." +} |