diff options
author | Alexey Shvetsov <alexxy@gentoo.org> | 2016-12-05 12:37:11 +0300 |
---|---|---|
committer | Alexey Shvetsov <alexxy@gentoo.org> | 2016-12-05 12:37:11 +0300 |
commit | 77af84de0799daf446f89eb0788d7277c33bb7e4 (patch) | |
tree | 4bd7d1ccdcf2449d2622d1208e584519c5fdc67d /dev-libs/libarcus | |
parent | dev-vcs/giggle: Add forgotten eautoreconf call, update ebuild meantime too. (diff) | |
download | gentoo-77af84de0799daf446f89eb0788d7277c33bb7e4.tar.gz gentoo-77af84de0799daf446f89eb0788d7277c33bb7e4.tar.bz2 gentoo-77af84de0799daf446f89eb0788d7277c33bb7e4.zip |
dev-libs/libarcus: Version bump
Package-Manager: portage-2.3.2
Diffstat (limited to 'dev-libs/libarcus')
-rw-r--r-- | dev-libs/libarcus/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/libarcus/libarcus-2.3.1.ebuild | 41 |
2 files changed, 42 insertions, 0 deletions
diff --git a/dev-libs/libarcus/Manifest b/dev-libs/libarcus/Manifest index 32b3f1b3cd06..d9e05948e636 100644 --- a/dev-libs/libarcus/Manifest +++ b/dev-libs/libarcus/Manifest @@ -1 +1,2 @@ DIST libarcus-1.0.0_pre20160307.tar.gz 40461 SHA256 ca4f286cc8bae08ddf166fa470f8381f25cf61629168ca965a2f4079e758ebfc SHA512 ec654fbe2d34ad60afd0c1f3745e9f0ef5709e3698ea78d17089dad5e86cb686f38a0ea4cca07b6911058ebdf61c17b51a89c002cbf74cbbd4a68a133d8984e5 WHIRLPOOL 0c688c0fb20022a14bce6870fd1da84c891b2f68f335d9f6ebcc25432dab51823b3e9d20be8a3a51a69bc1832c3cd55576c91e0246fcc15fc4456916d5278b28 +DIST libarcus-2.3.1.tar.gz 41641 SHA256 084061c6b19effbc86648915f0df3e4a8e64356487d111ac75dd2ee052ad43e8 SHA512 24ac5dd784993658e823dc7111e0ff31e77f8d95c4f024a84a7db731577ba595427de0917911fe7e0ba5848241ad33237fe6edb90a5191741e9523f616dd06a6 WHIRLPOOL 912893ee2314bb16ac580169ecc39e2f23470500b699b6d2f9b3e7dda62341268754c05774693305bbfb4a5bbcaee9aeec7695f61eaa86eab6ff1494720445de diff --git a/dev-libs/libarcus/libarcus-2.3.1.ebuild b/dev-libs/libarcus/libarcus-2.3.1.ebuild new file mode 100644 index 000000000000..093f441618d7 --- /dev/null +++ b/dev-libs/libarcus/libarcus-2.3.1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="6" + +PYTHON_COMPAT=( python3_4 python3_5 ) +inherit cmake-utils python-single-r1 + +MY_PN="libArcus" + +DESCRIPTION="This library facilitates communication between Cura and its backend" +HOMEPAGE="https://github.com/Ultimaker/libArcus" +SRC_URI="https://github.com/Ultimaker/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="AGPL-3+" +SLOT="0/2" +IUSE="examples python static-libs" +KEYWORDS="~amd64 ~x86" + +RDEPEND="${PYTHON_DEPS} + dev-python/sip[${PYTHON_USEDEP}] + >=dev-libs/protobuf-3:= + >=dev-python/protobuf-python-3:*[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND}" +S="${WORKDIR}/${MY_PN}-${PV}" +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" + +pkg_setup() { + use python && python-single-r1_pkg_setup +} + +src_configure() { + local mycmakeargs=( + -DBUILD_PYTHON=$(usex python ON OFF) + -DBUILD_EXAMPLES=$(usex examples ON OFF) + -DBUILD_STATIC=$(usex static-libs ON OFF) + ) + use python && mycmakeargs+=( -DPYTHON_SITE_PACKAGES_DIR="$(python_get_sitedir)" ) + cmake-utils_src_configure +} |