diff options
author | Jurek Bartuszek <jurek@gentoo.org> | 2007-09-10 19:03:53 +0000 |
---|---|---|
committer | Jurek Bartuszek <jurek@gentoo.org> | 2007-09-10 19:03:53 +0000 |
commit | 0fc4c63d0fd95159fe37e599f1cda5b3214db80e (patch) | |
tree | 22c982e212c9bbaa5b13479df6fe684d2a00c3e5 /dev-dotnet | |
parent | Version bump from the GNUstep overlay (diff) | |
download | gentoo-2-0fc4c63d0fd95159fe37e599f1cda5b3214db80e.tar.gz gentoo-2-0fc4c63d0fd95159fe37e599f1cda5b3214db80e.tar.bz2 gentoo-2-0fc4c63d0fd95159fe37e599f1cda5b3214db80e.zip |
dev-dotnet/libgdiplus: version bump
(Portage version: 2.1.2.12)
Diffstat (limited to 'dev-dotnet')
-rw-r--r-- | dev-dotnet/libgdiplus/ChangeLog | 7 | ||||
-rw-r--r-- | dev-dotnet/libgdiplus/files/digest-libgdiplus-1.2.5 | 3 | ||||
-rw-r--r-- | dev-dotnet/libgdiplus/libgdiplus-1.2.5.ebuild | 65 |
3 files changed, 74 insertions, 1 deletions
diff --git a/dev-dotnet/libgdiplus/ChangeLog b/dev-dotnet/libgdiplus/ChangeLog index c2e827172a1f..2068c90635f6 100644 --- a/dev-dotnet/libgdiplus/ChangeLog +++ b/dev-dotnet/libgdiplus/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-dotnet/libgdiplus # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/ChangeLog,v 1.76 2007/07/22 09:56:48 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/ChangeLog,v 1.77 2007/09/10 19:03:52 jurek Exp $ + +*libgdiplus-1.2.5 (10 Sep 2007) + + 10 Sep 2007; Jurek Bartuszek <jurek@gentoo.org> +libgdiplus-1.2.5.ebuild: + Version bump 22 Jul 2007; Hans de Graaff <graaff@gentoo.org> libgdiplus-1.2.2.ebuild, libgdiplus-1.2.3.ebuild, libgdiplus-1.2.4.ebuild: diff --git a/dev-dotnet/libgdiplus/files/digest-libgdiplus-1.2.5 b/dev-dotnet/libgdiplus/files/digest-libgdiplus-1.2.5 new file mode 100644 index 000000000000..c690dc24f4f3 --- /dev/null +++ b/dev-dotnet/libgdiplus/files/digest-libgdiplus-1.2.5 @@ -0,0 +1,3 @@ +MD5 82bbf6ca86b85e5148a15d8d88c6e548 libgdiplus-1.2.5.tar.bz2 2942165 +RMD160 84ecbb58edea5deb91b140e11461fb6fcf8b0f28 libgdiplus-1.2.5.tar.bz2 2942165 +SHA256 28edc21bc49f3791438ea70b5de944c4118a6daa557425f3209102379042e926 libgdiplus-1.2.5.tar.bz2 2942165 diff --git a/dev-dotnet/libgdiplus/libgdiplus-1.2.5.ebuild b/dev-dotnet/libgdiplus/libgdiplus-1.2.5.ebuild new file mode 100644 index 000000000000..529a78cb55a8 --- /dev/null +++ b/dev-dotnet/libgdiplus/libgdiplus-1.2.5.ebuild @@ -0,0 +1,65 @@ +# 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.5.ebuild,v 1.1 2007/09/10 19:03:52 jurek 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 + 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 +} |