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: gnome-pilot-2.32.0.ebuild ChangeLog
Date: Wed, 27 Oct 2010 21:51:05
Message-Id: 20101027215101.C073620051@flycatcher.gentoo.org
1 eva 10/10/27 21:51:01
2
3 Modified: ChangeLog
4 Added: gnome-pilot-2.32.0.ebuild
5 Log:
6 Version bump. Update usage of gnome APIs. Move eds conduits support to gnome-pilot.
7
8 (Portage version: 2.2.0_alpha1/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.63 app-pda/gnome-pilot/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/gnome-pilot/ChangeLog?rev=1.63&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/gnome-pilot/ChangeLog?rev=1.63&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/gnome-pilot/ChangeLog?r1=1.62&r2=1.63
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-pda/gnome-pilot/ChangeLog,v
20 retrieving revision 1.62
21 retrieving revision 1.63
22 diff -u -r1.62 -r1.63
23 --- ChangeLog 1 Nov 2009 13:43:09 -0000 1.62
24 +++ ChangeLog 27 Oct 2010 21:51:01 -0000 1.63
25 @@ -1,6 +1,13 @@
26 # ChangeLog for app-pda/gnome-pilot
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-pda/gnome-pilot/ChangeLog,v 1.62 2009/11/01 13:43:09 leio Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-pda/gnome-pilot/ChangeLog,v 1.63 2010/10/27 21:51:01 eva Exp $
31 +
32 +*gnome-pilot-2.32.0 (27 Oct 2010)
33 +
34 + 27 Oct 2010; Gilles Dartiguelongue <eva@g.o>
35 + +gnome-pilot-2.32.0.ebuild:
36 + Version bump. Update usage of gnome APIs. Move eds conduits support to
37 + gnome-pilot.
38
39 01 Nov 2009; Mart Raudsepp <leio@g.o> -gnome-pilot-2.0.17.ebuild:
40 Remove old
41
42
43
44 1.1 app-pda/gnome-pilot/gnome-pilot-2.32.0.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/gnome-pilot/gnome-pilot-2.32.0.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/gnome-pilot/gnome-pilot-2.32.0.ebuild?rev=1.1&content-type=text/plain
48
49 Index: gnome-pilot-2.32.0.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-pda/gnome-pilot/gnome-pilot-2.32.0.ebuild,v 1.1 2010/10/27 21:51:01 eva Exp $
54
55 EAPI="3"
56 G2CONF_DEBUG="no"
57
58 inherit gnome2
59
60 DESCRIPTION="Gnome Palm Pilot and Palm OS Device Syncing Library"
61 HOMEPAGE="http://live.gnome.org/GnomePilot"
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
65 IUSE="eds hal"
66
67 RDEPEND="
68 >=gnome-base/gnome-panel-2
69 >=gnome-base/gconf-2
70 dev-libs/libxml2
71 >=app-pda/pilot-link-0.11.7
72 >=x11-libs/gtk+-2.13:2
73 >=dev-libs/dbus-glib-0.74
74
75 eds? ( >=gnome-extra/evolution-data-server-2 )
76 hal? ( >=sys-apps/hal-0.5.4 )"
77
78 DEPEND="${RDEPEND}
79 dev-util/pkgconfig
80 sys-devel/gettext
81 >=dev-util/gob-2.0.5
82 >=dev-lang/perl-5.6
83 >=app-text/scrollkeeper-0.3.14
84 >=dev-util/intltool-0.35.5"
85
86 pkg_setup() {
87 DOCS="AUTHORS COPYING* ChangeLog README NEWS"
88 G2CONF="${G2CONF}
89 --enable-usb
90 --enable-network
91 --enable-pilotlinktest
92 --disable-static
93 $(use_enable eds eds-conduits)
94 $(use_with hal)"
95 }
96
97 src_install() {
98 gnome2_src_install
99 find "${ED}"/usr/$(get_libdir)/${PN}/conduits -name "*.la" -delete || die
100 }
101
102 pkg_postinst() {
103 if ! has_version "app-pda/pilot-link[bluetooth]"; then
104 elog "if you want bluetooth support, please rebuild app-pda/pilot-link"
105 elog "echo 'app-pda/pilot-link bluetooth >> /etc/portage/package.use"
106 fi
107 }