Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-pda/synce-connector: metadata.xml ChangeLog synce-connector-0.15.1.ebuild
Date: Fri, 25 Feb 2011 15:28:05
Message-Id: 20110225152753.B4C8920054@flycatcher.gentoo.org
1 ssuominen 11/02/25 15:27:53
2
3 Added: metadata.xml ChangeLog
4 synce-connector-0.15.1.ebuild
5 Log:
6 Initial commit.
7
8 (Portage version: 2.2.0_alpha24/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.1 app-pda/synce-connector/metadata.xml
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/synce-connector/metadata.xml?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/synce-connector/metadata.xml?rev=1.1&content-type=text/plain
15
16 Index: metadata.xml
17 ===================================================================
18 <?xml version="1.0" encoding="UTF-8"?>
19 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
20 <pkgmetadata>
21 <herd>pda</herd>
22 <maintainer>
23 <email>ssuominen@g.o</email>
24 <name>Samuli Suominen</name>
25 </maintainer>
26 </pkgmetadata>
27
28
29
30 1.1 app-pda/synce-connector/ChangeLog
31
32 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/synce-connector/ChangeLog?rev=1.1&view=markup
33 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/synce-connector/ChangeLog?rev=1.1&content-type=text/plain
34
35 Index: ChangeLog
36 ===================================================================
37 # ChangeLog for app-pda/synce-connector
38 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
39 # $Header: /var/cvsroot/gentoo-x86/app-pda/synce-connector/ChangeLog,v 1.1 2011/02/25 15:27:53 ssuominen Exp $
40
41 *synce-connector-0.15.1 (25 Feb 2011)
42
43 25 Feb 2011; Samuli Suominen <ssuominen@g.o>
44 +synce-connector-0.15.1.ebuild:
45 Initial commit.
46
47
48
49
50 1.1 app-pda/synce-connector/synce-connector-0.15.1.ebuild
51
52 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/synce-connector/synce-connector-0.15.1.ebuild?rev=1.1&view=markup
53 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/synce-connector/synce-connector-0.15.1.ebuild?rev=1.1&content-type=text/plain
54
55 Index: synce-connector-0.15.1.ebuild
56 ===================================================================
57 # Copyright 1999-2011 Gentoo Foundation
58 # Distributed under the terms of the GNU General Public License v2
59 # $Header: /var/cvsroot/gentoo-x86/app-pda/synce-connector/synce-connector-0.15.1.ebuild,v 1.1 2011/02/25 15:27:53 ssuominen Exp $
60
61 EAPI=3
62
63 PYTHON_DEPEND="2:2.6"
64
65 inherit python
66
67 DESCRIPTION="A connection framework for SynCE"
68 HOMEPAGE="http://www.synce.org/"
69 SRC_URI="mirror://sourceforge/synce/${P}.tar.gz"
70
71 LICENSE="GPL-2"
72 SLOT="0"
73 KEYWORDS="~amd64 ~x86"
74 IUSE=""
75
76 # configure.ac, AC_PATH_PROG:
77 # net-tools -> ifconfig
78 # ppp _> pppd
79 RDEPEND=">=dev-libs/dbus-glib-0.88
80 >=dev-libs/glib-2.7
81 >=dev-libs/libsynce-0.15.1[dbus]
82 >=net-libs/gnet-2
83 sys-fs/udev[extras]"
84 DEPEND="${RDEPEND}
85 dev-util/pkgconfig"
86
87 pkg_setup() {
88 python_set_active_version 2
89 python_pkg_setup
90 }
91
92 src_prepare() {
93 # configure.ac, AC_PATH_PROG:
94 sed -i -e 's:dhclient:true:' configure || die
95
96 python_convert_shebangs -r 2 .
97 }
98
99 src_configure() {
100 econf \
101 --disable-dependency-tracking \
102 --enable-udev \
103 --enable-bluetooth-support
104 }
105
106 src_install() {
107 emake DESTDIR="${D}" install || die
108 dodoc AUTHORS ChangeLog README TODO
109 }