summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkinori Hattori <hattya@gentoo.org>2015-10-26 00:24:48 +0900
committerAkinori Hattori <hattya@gentoo.org>2015-10-26 00:24:48 +0900
commit991500ec500e480742b99b50aaca783ee134b0a9 (patch)
tree7f093f61af097583294ebb9fabffd3095a01cdf4 /dev-scheme
parentnet-misc/sslh: remove old (diff)
downloadgentoo-991500ec500e480742b99b50aaca783ee134b0a9.tar.gz
gentoo-991500ec500e480742b99b50aaca783ee134b0a9.tar.bz2
gentoo-991500ec500e480742b99b50aaca783ee134b0a9.zip
dev-scheme/gauche: drop old
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'dev-scheme')
-rw-r--r--dev-scheme/gauche/gauche-0.9.4.ebuild47
1 files changed, 0 insertions, 47 deletions
diff --git a/dev-scheme/gauche/gauche-0.9.4.ebuild b/dev-scheme/gauche/gauche-0.9.4.ebuild
deleted file mode 100644
index 1a6aaaec57ef..000000000000
--- a/dev-scheme/gauche/gauche-0.9.4.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit autotools eutils
-
-MY_P="${P^g}"
-
-DESCRIPTION="A Unix system friendly Scheme Interpreter"
-HOMEPAGE="http://practical-scheme.net/gauche/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tgz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos"
-IUSE="ipv6 test"
-
-RDEPEND="sys-libs/gdbm"
-DEPEND="${RDEPEND}
- test? ( dev-libs/openssl )"
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-rpath.diff
- epatch "${FILESDIR}"/${PN}-gauche.m4.diff
- epatch "${FILESDIR}"/${PN}-ext-ldflags.diff
- epatch "${FILESDIR}"/${PN}-xz-info.diff
- epatch "${FILESDIR}"/${PN}-rfc.tls.diff
- eautoconf
-}
-
-src_configure() {
- econf \
- $(use_enable ipv6) \
- --with-slib="${EPREFIX}"/usr/share/slib
-}
-
-src_test() {
- emake -j1 -s check
-}
-
-src_install() {
- emake -j1 DESTDIR="${D}" install-pkg install-doc
- dodoc AUTHORS ChangeLog HACKING README
-}