Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-pda/gnome-pilot: ChangeLog gnome-pilot-2.0.16-r1.ebuild
Date: Wed, 06 Aug 2008 22:28:29
Message-Id: E1KQrUY-000364-DX@stork.gentoo.org
1 eva 08/08/06 22:28:26
2
3 Modified: ChangeLog
4 Added: gnome-pilot-2.0.16-r1.ebuild
5 Log:
6 add patch to fix detection with hal-0.5.11, bug #231678.
7 (Portage version: 2.2_rc3/cvs/Linux 2.6.26-gentoo-mactel x86_64)
8
9 Revision Changes Path
10 1.47 app-pda/gnome-pilot/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/gnome-pilot/ChangeLog?rev=1.47&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/gnome-pilot/ChangeLog?rev=1.47&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/gnome-pilot/ChangeLog?r1=1.46&r2=1.47
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-pda/gnome-pilot/ChangeLog,v
19 retrieving revision 1.46
20 retrieving revision 1.47
21 diff -u -r1.46 -r1.47
22 --- ChangeLog 1 Aug 2008 19:16:04 -0000 1.46
23 +++ ChangeLog 6 Aug 2008 22:28:25 -0000 1.47
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-pda/gnome-pilot
26 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-pda/gnome-pilot/ChangeLog,v 1.46 2008/08/01 19:16:04 nixnut Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-pda/gnome-pilot/ChangeLog,v 1.47 2008/08/06 22:28:25 eva Exp $
29 +
30 +*gnome-pilot-2.0.16-r1 (06 Aug 2008)
31 +
32 + 06 Aug 2008; Gilles Dartiguelongue <eva@g.o>
33 + +files/gnome-pilot-2.0.16-hal-0.5.11.patch, +gnome-pilot-2.0.16-r1.ebuild:
34 + add patch to fix detection with hal-0.5.11, bug #231678.
35
36 01 Aug 2008; nixnut <nixnut@g.o> gnome-pilot-2.0.16.ebuild:
37 Stable on ppc wrt bug 230067
38
39
40
41 1.1 app-pda/gnome-pilot/gnome-pilot-2.0.16-r1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/gnome-pilot/gnome-pilot-2.0.16-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/gnome-pilot/gnome-pilot-2.0.16-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gnome-pilot-2.0.16-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-pda/gnome-pilot/gnome-pilot-2.0.16-r1.ebuild,v 1.1 2008/08/06 22:28:25 eva Exp $
51
52 inherit gnome2 eutils autotools
53
54 DESCRIPTION="Gnome Palm Pilot and Palm OS Device Syncing Library"
55 HOMEPAGE="http://live.gnome.org/GnomePilot"
56 LICENSE="GPL-2"
57 SLOT="0"
58 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
59 IUSE="hal"
60
61 RDEPEND=">=gnome-base/libgnome-2.0.0
62 >=gnome-base/libgnomeui-2.0.0
63 >=gnome-base/libglade-2.0.0
64 >=gnome-base/orbit-2.6.0
65 >=gnome-base/libbonobo-2.0.0
66 >=gnome-base/gnome-panel-2.0
67 >=gnome-base/gconf-2.0
68 dev-libs/libxml2
69 >=app-pda/pilot-link-0.11.7
70 hal? (
71 dev-libs/dbus-glib
72 >=sys-apps/hal-0.5.4
73 )"
74
75 DEPEND="${RDEPEND}
76 sys-devel/gettext
77 >=dev-util/gob-2.0.5
78 >=dev-lang/perl-5.6.0
79 dev-util/intltool"
80
81 DOCS="AUTHORS COPYING* ChangeLog README NEWS"
82 SCROLLKEEPER_UPDATE="0"
83
84 pkg_setup() {
85 G2CONF="${G2CONF}
86 --enable-usb
87 --enable-network
88 --enable-pilotlinktest
89 $(use_with hal)"
90 }
91
92 src_unpack() {
93 gnome2_src_unpack
94
95 echo "libgpilotdCM/gnome-pilot-conduit-management.c" >> po/POTFILES.in
96
97 # Fix --as-needed
98 epatch "${FILESDIR}/${PN}-2.0.15-as-needed.patch"
99
100 # Fix use with hal-0.5.11
101 epatch "${FILESDIR}/${P}-hal-0.5.11.patch"
102
103 eautoreconf
104 intltoolize --force || die
105 }
106
107 pkg_postinst() {
108 if ! built_with_use app-pda/pilot-link bluetooth; then
109 elog "if you want bluetooth support, please rebuild app-pda/pilot-link"
110 elog "echo 'app-pda/pilot-link bluetooth >> /etc/portage/package.use"
111 fi
112 }