commit: 767f5b1c77f6dfb82d147677e531c880f93f70cd
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 8 08:41:13 2016 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> 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
-}