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/shish/shish-0.7_pre3.ebuild
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/shish/shish-0.7_pre3.ebuild')
-rw-r--r--app-shells/shish/shish-0.7_pre3.ebuild44
1 files changed, 0 insertions, 44 deletions
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
-}