Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-shells/localshell: localshell-1.3.4.ebuild ChangeLog
Date: Wed, 28 Nov 2012 03:01:47
Message-Id: 20121128030135.DB6F320C65@flycatcher.gentoo.org
1 robbat2 12/11/28 03:01:35
2
3 Modified: ChangeLog
4 Added: localshell-1.3.4.ebuild
5 Log:
6 Bug #424723: Bump with GCC 4.7 fixes.
7
8 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.15 app-shells/localshell/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/localshell/ChangeLog?rev=1.15&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/localshell/ChangeLog?rev=1.15&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/localshell/ChangeLog?r1=1.14&r2=1.15
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-shells/localshell/ChangeLog,v
20 retrieving revision 1.14
21 retrieving revision 1.15
22 diff -p -w -b -B -u -u -r1.14 -r1.15
23 --- ChangeLog 15 Mar 2010 18:47:07 -0000 1.14
24 +++ ChangeLog 28 Nov 2012 03:01:35 -0000 1.15
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-shells/localshell
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-shells/localshell/ChangeLog,v 1.14 2010/03/15 18:47:07 nixnut Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-shells/localshell/ChangeLog,v 1.15 2012/11/28 03:01:35 robbat2 Exp $
31 +
32 +*localshell-1.3.4 (28 Nov 2012)
33 +
34 + 28 Nov 2012; Robin H. Johnson <robbat2@g.o> +localshell-1.3.4.ebuild:
35 + Bug #424723: Bump with GCC 4.7 fixes.
36
37 15 Mar 2010; nixnut <nixnut@g.o> localshell-1.3.1.ebuild:
38 ppc stable #309027
39
40
41
42 1.1 app-shells/localshell/localshell-1.3.4.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/localshell/localshell-1.3.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/localshell/localshell-1.3.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: localshell-1.3.4.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-shells/localshell/localshell-1.3.4.ebuild,v 1.1 2012/11/28 03:01:35 robbat2 Exp $
52
53 EAPI=4
54
55 inherit base eutils
56
57 DESCRIPTION="Localshell allows per-user/group local control of shell execution."
58 HOMEPAGE="http://git.orbis-terrarum.net/?p=infrastructure/localshellc.git;a=summary"
59 SRC_URI="${HOMEPAGE}/${P}.tar.bz2"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~x86"
64 IUSE=""
65
66 src_configure() {
67 # this is a shell, it needs to be in /bin
68 econf --bindir=/bin --sysconfdir=/etc
69 }
70
71 src_install() {
72 emake install DESTDIR="${D}" || die "emake install failed"
73 rm -f "${D}"/usr/share/doc/${PF}/{COPYING,INSTALL}
74 }
75
76 pkg_postinst() {
77 elog "Remember to add /bin/localshell to /etc/shells and create"
78 elog "/etc/localshell.conf based on the included configuration examples"
79 }