blob: a588ac7620c47faacaa2178adf313925033ff832 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/jpeg-mmx/jpeg-mmx-1.1.2-r1.ebuild,v 1.6 2002/12/09 04:26:12 manson Exp $
inherit libtool
S=${WORKDIR}/jpeg-mmx
DESCRIPTION="JPEG library with mmx enhancements"
SRC_URI="mirror://sourceforge/mjpeg/${P}.tar.gz"
HOMEPAGE="http://mjpeg.sourceforge.net/"
SLOT="0"
LICENSE="as-is"
KEYWORDS="x86 -ppc -sparc "
DEPEND="virtual/glibc"
src_compile() {
elibtoolize
econf --enable-shared || die "configure failed"
emake || die "make failed"
}
src_install() {
dodir /usr/{include/jpeg-mmx,lib}
make \
includedir=${D}/usr/include/jpeg-mmx \
prefix=${D}/usr \
install || die "install failed"
mv ${D}/usr/lib/libjpeg.la ${D}/usr/lib/libjpeg-mmx.la
mv ${D}/usr/lib/libjpeg.so.62.0.0 ${D}/usr/lib/libjpeg-mmx.so.62.0.0
rm ${D}/usr/lib/libjpeg.so
ln -s /usr/lib/libjpeg-mmx.so.62.0.0 ${D}/usr/lib/libjpeg-mmx.so
rm ${D}/usr/lib/libjpeg.so.62
ln -s /usr/lib/libjpeg-mmx.so.62.0.0 ${D}/usr/lib/libjpeg-mmx.so.62
dodoc README change.log structure.doc libjpeg.doc
}
|