blob: 7fc7d3865cb06907346dd58c7d028fc12a12dd03 (
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
65
66
67
68
69
70
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/jpeg/jpeg-6b-r5.ebuild,v 1.5 2005/09/03 20:52:47 corsair Exp $
inherit flag-o-matic libtool eutils toolchain-funcs
MY_P=${PN}src.v${PV}
DESCRIPTION="Library to load, handle and manipulate images in the JPEG format"
HOMEPAGE="http://www.ijg.org/"
SRC_URI="ftp://ftp.uu.net/graphics/jpeg/${MY_P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~alpha amd64 arm hppa ia64 m68k ~mips ppc ~ppc-macos ppc64 s390 sh sparc x86"
IUSE=""
RDEPEND=""
DEPEND="${RDEPEND}
>=sys-devel/libtool-1.5.10-r4"
src_unpack() {
unpack ${A}
cd "${S}"
# make shared libraries work on G/FBSD. Need to be before the sed
epatch "${FILESDIR}/${P}-freebsd.patch"
# allow /etc/make.conf's HOST setting to apply
sed -i 's/ltconfig.*/& $CHOST/' configure
uclibctoolize
use ppc-macos && darwintoolize
epatch "${FILESDIR}"/${P}-gentoo.patch
}
src_compile() {
replace-cpu-flags k6 k6-2 k6-3 i586
econf --enable-shared --enable-static || die "econf failed"
if use ppc-macos; then
cd "${S}"
sed -i -e 's:LIBTOOL = libtool:LIBTOOL = /usr/bin/glibtool:' Makefile
fi
# The configure script seems to ignore the --libdir option..
# set this here to fix libdir path in libtool file
sed -i -e "s:^libdir.*:libdir = \$(exec_prefix)/$(get_libdir):" \
"${S}"/Makefile || die
emake \
CC="$(tc-getCC)" \
AR="$(tc-getAR) rc" \
AR2="$(tc-getRANLIB)" \
|| die "make failed"
}
src_install() {
dodir /usr/{include,$(get_libdir),bin,share/man/man1}
make \
prefix="${D}"/usr \
libdir="${D}"/usr/$(get_libdir) \
mandir="${D}"/usr/share/man/man1 \
install || die "make install"
insinto /usr/include
doins jpegint.h || die "jpeg headers"
dodoc README install.doc usage.doc wizard.doc change.log \
libjpeg.doc example.c structure.doc filelist.doc \
coderules.doc
}
|