blob: 206812d013846528048dd1dad35d30b54875f074 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/kaffeine/kaffeine-0.6-r1.ebuild,v 1.3 2005/05/29 23:44:20 flameeyes Exp $
inherit eutils kde
DESCRIPTION="Media player for KDE based on xine-lib."
HOMEPAGE="http://kaffeine.sourceforge.net/"
SRC_URI="mirror://sourceforge/kaffeine/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc ~amd64"
IUSE="dvb"
DEPEND=">=x11-base/xorg-x11-6.8.0-r4
>=media-libs/xine-lib-1
dvb? ( >=sys-kernel/linux-headers-2.6 )"
# the dependency on xorg-x11 is meant to avoid bug #59746
need-kde 3.2
src_unpack() {
kde_src_unpack
cd ${S}
epatch ${FILESDIR}/${P}-formats.patch
}
|