diff options
author | 2013-03-18 17:07:57 +0000 | |
---|---|---|
committer | 2013-03-18 17:07:57 +0000 | |
commit | 473a925ad95a7b04f72513cfce9dc837cbc75823 (patch) | |
tree | a0eee7eaa93c035587c68661d29203baec9fddfc /net-libs/libkolabxml | |
parent | Version bumps, fix major regression, https://tracker.moodle.org/browse/MDL-38474 (diff) | |
download | gentoo-2-473a925ad95a7b04f72513cfce9dc837cbc75823.tar.gz gentoo-2-473a925ad95a7b04f72513cfce9dc837cbc75823.tar.bz2 gentoo-2-473a925ad95a7b04f72513cfce9dc837cbc75823.zip |
Version bump.
(Portage version: 2.1.11.55/cvs/Linux x86_64, signed Manifest commit with key 675D0D2C)
Diffstat (limited to 'net-libs/libkolabxml')
-rw-r--r-- | net-libs/libkolabxml/ChangeLog | 8 | ||||
-rw-r--r-- | net-libs/libkolabxml/libkolabxml-0.8.3.ebuild | 43 |
2 files changed, 50 insertions, 1 deletions
diff --git a/net-libs/libkolabxml/ChangeLog b/net-libs/libkolabxml/ChangeLog index 769b3d2136d1..5b4594c48ce0 100644 --- a/net-libs/libkolabxml/ChangeLog +++ b/net-libs/libkolabxml/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-libs/libkolabxml # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libkolabxml/ChangeLog,v 1.14 2013/03/02 22:57:01 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libkolabxml/ChangeLog,v 1.15 2013/03/18 17:07:57 kensington Exp $ + +*libkolabxml-0.8.3 (18 Mar 2013) + + 18 Mar 2013; Michael Palimaka <kensington@gentoo.org> + +libkolabxml-0.8.3.ebuild: + Version bump. 02 Mar 2013; Markos Chandras <hwoarang@gentoo.org> libkolabxml-0.8.1.ebuild: Move Qt dependencies to the new category diff --git a/net-libs/libkolabxml/libkolabxml-0.8.3.ebuild b/net-libs/libkolabxml/libkolabxml-0.8.3.ebuild new file mode 100644 index 000000000000..0e47905fa4bb --- /dev/null +++ b/net-libs/libkolabxml/libkolabxml-0.8.3.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libkolabxml/libkolabxml-0.8.3.ebuild,v 1.1 2013/03/18 17:07:57 kensington Exp $ + +EAPI=5 + +inherit cmake-utils multilib + +DESCRIPTION="Kolab XML format schema definitions library" +HOMEPAGE="http://www.kolab.org" +SRC_URI="http://mirror.kolabsys.com/pub/releases/${P}.tar.gz" + +LICENSE="Apache-2.0 ZLIB LGPL-3+ public-domain" +SLOT="4" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" +IUSE="csharp java python php test" + +RDEPEND=" + dev-cpp/xsd + >=dev-libs/boost-1.42.0:= + dev-libs/xerces-c + net-misc/curl +" +DEPEND=" + ${RDEPEND} + csharp? ( >=dev-lang/swig-2.0.7 dev-lang/mono ) + java? ( >=dev-lang/swig-2.0.7 virtual/jre ) + php? ( >=dev-lang/swig-2.0.7 dev-lang/php ) + python? ( >=dev-lang/swig-2.0.7 dev-lang/python ) + test? ( dev-qt/qttest:4 ) +" + +src_configure() { + local mycmakeargs=( + -DLIB_INSTALL_DIR=$(get_libdir) + $(cmake-utils_use csharp CSHARP_BINDINGS) + $(cmake-utils_use java JAVA_BINDINGS) + $(cmake-utils_use python PYTHON_BINDINGS) + $(cmake-utils_use php PHP_BINDINGS) + $(cmake-utils_use_build test TESTS) + ) + cmake-utils_src_configure +} |