Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-mathematics/glpk: ChangeLog glpk-4.29.ebuild glpk-4.27.ebuild glpk-4.24.ebuild
Date: Tue, 22 Jul 2008 22:07:20
Message-Id: E1KLQ0q-0007O9-Do@stork.gentoo.org
1 bicatali 08/07/22 22:07:16
2
3 Modified: ChangeLog
4 Added: glpk-4.29.ebuild
5 Removed: glpk-4.27.ebuild glpk-4.24.ebuild
6 Log:
7 Version bump and ebuild cleanup
8 (Portage version: 2.1.4.4)
9
10 Revision Changes Path
11 1.24 sci-mathematics/glpk/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/glpk/ChangeLog?rev=1.24&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/glpk/ChangeLog?rev=1.24&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/glpk/ChangeLog?r1=1.23&r2=1.24
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/ChangeLog,v
20 retrieving revision 1.23
21 retrieving revision 1.24
22 diff -u -r1.23 -r1.24
23 --- ChangeLog 6 May 2008 19:31:50 -0000 1.23
24 +++ ChangeLog 22 Jul 2008 22:07:15 -0000 1.24
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sci-mathematics/glpk
27 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/ChangeLog,v 1.23 2008/05/06 19:31:50 ranger Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/ChangeLog,v 1.24 2008/07/22 22:07:15 bicatali Exp $
30 +
31 +*glpk-4.29 (22 Jul 2008)
32 +
33 + 22 Jul 2008; Sébastien Fabbro <bicatali@g.o> -glpk-4.24.ebuild,
34 + -glpk-4.27.ebuild, +glpk-4.29.ebuild:
35 + Version bump and ebuild cleanup
36
37 06 May 2008; Brent Baude <ranger@g.o> glpk-4.28.ebuild:
38 Marking glpk-4.28 ~ppc64 for bug 219454
39
40
41
42 1.1 sci-mathematics/glpk/glpk-4.29.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/glpk/glpk-4.29.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/glpk/glpk-4.29.ebuild?rev=1.1&content-type=text/plain
46
47 Index: glpk-4.29.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/glpk-4.29.ebuild,v 1.1 2008/07/22 22:07:15 bicatali Exp $
52
53 DESCRIPTION="GNU Linear Programming Kit"
54 LICENSE="GPL-3"
55 HOMEPAGE="http://www.gnu.org/software/glpk/"
56 SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
57
58 SLOT="0"
59 IUSE="doc examples gmp iodbc mysql"
60 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
61
62 DEPEND="iodbc? ( dev-db/libiodbc )
63 gmp? ( dev-libs/gmp )
64 mysql? ( virtual/mysql )"
65
66 src_compile() {
67 local myconf="--disable-dl"
68 if use mysql || use iodbc; then
69 myconf="--enable-dl"
70 fi
71 econf \
72 --with-zlib \
73 $(use_with gmp) \
74 $(use_enable iodbc odbc) \
75 $(use_enable mysql) \
76 ${myconf} || die "econf failed"
77 emake || die "emake failed"
78 }
79
80 src_install() {
81 emake DESTDIR="${D}" install || die "emake install failed"
82
83 # INSTALL include some usage docs
84 dodoc AUTHORS ChangeLog NEWS README || \
85 die "failed to install docs"
86
87 insinto /usr/share/doc/${PF}
88 if use examples; then
89 emake distclean
90 doins -r examples || die "failed to install examples"
91 fi
92 if use doc; then
93 cd "${S}"/doc
94 doins memo/gomory.djvu || die "failed to instal memo"
95 dodoc *.ps *.txt || die "failed to install manual files"
96 fi
97 }