Gentoo Archives: gentoo-commits

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