blob: 3a3a191de76ebe4dff6ea43d3fe9c386a13d35af (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/grdesktop/grdesktop-0.22-r1.ebuild,v 1.8 2005/03/19 18:14:08 weeve Exp $
inherit eutils
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="x86 sparc amd64"
IUSE="doc"
RDEPEND=">=x11-libs/gtk+-2.0.6-r3
>=net-misc/rdesktop-1.1.0.19.9.0
>=gnome-base/libgnomeui-2.2
>=gnome-base/gconf-2"
DEPEND="${RDEPEND}
doc? ( app-text/docbook2X )
app-text/scrollkeeper"
src_unpack() {
unpack ${A}
cd ${S}
# Fix invalid C code that breaks compilation under gcc 2.
epatch ${FILESDIR}/${P}-gcc2_fix.patch
# Correct icon path. See bug #50295.
sed -i -e 's:Icon=.*:Icon=grdesktop/icon.png:' grdesktop.desktop
}
src_compile() {
econf \
--with-keymap-path=/usr/share/rdesktop/keymaps \
--localstatedir=${D}/var/lib || die "./configure failed"
# For some reason we have duplicate syntax in Makefiles, removing
epatch ${FILESDIR}/0010_all_0.22-remove-double-makefile-syntax.patch
emake || die
}
src_install() {
#einstall
make DESTDIR=${D} install || die "couldnt install"
dodoc AUTHORS ABOUT-NLS COPYING ChangeLog INSTALL NEWS README TODO
}
|