blob: 9ebc04d064d7ae86b6004a5186a33efe350952a3 (
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
47
48
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/xmps/xmps-0.2.0-r1.ebuild,v 1.11 2003/02/13 13:38:20 vapier Exp $
IUSE="nls gnome"
S=${WORKDIR}/${P}
DESCRIPTION="X Movie Player System"
SRC_URI="http://xmps.sourceforge.net/sources/${P}.tar.gz"
HOMEPAGE="http://xmps.sourceforge.net"
DEPEND="=x11-libs/gtk+-1.2*
x86? ( >=dev-lang/nasm-0.98 )
>=dev-libs/popt-1.5
gnome? ( >=gnome-base/gnome-libs-1.4.1.2-r1 )"
RDEPEND=">=media-libs/smpeg-0.4.4-r1
nls? ( sys-devel/gettext )"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
src_compile() {
local myconf
use gnome && myconf="--enable-gnome"
use nls || myconf="${myconf} --disable-nls"
econf ${myconf} || die
cp Makefile Makefile.orig
sed -e "s:\$(bindir)/xmps-config:\$(DESTDIR)\$(bindir)/xmps-config:" \
Makefile.orig > Makefile
make || die
}
src_install () {
einstall || die
dodoc AUTHORS ChangeLog COPYING NEWS README TODO
}
|