blob: 663fc4c439e0de6e600b91835aeea1f8fc717e8e (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/gksu/gksu-1.9.1.ebuild,v 1.8 2007/07/15 05:53:11 mr_bones_ Exp $
inherit gnome2 fixheadtails
DESCRIPTION="A gtk+ frontend for libgksu"
HOMEPAGE="http://www.nongnu.org/gksu/"
SRC_URI="http://people.debian.org/~kov/gksu/old_stuff/gksu/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc sparc x86"
IUSE="${IUSE} nls"
RDEPEND=">=x11-libs/libgksu-1.9.2
>=x11-libs/gtk+-2.4.0
>=gnome-base/gconf-2.0
>=gnome-base/gnome-keyring-0.4.3
app-admin/sudo
>=gnome-base/orbit-2.12.2
dev-libs/atk
x11-libs/pango
x11-libs/cairo
media-libs/libpng
nls? ( sys-devel/gettext )
>=dev-libs/glib-2.8.4
|| (
( >=x11-libs/libX11-1.0.0 )
virtual/x11 )"
DEPEND="${RDEPEND}"
GCONF2="$(use_enable nls)"
USE_DESTDIR="1"
src_unpack() {
gnome2_src_unpack
ht_fix_file "${S}/gksu-migrate-conf.sh"
}
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
}
|