blob: cad07068a7241c3ea56aa302730e7d6e780074ef (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-pda/gnome-pilot/gnome-pilot-2.0.9.ebuild,v 1.4 2003/09/12 19:31:11 liquidx Exp $
inherit gnome.org gnome2 eutils
DESCRIPTION="Gnome Pilot apps"
HOMEPAGE="http://www.gnome.org/gnome-pilot/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~sparc "
IUSE=""
RDEPEND=">=gnome-base/libgnome-2.0.0
>=gnome-base/libgnomeui-2.0.0
>=gnome-base/libglade-2.0.0
>=gnome-base/ORBit2-2.6.0
>=gnome-base/libbonobo-2.0.0
>=gnome-base/gnome-panel-2.0
>=gnome-base/gconf-2.0
>=dev-util/gob-2.0.5
>=app-pda/pilot-link-0.11.7"
DEPEND="sys-devel/gettext
>=dev-lang/perl-5.6.0
${RDEPEND}"
src_unpack() {
unpack ${A}
cd ${S}
# hackaround b0rked with pilot-link detection <liquidx@gentoo.org>
# epatch ${FILESDIR}/gnome-pilot-2.0.1-pisock.patch
# USB patch from Mandrake. Allows gnome-pilot to watch /dev/pilot even
# when it does not yet exist (because of using devfs).
# patch -p1 < ${FILESDIR}/gnome-pilot-0.1.70-usb.patch
}
src_compile() {
local myconf
myconf="${myconf} --enable-usb"
myconf="${myconf} --enable-network"
myconf="${myconf} --enable-pilotlinktest"
gnome2_src_compile ${myconf}
}
DOCS="AUTHORS COPYING* ChangeLog README NEWS"
SCROLLKEEPER_UPDATE="0"
|