summaryrefslogtreecommitdiff
path: root/games-kids/tuxmathscrabble/tuxmathscrabble-0.8.1-r1.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:58:29 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:58:29 +0100
commit0cf2f20608308acdf3cb922c3736446bbd8f3388 (patch)
tree07815070629c7c11000a7f51ceb8ccbccb49a809 /games-kids/tuxmathscrabble/tuxmathscrabble-0.8.1-r1.ebuild
parent1798c4aeca70ac8d0a243684d6a798fbc65735f8 (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'games-kids/tuxmathscrabble/tuxmathscrabble-0.8.1-r1.ebuild')
-rw-r--r--games-kids/tuxmathscrabble/tuxmathscrabble-0.8.1-r1.ebuild64
1 files changed, 0 insertions, 64 deletions
diff --git a/games-kids/tuxmathscrabble/tuxmathscrabble-0.8.1-r1.ebuild b/games-kids/tuxmathscrabble/tuxmathscrabble-0.8.1-r1.ebuild
deleted file mode 100644
index 53a209e1052b..000000000000
--- a/games-kids/tuxmathscrabble/tuxmathscrabble-0.8.1-r1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-inherit eutils python-single-r1 multilib
-
-MY_PN=TuxMathScrabble
-DESCRIPTION="math-version of the popular board game for children 4-10"
-HOMEPAGE="http://www.asymptopia.org/"
-SRC_URI="https://github.com/asymptopia/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-CDEPEND="${PYTHON_DEPS}
- dev-python/wxpython[${PYTHON_USEDEP}]"
-DEPEND="${CDEPEND}
- app-arch/unzip"
-RDEPEND="${CDEPEND}
- dev-python/pygame[${PYTHON_USEDEP}]"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-pkg_setup() {
- python-single-r1_pkg_setup
-}
-
-PATCHES=(
- "${FILESDIR}"/${P}-gentoo.patch
-)
-
-src_prepare() {
- default
-
- rm -f $(find . -name '*.pyc')
- sed -i \
- -e "s:@GENTOO_DATADIR@:/usr/share/${MY_PN}:" \
- ${MY_PN}/tms.py \
- .tms_config_master \
- || die "sed failed"
- sed -i \
- -e "s:python2.7-32:python:g" \
- ${PN}.py || die "2nd sed failed"
- python_fix_shebang .
-}
-
-src_install() {
- newbin ${PN}.py ${PN}
-
- insinto $(python_get_sitedir)
- doins -r ${MY_PN}
-
- insinto /usr/share/${MY_PN}
- doins -r .tms_config_master Font
-
- python_optimize
-
- newicon tms.ico ${PN}.ico
- make_desktop_entry ${PN} ${PN} /usr/share/pixmaps/${PN}.ico
-
- dodoc CHANGES README
-}