blob: f370d253545c4c1dda003d3722d1f9774e9004bb (
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
61
62
63
64
65
66
67
68
69
70
71
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/tsclient/tsclient-2.0.1-r1.ebuild,v 1.4 2012/05/05 03:20:44 jdhore Exp $
EAPI=2
inherit eutils autotools
DESCRIPTION="GTK2 frontend for rdesktop"
HOMEPAGE="http://sourceforge.net/projects/tsclient"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
# Too broken upstream to support
RESTRICT=test
RDEPEND="x11-libs/gtk+:2
dev-libs/glib:2
gnome-base/libglade:2.0
gnome-base/libgnome
gnome-base/libgnomeui
gnome-base/gnome-desktop:2
x11-libs/libnotify"
DEPEND="${RDEPEND}
gnome-base/gconf
>=dev-util/intltool-0.27
virtual/pkgconfig"
RDEPEND="${RDEPEND}
>=net-misc/rdesktop-1.3.0"
src_prepare() {
# Fix .desktop file as per upstream changes, bug #351386
epatch "${FILESDIR}"/${P}-no-networkmanager.patch \
"${FILESDIR}"/${P}-libnotify-0.7.patch \
"${FILESDIR}"/${P}-desktop-file.patch
# For recent libgnomeui
sed -i -e 's:libgnome-2\.0:\0 libgnomeui-2\.0:' \
configure.ac || die
# don't seem to be actually needed
sed -i -e 's:libnotify gconf-2.0::' \
configure.ac || die
eautoreconf
}
src_configure() {
econf \
--disable-static \
--disable-dependency-tracking
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
dodoc AUTHORS NEWS README TODO || die
find "${D}" -name '*.la' -delete || die
# Don't install headers since we don't have any plugin that uses
# tsclient. If upstream ever release further plugins we'll restore
# them, but for now it seems like they just use a single plugin
# for the sake of it.
rm -r "${D}"/usr/include || die
}
|