diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2009-02-15 18:55:07 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2009-02-15 18:55:07 +0000 |
commit | 41416d5af2be4871954c6aa266e5ac2562672526 (patch) | |
tree | a49678e3896b04006034cdbf743f8573f3dc3b0a /sys-block | |
parent | keyword ~amd64, homepage fixed, versions bump (diff) | |
download | gentoo-2-41416d5af2be4871954c6aa266e5ac2562672526.tar.gz gentoo-2-41416d5af2be4871954c6aa266e5ac2562672526.tar.bz2 gentoo-2-41416d5af2be4871954c6aa266e5ac2562672526.zip |
Bump to 0.4.3. Should fix crash with some locales, support for ext4, corrected hal-lock, and more. Closes bug #258053.
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'sys-block')
-rw-r--r-- | sys-block/gparted/ChangeLog | 8 | ||||
-rw-r--r-- | sys-block/gparted/gparted-0.4.3.ebuild | 72 |
2 files changed, 79 insertions, 1 deletions
diff --git a/sys-block/gparted/ChangeLog b/sys-block/gparted/ChangeLog index d9e352166906..ba85bf33f82d 100644 --- a/sys-block/gparted/ChangeLog +++ b/sys-block/gparted/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-block/gparted # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-block/gparted/ChangeLog,v 1.59 2009/02/01 19:36:09 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-block/gparted/ChangeLog,v 1.60 2009/02/15 18:55:07 eva Exp $ + +*gparted-0.4.3 (15 Feb 2009) + + 15 Feb 2009; Gilles Dartiguelongue <eva@gentoo.org> +gparted-0.4.3.ebuild: + Bump to 0.4.3. Should fix crash with some locales, support for ext4, + corrected hal-lock, and more. Closes bug #258053. 01 Feb 2009; nixnut <nixnut@gentoo.org> gparted-0.4.1.ebuild: ppc stable #255855 diff --git a/sys-block/gparted/gparted-0.4.3.ebuild b/sys-block/gparted/gparted-0.4.3.ebuild new file mode 100644 index 000000000000..72d438131fd0 --- /dev/null +++ b/sys-block/gparted/gparted-0.4.3.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-block/gparted/gparted-0.4.3.ebuild,v 1.1 2009/02/15 18:55:07 eva Exp $ + +inherit eutils gnome2 + +DESCRIPTION="Gnome Partition Editor" +HOMEPAGE="http://gparted.sourceforge.net/" + +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="fat gnome hfs jfs kde ntfs reiserfs reiser4 xfs xfce" + +common_depends=">=sys-apps/parted-1.7.1 + >=dev-cpp/gtkmm-2.8.0" + +RDEPEND="${common_depends} + gnome? ( x11-libs/gksu ) + xfce? ( x11-libs/gksu ) + kde? ( || ( kde-base/kdesu kde-base/kdebase ) ) + >=sys-fs/e2fsprogs-1.41.0 + fat? ( sys-fs/dosfstools ) + ntfs? ( sys-fs/ntfsprogs ) + hfs? ( + sys-fs/udev + sys-fs/hfsutils ) + jfs? ( sys-fs/jfsutils ) + reiserfs? ( sys-fs/reiserfsprogs ) + reiser4? ( sys-fs/reiser4progs ) + xfs? ( sys-fs/xfsprogs sys-fs/xfsdump )" + +DEPEND="${common_depends} + >=dev-util/pkgconfig-0.12 + >=dev-util/intltool-0.35.5 + app-text/scrollkeeper + app-text/gnome-doc-utils" + +DOCS="AUTHORS NEWS ChangeLog README" + +src_unpack() { + gnome2_src_unpack + + # Revert upstream changes to use gksu inconditionally + sed "s:Exec=@gksuprog@ :Exec=:" \ + -i gparted.desktop.in.in || die "sed 1 failed" +} + +pkg_setup() { + G2CONF="${G2CONF} --enable-doc --disable-scrollkeeper GKSUPROG=/bin/true" +} + +src_install() { + gnome2_src_install + + if use kde; then + cp "${D}"/usr/share/applications/gparted.desktop \ + "${D}"/usr/share/applications/gparted-kde.desktop + + sed -i "s:Exec=:Exec=kdesu :" "${D}"/usr/share/applications/gparted-kde.desktop + echo "OnlyShowIn=KDE;" >> "${D}"/usr/share/applications/gparted-kde.desktop + fi + + if use gnome || use xfce; then + sed -i "s:Exec=:Exec=gksu :" "${D}"/usr/share/applications/gparted.desktop + echo "OnlyShowIn=GNOME;XFCE;" >> "${D}"/usr/share/applications/gparted.desktop + else + echo "OnlyShowIn=X-NeverShowThis;" >> "${D}"/usr/share/applications/gparted.desktop + fi +} |