Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emacs/slime: ChangeLog slime-2.0_p20070816-r1.ebuild slime-2.0_p20070816.ebuild
Date: Sun, 21 Oct 2007 22:24:12
Message-Id: E1Ijj2w-0002Bh-22@stork.gentoo.org
1 ulm 07/10/21 22:13:22
2
3 Modified: ChangeLog
4 Added: slime-2.0_p20070816-r1.ebuild
5 Removed: slime-2.0_p20070816.ebuild
6 Log:
7 Install Info file also for USE=-doc; don't install ChangeLog twice.
8 (Portage version: 2.1.3.15)
9
10 Revision Changes Path
11 1.49 app-emacs/slime/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/slime/ChangeLog?rev=1.49&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/slime/ChangeLog?rev=1.49&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/slime/ChangeLog?r1=1.48&r2=1.49
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-emacs/slime/ChangeLog,v
20 retrieving revision 1.48
21 retrieving revision 1.49
22 diff -u -r1.48 -r1.49
23 --- ChangeLog 20 Sep 2007 19:51:04 -0000 1.48
24 +++ ChangeLog 21 Oct 2007 22:13:21 -0000 1.49
25 @@ -1,6 +1,13 @@
26 # ChangeLog for app-emacs/slime
27 # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/slime/ChangeLog,v 1.48 2007/09/20 19:51:04 ulm Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/slime/ChangeLog,v 1.49 2007/10/21 22:13:21 ulm Exp $
30 +
31 +*slime-2.0_p20070816-r1 (21 Oct 2007)
32 +
33 + 21 Oct 2007; Ulrich Mueller <ulm@g.o> -slime-2.0_p20070816.ebuild,
34 + +slime-2.0_p20070816-r1.ebuild:
35 + Install Info file also for USE=-doc; don't install ChangeLog twice.
36 + sys-apps/texinfo removed from DEPEND. Explicitly inherit eutils.
37
38 20 Sep 2007; Ulrich Mueller <ulm@g.o> +files/71slime-gentoo.el,
39 slime-2.0_p20070816.ebuild:
40
41
42
43 1.1 app-emacs/slime/slime-2.0_p20070816-r1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/slime/slime-2.0_p20070816-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/slime/slime-2.0_p20070816-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: slime-2.0_p20070816-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2007 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-emacs/slime/slime-2.0_p20070816-r1.ebuild,v 1.1 2007/10/21 22:13:21 ulm Exp $
53
54 inherit common-lisp elisp eutils
55
56 DESCRIPTION="SLIME, the Superior Lisp Interaction Mode (Extended)"
57 HOMEPAGE="http://common-lisp.net/project/slime/"
58 SRC_URI="mirror://gentoo/${P}.tar.bz2"
59
60 LICENSE="GPL-2 xref.lisp"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
63 IUSE="doc"
64
65 RDEPEND="virtual/commonlisp"
66 DEPEND="${RDEPEND}
67 doc? ( virtual/tetex )"
68
69 CLPACKAGE=swank
70 SWANK_VERSION="2007-08-16"
71 SITEFILE=71${PN}-gentoo.el
72
73 src_unpack() {
74 unpack ${A}
75 cd "${S}"
76 epatch "${FILESDIR}"/slime-set-swank-wire-protocol-version.patch
77 epatch "${FILESDIR}"/${P}-save-restriction-if-possible.patch
78 sed -i "s:@SWANK-WIRE-PROTOCOL-VERSION@:${SWANK_VERSION}:" swank.lisp
79 }
80
81 src_compile() {
82 elisp-comp *.el || die "elisp-comp failed"
83 emake -C doc slime.info || die "emake slime.info failed"
84 if use doc; then
85 emake -C doc all || die "emake doc failed"
86 fi
87 }
88
89 src_install() {
90 elisp-install ${PN} *.el{,c} "${FILESDIR}"/swank-loader.lisp \
91 || die "Cannot install SLIME core"
92 elisp-site-file-install "${FILESDIR}/${SITEFILE}" \
93 || die "elisp-site-file-install failed"
94 insinto "${CLSOURCEROOT}"/swank
95 doins *.lisp "${FILESDIR}"/swank.asd
96 dodir "${CLSYSTEMROOT}"
97 dosym "${CLSOURCEROOT}"/swank/swank.asd "${CLSYSTEMROOT}"
98 dosym "${SITELISP}"/${PN}/swank-version.el "${CLSOURCEROOT}"/swank
99
100 dodoc README* ChangeLog HACKING NEWS PROBLEMS || die "dodoc failed"
101 doinfo doc/slime.info
102 if use doc; then
103 dodoc doc/slime.{ps,pdf} || die "dodoc failed"
104 fi
105 }
106
107
108
109 --
110 gentoo-commits@g.o mailing list