summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2014-03-22 18:38:41 +0000
committerMichael Palimaka <kensington@gentoo.org>2014-03-22 18:38:41 +0000
commit6e3e74659d0f182f119e40dc7a70bf19de157ad3 (patch)
tree5d059212a9eb04fbe3b61b3e8204d8e9d44ef020 /app-shells
parentRemove old. (diff)
downloadgentoo-2-6e3e74659d0f182f119e40dc7a70bf19de157ad3.tar.gz
gentoo-2-6e3e74659d0f182f119e40dc7a70bf19de157ad3.tar.bz2
gentoo-2-6e3e74659d0f182f119e40dc7a70bf19de157ad3.zip
Remove old.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)
Diffstat (limited to 'app-shells')
-rw-r--r--app-shells/shish/ChangeLog8
-rw-r--r--app-shells/shish/shish-0.7_pre3.ebuild44
2 files changed, 5 insertions, 47 deletions
diff --git a/app-shells/shish/ChangeLog b/app-shells/shish/ChangeLog
index 2e4978f139ae..6b27ec8ff062 100644
--- a/app-shells/shish/ChangeLog
+++ b/app-shells/shish/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-shells/shish
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/shish/ChangeLog,v 1.8 2012/12/10 12:00:37 pinkbyte Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-shells/shish/ChangeLog,v 1.9 2014/03/22 18:38:41 kensington Exp $
+
+ 22 Mar 2014; Michael Palimaka <kensington@gentoo.org> -shish-0.7_pre3.ebuild:
+ Remove old.
*shish-0.7_pre3-r1 (10 Dec 2012)
@@ -34,4 +37,3 @@
29 Sep 2005; Benedikt Boehm <hollow@gentoo.org> +metadata.xml,
+shish-0.7_pre3.ebuild:
initial ebuild, thx to Adrian Fruehwirth
-
diff --git a/app-shells/shish/shish-0.7_pre3.ebuild b/app-shells/shish/shish-0.7_pre3.ebuild
deleted file mode 100644
index b92dc525c41c..000000000000
--- a/app-shells/shish/shish-0.7_pre3.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/shish/shish-0.7_pre3.ebuild,v 1.3 2008/03/14 20:45:42 hollow Exp $
-
-inherit toolchain-funcs
-
-MY_PV=${PV/_/-}
-MY_P=${PN}-${MY_PV}
-
-DESCRIPTION="The diet shell"
-HOMEPAGE="http://www.blah.ch/shish/"
-SRC_URI="http://www.blah.ch/${PN}/pkg/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE="debug diet"
-
-DEPEND="diet? ( dev-libs/dietlibc )"
-
-S="${WORKDIR}/${MY_P}"
-
-pkg_setup() {
- use diet && export CC="diet $(tc-getCC) -nostdinc"
-}
-
-src_compile() {
- econf $(use_enable debug) || die "econf failed"
-
- # parallel make is b0rked
- emake -j1 || die "emake failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "make install failed"
- doman doc/man/shish.1
- dodoc AUTHORS BUGS README TODO ChangeLog
-}
-
-pkg_postinst() {
- einfo "Updating ${ROOT}etc/shells"
- ( grep -v "^/bin/shish$" "${ROOT}"etc/shells; echo "/bin/shish" ) > "${T}"/shells
- mv -f "${T}"/shells "${ROOT}"etc/shells
-}