blob: 149afc4226b8aca01fffd9fc29a7845f1c87f6ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python2_7 )
DISTUTILS_SINGLE_IMPL=1
inherit distutils-r1
DESCRIPTION="Morse-tutor for Linux using the Koch-method"
HOMEPAGE="https://KochMorse.googlecode.com/"
SRC_URI="https://${PN}.googlecode.com/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND="dev-python/pyalsaaudio[${PYTHON_USEDEP}]
dev-python/pygtk[${PYTHON_USEDEP}]"
RDEPEND="${DEPEND}"
python_prepare_all() {
sed -e 's:Categories=Application;:Categories=:' \
-i kochmorse.desktop || die
distutils-r1_python_prepare_all
}
pkg_setup() {
python-single-r1_pkg_setup
}
|