blob: f9dbafc1fd4c71316db4f20736725a4cb7f562b7 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/oxine/oxine-0.2.ebuild,v 1.4 2003/09/29 21:25:02 mholzer Exp $
DESCRIPTION="OSD frontend for xine"
HOMEPAGE="http://oxine.sourceforge.net/"
LICENSE="GPL-2"
DEPEND=">=media-libs/xine-lib-1_beta8
lirc? ( app-misc/lirc )
nls? ( sys-devel/gettext )
virtual/x11"
IUSE="nls lirc"
SLOT="0"
KEYWORDS="x86"
S=${WORKDIR}/${P}
SRC_URI="mirror://sourceforge/oxine/${P}.tar.gz"
src_compile() {
local myconf
use nls || myconf="${myconf} --disable-nls"
use lirc || myconf="${myconf} --disable-lirc"
econf ${myconf} || die
emake || die
}
src_install() {
make DESTDIR=${D} \
docdir=/usr/share/doc/${PF} \
docsdir=/usr/share/doc/${PF} \
install || die
dodoc AUTHORS ChangeLog COPYING INSTALL NEWS README TODO
}
|