summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkos Chandras <hwoarang@gentoo.org>2011-08-26 14:26:51 +0000
committerMarkos Chandras <hwoarang@gentoo.org>2011-08-26 14:26:51 +0000
commit21e5d135ef4bf8d29294b5fd585ec55523a96947 (patch)
tree21eb6842283ae743316d49f58903a4c6ac5645f4 /media-video
parentStable on amd64 wrt bug #376255 (diff)
downloadgentoo-2-21e5d135ef4bf8d29294b5fd585ec55523a96947.tar.gz
gentoo-2-21e5d135ef4bf8d29294b5fd585ec55523a96947.tar.bz2
gentoo-2-21e5d135ef4bf8d29294b5fd585ec55523a96947.zip
remove old ebuild
(Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
Diffstat (limited to 'media-video')
-rw-r--r--media-video/xvideoservicethief/ChangeLog6
-rw-r--r--media-video/xvideoservicethief/xvideoservicethief-2.4.1.ebuild80
2 files changed, 5 insertions, 81 deletions
diff --git a/media-video/xvideoservicethief/ChangeLog b/media-video/xvideoservicethief/ChangeLog
index 166f39d8cbaa..669e50e456a1 100644
--- a/media-video/xvideoservicethief/ChangeLog
+++ b/media-video/xvideoservicethief/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-video/xvideoservicethief
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/xvideoservicethief/ChangeLog,v 1.26 2011/08/21 03:36:01 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/xvideoservicethief/ChangeLog,v 1.27 2011/08/26 14:26:51 hwoarang Exp $
+
+ 26 Aug 2011; Markos Chandras <hwoarang@gentoo.org>
+ -xvideoservicethief-2.4.1.ebuild:
+ ^
21 Aug 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org>
xvideoservicethief-2.4.1-r1.ebuild:
diff --git a/media-video/xvideoservicethief/xvideoservicethief-2.4.1.ebuild b/media-video/xvideoservicethief/xvideoservicethief-2.4.1.ebuild
deleted file mode 100644
index 01490c1f4c73..000000000000
--- a/media-video/xvideoservicethief/xvideoservicethief-2.4.1.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/xvideoservicethief/xvideoservicethief-2.4.1.ebuild,v 1.6 2011/05/01 21:30:39 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
- >=x11-libs/qt-webkit-4.5.3:4
- doc? ( app-doc/doxygen )"
-RDEPEND=">=x11-libs/qt-gui-4.5.3:4
- virtual/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 ||die
- mv "${S}"/resources/translations/${RES_NAME}_jp.ts \
- "${S}"/resources/translations/${RES_NAME}_ja.ts || die
- mv "${S}"/resources/translations/${RES_NAME}_du.ts \
- "${S}"/resources/translations/${RES_NAME}_nl.ts || die
- mv "${S}"/resources/translations/${RES_NAME}_kr.ts \
- "${S}"/resources/translations/${RES_NAME}_ko.ts || die
- # 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
-}