diff options
author | Andreas Sturmlechner <andreas.sturmlechner@gmail.com> | 2016-02-06 18:25:49 +0100 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2016-02-22 18:05:15 +0100 |
commit | a8ca444b5c267f52cbdd3eae6946ac4de3eea739 (patch) | |
tree | 26c9e15839e5da38c58aa3150355aa6eead94ac7 /dev-libs/liborcus/liborcus-0.7.1-r1.ebuild | |
parent | dev-libs/libixion: Fix DEPENDs, subslot, fix USE=-python (bug 550814) (diff) | |
download | gentoo-a8ca444b5c267f52cbdd3eae6946ac4de3eea739.tar.gz gentoo-a8ca444b5c267f52cbdd3eae6946ac4de3eea739.tar.bz2 gentoo-a8ca444b5c267f52cbdd3eae6946ac4de3eea739.zip |
dev-libs/liborcus: Add USE=spreadsheet-model,tools (bugs 571964, 571966)
Further changes:
EAPI=6
0.7.1 and 0.9.2 - pin required mdds slot 0 and liborcus version
9999 - pin required mdds slot 1
Package-Manager: portage-2.2.27
Diffstat (limited to 'dev-libs/liborcus/liborcus-0.7.1-r1.ebuild')
-rw-r--r-- | dev-libs/liborcus/liborcus-0.7.1-r1.ebuild | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/dev-libs/liborcus/liborcus-0.7.1-r1.ebuild b/dev-libs/liborcus/liborcus-0.7.1-r1.ebuild new file mode 100644 index 000000000000..3612205fec10 --- /dev/null +++ b/dev-libs/liborcus/liborcus-0.7.1-r1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +EGIT_REPO_URI="git://gitlab.com/orcus/orcus.git" + +[[ ${PV} == 9999 ]] && GITECLASS="git-r3 autotools" +inherit eutils ${GITECLASS} +unset GITECLASS + +DESCRIPTION="Standalone file import filter library for spreadsheet documents" +HOMEPAGE="https://gitlab.com/orcus/orcus" +[[ ${PV} == 9999 ]] || SRC_URI="http://kohei.us/files/orcus/src/${P}.tar.xz" + +LICENSE="MIT" +SLOT="0" +[[ ${PV} == 9999 ]] || \ +KEYWORDS="~amd64 ~arm ~ppc ~x86" + +IUSE="+spreadsheet-model static-libs tools" + +RDEPEND=" + >=dev-libs/boost-1.51.0:= + sys-libs/zlib:= + spreadsheet-model? ( =dev-libs/libixion-0.9*:= ) +" +DEPEND="${RDEPEND} + >=dev-util/mdds-0.8.1:0 +" + +src_prepare() { + eapply_user + [[ ${PV} == 9999 ]] && eautoreconf +} + +src_configure() { + econf \ + --disable-werror \ + $(use_enable spreadsheet-model) \ + $(use_enable static-libs static) \ + $(use_with tools) +} + +src_install() { + default + + prune_libtool_files --all +} |