diff options
-rw-r--r-- | media-video/ttcut/ChangeLog | 6 | ||||
-rw-r--r-- | media-video/ttcut/files/ttcut-0.19.6-transcode-compat.patch | 24 | ||||
-rw-r--r-- | media-video/ttcut/ttcut-0.19.6-r2.ebuild | 37 |
3 files changed, 5 insertions, 62 deletions
diff --git a/media-video/ttcut/ChangeLog b/media-video/ttcut/ChangeLog index 3f1d1fdb9437..0826ceaaf88b 100644 --- a/media-video/ttcut/ChangeLog +++ b/media-video/ttcut/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-video/ttcut # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/ttcut/ChangeLog,v 1.29 2011/07/15 21:15:39 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/ttcut/ChangeLog,v 1.30 2011/07/26 17:14:46 billie Exp $ + + 26 Jul 2011; Daniel Pielmeier <billie@gentoo.org> -ttcut-0.19.6-r2.ebuild, + -files/ttcut-0.19.6-transcode-compat.patch: + Remove old. 15 Jul 2011; Markus Meier <maekke@gentoo.org> ttcut-0.19.6-r3.ebuild: x86 stable, bug #373507 diff --git a/media-video/ttcut/files/ttcut-0.19.6-transcode-compat.patch b/media-video/ttcut/files/ttcut-0.19.6-transcode-compat.patch deleted file mode 100644 index 865aecb884fd..000000000000 --- a/media-video/ttcut/files/ttcut-0.19.6-transcode-compat.patch +++ /dev/null @@ -1,24 +0,0 @@ -diff -Naur ttcut-old/avstream/ttmpeg2videostream.cpp ttcut/avstream/ttmpeg2videostream.cpp ---- ttcut-old/avstream/ttmpeg2videostream.cpp 2007-09-02 13:15:09.000000000 +0200 -+++ ttcut/avstream/ttmpeg2videostream.cpp 2010-01-20 00:08:53.000000000 +0100 -@@ -1505,7 +1505,7 @@ -
- QDir temp_dir( TTCut::tempDirPath );
- QString avi_out_file = "encode.avi";
-- QString mpeg2_out_file = "encode"; // extension is added by transcode (!)
-+ QString mpeg2_out_file = "encode.m2v";
- new_file_info.setFile( temp_dir, avi_out_file );
-
- TTPicturesHeader* start_pic = header_list->pictureHeaderAt( start );
-diff -Naur ttcut-old/extern/tttranscode.cpp ttcut/extern/tttranscode.cpp ---- ttcut-old/extern/tttranscode.cpp 2007-05-26 08:22:03.000000000 +0200 -+++ ttcut/extern/tttranscode.cpp 2010-01-20 00:10:01.000000000 +0100 -@@ -100,6 +100,8 @@ - - strl_command_line << "-i" - << enc_par.avi_input_finfo.absoluteFilePath() -+ << "-x" -+ << "avi" - << "--pre_clip" - << "0" - //<< "-y" // isn't neccessary unless --export_prof is specified! diff --git a/media-video/ttcut/ttcut-0.19.6-r2.ebuild b/media-video/ttcut/ttcut-0.19.6-r2.ebuild deleted file mode 100644 index 5b43173477ee..000000000000 --- a/media-video/ttcut/ttcut-0.19.6-r2.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/ttcut/ttcut-0.19.6-r2.ebuild,v 1.3 2010/03/20 20:16:49 billie Exp $ - -EAPI=2 - -inherit eutils qt4-r2 - -DESCRIPTION="Tool for cutting MPEG files especially for removing commercials" -HOMEPAGE="http://www.tritime.de/ttcut/" -SRC_URI="mirror://berlios/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 x86" -IUSE="" - -DEPEND="x11-libs/qt-gui:4 - x11-libs/qt-opengl:4 - >=media-libs/libmpeg2-0.4.0 - virtual/opengl" - -RDEPEND="${DEPEND} - media-video/mplayer - media-video/transcode[mjpeg]" - -S=${WORKDIR}/${PN} - -PATCHES=( "${FILESDIR}"/${P}-deprecated.patch - "${FILESDIR}"/${P}-transcode-compat.patch ) - -src_install() { - dobin ttcut || die - make_desktop_entry ttcut TTCut "" "AudioVideo;Video;AudioVideoEditing" - - dodoc AUTHORS BUGS CHANGELOG README.* TODO || die -} |