blob: 62fcb47c7570324eca5f1f573bb05400ef423e3c (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/kaffeine/kaffeine-0.5.ebuild,v 1.2 2004/12/26 19:04:26 carlo Exp $
inherit kde
DESCRIPTION="The Kaffeine media player for KDE3 based on xine-lib."
HOMEPAGE="http://kaffeine.sourceforge.net/"
SRC_URI="mirror://sourceforge/kaffeine/${P/_/-}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~sparc ~amd64"
IUSE=""
DEPEND=">=media-libs/xine-lib-1_rc5
sys-devel/gettext"
need-kde 3.2
S="${WORKDIR}/${P/_/-}"
src_compile() {
local myconf
[ -f /etc/X11/xorg.conf ] && myconf="${myconf} --with-xorg"
kde_src_compile all
}
|