blob: 7f4729155e3168789f32df695c390573f8717b8a (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/grdesktop/grdesktop-0.23.ebuild,v 1.10 2008/01/12 13:22:18 leio Exp $
inherit eutils gnome2
DESCRIPTION="Gtk2 frontend for rdesktop"
HOMEPAGE="http://www.nongnu.org/grdesktop/"
SRC_URI="http://savannah.nongnu.org/download/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc sparc x86 ~x86-fbsd"
IUSE=""
RDEPEND=">=x11-libs/gtk+-2
>=gnome-base/libgnomeui-2
net-misc/rdesktop
>=gnome-base/gconf-2"
DEPEND="${RDEPEND}
app-text/scrollkeeper
>=dev-util/pkgconfig-0.9"
G2CONF="${G2CONF} --with-keymap-path=/usr/share/rdesktop/keymaps/"
docs="AUTHORS ChangeLog NEWS README TODO"
src_unpack() {
unpack ${A}
cd "${S}"
# Correct icon path. See bug #50295.
sed -i -e 's:Icon=.*:Icon=grdesktop/icon.png:' grdesktop.desktop
gnome2_omf_fix
}
|