Gentoo Archives: gentoo-commits

From: "Marijn Schouten (hkbst)" <hkbst@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-scheme/gambit: ChangeLog gambit-4.5.3.ebuild
Date: Mon, 02 Nov 2009 15:09:14
Message-Id: E1N4yWo-0006hK-VH@stork.gentoo.org
1 hkbst 09/11/02 15:09:06
2
3 Modified: ChangeLog
4 Added: gambit-4.5.3.ebuild
5 Log:
6 bump
7 (Portage version: 2.1.7.1/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.29 dev-scheme/gambit/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/gambit/ChangeLog?rev=1.29&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/gambit/ChangeLog?rev=1.29&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/gambit/ChangeLog?r1=1.28&r2=1.29
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-scheme/gambit/ChangeLog,v
19 retrieving revision 1.28
20 retrieving revision 1.29
21 diff -u -r1.28 -r1.29
22 --- ChangeLog 11 Sep 2009 15:28:02 -0000 1.28
23 +++ ChangeLog 2 Nov 2009 15:09:06 -0000 1.29
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-scheme/gambit
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-scheme/gambit/ChangeLog,v 1.28 2009/09/11 15:28:02 hkbst Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-scheme/gambit/ChangeLog,v 1.29 2009/11/02 15:09:06 hkbst Exp $
29 +
30 +*gambit-4.5.3 (02 Nov 2009)
31 +
32 + 02 Nov 2009; Marijn Schouten <hkBst@g.o> +gambit-4.5.3.ebuild:
33 + bump
34
35 *gambit-4.5.2 (11 Sep 2009)
36
37
38
39
40 1.1 dev-scheme/gambit/gambit-4.5.3.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/gambit/gambit-4.5.3.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/gambit/gambit-4.5.3.ebuild?rev=1.1&content-type=text/plain
44
45 Index: gambit-4.5.3.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-scheme/gambit/gambit-4.5.3.ebuild,v 1.1 2009/11/02 15:09:06 hkbst Exp $
50
51 inherit elisp-common
52
53 MY_PN=gambc
54 MY_PV=${PV//./_}
55 MY_P=${MY_PN}-v${MY_PV}
56
57 DESCRIPTION="Gambit-C is a native Scheme to C compiler and interpreter."
58 HOMEPAGE="http://www.iro.umontreal.ca/~gambit/"
59 SRC_URI="http://www.iro.umontreal.ca/~gambit/download/gambit/v${PV%.*}/source/${MY_P}.tgz"
60
61 LICENSE="|| ( Apache-2.0 LGPL-2.1 )"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc64 ~x86"
64
65 #gsc is now Gambit Scheme Compiler and not ghostscript.
66 #only app-text/ghostscript-gpl-8.64 has freed gsc yet.
67 DEPEND="emacs? ( virtual/emacs )
68 !app-text/ghostscript-gnu
69 !<app-text/ghostscript-gpl-8.64"
70 RDEPEND=""
71
72 SITEFILE="50gambit-gentoo.el"
73
74 S=${WORKDIR}/${MY_P} #-devel
75
76 IUSE="emacs static"
77
78 src_compile() {
79 econf $(use_enable !static shared) --docdir=/usr/share/doc/${PF} --enable-single-host --disable-absolute-shared-libs
80
81 emake bootstrap || die
82
83 if use emacs; then
84 elisp-compile misc/*.el || die
85 fi
86 }
87
88 src_install() {
89 emake DESTDIR="${D}" install || die
90 }
91
92 pkg_postinst() {
93 use emacs && elisp-site-regen
94 }
95
96 pkg_postrm() {
97 use emacs && elisp-site-regen
98 }