blob: 5ce115a086da1fa7e8240400a058c17f083ac53b (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/cxfe/cxfe-0.9.2.ebuild,v 1.3 2008/10/06 20:33:07 maekke Exp $
inherit eutils
DESCRIPTION="A command line interface for xine."
HOMEPAGE="http://people.iola.dk/anders/cxfe/"
SRC_URI="http://people.iola.dk/anders/cxfe/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE="lirc"
RDEPEND=">=media-libs/xine-lib-1_rc1
x11-libs/libX11
x11-libs/libXext
lirc? ( app-misc/lirc )
sys-libs/ncurses"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-asneeded.patch"
}
src_install() {
dobin cxfe
dodoc README TODO lircrc-example
}
|