From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 76D3213832E for ; Mon, 8 Aug 2016 08:41:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B180221C082; Mon, 8 Aug 2016 08:41:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 56B5621C082 for ; Mon, 8 Aug 2016 08:41:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7394F340A7F for ; Mon, 8 Aug 2016 08:41:31 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A8A9E2450 for ; Mon, 8 Aug 2016 08:41:29 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1470645680.767f5b1c77f6dfb82d147677e531c880f93f70cd.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/squirrel/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/squirrel/squirrel-2.2.4-r1.ebuild X-VCS-Directories: dev-lang/squirrel/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 767f5b1c77f6dfb82d147677e531c880f93f70cd X-VCS-Branch: master Date: Mon, 8 Aug 2016 08:41:29 +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: e8480f3e-d359-4752-829c-f4b4d5620643 X-Archives-Hash: e2e7e74ad815d03388a2b839aa216906 commit: 767f5b1c77f6dfb82d147677e531c880f93f70cd Author: Sergei Trofimovich gentoo org> AuthorDate: Mon Aug 8 08:41:13 2016 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Mon Aug 8 08:41:20 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=767f5b1c dev-lang/squirrel: drop old Package-Manager: portage-2.3.0 dev-lang/squirrel/squirrel-2.2.4-r1.ebuild | 46 ------------------------------ 1 file changed, 46 deletions(-) diff --git a/dev-lang/squirrel/squirrel-2.2.4-r1.ebuild b/dev-lang/squirrel/squirrel-2.2.4-r1.ebuild deleted file mode 100644 index 4c3e8b2..0000000 --- a/dev-lang/squirrel/squirrel-2.2.4-r1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=3 - -inherit autotools eutils multilib - -MY_P="${PN}_${PV}_stable" -DESCRIPTION="A interpreted language mainly used for games" -HOMEPAGE="http://squirrel-lang.org/" -SRC_URI="mirror://sourceforge/${PN}/${PN}${PV:0:1}/${MY_P}/${MY_P}.tar.gz" - -LICENSE="ZLIB" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="doc examples static-libs" - -# /usr/bin/sq conflicts -RDEPEND="!app-text/ispell" - -S="${WORKDIR}/SQUIRREL${PV:0:1}" - -src_prepare() { - epatch "${FILESDIR}"/${P}-autotools.patch - epatch "${FILESDIR}"/${P}-supertux-const.patch - epatch "${FILESDIR}"/${P}-stdint.h.patch - - eautoreconf -} - -src_configure() { - econf --docdir="${EPREFIX}"/usr/share/doc/${PF} \ - $(use_enable doc) \ - $(use_enable examples) \ - $(use_enable static-libs static) -} - -src_install() { - emake DESTDIR="${D}" install || die - if ! use static-libs; then - rm -v "${ED}"/usr/$(get_libdir)/*.la || die - fi - - dodoc HISTORY README || die -}