From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id DC81813888F for ; Sun, 25 Oct 2015 15:25:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 674F0E079B; Sun, 25 Oct 2015 15:25:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 136E6E079B for ; Sun, 25 Oct 2015 15:25:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2A782340766 for ; Sun, 25 Oct 2015 15:25:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 35BB318C7 for ; Sun, 25 Oct 2015 15:25:22 +0000 (UTC) From: "Akinori Hattori" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Akinori Hattori" Message-ID: <1445786688.991500ec500e480742b99b50aaca783ee134b0a9.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-scheme/gauche/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-scheme/gauche/gauche-0.9.4.ebuild X-VCS-Directories: dev-scheme/gauche/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: 991500ec500e480742b99b50aaca783ee134b0a9 X-VCS-Branch: master Date: Sun, 25 Oct 2015 15:25:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 3318599b-0f79-407b-8083-63d1217ba96e X-Archives-Hash: d22aecffa2688e807fbfb0505de4ba2e commit: 991500ec500e480742b99b50aaca783ee134b0a9 Author: Akinori Hattori gentoo org> AuthorDate: Sun Oct 25 15:24:48 2015 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Sun Oct 25 15:24:48 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=991500ec dev-scheme/gauche: drop old Package-Manager: portage-2.2.20.1 dev-scheme/gauche/gauche-0.9.4.ebuild | 47 ----------------------------------- 1 file changed, 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 1a6aaae..0000000 --- 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 -}