Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: www-client/casperjs/
Date: Fri, 25 Sep 2015 09:43:28
Message-Id: 1443101462.6ece7823f1e945940dd98394083ebfeebbb1fdfd.jlec@gentoo
1 commit: 6ece7823f1e945940dd98394083ebfeebbb1fdfd
2 Author: Sean Vig <sean.v.775 <AT> gmail <DOT> com>
3 AuthorDate: Thu Sep 24 13:30:46 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 24 13:31:02 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=6ece7823
7
8 www-client/casjerjs: Fix installation of casperjs executable
9
10 Closes #494
11
12 www-client/casperjs/ChangeLog | 3 +++
13 www-client/casperjs/casperjs-1.1_beta3.ebuild | 5 +++--
14 2 files changed, 6 insertions(+), 2 deletions(-)
15
16 diff --git a/www-client/casperjs/ChangeLog b/www-client/casperjs/ChangeLog
17 index eb4d1f3..eec6cb0 100644
18 --- a/www-client/casperjs/ChangeLog
19 +++ b/www-client/casperjs/ChangeLog
20 @@ -2,6 +2,9 @@
21 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
22 # $Id$
23
24 + 24 Sep 2015; Sean Vig <sean.v.775@×××××.com> casperjs-1.1_beta3.ebuild:
25 + www-client/casjerjs: Fix installation of casperjs executable
26 +
27 *casperjs-1.1_beta3 (02 Sep 2015)
28
29 02 Sep 2015; Sean Vig <sean.v.775@×××××.com> +casperjs-1.1_beta3.ebuild,
30
31 diff --git a/www-client/casperjs/casperjs-1.1_beta3.ebuild b/www-client/casperjs/casperjs-1.1_beta3.ebuild
32 index a90310a..b71ba97 100644
33 --- a/www-client/casperjs/casperjs-1.1_beta3.ebuild
34 +++ b/www-client/casperjs/casperjs-1.1_beta3.ebuild
35 @@ -34,8 +34,9 @@ src_install() {
36 doins bin/bootstrap.js
37 doins bin/usage.txt
38
39 - dobin bin/casperjs
40 - dosym /usr/bin/casperjs ../share/${P}/bin/casperjs
41 + exeinto /usr/share/${P}/bin
42 + doexe bin/casperjs
43 + dosym ../share/${P}/bin/casperjs /usr/bin/casperjs
44
45 dodoc CHANGELOG.md CONTRIBUTORS.md README.md
46 }