blob: 7a6bae23d207d279f95c50530c503b2219835ac6 (
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
|
# 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.ebuild,v 1.2 2005/04/18 16:21:56 carlo Exp $
inherit 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=">=media-libs/xine-lib-1
dvb? ( >=sys-kernel/linux-headers-2.6 )"
need-kde 3.2
src_compile() {
# See comments in kaffeine/main.cpp.
# Probably this is not needed, if >=xorg-x11-6.8.0-r4
# is installed (see bug #75722, #59746).
local myconf="--with-xorg"
kde_src_compile
}
|