diff options
author | Pacho Ramos <pacho@gentoo.org> | 2018-05-01 14:25:52 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2018-05-01 21:33:16 +0200 |
commit | 8f9d6a719ab15b9590ebf13b7d7f37cb22c87bb4 (patch) | |
tree | 3afb4cf63417aab962c1c8e46e93129f24648cf0 /games-puzzle/jools | |
parent | games-puzzle/jools: Stop using games.eclass (diff) | |
download | gentoo-8f9d6a719ab15b9590ebf13b7d7f37cb22c87bb4.tar.gz gentoo-8f9d6a719ab15b9590ebf13b7d7f37cb22c87bb4.tar.bz2 gentoo-8f9d6a719ab15b9590ebf13b7d7f37cb22c87bb4.zip |
games-puzzle/jools: Drop old
Package-Manager: Portage-2.3.31, Repoman-2.3.9
Diffstat (limited to 'games-puzzle/jools')
-rw-r--r-- | games-puzzle/jools/jools-0.20-r2.ebuild | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/games-puzzle/jools/jools-0.20-r2.ebuild b/games-puzzle/jools/jools-0.20-r2.ebuild deleted file mode 100644 index 21bb3113dafd..000000000000 --- a/games-puzzle/jools/jools-0.20-r2.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -PYTHON_COMPAT=( python2_7 ) -inherit eutils python-single-r1 games - -MUS_P=${PN}-musicpack-1.0 -DESCRIPTION="clone of Bejeweled, a popular pattern-matching game" -HOMEPAGE="http://pessimization.com/software/jools/" -SRC_URI="http://pessimization.com/software/jools/${P}.tar.gz - http://pessimization.com/software/jools/${MUS_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="dev-python/pygame[${PYTHON_USEDEP}] - ${PYTHON_DEPS}" -RDEPEND=${DEPEND} -REQUIRED_USE=${PYTHON_REQUIRED_USE} - -S=${WORKDIR}/${P}/jools - -pkg_setup() { - python-single-r1_pkg_setup - games_pkg_setup -} - -src_unpack() { - unpack ${P}.tar.gz - cd "${S}"/music - unpack ${MUS_P}.tar.gz -} - -src_prepare() { - echo "MEDIAROOT = \"${GAMES_DATADIR}/${PN}\"" > config.py - python_fix_shebang . -} - -src_install() { - games_make_wrapper ${PN} "${EPYTHON} ./__init__.py" "$(games_get_libdir)"/${PN} - insinto "$(games_get_libdir)"/${PN} - doins *.py - python_optimize "${D}$(games_get_libdir)/${PN}" - - insinto "${GAMES_DATADIR}"/${PN} - doins -r fonts images music sounds - - newicon images/ruby/0001.png ${PN}.png - make_desktop_entry ${PN} Jools - dodoc ../{ChangeLog,doc/{POINTS,TODO}} - dohtml ../doc/manual.html - prepgamesdirs -} |