Gentoo Archives: gentoo-commits

From: "Olivier Crete (tester)" <tester@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-pda/syncevolution: metadata.xml ChangeLog syncevolution-1.0.ebuild
Date: Sat, 26 Jun 2010 03:19:50
Message-Id: 20100626031947.5573A2CF70@corvid.gentoo.org
1 tester 10/06/26 03:19:47
2
3 Added: metadata.xml ChangeLog syncevolution-1.0.ebuild
4 Log:
5 Add app-pda/syncevolution-1.0
6 (Portage version: 2.1.8.3/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 app-pda/syncevolution/metadata.xml
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/syncevolution/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/syncevolution/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>pda</herd>
20 <maintainer>
21 <email>tester@g.o</email>
22 </maintainer>
23 </pkgmetadata>
24
25
26
27 1.1 app-pda/syncevolution/ChangeLog
28
29 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/syncevolution/ChangeLog?rev=1.1&view=markup
30 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/syncevolution/ChangeLog?rev=1.1&content-type=text/plain
31
32 Index: ChangeLog
33 ===================================================================
34 # ChangeLog for app-pda/syncevolution
35 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
36 # $Header: /var/cvsroot/gentoo-x86/app-pda/syncevolution/ChangeLog,v 1.1 2010/06/26 03:19:47 tester Exp $
37
38 *syncevolution-1.0 (26 Jun 2010)
39
40 26 Jun 2010; Olivier CrĂȘte <tester@g.o> +syncevolution-1.0.ebuild,
41 +metadata.xml:
42 Initial import, fixes bug #225221
43
44
45
46
47 1.1 app-pda/syncevolution/syncevolution-1.0.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/syncevolution/syncevolution-1.0.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/syncevolution/syncevolution-1.0.ebuild?rev=1.1&content-type=text/plain
51
52 Index: syncevolution-1.0.ebuild
53 ===================================================================
54 # Copyright 1999-2010 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/app-pda/syncevolution/syncevolution-1.0.ebuild,v 1.1 2010/06/26 03:19:47 tester Exp $
57
58 EAPI=2
59
60 inherit gnome2
61
62 DESCRIPTION="A SyncML desktop client and server"
63 HOMEPAGE="http://syncevolution.org/"
64
65 LICENSE="LGPL-2.1"
66 SLOT="0"
67 KEYWORDS="~amd64"
68 IUSE="sqlite +gtk +eds bluetooth +gnome"
69
70 SRC_URI="http://downloads.syncevolution.org/syncevolution/sources/${P}.tar.gz"
71
72 RDEPEND=">=gnome-base/gconf-2
73 >=dev-libs/glib-2.16
74 >=net-libs/libsoup-2.4
75 >=sys-apps/dbus-1.2
76 x11-libs/libnotify
77 >=gnome-base/gnome-keyring-2.20
78 gtk? ( >=x11-libs/gtk+-2.18:2
79 dev-libs/libunique )
80 eds? ( >=gnome-extra/evolution-data-server-1.2
81 >=dev-libs/libical-0.43 )
82 bluetooth? (
83 >=net-wireless/bluez-4
84 >=dev-libs/openobex-1.5
85 gnome? ( >=net-wireless/gnome-bluetooth-2.28 ) )"
86 DEPEND="${RDEPEND}
87 dev-libs/libxslt
88 dev-python/docutils
89 >=dev-util/pkgconfig-0.9
90 >=dev-util/intltool-0.37.1"
91
92 DOCS="README NEWS AUTHORS HACKING"
93
94 pkg_setup() {
95 G2CONF="--with-rst2man=/usr/bin/rst2man.py
96 --with-rst2html=/usr/bin/rst2html.py
97 --enable-dbus-service
98 $(use_enable bluetooth)
99 $(use_enable sqlite)
100 $(use_enable eds ebook)
101 $(use_enable eds ecal)"
102 if use bluetooth; then
103 G2CONF="${G2CONF}
104 $(use_enable gnome gnome-bluetooth-panel-plugin)"
105 else
106 G2CONF="${G2CONF} --disable-gnome-bluetooth-panel-plugin"
107 fi
108 if use gtk; then
109 G2CONF="${G2CONF} --enable-gui=gtk"
110 else
111 G2CONF="${G2CONF} --enable-gui=no"
112 fi
113 }