blob: 6a3b91a3d9240d110699e43c499ff36f377cd083 (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/xmps/xmps-0.2.0-r3.ebuild,v 1.5 2004/06/25 00:53:53 agriffis Exp $
IUSE="nls gnome"
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*
>=sys-apps/sed-4
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_unpack() {
unpack ${A}
# Fixes compile issues on motion_comp.c (Bug #2822)
cd ${S}
patch -p1 < ${FILESDIR}/xmps-0.2.0_motion_comp.c.gentoo.diff || die
}
src_compile() {
local myconf
use gnome && myconf="--enable-gnome"
use nls || myconf="${myconf} --disable-nls"
econf ${myconf} || die "econf failed"
for file in `find . -iname "Makefile"`;do
sed -i -e "s:-Werror::g;s:-ldb1:-ldb:g" \
${file} || die "sed-fu failed"
done
sed -i -e "s:\(#ifdef HAVE_CONFIG_H\):#define _LIBC 1\n\1:" \
intl/l10nflist.c || die "sed-fu 2 failed"
sed -i -e "s:\$(bindir)/xmps-config:\$(DESTDIR)\$(bindir)/xmps-config:" \
Makefile || die "sed-fu 3 failed"
emake || die "emake failed"
}
src_install () {
einstall || die "einstall failed"
dodoc AUTHORS ChangeLog COPYING NEWS README TODO
}
|