diff options
author | 2015-06-13 11:29:15 +0000 | |
---|---|---|
committer | 2015-06-13 11:29:15 +0000 | |
commit | 2c7f44fba98bed88676c098641331d91011e5775 (patch) | |
tree | eb4c951e108378e823bdcf5eebd8923f741430bb /dev-libs | |
parent | virtual/perl-Test-Simple has gobbled up Test::Tester, bug 550990 (diff) | |
download | gentoo-2-2c7f44fba98bed88676c098641331d91011e5775.tar.gz gentoo-2-2c7f44fba98bed88676c098641331d91011e5775.tar.bz2 gentoo-2-2c7f44fba98bed88676c098641331d91011e5775.zip |
Version bumps.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/isl/ChangeLog | 9 | ||||
-rw-r--r-- | dev-libs/isl/isl-0.14.1.ebuild | 40 | ||||
-rw-r--r-- | dev-libs/isl/isl-0.15.ebuild | 40 |
3 files changed, 88 insertions, 1 deletions
diff --git a/dev-libs/isl/ChangeLog b/dev-libs/isl/ChangeLog index 9f076df99bbb..896f77887a34 100644 --- a/dev-libs/isl/ChangeLog +++ b/dev-libs/isl/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-libs/isl # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/isl/ChangeLog,v 1.33 2015/05/13 15:12:05 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/isl/ChangeLog,v 1.34 2015/06/13 11:29:15 blueness Exp $ + +*isl-0.15 (13 Jun 2015) +*isl-0.14.1 (13 Jun 2015) + + 13 Jun 2015; Anthony G. Basile <blueness@gentoo.org> +isl-0.14.1.ebuild, + +isl-0.15.ebuild: + Version bumps. 13 May 2015; Michał Górny <mgorny@gentoo.org> files/isl-0.07-gdb-autoload-dir.patch: diff --git a/dev-libs/isl/isl-0.14.1.ebuild b/dev-libs/isl/isl-0.14.1.ebuild new file mode 100644 index 000000000000..f7c34435c2bf --- /dev/null +++ b/dev-libs/isl/isl-0.14.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/isl/isl-0.14.1.ebuild,v 1.1 2015/06/13 11:29:15 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.xz" + +LICENSE="LGPL-2.1" +SLOT="0/14" +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 + # 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 +} diff --git a/dev-libs/isl/isl-0.15.ebuild b/dev-libs/isl/isl-0.15.ebuild new file mode 100644 index 000000000000..71ff44c7fd21 --- /dev/null +++ b/dev-libs/isl/isl-0.15.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/isl/isl-0.15.ebuild,v 1.1 2015/06/13 11:29:15 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.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 + # 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 +} |