Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-cpp/libcmis: libcmis-0.2.2.ebuild ChangeLog
Date: Tue, 05 Jun 2012 15:41:01
Message-Id: 20120605154051.EFC772004B@flycatcher.gentoo.org
1 scarabeus 12/06/05 15:40:51
2
3 Modified: ChangeLog
4 Added: libcmis-0.2.2.ebuild
5 Log:
6 Version bump for the 3.6.
7
8 (Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.9 dev-cpp/libcmis/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libcmis/ChangeLog?rev=1.9&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libcmis/ChangeLog?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libcmis/ChangeLog?r1=1.8&r2=1.9
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-cpp/libcmis/ChangeLog,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- ChangeLog 26 Apr 2012 07:04:57 -0000 1.8
24 +++ ChangeLog 5 Jun 2012 15:40:51 -0000 1.9
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-cpp/libcmis
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libcmis/ChangeLog,v 1.8 2012/04/26 07:04:57 scarabeus Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libcmis/ChangeLog,v 1.9 2012/06/05 15:40:51 scarabeus Exp $
30 +
31 +*libcmis-0.2.2 (05 Jun 2012)
32 +
33 + 05 Jun 2012; Tomáš Chvátal <scarabeus@g.o>
34 + +files/libcmis-0.2.2-docbook.patch, +libcmis-0.2.2.ebuild:
35 + Version bump for the 3.6.
36
37 26 Apr 2012; Tomáš Chvátal <scarabeus@g.o> libcmis-0.1.0.ebuild:
38 ppc stable wrt bug#411449.
39
40
41
42 1.1 dev-cpp/libcmis/libcmis-0.2.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libcmis/libcmis-0.2.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libcmis/libcmis-0.2.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libcmis-0.2.2.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-cpp/libcmis/libcmis-0.2.2.ebuild,v 1.1 2012/06/05 15:40:51 scarabeus Exp $
52
53 EAPI=4
54
55 EGIT_REPO_URI="git://gitorious.org/libcmis/libcmis.git"
56 [[ ${PV} == 9999 ]] && SCM_ECLASS="git-2"
57 inherit eutils autotools ${SCM_ECLASS}
58 unset SCM_ECLASS
59
60 DESCRIPTION="C++ client library for the CMIS interface"
61 HOMEPAGE="https://sourceforge.net/projects/libcmis/"
62 [[ ${PV} == 9999 ]] || SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
63
64 LICENSE="|| ( GPL-2 LGPL-2 MPL-1.1 )"
65 SLOT="0"
66 [[ ${PV} == 9999 ]] || KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
67 IUSE="static-libs test"
68
69 RDEPEND="
70 dev-libs/boost
71 dev-libs/libxml2
72 net-misc/curl
73 "
74 DEPEND="${RDEPEND}
75 test? ( dev-util/cppunit )
76 "
77
78 # It fetches the apache chemistry webapp and then try to run some magic on it
79 RESTRICT="test"
80
81 src_prepare() {
82 # docbook2X everyitme for one manpage, nope nope
83 epatch "${FILESDIR}/${PN}-0.2.2-docbook.patch"
84 eautoreconf
85 }
86
87 src_configure() {
88 econf \
89 --disable-werror \
90 $(use_enable static-libs static) \
91 $(use_enable test tests) \
92 --enable-client
93 }
94
95 src_install() {
96 default
97 find "${ED}" -name '*.la' -exec rm -f {} +
98 }