blob: 2d85456f232b2da0bf094dea0a2a6d3b24afb9a6 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/grdesktop/grdesktop-0.16.ebuild,v 1.6 2004/04/27 21:38:29 agriffis Exp $
DESCRIPTION="Gtk2 frontend for rdesktop"
HOMEPAGE="http://www.nongnu.org/grdesktop"
SRC_URI="http://savannah.nongnu.org/download/${PN}/${PN}.pkg/${PV}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND=">=x11-libs/gtk+-2.0.6-r3
>=net-misc/rdesktop-1.1.0.19.9.0
app-text/docbook-sgml-utils"
#RDEPEND=""
S="${WORKDIR}/${P}"
src_compile() {
econf \
--host=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
--datadir=/usr/share \
--mandir=/usr/share/man || die "./configure failed"
emake || die
}
src_install() {
einstall
dodoc AUTHORS ABOUT-NLS COPYING ChangeLog INSTALL NEWS README TODO
}
|