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.
gentoo-overlay/kde-misc/youtube-servicemenu/youtube-servicemenu-1.12a.e...

53 lines
1.2 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-misc/youtube-servicemenu/youtube-servicemenu-1.12a.ebuild,v 1.1 2012/08/26 19:44:50 creffett Exp $
EAPI=4
PYTHON_DEPEND="2"
inherit python eutils
DESCRIPTION="Download YouTube (tm) Videos"
HOMEPAGE="http://www.kde-apps.org/content/show.php/Get+YouTube+Video+(improved)?content=41456"
SRC_URI="http://kde-apps.org/CONTENT/content-files/41456-${P}.tar.bz2"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
SLOT="4"
IUSE=""
MY_LINGUAS="de el es ru sk uk"
for x in ${MY_LINGUAS}; do
IUSE="${IUSE} linguas_${x}"
done
RDEPEND="
dev-python/lxml
>=kde-base/konqueror-4.3.1
"
DEPEND="${RDEPEND}"
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_prepare() {
python_convert_shebangs -r 2 .
epatch "${FILESDIR}/${P}-fixdesktop.patch"
}
src_install() {
dobin get_yt_video.py || die
insinto /usr/share/kde4/services
doins get_yt_video.desktop || die
for x in ${MY_LINGUAS}; do
if use linguas_${x}; then
insinto /usr/share/locale/${x}/LC_MESSAGES
doins l10n/${x}/LC_MESSAGES/get_yt_video.mo || die
fi
done
}