blob: 98734c1738ab29b43f26026030b4e04074038df6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="1"
inherit eutils qt4 subversion
DESCRIPTION="Tool for removing advertisements from recorded MPEG files"
HOMEPAGE="http://ttcut.tritime.org/"
ESVN_REPO_URI="http://svn.berlios.de/svnroot/repos/ttcut/branches/work"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="|| ( >=x11-libs/qt-4.3:4 ( 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"
S=${WORKDIR}/${PN}
pkg_setup() {
if ! built_with_use media-video/transcode mjpeg ; then
eerror "In order to have encoding mode working with ttcut"
eerror "you need to recompile transcode with mjpeg USE flag enabled."
die "Recompile transcode with mjpeg USE flag enabled"
fi
}
src_compile() {
eqmake4 ttcut.pro -o Makefile.ttcut
emake -f Makefile.ttcut || die "emake failed"
}
src_install() {
dobin ttcut || die "Couldn't install ttcut"
make_desktop_entry ttcut TTCut "" "AudioVideo;Video;AudioVideoEditing" || \
die "Couldn't make ttcut desktop entry"
dodoc AUTHORS BUGS CHANGELOG \
README.DE README.EN TODO || die "Couldn't install documentation"
}
|