49 lines
1.2 KiB
Bash
49 lines
1.2 KiB
Bash
|
# Copyright 1999-2013 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/Attic/libgdiplus-2.6.7-r1.ebuild,v 1.6 2011/11/05 14:27:23 ssuominen dead $
|
||
|
|
||
|
EAPI=2
|
||
|
|
||
|
inherit eutils go-mono mono flag-o-matic
|
||
|
|
||
|
DESCRIPTION="Library for using System.Drawing with mono"
|
||
|
HOMEPAGE="http://www.go-mono.com/"
|
||
|
|
||
|
LICENSE="MIT"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="amd64 ppc x86 ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris"
|
||
|
IUSE="cairo"
|
||
|
|
||
|
RDEPEND=">=dev-libs/glib-2.16
|
||
|
>=media-libs/freetype-2.3.7
|
||
|
>=media-libs/fontconfig-2.6
|
||
|
>=media-libs/libpng-1.5
|
||
|
x11-libs/libXrender
|
||
|
x11-libs/libX11
|
||
|
x11-libs/libXt
|
||
|
>=x11-libs/cairo-1.8.4[X]
|
||
|
media-libs/libexif
|
||
|
>=media-libs/giflib-4.1.3
|
||
|
virtual/jpeg
|
||
|
media-libs/tiff
|
||
|
!cairo? ( >=x11-libs/pango-1.20 )"
|
||
|
DEPEND="${RDEPEND}"
|
||
|
|
||
|
RESTRICT="test"
|
||
|
|
||
|
src_prepare() {
|
||
|
go-mono_src_prepare
|
||
|
sed -i -e 's:ungif:gif:g' configure || die
|
||
|
|
||
|
# Fix integer overflows when loading images, see bug #334101
|
||
|
epatch "${FILESDIR}/${P}-fix-overflows.patch"
|
||
|
epatch "${FILESDIR}/${PN}-2.10.1-libpng15.patch"
|
||
|
}
|
||
|
|
||
|
src_configure() {
|
||
|
append-flags -fno-strict-aliasing
|
||
|
go-mono_src_configure --with-cairo=system \
|
||
|
$(use !cairo && printf %s --with-pango) \
|
||
|
|| die "configure failed"
|
||
|
}
|