diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2016-01-19 02:19:28 -0500 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2016-01-19 02:19:28 -0500 |
commit | e441b56a3cf45dbe5be62eb90356e03a9a3fe1fb (patch) | |
tree | 0882213ae89fd6575bbfcbbd6cd9dcecb07d7282 /dev-libs/isl/isl-0.16.1.ebuild | |
parent | games-puzzle/scramble: fix building with gcc-5 (bug #571460) (diff) | |
download | gentoo-e441b56a3cf45dbe5be62eb90356e03a9a3fe1fb.tar.gz gentoo-e441b56a3cf45dbe5be62eb90356e03a9a3fe1fb.tar.bz2 gentoo-e441b56a3cf45dbe5be62eb90356e03a9a3fe1fb.zip |
dev-libs/isl: version bump to 0.16.1
Package-Manager: portage-2.2.26
Diffstat (limited to 'dev-libs/isl/isl-0.16.1.ebuild')
-rw-r--r-- | dev-libs/isl/isl-0.16.1.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/dev-libs/isl/isl-0.16.1.ebuild b/dev-libs/isl/isl-0.16.1.ebuild new file mode 100644 index 000000000000..2a72ff659c4b --- /dev/null +++ b/dev-libs/isl/isl-0.16.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +inherit eutils multilib-minimal + +DESCRIPTION="A library for manipulating integer points bounded by linear constraints" +HOMEPAGE="http://isl.gforge.inria.fr/" +SRC_URI="http://isl.gforge.inria.fr/${P}.tar.xz" + +LICENSE="LGPL-2.1" +SLOT="0/15" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" +IUSE="static-libs" + +RDEPEND=">=dev-libs/gmp-5.1.3-r1[${MULTILIB_USEDEP}]" +DEPEND="${RDEPEND} + app-arch/xz-utils + virtual/pkgconfig" + +DOCS=( ChangeLog AUTHORS doc/manual.pdf ) + +src_prepare() { + epatch "${FILESDIR}"/${PN}-0.07-gdb-autoload-dir.patch + + # m4/ax_create_pkgconfig_info.m4 is broken but avoid eautoreconf + # https://groups.google.com/group/isl-development/t/37ad876557e50f2c + sed -i -e '/Libs:/s:@LDFLAGS@ ::' configure || die #382737 +} + +multilib_src_configure() { + ECONF_SOURCE="${S}" econf $(use_enable static-libs static) +} + +multilib_src_install_all() { + einstalldocs + prune_libtool_files +} |