diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2013-01-24 05:09:59 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2013-01-24 05:09:59 +0000 |
commit | 7e83c922a1db60f9b2b747c9ceeaaf02c9dd94d3 (patch) | |
tree | fe9d305b040e350176ddbf10dd3a5fb02df8f5c8 /app-shells | |
parent | Stable for HPPA (bug #453484). (diff) | |
download | gentoo-2-7e83c922a1db60f9b2b747c9ceeaaf02c9dd94d3.tar.gz gentoo-2-7e83c922a1db60f9b2b747c9ceeaaf02c9dd94d3.tar.bz2 gentoo-2-7e83c922a1db60f9b2b747c9ceeaaf02c9dd94d3.zip |
old
(Portage version: 2.2.0_alpha155/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/rc/ChangeLog | 7 | ||||
-rw-r--r-- | app-shells/rc/rc-1.7.1.ebuild | 42 |
2 files changed, 5 insertions, 44 deletions
diff --git a/app-shells/rc/ChangeLog b/app-shells/rc/ChangeLog index 903d46d3dcba..9b25567d628c 100644 --- a/app-shells/rc/ChangeLog +++ b/app-shells/rc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-shells/rc -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/rc/ChangeLog,v 1.2 2009/10/02 13:02:16 ssuominen Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-shells/rc/ChangeLog,v 1.3 2013/01/24 05:09:59 ssuominen Exp $ + + 24 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> -rc-1.7.1.ebuild: + old *rc-1.7.2 (02 Oct 2009) diff --git a/app-shells/rc/rc-1.7.1.ebuild b/app-shells/rc/rc-1.7.1.ebuild deleted file mode 100644 index fcf0ec2e6f9c..000000000000 --- a/app-shells/rc/rc-1.7.1.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/rc/rc-1.7.1.ebuild,v 1.1 2009/10/02 12:41:59 ssuominen Exp $ - -EAPI=2 - -DESCRIPTION="A reimplementation of the Plan 9 shell" -HOMEPAGE="http://rc-shell.slackmatic.org/" -SRC_URI="http://rc-shell.slackmatic.org/release/${P}.tar.gz" - -LICENSE="rc" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="libedit readline" - -RDEPEND="readline? ( sys-libs/readline ) - libedit? ( dev-libs/libedit )" -DEPEND="${RDEPEND}" - -src_configure() { - local myconf="--with-history" - use readline && myconf="--with-readline" - use libedit && myconf="--with-editline" - - econf \ - --disable-dependency-tracking \ - ${myconf} -} - -src_install() { - into / - newbin rc rcsh || die - newman rc.1 rcsh.1 - dodoc AUTHORS ChangeLog NEWS README -} - -pkg_postinst() { - ebegin "Updating /etc/shells" - ( grep -v "^/bin/rcsh$" "${ROOT}"etc/shells; echo "/bin/rcsh" ) > "${T}"/shells - mv -f "${T}"/shells "${ROOT}"etc/shells - eend $? -} |