blob: 835a69461331652e9a51b27d9e848c494787b45c (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/backlite/backlite-1.0.2.ebuild,v 1.5 2011/08/07 15:12:34 billie Exp $
EAPI=4
inherit eutils qt4-r2
DESCRIPTION="backlite is a pure QT4 version of k9copy"
HOMEPAGE="http://k9copy.sourceforge.net/"
SRC_URI="mirror://sourceforge/k9copy/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="mplayer"
# According to the author of backlite/k9copy libdvdread and libdvdnav are
# bundled internal because newer versions produce bad DVD copies.
# This will be fixed later.
# DEPEND="media-libs/libdvdread"
DEPEND=">=media-libs/libmpeg2-0.5.1
virtual/ffmpeg
x11-libs/qt-gui:4[dbus]
|| ( x11-libs/qt-phonon:4 media-libs/phonon )"
RDEPEND="${DEPEND}
media-video/dvdauthor
mplayer? ( media-video/mplayer )"
src_prepare() {
epatch "${FILESDIR}/${PN}-1.0.2-ffmpeg.patch"
}
src_configure() {
eqmake4 backlite.pro PREFIX="${D}"/usr
}
src_install() {
unset INSTALL_ROOT
default
}
|