summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2018-05-01 15:42:52 +0200
committerPacho Ramos <pacho@gentoo.org>2018-05-01 21:33:52 +0200
commite3f0b9908b565f5ed4875c522053969e9a586d95 (patch)
treeb27cf72713b34317cefa9fbb0668d06c77fd2081
parentgames-puzzle/penguzzle: Stop using games.eclass (diff)
downloadgentoo-e3f0b9908b565f5ed4875c522053969e9a586d95.tar.gz
gentoo-e3f0b9908b565f5ed4875c522053969e9a586d95.tar.bz2
gentoo-e3f0b9908b565f5ed4875c522053969e9a586d95.zip
games-puzzle/penguzzle: Drop old
Package-Manager: Portage-2.3.31, Repoman-2.3.9
-rw-r--r--games-puzzle/penguzzle/penguzzle-1.0-r1.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/games-puzzle/penguzzle/penguzzle-1.0-r1.ebuild b/games-puzzle/penguzzle/penguzzle-1.0-r1.ebuild
deleted file mode 100644
index ed926fa4a95e..000000000000
--- a/games-puzzle/penguzzle/penguzzle-1.0-r1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils games
-
-DESCRIPTION="Tcl/Tk variant of the well-known 15-puzzle game"
-HOMEPAGE="http://www.naskita.com/linux/penguzzle/penguzzle.shtml"
-SRC_URI="http://www.naskita.com/linux/${PN}/${PN}.zip"
-
-LICENSE="penguzzle"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="dev-lang/tk
- dev-tcltk/tclx"
-DEPEND="app-arch/unzip"
-
-S=${WORKDIR}/${PN}${PV}
-
-src_prepare() {
- sed -i \
- -e "s:~/puzz/images:${GAMES_DATADIR}/${PN}:" \
- lib/init \
- || die "sed init failed"
- sed -i \
- -e "s:~/puzz/lib:$(games_get_libdir)/${PN}:" \
- bin/${PN} \
- || die "sed ${PN} failed"
-
- epatch "${FILESDIR}"/${P}-tclx.patch
-}
-
-src_install() {
- insinto "${GAMES_DATADIR}"/${PN}
- doins images/img0.gif
-
- insinto "$(games_get_libdir)"/${PN}
- doins lib/init
-
- dogamesbin bin/${PN}
-
- dodoc README
- prepgamesdirs
-}