From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-871257-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	by finch.gentoo.org (Postfix) with ESMTP id 7729C59CA5
	for <garchives@archives.gentoo.org>; Sun, 20 Mar 2016 20:52:01 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id A67FCE086A;
	Sun, 20 Mar 2016 20:51:58 +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 185E7E086A
	for <gentoo-commits@lists.gentoo.org>; Sun, 20 Mar 2016 20:51:58 +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 9B9CE3409E6
	for <gentoo-commits@lists.gentoo.org>; Sun, 20 Mar 2016 20:51:56 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id E9228863
	for <gentoo-commits@lists.gentoo.org>; Sun, 20 Mar 2016 20:51:54 +0000 (UTC)
From: "Michael Sterrett" <mr_bones_@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Michael Sterrett" <mr_bones_@gentoo.org>
Message-ID: <1458507079.41d86e3daf1f621b1f9fcf9d2445e795bbf84630.mr_bones_@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: games-engines/scummvm-tools/
X-VCS-Repository: repo/gentoo
X-VCS-Files: games-engines/scummvm-tools/scummvm-tools-1.7.0.ebuild
X-VCS-Directories: games-engines/scummvm-tools/
X-VCS-Committer: mr_bones_
X-VCS-Committer-Name: Michael Sterrett
X-VCS-Revision: 41d86e3daf1f621b1f9fcf9d2445e795bbf84630
X-VCS-Branch: master
Date: Sun, 20 Mar 2016 20:51:54 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: 9ec62713-3103-4582-9fa3-aca8b928bcf8
X-Archives-Hash: e4b3e377bcde50e445220d1a10f83640

commit:     41d86e3daf1f621b1f9fcf9d2445e795bbf84630
Author:     Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 20 20:26:38 2016 +0000
Commit:     Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
CommitDate: Sun Mar 20 20:51:19 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41d86e3d

games-engines/scummvm-tools: clean old

Package-Manager: portage-2.2.26

 .../scummvm-tools/scummvm-tools-1.7.0.ebuild       | 56 ----------------------
 1 file changed, 56 deletions(-)

diff --git a/games-engines/scummvm-tools/scummvm-tools-1.7.0.ebuild b/games-engines/scummvm-tools/scummvm-tools-1.7.0.ebuild
deleted file mode 100644
index a10bc42..0000000
--- a/games-engines/scummvm-tools/scummvm-tools-1.7.0.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-WX_GTK_VER=2.8
-inherit wxwidgets eutils flag-o-matic games
-
-DESCRIPTION="utilities for the SCUMM game engine"
-HOMEPAGE="http://scummvm.sourceforge.net/"
-SRC_URI="mirror://sourceforge/scummvm/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86 ~x86-fbsd"
-IUSE="flac iconv mad png vorbis"
-RESTRICT="test" # some tests require external files
-
-RDEPEND="png? ( media-libs/libpng:0 )
-	mad? ( media-libs/libmad )
-	flac? ( media-libs/flac )
-	vorbis? ( media-libs/libvorbis )
-	iconv? ( virtual/libiconv media-libs/freetype:2 )
-	sys-libs/zlib
-	>=dev-libs/boost-1.32
-	x11-libs/wxGTK:2.8"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-src_prepare() {
-	rm -rf *.bat dists/win32
-	sed -ri -e '/^(CC|CXX)\b/d' Makefile || die
-	epatch "${FILESDIR}/${P}-binprefix.patch"
-}
-
-src_configure() {
-	# Not an autoconf script
-	./configure \
-		--enable-verbose-build \
-		--mandir=/usr/share/man \
-		--prefix="${GAMES_PREFIX}" \
-		--libdir="${GAMES_PREFIX}/lib" \
-		--datadir="${GAMES_DATADIR}" \
-		$(use_enable flac) \
-		$(use_enable iconv) \
-		$(use_enable iconv freetype) \
-		$(use_enable mad) \
-		$(use_enable png) \
-		$(use_enable vorbis) || die
-}
-
-src_install() {
-	emake DESTDIR="${D}" EXEPREFIX="${PN}-" install
-	dodoc README TODO
-	prepgamesdirs
-}