Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/slime/
Date: Mon, 17 Apr 2017 10:01:53
Message-Id: 1492423298.62a4ef94dfccd1d94c9142471d1cab56b3ff85bd.ulm@gentoo
1 commit: 62a4ef94dfccd1d94c9142471d1cab56b3ff85bd
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 17 09:51:46 2017 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 17 10:01:38 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62a4ef94
7
8 app-emacs/slime: Use complete path as second argument of dosym.
9
10 Add missing EPREFIX to first argument of dosym.
11 PMS reference: https://projects.gentoo.org/pms/6/pms.html#x1-13800011.3.3.9
12
13 Bug: 379899
14 Package-Manager: Portage-2.3.5, Repoman-2.3.2
15
16 app-emacs/slime/slime-2.0_p20101103.ebuild | 5 +++--
17 1 file changed, 3 insertions(+), 2 deletions(-)
18
19 diff --git a/app-emacs/slime/slime-2.0_p20101103.ebuild b/app-emacs/slime/slime-2.0_p20101103.ebuild
20 index 82ae40d4f47..08e07702bc2 100644
21 --- a/app-emacs/slime/slime-2.0_p20101103.ebuild
22 +++ b/app-emacs/slime/slime-2.0_p20101103.ebuild
23 @@ -1,4 +1,4 @@
24 -# Copyright 1999-2015 Gentoo Foundation
25 +# Copyright 1999-2017 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27
28 EAPI=3
29 @@ -65,7 +65,8 @@ src_install() {
30 insinto "${CLSOURCEROOT%/}/swank"
31 doins *.lisp swank.asd || die
32 dodir "${CLSYSTEMROOT}" || die
33 - dosym "${CLSOURCEROOT%/}/swank/swank.asd" "${CLSYSTEMROOT}" || die
34 + dosym "${EPREFIX}${CLSOURCEROOT%/}/swank/swank.asd" \
35 + "${CLSYSTEMROOT%/}/swank.asd" || die
36
37 ## install contribs
38 elisp-install ${PN}/contrib/ contrib/*.{el,elc,scm,goo} || die