Gentoo Archives: gentoo-commits

From: "Markus Dittrich (markusle)" <markusle@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-mathematics/coq: ChangeLog coq-8.1_p1.ebuild
Date: Sat, 29 Sep 2007 15:49:22
Message-Id: E1IbeQl-0003Ns-1B@stork.gentoo.org
1 markusle 07/09/29 15:40:35
2
3 Modified: ChangeLog
4 Added: coq-8.1_p1.ebuild
5 Log:
6 Version bump (see bug #192522).
7 (Portage version: 2.1.3.9)
8
9 Revision Changes Path
10 1.16 sci-mathematics/coq/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/coq/ChangeLog?rev=1.16&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/coq/ChangeLog?rev=1.16&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/coq/ChangeLog?r1=1.15&r2=1.16
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/coq/ChangeLog,v
19 retrieving revision 1.15
20 retrieving revision 1.16
21 diff -u -r1.15 -r1.16
22 --- ChangeLog 30 Aug 2007 13:31:44 -0000 1.15
23 +++ ChangeLog 29 Sep 2007 15:40:34 -0000 1.16
24 @@ -1,6 +1,12 @@
25 # ChangeLog for sci-mathematics/coq
26 # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/coq/ChangeLog,v 1.15 2007/08/30 13:31:44 phreak Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/coq/ChangeLog,v 1.16 2007/09/29 15:40:34 markusle Exp $
29 +
30 +*coq-8.1_p1 (29 Sep 2007)
31 +
32 + 29 Sep 2007; Markus Dittrich <markusle@g.o>
33 + +coq-8.1_p1.ebuild:
34 + Version bump (see bug #192522).
35
36 30 Aug 2007; Christian Heim <phreak@g.o> metadata.xml:
37 Removing mattam from metadata due to his retirement (see #30021 for reference).
38 @@ -8,7 +14,7 @@
39 31 Jul 2007; Christian Heim <phreak@g.o> metadata.xml:
40 Reassigning to sci from math-proof (see #138059 for reference).
41
42 - 02 Jul 2007; Piotr Jaroszyński <peper@g.o> coq-8.0-r1.ebuild,
43 + 02 Jul 2007; Piotr Jaroszyński <peper@g.o> coq-8.0-r1.ebuild,
44 coq-8.0_p3.ebuild:
45 (QA) RESTRICT clean up.
46
47
48
49
50 1.1 sci-mathematics/coq/coq-8.1_p1.ebuild
51
52 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/coq/coq-8.1_p1.ebuild?rev=1.1&view=markup
53 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/coq/coq-8.1_p1.ebuild?rev=1.1&content-type=text/plain
54
55 Index: coq-8.1_p1.ebuild
56 ===================================================================
57 # Copyright 1999-2007 Gentoo Foundation
58 # Distributed under the terms of the GNU General Public License v2
59 # $Header: /var/cvsroot/gentoo-x86/sci-mathematics/coq/coq-8.1_p1.ebuild,v 1.1 2007/09/29 15:40:34 markusle Exp $
60
61 inherit eutils
62
63 IUSE="norealanalysis ide debug"
64
65 RESTRICT="strip"
66
67 MY_PV="${PV/_p/pl}"
68 MY_P="${PN}-${MY_PV}"
69
70 DESCRIPTION="Coq is a proof assistant written in O'Caml"
71 HOMEPAGE="http://coq.inria.fr/"
72 SRC_URI="ftp://ftp.inria.fr/INRIA/${PN}/V${MY_PV}/${MY_P}.tar.gz"
73
74 LICENSE="LGPL-2.1"
75 SLOT="0"
76 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
77
78 DEPEND=">=dev-lang/ocaml-3.08
79 ide? ( >=dev-ml/lablgtk-2.2.0 )"
80
81 S="${WORKDIR}/${MY_P}"
82
83 src_compile() {
84 local myconf="--prefix /usr \
85 --bindir /usr/bin \
86 --libdir /usr/lib/coq \
87 --mandir /usr/man \
88 --emacslib /usr/share/emacs/site-lisp \
89 --coqdocdir /usr/lib/coq/coqdoc"
90
91 use debug && myconf="--debug $myconf"
92 use norealanalysis && myconf="$myconf --reals"
93 use norealanalysis || myconf="$myconf --reals all"
94
95 if use ide; then
96 myconf="$myconf --coqide opt"
97 else
98 myconf="$myconf --coqide no"
99 fi
100
101 ./configure $myconf || die "configure failed"
102
103 if use ide; then
104 labldir=/usr/lib/ocaml/lablgtk2
105 sed -i -e "s|BYTEFLAGS=|BYTEFLAGS=-I ${labldir} |" Makefile
106 sed -i -e "s|OPTFLAGS=|OPTFLAGS=-I ${labldir} |" Makefile
107 sed -i -e "s|COQIDEFLAGS=.*|COQIDEFLAGS=-thread -I ${labldir}|" Makefile
108 fi
109
110 make || die "make failed"
111 }
112
113 src_install() {
114 make COQINSTALLPREFIX=${D} install || die
115 dodoc README CREDITS CHANGES LICENSE
116
117 if use ide; then
118 insinto /usr/share/applnk/Edutainment/Mathematics
119 doins ${FILESDIR}/coqide.desktop
120 fi
121 }
122
123
124
125 --
126 gentoo-commits@g.o mailing list