summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2015-07-31 10:46:15 +0000
committerMichael Palimaka <kensington@gentoo.org>2015-07-31 10:46:15 +0000
commit0bb9fe81a095360b5df4eb85835b1efe1f0ed2e4 (patch)
treeea5eed9b04ba48bd3da6f288504c7f9e8168a1ed /app-shells
parentRemove old. (diff)
downloadgentoo-2-0bb9fe81a095360b5df4eb85835b1efe1f0ed2e4.tar.gz
gentoo-2-0bb9fe81a095360b5df4eb85835b1efe1f0ed2e4.tar.bz2
gentoo-2-0bb9fe81a095360b5df4eb85835b1efe1f0ed2e4.zip
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)
Diffstat (limited to 'app-shells')
-rw-r--r--app-shells/sash/ChangeLog5
-rw-r--r--app-shells/sash/sash-3.7-r3.ebuild45
2 files changed, 4 insertions, 46 deletions
diff --git a/app-shells/sash/ChangeLog b/app-shells/sash/ChangeLog
index 08a2b4b4cd49..d1578e3f6511 100644
--- a/app-shells/sash/ChangeLog
+++ b/app-shells/sash/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-shells/sash
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/sash/ChangeLog,v 1.63 2015/07/31 10:42:53 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/sash/ChangeLog,v 1.64 2015/07/31 10:46:15 kensington Exp $
+
+ 31 Jul 2015; Michael Palimaka <kensington@gentoo.org> -sash-3.7-r3.ebuild:
+ Remove old.
31 Jul 2015; Mikle Kolyada <zlogene@gentoo.org> sash-3.8.ebuild:
ia64 stable wrt bug #534898
diff --git a/app-shells/sash/sash-3.7-r3.ebuild b/app-shells/sash/sash-3.7-r3.ebuild
deleted file mode 100644
index be7beab0a2c8..000000000000
--- a/app-shells/sash/sash-3.7-r3.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/sash/sash-3.7-r3.ebuild,v 1.10 2012/07/08 17:03:32 armin76 Exp $
-
-EAPI=4
-
-inherit eutils toolchain-funcs flag-o-matic
-
-DESCRIPTION="A small (static) UNIX Shell"
-HOMEPAGE="http://www.canb.auug.org.au/~dbell/"
-SRC_URI="http://www.canb.auug.org.au/~dbell/programs/${P}.tar.gz"
-
-LICENSE="freedist"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
-IUSE="static"
-
-DEPEND="
- static? ( sys-libs/zlib[static-libs] )
- !static? ( >=sys-libs/zlib-1.2.3 )"
-RDEPEND="!static? ( ${DEPEND} )"
-
-src_prepare() {
- epatch "${FILESDIR}"/sash-3.7-builtin.patch
-
- sed \
- -e "s:-O3:${CFLAGS}:" \
- -i Makefile || die
- sed \
- -e 's:linux/ext2_fs.h:ext2fs/ext2_fs.h:g' \
- -i cmd_chattr.c || die
-}
-
-src_compile() {
- use static && append-ldflags -static
-
- emake LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)"
-}
-
-src_install() {
- into /
- dobin sash
- doman sash.1
- dodoc README
-}