From 431e0f49887809c24fbfb7c0d16c04e40f4fcd38 Mon Sep 17 00:00:00 2001 From: Markos Chandras Date: Thu, 15 Apr 2010 16:51:32 +0000 Subject: Version bump wrt bug #315475 (Portage version: 2.2_rc67/cvs/Linux x86_64) --- media-video/xvideoservicethief/ChangeLog | 9 ++- .../xvideoservicethief-2.4.ebuild | 76 ++++++++++++++++++++++ 2 files changed, 84 insertions(+), 1 deletion(-) create mode 100644 media-video/xvideoservicethief/xvideoservicethief-2.4.ebuild (limited to 'media-video/xvideoservicethief') diff --git a/media-video/xvideoservicethief/ChangeLog b/media-video/xvideoservicethief/ChangeLog index cc0247493362..85149ad5cb9c 100644 --- a/media-video/xvideoservicethief/ChangeLog +++ b/media-video/xvideoservicethief/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for media-video/xvideoservicethief # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/xvideoservicethief/ChangeLog,v 1.12 2010/01/23 20:00:51 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/xvideoservicethief/ChangeLog,v 1.13 2010/04/15 16:51:32 hwoarang Exp $ + +*xvideoservicethief-2.4 (15 Apr 2010) + + 15 Apr 2010; Markos Chandras + +xvideoservicethief-2.4.ebuild: + Version bump wrt bug #315475. Thanks to Dustin Polke + for the patch *xvideoservicethief-2.3.2 (23 Jan 2010) diff --git a/media-video/xvideoservicethief/xvideoservicethief-2.4.ebuild b/media-video/xvideoservicethief/xvideoservicethief-2.4.ebuild new file mode 100644 index 000000000000..a7b2ccfb6784 --- /dev/null +++ b/media-video/xvideoservicethief/xvideoservicethief-2.4.ebuild @@ -0,0 +1,76 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/xvideoservicethief/xvideoservicethief-2.4.ebuild,v 1.1 2010/04/15 16:51:32 hwoarang Exp $ + +EAPI=2 + +LANGS="br ca cs da de es fr gl hu it ja ko nl pl ro ru sv" + +inherit eutils qt4-r2 versionator + +MY_PV=$(replace_all_version_separators '_') +MY_P="xVST_${MY_PV}_src" + +DESCRIPTION="Download (and convert) videos from various Web Video Services" +HOMEPAGE="http://xviservicethief.sourceforge.net/" +SRC_URI="mirror://sourceforge/xviservicethief/${MY_P}.zip" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug doc" + +DEPEND="app-arch/unzip + >=x11-libs/qt-gui-4.5.3:4 + doc? ( app-doc/doxygen )" +RDEPEND=">=x11-libs/qt-gui-4.5.3:4 + media-video/ffmpeg + media-video/flvstreamer" + +RES_NAME="xVST" + +S="${WORKDIR}" + +src_prepare() { + # fix translations + mv "${S}"/resources/translations/${RES_NAME}_cz.ts "${S}"/resources/translations/${RES_NAME}_cs.ts + mv "${S}"/resources/translations/${RES_NAME}_jp.ts "${S}"/resources/translations/${RES_NAME}_ja.ts + mv "${S}"/resources/translations/${RES_NAME}_du.ts "${S}"/resources/translations/${RES_NAME}_nl.ts + mv "${S}"/resources/translations/${RES_NAME}_kr.ts + "${S}"/resources/transaltions/${RES_NAME}_ko.ts + # fix plugins, language path + sed -i -e "s/getApplicationPath()\ +\ \"/\"\/usr\/share\/${PN}/g" \ + "${S}"/src/options.cpp || die "failed to fix paths" +} + +src_compile() { + local lang= + emake || die "emake failed" + for lang in "${S}"/resources/translations/*.ts; do + lrelease ${lang} + done +} + +src_install() { + dobin bin/xvst || die "dobin failed" + local dest=/usr/share/${PN}/plugins + dodir ${dest} + find resources/services -name '*.js' -exec cp -dpR {} "${D}"${dest} \; + newicon resources/images/InformationLogo.png xvst.png + make_desktop_entry /usr/bin/xvst xVideoServiceThief xvst 'Qt;AudioVideo;Video' + if use doc; then + cd "${S}/documentation/source" + sed -i "/OUTPUT_DIRECTORY/s:G\:.*:docs:" Doxyfile + doxygen Doxyfile + dohtml -r docs/html/* || die "dohtml failed" + fi + + #install translations + insinto /usr/share/${PN}/languages/ + local lang= tlang= + for lang in ${LINGUAS}; do + for tlang in ${LANGS}; do + [[ ${lang} == ${tlang} ]] && doins "${S}"/resources/translations/xVST_${tlang}.qm + done + done +} -- cgit v1.2.3-65-gdbad