summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarijn Schouten <hkbst@gentoo.org>2010-11-29 09:46:59 +0000
committerMarijn Schouten <hkbst@gentoo.org>2010-11-29 09:46:59 +0000
commitdda3a0a82bb029e88bbb4606b6455a8eb69188dd (patch)
tree96ba110d62019188b037fbd93688ab8651e38e19 /app-shells
parentFix parallel install issue (bug #347055 by Teun). (diff)
downloadgentoo-2-dda3a0a82bb029e88bbb4606b6455a8eb69188dd.tar.gz
gentoo-2-dda3a0a82bb029e88bbb4606b6455a8eb69188dd.tar.bz2
gentoo-2-dda3a0a82bb029e88bbb4606b6455a8eb69188dd.zip
remove broken version 0.6.6 to fix bug 206019
(Portage version: 2.1.9.24/cvs/Linux x86_64)
Diffstat (limited to 'app-shells')
-rw-r--r--app-shells/scsh/ChangeLog6
-rw-r--r--app-shells/scsh/metadata.xml2
-rw-r--r--app-shells/scsh/scsh-0.6.6.ebuild45
3 files changed, 7 insertions, 46 deletions
diff --git a/app-shells/scsh/ChangeLog b/app-shells/scsh/ChangeLog
index fa3606c4adf9..2aed2d809a43 100644
--- a/app-shells/scsh/ChangeLog
+++ b/app-shells/scsh/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-shells/scsh
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/scsh/ChangeLog,v 1.30 2010/08/12 14:25:48 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/scsh/ChangeLog,v 1.31 2010/11/29 09:46:59 hkbst Exp $
+
+ 29 Nov 2010; Marijn Schouten <hkBst@gentoo.org> -scsh-0.6.6.ebuild,
+ metadata.xml:
+ remove broken version 0.6.6 to fix bug 206019
*scsh-0.6.7-r1 (12 Aug 2010)
diff --git a/app-shells/scsh/metadata.xml b/app-shells/scsh/metadata.xml
index 5ccd10e59ba6..6b82e4519c9d 100644
--- a/app-shells/scsh/metadata.xml
+++ b/app-shells/scsh/metadata.xml
@@ -18,7 +18,9 @@ interactive environment.
Scsh comes with extensive documentation describing these and other
features.
</longdescription>
+<!--
<use>
<flag name='scsh'>Use a non-FHS directory layout</flag>
</use>
+-->
</pkgmetadata>
diff --git a/app-shells/scsh/scsh-0.6.6.ebuild b/app-shells/scsh/scsh-0.6.6.ebuild
deleted file mode 100644
index 301f9810fd74..000000000000
--- a/app-shells/scsh/scsh-0.6.6.ebuild
+++ /dev/null
@@ -1,45 +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/scsh/scsh-0.6.6.ebuild,v 1.7 2008/08/03 16:10:31 pchrist Exp $
-
-inherit eutils scsh
-
-MV="${PV%*.*}"
-
-DESCRIPTION="Unix shell embedded in Scheme"
-HOMEPAGE="http://www.scsh.net/"
-SRC_URI="ftp://ftp.scsh.net/pub/scsh/${MV}/${P}.tar.gz"
-LICENSE="as-is BSD"
-SLOT="0"
-KEYWORDS="~amd64 ppc sparc x86"
-IUSE=""
-
-DEPEND=""
-
-src_unpack() {
- # SCSH_LIB_DIRS='$SCSH_SCSH_PATH'
- set_layout
- set_path_variables
- unpack ${A}
- cd "${S}"
- if ! use scsh; then
- epatch "${FILESDIR}/0.6.6-Makefile.in-doc-dir-gentoo.patch" || die
- fi
-}
-
-src_compile() {
- scsh_conf="--prefix=/usr
- --libdir=/usr/$(get_libdir)
- --includedir=/usr/include
- --with-lib-dirs-list=$(scsh_scsh_path)"
- econf "${scsh_conf}" || die
- emake || die
-}
-
-src_install() {
- make DESTDIR="${D}" install || die
- dodir /etc/env.d
- cat >"${D}/etc/env.d/50scsh" <<EOF
-SCSH_LIB_DIRS='${SCSH_LIB_DIRS}'
-EOF
-}