Gentoo Archives: gentoo-commits

From: "Ryan Hill (dirtyepic)" <dirtyepic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/isl: ChangeLog isl-0.09.ebuild
Date: Mon, 20 Feb 2012 06:42:51
Message-Id: 20120220064242.2DA5620034@flycatcher.gentoo.org
1 dirtyepic 12/02/20 06:42:42
2
3 Modified: ChangeLog
4 Added: isl-0.09.ebuild
5 Log:
6 Version bump (bug #389357 by Samuli).
7
8 (Portage version: 2.2.0_alpha87/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.8 dev-libs/isl/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/isl/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/isl/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/isl/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/isl/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 20 Nov 2011 05:36:52 -0000 1.7
24 +++ ChangeLog 20 Feb 2012 06:42:42 -0000 1.8
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/isl
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/isl/ChangeLog,v 1.7 2011/11/20 05:36:52 ssuominen Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/isl/ChangeLog,v 1.8 2012/02/20 06:42:42 dirtyepic Exp $
31 +
32 +*isl-0.09 (20 Feb 2012)
33 +
34 + 20 Feb 2012; Ryan Hill <dirtyepic@g.o> +isl-0.09.ebuild:
35 + Version bump (bug #389357 by Samuli).
36
37 20 Nov 2011; Samuli Suominen <ssuominen@g.o> isl-0.07-r1.ebuild:
38 Link to upstream bug report for the LDFLAGS and pkg-config issue.
39
40
41
42 1.1 dev-libs/isl/isl-0.09.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/isl/isl-0.09.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/isl/isl-0.09.ebuild?rev=1.1&content-type=text/plain
46
47 Index: isl-0.09.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-libs/isl/isl-0.09.ebuild,v 1.1 2012/02/20 06:42:42 dirtyepic Exp $
52
53 EAPI=4
54 inherit eutils
55
56 DESCRIPTION="A library for manipulating integer points bounded by affine constraints."
57 HOMEPAGE="http://www.kotnet.org/~skimo/isl/"
58 SRC_URI="http://www.kotnet.org/~skimo/isl/${P}.tar.bz2"
59
60 LICENSE="LGPL-2.1"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="static-libs"
64
65 RDEPEND="dev-libs/gmp"
66 DEPEND="${RDEPEND}"
67
68 DOCS=( ChangeLog AUTHORS doc/manual.pdf )
69
70 src_prepare() {
71 epatch "${FILESDIR}"/${PN}-0.07-gdb-autoload-dir.patch
72
73 # m4/ax_create_pkgconfig_info.m4 is broken but avoid eautoreconf
74 # http://groups.google.com/group/isl-development/t/37ad876557e50f2c
75 sed -i -e '/Libs:/s:@LDFLAGS@ ::' configure || die #382737
76 }
77
78 src_configure() {
79 econf $(use_enable static-libs static)
80 }
81
82 src_install() {
83 default
84 rm -f "${ED}"usr/lib*/libisl.la
85 }