blob: fc291d1333792972ed7369808b3b529a01a81b5f (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/freeimage/freeimage-3.11.0.ebuild,v 1.6 2009/05/24 00:34:47 mr_bones_ Exp $
EAPI=2
inherit flag-o-matic toolchain-funcs multilib
MY_PN=FreeImage
MY_P=${MY_PN}${PV//.}
DESCRIPTION="Image library supporting many formats"
HOMEPAGE="http://freeimage.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.zip
doc? ( mirror://sourceforge/${PN}/${MY_P}.pdf )"
LICENSE="|| ( GPL-2 FIPL-1.0 )"
SLOT="0"
KEYWORDS="~amd64 ppc ~x86"
IUSE="cxx doc"
DEPEND="app-arch/unzip"
RDEPEND=""
S=${WORKDIR}/${MY_PN}
src_prepare() {
append-cflags -std=c99 -D_POSIX_SOURCE # silence warnings from gcc
sed -i \
-e '/ldconfig/d' \
-e "/^CC =/s:gcc:$(tc-getCC) ${CFLAGS} -Wall:" \
-e "/^CXX =/s:g++:$(tc-getCXX) ${CXXFLAGS} -Wall:" \
-e "/^AR = /s:ar:$(tc-getAR):" \
-e "/^INCDIR = /s:/usr/include:${D}/usr/include:" \
-e "/^INSTALLDIR = /s:/usr/lib:${D}/usr/$(get_libdir):" \
-e '/^COMPILERFLAGS =/s:-O3:-fPIC:' \
-e "/\$(CC) -s /s: -s : ${LDFLAGS} :" \
Makefile.{gnu,fip} \
|| die "sed failed"
}
src_compile() {
emake -f Makefile.gnu || die "emake failed"
if use cxx ; then
emake -f Makefile.fip || die "emake fip failed"
fi
}
src_install() {
dodir /usr/include /usr/$(get_libdir)
emake -f Makefile.gnu install || die "emake install failed"
if use cxx ; then
emake -f Makefile.fip install || die "emake install fip failed"
fi
dodoc README.linux Whatsnew.txt
use doc && dodoc "${DISTDIR}"/${MY_P}.pdf
}
|