blob: b9bb68b2cb63ec7d35d4e02964477cff6ab1e5f7 (
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
41
42
43
44
45
46
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/ogle-gui/ogle-gui-0.8.5.ebuild,v 1.4 2002/12/31 15:43:33 doctomoe Exp $
IUSE="nls"
DESCRIPTION="GUI interface for the Ogle DVD player."
HOMEPAGE="http://www.dtek.chalmers.se/groups/dvd/"
LICENSE="GPL-2"
DEPEND=">=media-video/ogle-${PV}
=x11-libs/gtk+-1.2*
dev-libs/libxml2
sys-devel/bison
( >=gnome-base/libglade-0.17-r6
<gnome-base/libglade-2.0.0 )"
RDEPEND="nls? ( sys-devel/gettext )"
SLOT="0"
KEYWORDS="x86 ppc"
SRC_URI="http://www.dtek.chalmers.se/groups/dvd/dist/${P/-/_}.tar.gz"
S=${WORKDIR}/${P/-/_}
src_compile() {
local myconf
use nls || myconf="--disable-nls"
libtoolize --copy --force
# libxml2 hack
CFLAGS="${CFLAGS} -I/usr/include/libxml2/libxml"
econf ${myconf} || die
emake || die
}
src_install() {
einstall || die
dodoc ABOUT-NLS AUTHORS COPYING INSTALL NEWS README
}
|