diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2014-10-29 11:37:24 +0000 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2014-10-29 11:37:24 +0000 |
commit | 344ee55bf485d838a2c8097e3b5c1fddc140aa83 (patch) | |
tree | f45d2ef52031708a97a4db2f7a3ef0acf176bd1d /dev-libs | |
parent | Stable for amd64, wrt bug #524542 (diff) | |
download | gentoo-2-344ee55bf485d838a2c8097e3b5c1fddc140aa83.tar.gz gentoo-2-344ee55bf485d838a2c8097e3b5c1fddc140aa83.tar.bz2 gentoo-2-344ee55bf485d838a2c8097e3b5c1fddc140aa83.zip |
Version bump. Masked for testing, see bug #467192.
(Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/isl/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/isl/isl-0.14.ebuild | 39 |
2 files changed, 45 insertions, 1 deletions
diff --git a/dev-libs/isl/ChangeLog b/dev-libs/isl/ChangeLog index c40f7980d30e..50a3228c9dbd 100644 --- a/dev-libs/isl/ChangeLog +++ b/dev-libs/isl/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/isl # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/isl/ChangeLog,v 1.25 2014/10/24 18:50:47 zlogene Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/isl/ChangeLog,v 1.26 2014/10/29 11:37:24 blueness Exp $ + +*isl-0.14 (29 Oct 2014) + + 29 Oct 2014; Anthony G. Basile <blueness@gentoo.org> +isl-0.14.ebuild: + Version bump. Masked for testing, see bug #467192. 24 Oct 2014; Mikle Kolyada <zlogene@gentoo.org> isl-0.12.2.ebuild: amd64 stable wrt bug #516152 diff --git a/dev-libs/isl/isl-0.14.ebuild b/dev-libs/isl/isl-0.14.ebuild new file mode 100644 index 000000000000..004ccba076ba --- /dev/null +++ b/dev-libs/isl/isl-0.14.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/isl/isl-0.14.ebuild,v 1.1 2014/10/29 11:37:24 blueness Exp $ + +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.bz2" + +LICENSE="LGPL-2.1" +SLOT="0/14" +KEYWORDS="~alpha ~amd64 ~arm ~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} + 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 + # http://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 +} |