games-engines/frotz: Remove old
authorDavid Seifert <soap@gentoo.org>
Wed, 20 Dec 2017 21:30:19 +0000 (22:30 +0100)
committerDavid Seifert <soap@gentoo.org>
Thu, 21 Dec 2017 01:41:32 +0000 (02:41 +0100)
Package-Manager: Portage-2.3.16, Repoman-2.3.6

games-engines/frotz/frotz-2.43.ebuild [deleted file]

diff --git a/games-engines/frotz/frotz-2.43.ebuild b/games-engines/frotz/frotz-2.43.ebuild
deleted file mode 100644 (file)
index dc56603..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils games
-
-DESCRIPTION="Curses based interpreter for Z-code based text games"
-HOMEPAGE="http://frotz.sourceforge.net/"
-SRC_URI="http://www.ifarchive.org/if-archive/infocom/interpreters/frotz/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="alsa oss"
-
-DEPEND="sys-libs/ncurses:0
-       alsa? ( oss? ( media-libs/alsa-oss ) )"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-       sed -i \
-               -e '/^CC /d' \
-               Makefile \
-               || die
-       epatch \
-               "${FILESDIR}"/${P}-glibc2.10.patch \
-               "${FILESDIR}"/${P}-ldflags.patch
-}
-
-src_compile() {
-       local OPTS="CONFIG_DIR=${GAMES_SYSCONFDIR}"
-       use oss && OPTS="${OPTS} SOUND_DEFS=-DOSS_SOUND SOUND_DEV=/dev/dsp"
-       emake ${OPTS} all
-}
-
-src_install () {
-       dogamesbin {d,}frotz
-       doman doc/*.6
-       dodoc AUTHORS BUGS ChangeLog HOW_TO_PLAY README TODO \
-               doc/{frotz.conf-big,frotz.conf-small}
-       prepgamesdirs
-}
-
-pkg_postinst() {
-       games_pkg_postinst
-       echo
-       elog "Global config file can be installed in ${GAMES_SYSCONFDIR}/frotz.conf"
-       elog "Sample config files are in /usr/share/doc/${PF}"
-       echo
-}