Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-shells/rc: rc-1.7.2.ebuild ChangeLog
Date: Fri, 02 Oct 2009 13:02:19
Message-Id: E1Mthm5-0002ku-CB@stork.gentoo.org
1 ssuominen 09/10/02 13:02:17
2
3 Modified: ChangeLog
4 Added: rc-1.7.2.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc42/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 app-shells/rc/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/rc/ChangeLog?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/rc/ChangeLog?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/rc/ChangeLog?r1=1.1&r2=1.2
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-shells/rc/ChangeLog,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- ChangeLog 2 Oct 2009 12:41:59 -0000 1.1
23 +++ ChangeLog 2 Oct 2009 13:02:16 -0000 1.2
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-shells/rc
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-shells/rc/ChangeLog,v 1.1 2009/10/02 12:41:59 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-shells/rc/ChangeLog,v 1.2 2009/10/02 13:02:16 ssuominen Exp $
29 +
30 +*rc-1.7.2 (02 Oct 2009)
31 +
32 + 02 Oct 2009; Samuli Suominen <ssuominen@g.o> +rc-1.7.2.ebuild:
33 + Version bump.
34
35 *rc-1.7.1 (02 Oct 2009)
36
37
38
39
40 1.1 app-shells/rc/rc-1.7.2.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/rc/rc-1.7.2.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/rc/rc-1.7.2.ebuild?rev=1.1&content-type=text/plain
44
45 Index: rc-1.7.2.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/app-shells/rc/rc-1.7.2.ebuild,v 1.1 2009/10/02 13:02:16 ssuominen Exp $
50
51 EAPI=2
52
53 DESCRIPTION="A reimplementation of the Plan 9 shell"
54 HOMEPAGE="http://rc-shell.slackmatic.org/"
55 SRC_URI="ftp://rc.quanstro.net/pub/${P}.tbz"
56
57 LICENSE="rc"
58 SLOT="0"
59 KEYWORDS="~amd64 ~x86"
60 IUSE="libedit readline"
61
62 RDEPEND="readline? ( sys-libs/readline )
63 libedit? ( dev-libs/libedit )"
64 DEPEND="${RDEPEND}"
65
66 src_configure() {
67 local myconf="--with-history"
68 use readline && myconf="--with-readline"
69 use libedit && myconf="--with-editline"
70
71 econf \
72 --disable-dependency-tracking \
73 ${myconf}
74 }
75
76 src_install() {
77 into /
78 newbin rc rcsh || die
79 newman rc.1 rcsh.1
80 dodoc AUTHORS ChangeLog NEWS README
81 }
82
83 pkg_postinst() {
84 ebegin "Updating /etc/shells"
85 ( grep -v "^/bin/rcsh$" "${ROOT}"etc/shells; echo "/bin/rcsh" ) > "${T}"/shells
86 mv -f "${T}"/shells "${ROOT}"etc/shells
87 eend $?
88 }