dev-lang/squirrel: drop old
authorSergei Trofimovich <slyfox@gentoo.org>
Mon, 8 Aug 2016 08:41:13 +0000 (09:41 +0100)
committerSergei Trofimovich <slyfox@gentoo.org>
Mon, 8 Aug 2016 08:41:20 +0000 (09:41 +0100)
Package-Manager: portage-2.3.0

dev-lang/squirrel/squirrel-2.2.4-r1.ebuild [deleted file]

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 (file)
index 4c3e8b2..0000000
+++ /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
-}