blob: 8b51b09fbf4eb39df8a2800ac33e68424bbdf745 (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Michael Nazaroff <naz@themoonsofjupiter.net>
# /home/cvsroot/gentoo-x86/media-video/xmps-win32/xmps-win32-plugin-0.0.4.ebuild,v 1
A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="XMPS win32 plugin will allow XMPS to use the windows dlls to decode various video formats, including Intel Indeo 5.0 and DivX ;-)"
SRC_URI="http://xmps.sourceforge.net/sources/${A}"
HOMEPAGE="http://xmps.sourceforge.net"
DEPEND=">=media-video/xmps-0.2.0"
RDEPEND=">=media-video/xmps-0.2.0"
src_compile() {
try ./configure --host=${CHOST} --prefix=/usr
make || die
}
src_install () {
#try make prefix=${D}/usr/lib install
make DESTDIR=${D} install || die
dodoc AUTHORS ChangeLog COPYING NEWS README TODO
}
|