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.4.3.ebuild
Date: Fri, 24 Apr 2009 09:48:51
Message-Id: E1LxI1T-0004g5-QL@stork.gentoo.org
1 hkbst 09/04/24 09:48:43
2
3 Modified: ChangeLog
4 Added: gambit-4.4.3.ebuild
5 Log:
6 bump
7 (Portage version: 2.1.6.11/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.24 dev-scheme/gambit/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/gambit/ChangeLog?rev=1.24&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/gambit/ChangeLog?rev=1.24&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/gambit/ChangeLog?r1=1.23&r2=1.24
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-scheme/gambit/ChangeLog,v
19 retrieving revision 1.23
20 retrieving revision 1.24
21 diff -u -r1.23 -r1.24
22 --- ChangeLog 16 Mar 2009 21:14:49 -0000 1.23
23 +++ ChangeLog 24 Apr 2009 09:48:43 -0000 1.24
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.23 2009/03/16 21:14:49 hkbst Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-scheme/gambit/ChangeLog,v 1.24 2009/04/24 09:48:43 hkbst Exp $
29 +
30 +*gambit-4.4.3 (24 Apr 2009)
31 +
32 + 24 Apr 2009; Marijn Schouten <hkBst@g.o> +gambit-4.4.3.ebuild:
33 + bump
34
35 *gambit-4.4.2 (16 Mar 2009)
36
37
38
39
40 1.1 dev-scheme/gambit/gambit-4.4.3.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/gambit/gambit-4.4.3.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/gambit/gambit-4.4.3.ebuild?rev=1.1&content-type=text/plain
44
45 Index: gambit-4.4.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.4.3.ebuild,v 1.1 2009/04/24 09:48:43 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-esp
69 !app-text/ghostscript-gnu
70 !<app-text/ghostscript-gpl-8.64"
71 RDEPEND=""
72
73 SITEFILE="50gambit-gentoo.el"
74
75 S=${WORKDIR}/${MY_P} #-devel
76
77 IUSE="emacs static"
78
79 src_compile() {
80 econf $(use_enable !static shared) --docdir=/usr/share/doc/${PF} --enable-single-host --disable-absolute-shared-libs
81
82 emake bootstrap || die
83
84 if use emacs; then
85 elisp-compile misc/*.el || die
86 fi
87 }
88
89 src_install() {
90 emake DESTDIR="${D}" install || die
91 }
92
93 pkg_postinst() {
94 use emacs && elisp-site-regen
95 }
96
97 pkg_postrm() {
98 use emacs && elisp-site-regen
99 }