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: metadata.xml ChangeLog libcmis-9999.ebuild
Date: Mon, 03 Oct 2011 08:54:41
Message-Id: 20111003085432.827CE2004B@flycatcher.gentoo.org
1 scarabeus 11/10/03 08:54:32
2
3 Added: metadata.xml ChangeLog libcmis-9999.ebuild
4 Log:
5 Initial commit, required for libreoffice.
6
7 (Portage version: 2.2.0_alpha60/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 dev-cpp/libcmis/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libcmis/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libcmis/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>openoffice</herd>
21 </pkgmetadata>
22
23
24
25 1.1 dev-cpp/libcmis/ChangeLog
26
27 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libcmis/ChangeLog?rev=1.1&view=markup
28 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libcmis/ChangeLog?rev=1.1&content-type=text/plain
29
30 Index: ChangeLog
31 ===================================================================
32 # ChangeLog for dev-cpp/libcmis
33 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
34 # $Header: /var/cvsroot/gentoo-x86/dev-cpp/libcmis/ChangeLog,v 1.1 2011/10/03 08:54:32 scarabeus Exp $
35
36 *libcmis-9999 (03 Oct 2011)
37
38 03 Oct 2011; Tomáš Chvátal <scarabeus@g.o> +libcmis-9999.ebuild,
39 +metadata.xml:
40 Initial commit, required for libreoffice.
41
42
43
44
45 1.1 dev-cpp/libcmis/libcmis-9999.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libcmis/libcmis-9999.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libcmis/libcmis-9999.ebuild?rev=1.1&content-type=text/plain
49
50 Index: libcmis-9999.ebuild
51 ===================================================================
52 # Copyright 1999-2011 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/dev-cpp/libcmis/libcmis-9999.ebuild,v 1.1 2011/10/03 08:54:32 scarabeus Exp $
55
56 EAPI=4
57
58 EGIT_REPO_URI="git://gitorious.org/libcmis/libcmis.git"
59 [[ ${PV} == 9999 ]] && SCM_ECLASS="git-2"
60 inherit autotools ${SCM_ECLASS}
61 unset SCM_ECLASS
62
63 DESCRIPTION="C++ client library for the CMIS interface"
64 HOMEPAGE="http://gitorious.org/libcmis"
65 [[ ${PV} == 9999 ]] || SRC_URI=""
66
67 LICENSE="|| ( GPL-2 LGPL-2 MPL-1.1 )"
68 SLOT="0"
69 [[ ${PV} == 9999 ]] || KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
70 IUSE="static-libs test"
71
72 RDEPEND="
73 dev-libs/boost
74 dev-libs/libxml2
75 net-misc/curl
76 "
77 DEPEND="${RDEPEND}
78 test? ( dev-util/cppunit )
79 "
80
81 # It fetches the apache chemistry webapp and then try to run some magic on it
82 RESTRICT="test"
83
84 src_prepare() {
85 eautoreconf
86 }
87
88 src_configure() {
89 econf \
90 $(use_enable static-libs static) \
91 --enable-client
92 }
93
94 src_install() {
95 default
96 find "${ED}" -name '*.la' -exec rm -f {} +
97 }