Gentoo Archives: gentoo-commits

From: Amy Liffey <amynka@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-scheme/gambit/
Date: Sat, 27 Oct 2018 09:23:01
Message-Id: 1540632084.44642190d0e40f3dc8fe5d197ca26c5a72919877.amynka@gentoo
1 commit: 44642190d0e40f3dc8fe5d197ca26c5a72919877
2 Author: Amy Liffey <amynka <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 27 09:21:24 2018 +0000
4 Commit: Amy Liffey <amynka <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 27 09:21:24 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44642190
7
8 dev-scheme/gambit: remove old 4.8.8
9
10 Signed-off-by: Amy Liffey <amynka <AT> gentoo.org>
11 Package-Manager: Portage-2.3.49, Repoman-2.3.11
12
13 dev-scheme/gambit/gambit-4.8.8.ebuild | 57 -----------------------------------
14 1 file changed, 57 deletions(-)
15
16 diff --git a/dev-scheme/gambit/gambit-4.8.8.ebuild b/dev-scheme/gambit/gambit-4.8.8.ebuild
17 deleted file mode 100644
18 index 999cda7fb2e..00000000000
19 --- a/dev-scheme/gambit/gambit-4.8.8.ebuild
20 +++ /dev/null
21 @@ -1,57 +0,0 @@
22 -# Copyright 1999-2017 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -inherit eutils elisp-common
28 -
29 -MY_PV="${PV//./_}"
30 -MY_P="${PN}-v${MY_PV}"
31 -
32 -DESCRIPTION="Gambit-C is a native Scheme to C compiler and interpreter"
33 -HOMEPAGE="http://www.iro.umontreal.ca/~gambit/"
34 -SRC_URI="http://www-labs.iro.umontreal.ca/~gambit/download/gambit/v${PV%.*}/source/${MY_P}.tgz"
35 -
36 -LICENSE="|| ( Apache-2.0 LGPL-2.1 )"
37 -SLOT="0"
38 -KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos"
39 -
40 -DEPEND="emacs? ( virtual/emacs )"
41 -RDEPEND=""
42 -
43 -SITEFILE="50gambit-gentoo.el"
44 -
45 -S="${WORKDIR}/${MY_P}" #-devel
46 -
47 -IUSE="emacs static"
48 -
49 -src_configure() {
50 - econf $(use_enable !static shared) \
51 - --docdir="${EPREFIX}"/usr/share/doc/${PF} \
52 - --enable-gnu-gcc-specific-options \
53 - --enable-gnu-gcc-no-strict-aliasing \
54 - --enable-single-host \
55 - --disable-absolute-shared-libs \
56 - --enable-type-checking
57 -}
58 -
59 -src_compile() {
60 - emake bootstrap
61 -
62 - if use emacs; then
63 - elisp-compile misc/*.el || die
64 - fi
65 -}
66 -
67 -src_install() {
68 - emake DESTDIR="${D}" install
69 - keepdir /usr/share/"${MY_PN}"
70 -}
71 -
72 -pkg_postinst() {
73 - use emacs && elisp-site-regen
74 -}
75 -
76 -pkg_postrm() {
77 - use emacs && elisp-site-regen
78 -}