summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-video/dvbcut/dvbcut-0.5.4.ebuild')
-rw-r--r--media-video/dvbcut/dvbcut-0.5.4.ebuild53
1 files changed, 0 insertions, 53 deletions
diff --git a/media-video/dvbcut/dvbcut-0.5.4.ebuild b/media-video/dvbcut/dvbcut-0.5.4.ebuild
deleted file mode 100644
index 6570fbbba6b6..000000000000
--- a/media-video/dvbcut/dvbcut-0.5.4.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/dvbcut/dvbcut-0.5.4.ebuild,v 1.3 2008/07/27 21:55:26 carlo Exp $
-
-EAPI=1
-
-inherit qt3 eutils
-
-IUSE=""
-
-MY_P="${P/-/_}"
-
-DESCRIPTION="frame-accurate editing of MPEG-2 video with MPEG and AC3 audio"
-HOMEPAGE="http://dvbcut.sourceforge.net"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="x11-libs/qt:3
- media-libs/libao
- >=media-video/ffmpeg-0.4.9_p20070330"
-
-DEPEND="${RDEPEND}
- dev-util/scons"
-
-pkg_setup() {
- if ! built_with_use media-video/ffmpeg a52; then
- eerror "This package requires media-video/ffmpeg compiled with A/52 (a.k.a. AC-3) support."
- eerror "Please reemerge media-video/ffmpeg with USE=\"a52\"."
- die "Please reemerge media-video/ffmpeg with USE=\"a52\"."
- fi
-}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}/${PN}-0.5.3-ffmpeg-compat.patch"
- epatch "${FILESDIR}/${P}-gcc42.patch"
- epatch "${FILESDIR}/${P}-ffmpeg-compat2.patch"
-}
-
-src_compile() {
- emake FFMPEG=/usr || die "build failed"
-}
-
-src_install() {
- emake FFMPEG=/usr DESTDIR="${D}" PREFIX="/usr" MANPATH="/usr/share/man" install \
- || die "install failed"
- dodoc CREDITS ChangeLog README README.ffmpeg README.icons
-}