diff options
author | 2016-02-14 20:08:16 +0100 | |
---|---|---|
committer | 2016-02-14 20:08:16 +0100 | |
commit | 8a1bc8250959967320d0587197f23d4742ffb50d (patch) | |
tree | 82914bdd42a70e1ac35a17b2cdaba6fc2add15d9 /dev-libs/freexl/freexl-1.0.1.ebuild | |
parent | www-apps/nanoc: fix bug 574726 (diff) | |
download | gentoo-8a1bc8250959967320d0587197f23d4742ffb50d.tar.gz gentoo-8a1bc8250959967320d0587197f23d4742ffb50d.tar.bz2 gentoo-8a1bc8250959967320d0587197f23d4742ffb50d.zip |
dev-libs/freexl: version bump, security fix bug #544426
Package-Manager: portage-2.2.26
Diffstat (limited to 'dev-libs/freexl/freexl-1.0.1.ebuild')
-rw-r--r-- | dev-libs/freexl/freexl-1.0.1.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-libs/freexl/freexl-1.0.1.ebuild b/dev-libs/freexl/freexl-1.0.1.ebuild new file mode 100644 index 000000000000..c7931260b050 --- /dev/null +++ b/dev-libs/freexl/freexl-1.0.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit eutils + +DESCRIPTION="Simple XLS data extraction library" +HOMEPAGE="http://www.gaia-gis.it/gaia-sins/" +SRC_URI="http://www.gaia-gis.it/gaia-sins/${PN}-sources/${P}.tar.gz" + +LICENSE="MPL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" +IUSE="static-libs" + +DEPEND="virtual/libiconv" +RDEPEND="${DEPEND}" + +src_configure() { + econf \ + $(use_enable static-libs static) +} + +src_install() { + default + + prune_libtool_files --all +} |