Gentoo Archives: gentoo-commits

From: "Anthony G. Basile (blueness)" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/isl: isl-0.14.ebuild ChangeLog
Date: Wed, 29 Oct 2014 11:37:28
Message-Id: 20141029113724.52A8A8FF4@oystercatcher.gentoo.org
1 blueness 14/10/29 11:37:24
2
3 Modified: ChangeLog
4 Added: isl-0.14.ebuild
5 Log:
6 Version bump. Masked for testing, see bug #467192.
7
8 (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
9
10 Revision Changes Path
11 1.26 dev-libs/isl/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/isl/ChangeLog?rev=1.26&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/isl/ChangeLog?rev=1.26&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/isl/ChangeLog?r1=1.25&r2=1.26
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/isl/ChangeLog,v
20 retrieving revision 1.25
21 retrieving revision 1.26
22 diff -u -r1.25 -r1.26
23 --- ChangeLog 24 Oct 2014 18:50:47 -0000 1.25
24 +++ ChangeLog 29 Oct 2014 11:37:24 -0000 1.26
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/isl
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/isl/ChangeLog,v 1.25 2014/10/24 18:50:47 zlogene Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/isl/ChangeLog,v 1.26 2014/10/29 11:37:24 blueness Exp $
30 +
31 +*isl-0.14 (29 Oct 2014)
32 +
33 + 29 Oct 2014; Anthony G. Basile <blueness@g.o> +isl-0.14.ebuild:
34 + Version bump. Masked for testing, see bug #467192.
35
36 24 Oct 2014; Mikle Kolyada <zlogene@g.o> isl-0.12.2.ebuild:
37 amd64 stable wrt bug #516152
38
39
40
41 1.1 dev-libs/isl/isl-0.14.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/isl/isl-0.14.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/isl/isl-0.14.ebuild?rev=1.1&content-type=text/plain
45
46 Index: isl-0.14.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/isl/isl-0.14.ebuild,v 1.1 2014/10/29 11:37:24 blueness Exp $
51
52 EAPI="5"
53
54 inherit eutils multilib-minimal
55
56 DESCRIPTION="A library for manipulating integer points bounded by linear constraints"
57 HOMEPAGE="http://isl.gforge.inria.fr/"
58 SRC_URI="http://isl.gforge.inria.fr/${P}.tar.bz2"
59
60 LICENSE="LGPL-2.1"
61 SLOT="0/14"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
63 IUSE="static-libs"
64
65 RDEPEND=">=dev-libs/gmp-5.1.3-r1[${MULTILIB_USEDEP}]"
66 DEPEND="${RDEPEND}
67 virtual/pkgconfig"
68
69 DOCS=( ChangeLog AUTHORS doc/manual.pdf )
70
71 src_prepare() {
72 epatch "${FILESDIR}"/${PN}-0.07-gdb-autoload-dir.patch
73
74 # m4/ax_create_pkgconfig_info.m4 is broken but avoid eautoreconf
75 # http://groups.google.com/group/isl-development/t/37ad876557e50f2c
76 sed -i -e '/Libs:/s:@LDFLAGS@ ::' configure || die #382737
77 }
78
79 multilib_src_configure() {
80 ECONF_SOURCE="${S}" econf $(use_enable static-libs static)
81 }
82
83 multilib_src_install_all() {
84 einstalldocs
85 prune_libtool_files
86 }