blob: 659a428293daf33dc55e62526a0a29da3cf3d618 (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Your Name <your email>
# $Header: /var/cvsroot/gentoo-x86/media-libs/libmpeg3/libmpeg3-1.2.3.ebuild,v 1.1 2001/06/21 17:03:23 achim Exp $
A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="An mpeg library for linux"
SRC_URI="http://www.directfb.org/download/contrib/${A}"
HOMEPAGE="http://"
DEPEND="virtual/glibc"
src_compile() {
if [ -z "`use mmx`" ] ; then
try ./configure --no-css --no-mmx
else
try ./configure --no-css
fi
try make
}
src_install () {
dolib.a libmpeg3.a
insinto /usr/include/libmpeg3
doins *.h
dodoc README
docinto html
dodoc docs/*.html
}
|