blob: bfaa0097ea99e183392a9685d583ad86f1692ddc (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-terms/roxterm/roxterm-1.2.3.ebuild,v 1.4 2006/11/17 09:01:46 compnerd Exp $
inherit eutils
DESCRIPTION="A terminal emulator designed to integrate with the ROX environment"
HOMEPAGE="http://roxterm.sourceforge.net/"
SRC_URI="mirror://sourceforge/roxterm/${PF}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
RDEPEND=">=dev-libs/glib-2.6
>=x11-libs/gtk+-2.6
|| (
>=dev-libs/dbus-glib-0.71
( <sys-apps/dbus-0.90 >=sys-apps/dbus-0.35 )
)
>=x11-libs/vte-0.11.11
>=gnome-base/libglade-2"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.20"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PN}-1.2.3-new-button.patch
# Fix up DBUS function call to deprecated function
epatch ${FILESDIR}/${PN}-1.2.3-dbus_close.patch
}
src_install() {
emake DESTDIR=${D} install || die "make install failed"
dodoc AUTHORS ChangeLog README
}
|