diff options
Diffstat (limited to 'media-video/pymp/pymp-1.1-r1.ebuild')
-rw-r--r-- | media-video/pymp/pymp-1.1-r1.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/media-video/pymp/pymp-1.1-r1.ebuild b/media-video/pymp/pymp-1.1-r1.ebuild new file mode 100644 index 000000000000..950711322ddc --- /dev/null +++ b/media-video/pymp/pymp-1.1-r1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python2_7 ) +inherit eutils python-single-r1 + +DESCRIPTION="a lean, flexible frontend to mplayer written in python" +HOMEPAGE="http://jdolan.dyndns.org/trac/wiki/Pymp" +SRC_URI="http://jdolan.dyndns.org/jaydolan/files/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 x86 ~amd64-fbsd" +IUSE="" + +RDEPEND="media-video/mplayer + dev-python/pygtk[${PYTHON_USEDEP}] + ${PYTHON_DEPS}" +DEPEND="sys-apps/sed" + +REQUIRED_USE=${PYTHON_REQUIRED_USE} + +src_compile() { + python_fix_shebang pymp.py +} + +src_install() { + python_moduleinto /usr/lib/pymp + python_domodule *.py + + # note: pymp script is a horrible unnecessary wrapper + # a) with a dependency on sys-apps/which; + # b) that invokes compiled .pyc directly + # do not use it + dodir /usr/bin + dosym ../lib/pymp/pymp.py /usr/bin/pymp + fperms +x /usr/lib/pymp/pymp.py + + dodoc CHANGELOG README + doicon pymp.png + make_desktop_entry pymp Pymp pymp +} |