blob: e25a7c4f4cde020f9f06180fc966313f29a989ca (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Achim Gottinger <achim@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/media-libs/mpeg-lib/mpeg-lib-1.3.1-r1.ebuild,v 1.5 2002/04/27 11:42:30 seemant Exp $
MY_P=${P/-/_}
S=${WORKDIR}/${MY_P}
DESCRIPTION="A lib for MPEG-1 video"
SRC_URI="ftp://ftp.mni.mcgill.ca/pub/mpeg/${MY_P}.tar.gz"
HOMEPAGE="http://"
DEPEND="virtual/glibc"
src_compile() {
./configure --prefix=/usr --host=${CHOST} --disable-dither || die
# Doesn't work with -j 4 (hallski)
make OPTIMIZE="$CFLAGS" || die
}
src_install () {
make prefix=${D}/usr install || die
dodoc CHANGES README
docinto txt
dodoc doc/image_format.eps doc/mpeg_lib.*
}
|