# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-block/gparted/gparted-0.3.7-r1.ebuild,v 1.1 2008/06/15 18:54:28 eva Exp $ inherit eutils gnome2 DESCRIPTION="Gnome Partition Editor" HOMEPAGE="http://gparted.sourceforge.net/" SRC_URI="mirror://sourceforge/gparted/${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 ) ) fat? ( sys-fs/dosfstools ) ntfs? ( sys-fs/ntfsprogs ) hfs? ( 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" src_unpack() { gnome2_src_unpack # HAL is not necessary, bug #220459 epatch "${FILESDIR}/${P}-hal-lock.patch" } 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 }