summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2018-05-01 13:34:51 +0200
committerPacho Ramos <pacho@gentoo.org>2018-05-01 21:32:29 +0200
commitebe8e39c836e76ab5950db5e59ab55b374d25825 (patch)
tree87017e54a9c341f6d2c3baef987f9f8ddd793504
parentgames-puzzle/fish-fillets: Stop using games.eclass (diff)
downloadgentoo-ebe8e39c836e76ab5950db5e59ab55b374d25825.tar.gz
gentoo-ebe8e39c836e76ab5950db5e59ab55b374d25825.tar.bz2
gentoo-ebe8e39c836e76ab5950db5e59ab55b374d25825.zip
games-puzzle/fish-fillets: Drop old
Package-Manager: Portage-2.3.31, Repoman-2.3.9
-rw-r--r--games-puzzle/fish-fillets/fish-fillets-1.0.1.ebuild55
1 files changed, 0 insertions, 55 deletions
diff --git a/games-puzzle/fish-fillets/fish-fillets-1.0.1.ebuild b/games-puzzle/fish-fillets/fish-fillets-1.0.1.ebuild
deleted file mode 100644
index fec0213902dd..000000000000
--- a/games-puzzle/fish-fillets/fish-fillets-1.0.1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit autotools eutils games
-
-DATA_PV="1.0.0"
-DESCRIPTION="Underwater puzzle game - find a safe way out"
-HOMEPAGE="http://fillets.sourceforge.net/"
-SRC_URI="mirror://sourceforge/fillets/fillets-ng-${PV}.tar.gz
- mirror://sourceforge/fillets/fillets-ng-data-${DATA_PV}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=">=media-libs/libsdl-1.2[sound,video]
- >=media-libs/sdl-mixer-1.2.5[vorbis]
- >=media-libs/sdl-image-1.2.2[png]
- media-libs/smpeg
- x11-libs/libX11
- media-libs/sdl-ttf
- dev-libs/fribidi
- >=dev-lang/lua-5:0"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-S=${WORKDIR}/fillets-ng-${PV}
-
-src_prepare() {
- #.mod was renamed to .fmod in lua 5.1.3 - bug #223271
- sed -i \
- -e 's/\.mod(/.fmod(/' \
- $(grep -rl "\.mod\>" "${WORKDIR}"/fillets-ng-data-${DATA_PV}) \
- || die "sed failed"
- rm -f missing
- eautoreconf
-}
-
-src_configure() {
- egamesconf \
- --datadir="${GAMES_DATADIR}/${PN}"
-}
-
-src_install() {
- default
- insinto "${GAMES_DATADIR}/${PN}"
- cd "${WORKDIR}"/fillets-ng-data-${DATA_PV} || die
- rm -f COPYING
- doins -r *
- newicon images/icon.png ${PN}.png
- make_desktop_entry fillets "Fish Fillets NG"
- prepgamesdirs
-}