Gentoo Archives: gentoo-commits

From: "Manuel Rueger (mrueg)" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libkolabxml: libkolabxml-1.1.0.ebuild ChangeLog
Date: Fri, 02 Jan 2015 14:31:19
Message-Id: 20150102143114.2DA30EB84@oystercatcher.gentoo.org
1 mrueg 15/01/02 14:31:14
2
3 Modified: ChangeLog
4 Added: libkolabxml-1.1.0.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.35 net-libs/libkolabxml/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libkolabxml/ChangeLog?rev=1.35&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libkolabxml/ChangeLog?rev=1.35&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libkolabxml/ChangeLog?r1=1.34&r2=1.35
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-libs/libkolabxml/ChangeLog,v
20 retrieving revision 1.34
21 retrieving revision 1.35
22 diff -u -r1.34 -r1.35
23 --- ChangeLog 28 Nov 2014 15:57:18 -0000 1.34
24 +++ ChangeLog 2 Jan 2015 14:31:14 -0000 1.35
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-libs/libkolabxml
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libkolabxml/ChangeLog,v 1.34 2014/11/28 15:57:18 mrueg Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libkolabxml/ChangeLog,v 1.35 2015/01/02 14:31:14 mrueg Exp $
31 +
32 +*libkolabxml-1.1.0 (02 Jan 2015)
33 +
34 + 02 Jan 2015; Manuel Rüger <mrueg@g.o> +libkolabxml-1.1.0.ebuild:
35 + Version bump.
36
37 28 Nov 2014; Manuel Rüger <mrueg@g.o> -libkolabxml-0.8.4.ebuild:
38 Cleanup old.
39
40
41
42 1.1 net-libs/libkolabxml/libkolabxml-1.1.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libkolabxml/libkolabxml-1.1.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libkolabxml/libkolabxml-1.1.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libkolabxml-1.1.0.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-libs/libkolabxml/libkolabxml-1.1.0.ebuild,v 1.1 2015/01/02 14:31:14 mrueg Exp $
52
53 EAPI=5
54
55 inherit cmake-utils multilib
56
57 DESCRIPTION="Kolab XML format schema definitions library"
58 HOMEPAGE="http://www.kolab.org"
59 SRC_URI="http://mirror.kolabsys.com/pub/releases/${P}.tar.gz"
60
61 LICENSE="Apache-2.0 ZLIB LGPL-3+ public-domain"
62 SLOT="4"
63 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
64 IUSE="csharp java python php test"
65
66 RDEPEND="
67 >=dev-libs/boost-1.42.0:=
68 dev-libs/xerces-c
69 net-misc/curl
70 "
71 DEPEND="${RDEPEND}
72 dev-cpp/xsd
73 csharp? ( >=dev-lang/swig-2.0.7 dev-lang/mono )
74 java? ( >=dev-lang/swig-2.0.7 virtual/jre )
75 php? ( >=dev-lang/swig-2.0.7 dev-lang/php )
76 python? ( >=dev-lang/swig-2.0.7 dev-lang/python )
77 test? ( dev-qt/qttest:4 )
78 "
79
80 src_configure() {
81 local mycmakeargs=(
82 -DLIB_INSTALL_DIR=$(get_libdir)
83 $(cmake-utils_use csharp CSHARP_BINDINGS)
84 $(cmake-utils_use java JAVA_BINDINGS)
85 $(cmake-utils_use python PYTHON_BINDINGS)
86 $(cmake-utils_use php PHP_BINDINGS)
87 $(cmake-utils_use_build test TESTS)
88 )
89 cmake-utils_src_configure
90 }