diff options
author | Theo Chatzimichos <tampakrap@gentoo.org> | 2013-02-16 12:05:59 +0000 |
---|---|---|
committer | Theo Chatzimichos <tampakrap@gentoo.org> | 2013-02-16 12:05:59 +0000 |
commit | 9fc42374cee58a332cff6ea19d9ba9df9235ac99 (patch) | |
tree | a7eb7ca61407bf4ebd875c411dc2d2d3a0d536f8 /media-video/subdownloader/subdownloader-2.0.18.ebuild | |
parent | Don't show elog messages always (#457596) (diff) | |
download | gentoo-2-9fc42374cee58a332cff6ea19d9ba9df9235ac99.tar.gz gentoo-2-9fc42374cee58a332cff6ea19d9ba9df9235ac99.tar.bz2 gentoo-2-9fc42374cee58a332cff6ea19d9ba9df9235ac99.zip |
Version bump
(Portage version: 2.2.0_alpha137/cvs/Linux x86_64)
Diffstat (limited to 'media-video/subdownloader/subdownloader-2.0.18.ebuild')
-rw-r--r-- | media-video/subdownloader/subdownloader-2.0.18.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/media-video/subdownloader/subdownloader-2.0.18.ebuild b/media-video/subdownloader/subdownloader-2.0.18.ebuild new file mode 100644 index 000000000000..2c33db9376fa --- /dev/null +++ b/media-video/subdownloader/subdownloader-2.0.18.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/subdownloader/subdownloader-2.0.18.ebuild,v 1.1 2013/02/16 12:05:59 tampakrap Exp $ + +EAPI=4 + +PYTHON_DEPEND="2" + +inherit python eutils + +DESCRIPTION="GUI application for automatic downloading/uploading of subtitles for videofiles" +HOMEPAGE="http://www.subdownloader.net/" +SRC_URI="http://launchpad.net/${PN}/trunk/${PV}/+download/${PN}_2.0.18.orig.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +S="${WORKDIR}/subdownloader-${PV}" + +DEPEND=" + dev-python/PyQt4 + dev-python/kaa-metadata" +RDEPEND="${DEPEND}" + +pkg_setup() { + python_set_active_version 2 + python_pkg_setup +} + +src_prepare() { + python_convert_shebangs 2 "${S}"/run.py +} + +src_install() { + insinto /usr/share/"${PN}" + doins -r cli FileManagement gui languages locale modules run.py + fperms 755 /usr/share/"${PN}"/run.py + dosym /usr/share/"${PN}"/run.py /usr/bin/"${PN}" + doman subdownloader.1 + dodoc README ChangeLog + doicon gui/images/subdownloader.png + domenu subdownloader.desktop +} |