blob: 84d56b6098fe720517705b90a05cc0f54c300be1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# 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
}
|