blob: e37bceaed5279b82c111fbd1443a620cf02e8d73 (
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-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/libgdiplus-1.2.4.ebuild,v 1.1 2007/05/16 22:21:03 compnerd Exp $
inherit eutils flag-o-matic toolchain-funcs autotools
DESCRIPTION="Library for using System.Drawing with mono"
HOMEPAGE="http://www.go-mono.com/"
SRC_URI="http://www.go-mono.com/sources/${PN}/${P}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
IUSE="exif gif jpeg tiff"
RDEPEND=">=dev-libs/glib-2.6
>=media-libs/freetype-2
>=media-libs/fontconfig-2
media-libs/libpng
|| (
(
x11-libs/libXrender
x11-libs/libX11
x11-libs/libXt
)
virtual/x11
)
exif? ( media-libs/libexif )
gif? ( >=media-libs/giflib-4.1.3 )
jpeg? ( media-libs/jpeg )
tiff? ( media-libs/tiff )"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.19"
RESTRICT="test"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PN}-1.1.13-libungif-configure-fix.diff
eautoreconf
}
src_compile() {
if [[ "$(gcc-major-version)" -gt "3" ]] || \
( [[ "$(gcc-major-version)" -eq "3" ]] && [[ "$(gcc-minor-version)" -gt "3" ]] )
then
append-flags -fno-inline-functions
fi
# Disable glitz support as libgdiplus does not use it, and it causes errors
econf --disable-glitz \
$(use_with exif libexif) \
$(use_with gif libgif) \
$(use_with jpeg libjpeg) \
$(use_with tiff libtiff) || die "configure failed"
# attribute ((__stdcall__)) generates warnings on ppc
if use ppc ; then
sed -i -e 's:-Werror::g' src/Makefile
fi
emake || die "compile failed"
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
dodoc AUTHORS ChangeLog NEWS README
}
|