You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
871 B
35 lines
871 B
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
PYTHON_COMPAT=( python2_7 )
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="A simple metronome with an easy-to-use GTK interface"
|
|
HOMEPAGE="http://das.nasophon.de/gtklick/"
|
|
SRC_URI="http://das.nasophon.de/download/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
|
|
RDEPEND="dev-python/pygtk[${PYTHON_USEDEP}]
|
|
media-libs/pyliblo[${PYTHON_USEDEP}]
|
|
media-sound/klick[osc]
|
|
${PYTHON_DEPS}"
|
|
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_install() {
|
|
distutils-r1_src_install
|
|
|
|
# Replace the broken default runner script with a working one.
|
|
sed \
|
|
-e "s|[@]sharedir[@]|${EPREFIX}/usr/share/${PN}|g" \
|
|
-e "s|[@]localedir[@]|${EPREFIX}/usr/share/locale|g" \
|
|
"${FILESDIR}"/${PN} > "${T}"/${PN} || die
|
|
python_replicate_script "${T}"/${PN}
|
|
}
|