diff options
author | Agostino Sarubbo <ago@gentoo.org> | 2012-05-10 16:10:45 +0000 |
---|---|---|
committer | Agostino Sarubbo <ago@gentoo.org> | 2012-05-10 16:10:45 +0000 |
commit | ac82fd71d66f60673552be7bf73e6797c83b786c (patch) | |
tree | a89f80083bd6d1f65c32fb0aa99ccaf477adf354 /dev-util | |
parent | Remove old (diff) | |
download | gentoo-2-ac82fd71d66f60673552be7bf73e6797c83b786c.tar.gz gentoo-2-ac82fd71d66f60673552be7bf73e6797c83b786c.tar.bz2 gentoo-2-ac82fd71d66f60673552be7bf73e6797c83b786c.zip |
Remove old
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/shc/ChangeLog | 6 | ||||
-rw-r--r-- | dev-util/shc/shc-3.6.ebuild | 26 | ||||
-rw-r--r-- | dev-util/shc/shc-3.7.ebuild | 26 | ||||
-rw-r--r-- | dev-util/shc/shc-3.8.3.ebuild | 39 |
4 files changed, 5 insertions, 92 deletions
diff --git a/dev-util/shc/ChangeLog b/dev-util/shc/ChangeLog index 8908d02403de..0fb601fdb66d 100644 --- a/dev-util/shc/ChangeLog +++ b/dev-util/shc/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-util/shc # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/shc/ChangeLog,v 1.21 2012/02/18 18:56:15 klausman Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/shc/ChangeLog,v 1.22 2012/05/10 16:10:44 ago Exp $ + + 10 May 2012; Agostino Sarubbo <ago@gentoo.org> -shc-3.6.ebuild, + -shc-3.7.ebuild, -shc-3.8.3.ebuild: + Remove old 18 Feb 2012; Tobias Klausmann <klausman@gentoo.org> shc-3.8.7.ebuild: Stable on alpha, bug #363217 diff --git a/dev-util/shc/shc-3.6.ebuild b/dev-util/shc/shc-3.6.ebuild deleted file mode 100644 index c7c45dcf1882..000000000000 --- a/dev-util/shc/shc-3.6.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/shc/shc-3.6.ebuild,v 1.9 2009/09/23 17:48:34 patrick Exp $ - -DESCRIPTION="A (shell-) script compiler/scrambler" -HOMEPAGE="http://www.datsi.fi.upm.es/~frosal" -SRC_URI="http://www.datsi.fi.upm.es/~frosal/sources/${P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ppc ~sparc x86" -IUSE="" - -DEPEND="" - -src_compile() { - ## the "test"-target leads to an access-violation -> so we skip it - ## as it's only for demonstration purposes anyway. - make shc || die -} - -src_install() { - dobin shc - doman shc.1 - dodoc shc.README CHANGES -} diff --git a/dev-util/shc/shc-3.7.ebuild b/dev-util/shc/shc-3.7.ebuild deleted file mode 100644 index 397ad2e59936..000000000000 --- a/dev-util/shc/shc-3.7.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/shc/shc-3.7.ebuild,v 1.7 2009/09/23 17:48:34 patrick Exp $ - -DESCRIPTION="A (shell-) script compiler/scrambler" -HOMEPAGE="http://www.datsi.fi.upm.es/~frosal" -SRC_URI="http://www.datsi.fi.upm.es/~frosal/sources/${P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha ppc ~sparc ~x86" -IUSE="" - -DEPEND="" - -src_compile() { - ## the "test"-target leads to an access-violation -> so we skip it - ## as it's only for demonstration purposes anyway. - make shc || die -} - -src_install() { - dobin shc - doman shc.1 - dodoc shc.README CHANGES -} diff --git a/dev-util/shc/shc-3.8.3.ebuild b/dev-util/shc/shc-3.8.3.ebuild deleted file mode 100644 index 35044700ed04..000000000000 --- a/dev-util/shc/shc-3.8.3.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/shc/shc-3.8.3.ebuild,v 1.2 2010/08/30 22:22:02 xmw Exp $ - -EAPI=2 - -inherit toolchain-funcs - -DESCRIPTION="A (shell-) script compiler/scrambler" -HOMEPAGE="http://www.datsi.fi.upm.es/~frosal" -SRC_URI="http://www.datsi.fi.upm.es/~frosal/sources/${P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~ppc ~sparc ~x86" -IUSE="" - -RESTRICT="test" - -src_prepare() { - # respect LDFLAGS - sed -i -e 's:$(CC) $(CFLAGS):\0 $(LDFLAGS):' Makefile || die - # do not strip by install -s - sed -i -e '/install/s: -s : :' Makefile || die -} - -src_compile() { - export CC="$(tc-getCC)" - - ## the "test"-target leads to an access-violation -> so we skip it - ## as it's only for demonstration purposes anyway. - emake shc CFLAGS="${CFLAGS}" || die -} - -src_install() { - dobin shc || die - doman shc.1 || die - dodoc shc.README CHANGES || die -} |