Gentoo Archives: gentoo-commits

From: "José María Alonso" <nimiux@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/sb-cga/
Date: Mon, 05 Dec 2016 09:23:34
Message-Id: 1480929807.74aed722e7355fadd2704d51d55e62cac44426b8.nimiux@gentoo
1 commit: 74aed722e7355fadd2704d51d55e62cac44426b8
2 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 5 09:23:27 2016 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 5 09:23:27 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=74aed722
7
8 dev-lisp/sb-cga: Updates header and removes doc USE
9
10 dev-lisp/sb-cga/sb-cga-9999.ebuild | 34 +++++++---------------------------
11 1 file changed, 7 insertions(+), 27 deletions(-)
12
13 diff --git a/dev-lisp/sb-cga/sb-cga-9999.ebuild b/dev-lisp/sb-cga/sb-cga-9999.ebuild
14 index 5d66fa6..d185d0a 100644
15 --- a/dev-lisp/sb-cga/sb-cga-9999.ebuild
16 +++ b/dev-lisp/sb-cga/sb-cga-9999.ebuild
17 @@ -1,38 +1,18 @@
18 -# Copyright 1999-2014 Gentoo Foundation
19 +# Copyright 1999-2016 Gentoo Foundation
20 # Distributed under the terms of the GNU General Public License v2
21 -# $Header: $
22 +# $Id$
23
24 -EAPI=5
25 +EAPI=6
26
27 -inherit common-lisp-3 git-2
28 +inherit common-lisp-3 git-r3
29
30 DESCRIPTION="Computer graphics algebra library for SBCL."
31 -HOMEPAGE="http://github.com/3b/sb-cga"
32 -EGIT_REPO_URI="git://github.com/3b/sb-cga.git"
33 +HOMEPAGE="https://github.com/nikodemus/sb-cga"
34 +EGIT_REPO_URI="git://github.com/nikodemus/${PN}"
35
36 LICENSE="MIT"
37 SLOT="0"
38 -KEYWORDS="~amd64 ~ppc ~sparc ~x86"
39 -IUSE="doc"
40 +IUSE=""
41
42 RDEPEND="dev-lisp/sbcl
43 dev-lisp/alexandria"
44 -
45 -src_prepare() {
46 - if use doc ; then
47 - sed -e 's/--css/--css-include/' -i doc/Makefile || die
48 - fi
49 -}
50 -
51 -src_compile() {
52 - if use doc ; then
53 - cd doc || die
54 - emake
55 - fi
56 -}
57 -
58 -src_install() {
59 - common-lisp-install-sources *.lisp ports
60 - common-lisp-install-asdf
61 - use doc && dodoc README && dohtml doc/sb-cga.html
62 -}