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.28.ebuild
Date: Tue, 01 Apr 2008 18:13:43
Message-Id: E1Jgkwp-000515-3B@stork.gentoo.org
1 bicatali 08/04/01 18:11:03
2
3 Modified: ChangeLog
4 Added: glpk-4.28.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.19 sci-mathematics/glpk/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/glpk/ChangeLog?rev=1.19&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/glpk/ChangeLog?rev=1.19&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/glpk/ChangeLog?r1=1.18&r2=1.19
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/ChangeLog,v
19 retrieving revision 1.18
20 retrieving revision 1.19
21 diff -u -r1.18 -r1.19
22 --- ChangeLog 26 Mar 2008 14:03:08 -0000 1.18
23 +++ ChangeLog 1 Apr 2008 18:11:02 -0000 1.19
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sci-mathematics/glpk
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/ChangeLog,v 1.18 2008/03/26 14:03:08 bicatali Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/ChangeLog,v 1.19 2008/04/01 18:11:02 bicatali Exp $
29 +
30 +*glpk-4.28 (01 Apr 2008)
31 +
32 + 01 Apr 2008; Sébastien Fabbro <bicatali@g.o> +glpk-4.28.ebuild:
33 + Version bump
34
35 26 Mar 2008; Sébastien Fabbro <bicatali@g.o> glpk-4.27.ebuild:
36 Fixed syntax errors
37
38
39
40 1.1 sci-mathematics/glpk/glpk-4.28.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/glpk/glpk-4.28.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/glpk/glpk-4.28.ebuild?rev=1.1&content-type=text/plain
44
45 Index: glpk-4.28.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/glpk-4.28.ebuild,v 1.1 2008/04/01 18:11:02 bicatali Exp $
50
51 DESCRIPTION="GNU Linear Programming Kit"
52 LICENSE="GPL-3"
53 HOMEPAGE="http://www.gnu.org/software/glpk/"
54 SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
55
56 SLOT="0"
57 IUSE="doc gmp iodbc mysql"
58 KEYWORDS="~x86 ~amd64 ~ppc"
59
60 DEPEND="iodbc? ( dev-db/libiodbc )
61 gmp? ( dev-libs/gmp )
62 mysql? ( virtual/mysql )"
63
64 src_compile() {
65 econf \
66 $(use_enable gmp) \
67 $(use_enable iodbc) \
68 $(use_enable mysql) \
69 || die "econf failed"
70 emake || die "emake failed"
71 }
72
73 src_install() {
74 emake DESTDIR="${D}" install || die "emake install failed"
75
76 # INSTALL include some usage docs
77 dodoc AUTHORS ChangeLog NEWS README || \
78 die "failed to install docs"
79
80 insinto /usr/share/doc/${PF}
81 # 388Kb
82 doins -r examples || die "failed to install examples"
83 if use doc; then
84 cd "${S}"/doc
85 doins memo/gomory.djvu || die "failed to instal memo"
86 dodoc *.ps *.txt || die "failed to install manual files"
87 fi
88 }
89
90
91
92 --
93 gentoo-commits@l.g.o mailing list