diff options
author | Peter Johanson <latexer@gentoo.org> | 2004-09-22 14:36:38 +0000 |
---|---|---|
committer | Peter Johanson <latexer@gentoo.org> | 2004-09-22 14:36:38 +0000 |
commit | 030675229a0234d63de9fa9b86db806b841dcd81 (patch) | |
tree | 447b706151eceffa5a4dd3e6f737603bdbbeb8a4 /dev-dotnet | |
parent | Bump. Both non-NPTL and NPTL enabled versions. (diff) | |
download | historical-030675229a0234d63de9fa9b86db806b841dcd81.tar.gz historical-030675229a0234d63de9fa9b86db806b841dcd81.tar.bz2 historical-030675229a0234d63de9fa9b86db806b841dcd81.zip |
Bump.
Diffstat (limited to 'dev-dotnet')
-rw-r--r-- | dev-dotnet/libgdiplus/ChangeLog | 7 | ||||
-rw-r--r-- | dev-dotnet/libgdiplus/files/digest-libgdiplus-1.0.2 | 1 | ||||
-rw-r--r-- | dev-dotnet/libgdiplus/libgdiplus-1.0.2.ebuild | 45 |
3 files changed, 52 insertions, 1 deletions
diff --git a/dev-dotnet/libgdiplus/ChangeLog b/dev-dotnet/libgdiplus/ChangeLog index fb564f14d357..40e44b532119 100644 --- a/dev-dotnet/libgdiplus/ChangeLog +++ b/dev-dotnet/libgdiplus/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-dotnet/libgdiplus # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/ChangeLog,v 1.10 2004/09/21 22:19:30 latexer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/ChangeLog,v 1.11 2004/09/22 14:36:38 latexer Exp $ + +*libgdiplus-1.0.2 (22 Sep 2004) + + 22 Sep 2004; <peter@gentoo.org> +libgdiplus-1.0.2.ebuild: + Bump. *libgdiplus-1.0.1 (21 Sep 2004) diff --git a/dev-dotnet/libgdiplus/files/digest-libgdiplus-1.0.2 b/dev-dotnet/libgdiplus/files/digest-libgdiplus-1.0.2 new file mode 100644 index 000000000000..c333c1924f3d --- /dev/null +++ b/dev-dotnet/libgdiplus/files/digest-libgdiplus-1.0.2 @@ -0,0 +1 @@ +MD5 2bc13fd2bbb29706178760d3b048cf34 libgdiplus-1.0.2.tar.gz 329392 diff --git a/dev-dotnet/libgdiplus/libgdiplus-1.0.2.ebuild b/dev-dotnet/libgdiplus/libgdiplus-1.0.2.ebuild new file mode 100644 index 000000000000..75d990c3ff56 --- /dev/null +++ b/dev-dotnet/libgdiplus/libgdiplus-1.0.2.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/libgdiplus-1.0.2.ebuild,v 1.1 2004/09/22 14:36:38 latexer Exp $ + +inherit libtool + +DESCRIPTION="Library for using System.Drawing with Mono" + +HOMEPAGE="http://www.go-mono.com/" + +SRC_URI="http://www.go-mono.com/archive/${PV}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~x86 ~ppc" + +IUSE="tiff gif jpeg png" + +DEPEND="sys-devel/libtool + >=x11-libs/cairo-0.1.23 + tiff? ( media-libs/tiff ) + gif? ( media-libs/libungif ) + jpeg? ( media-libs/jpeg ) + png? ( media-libs/libpng )" + +RDEPEND=">=dev-dotnet/mono-1.0.2" + +src_compile() { + local myconf="" + use tiff || myconf="--without-libtiff ${myconf}" + use gif || myconf="--without-libungif ${myconf}" + use jpeg || myconf="--without-libjpeg ${myconf}" + use png || myconf="--without-libpng ${myconf}" + + econf ${myconf} || die + # attribute((__stdcall__)) generate warnings on ppc + use ppc && sed -i -e 's:-Werror::g' src/Makefile + emake || die +} + +src_install() { + einstall || die + + dodoc AUTHORS ChangeLog NEWS README +} |