diff options
author | Peter Johanson <latexer@gentoo.org> | 2004-06-08 16:17:21 +0000 |
---|---|---|
committer | Peter Johanson <latexer@gentoo.org> | 2004-06-08 16:17:21 +0000 |
commit | 980df1cf0896e8aa82ae9504f3c24d99027f8cc2 (patch) | |
tree | 65011382827e5359aa4e334a695eb43efd108d37 /dev-dotnet | |
parent | version bump, closes #51862 (diff) | |
download | historical-980df1cf0896e8aa82ae9504f3c24d99027f8cc2.tar.gz historical-980df1cf0896e8aa82ae9504f3c24d99027f8cc2.tar.bz2 historical-980df1cf0896e8aa82ae9504f3c24d99027f8cc2.zip |
Initial commit. System.Drawing for mono.
Diffstat (limited to 'dev-dotnet')
-rw-r--r-- | dev-dotnet/libgdiplus/ChangeLog | 10 | ||||
-rw-r--r-- | dev-dotnet/libgdiplus/Manifest | 4 | ||||
-rw-r--r-- | dev-dotnet/libgdiplus/files/digest-libgdiplus-0.8 | 1 | ||||
-rw-r--r-- | dev-dotnet/libgdiplus/libgdiplus-0.8.ebuild | 40 | ||||
-rw-r--r-- | dev-dotnet/libgdiplus/metadata.xml | 8 |
5 files changed, 63 insertions, 0 deletions
diff --git a/dev-dotnet/libgdiplus/ChangeLog b/dev-dotnet/libgdiplus/ChangeLog new file mode 100644 index 000000000000..ddc66606542e --- /dev/null +++ b/dev-dotnet/libgdiplus/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-dotnet/libgdiplus +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/ChangeLog,v 1.1 2004/06/08 16:17:21 latexer Exp $ + +*libgdiplus-0.8 (08 Jun 2004) + + 08 Jun 2004; Peter Johanson, <peter@gentoo.org> libgdiplus-0.8.ebuild, + metadata.xml: + Initial commit. Ebuild by yours truly. + diff --git a/dev-dotnet/libgdiplus/Manifest b/dev-dotnet/libgdiplus/Manifest new file mode 100644 index 000000000000..1d90ff1e37c8 --- /dev/null +++ b/dev-dotnet/libgdiplus/Manifest @@ -0,0 +1,4 @@ +MD5 0c0810b104290533b3f032f6442c45aa libgdiplus-0.8.ebuild 989 +MD5 d0ab3d153a97ed1cfc166ecf00a4c616 ChangeLog 386 +MD5 a60fdfbce7c7cfc52187ff86a7f8bbf8 metadata.xml 222 +MD5 3bf6a958ac0a770bad2fa1a82750d86b files/digest-libgdiplus-0.8 66 diff --git a/dev-dotnet/libgdiplus/files/digest-libgdiplus-0.8 b/dev-dotnet/libgdiplus/files/digest-libgdiplus-0.8 new file mode 100644 index 000000000000..fdf3f7cac7e0 --- /dev/null +++ b/dev-dotnet/libgdiplus/files/digest-libgdiplus-0.8 @@ -0,0 +1 @@ +MD5 3d54f713ada24de27922544a8b8173e7 libgdiplus-0.8.tar.gz 310083 diff --git a/dev-dotnet/libgdiplus/libgdiplus-0.8.ebuild b/dev-dotnet/libgdiplus/libgdiplus-0.8.ebuild new file mode 100644 index 000000000000..f98620c3879b --- /dev/null +++ b/dev-dotnet/libgdiplus/libgdiplus-0.8.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/libgdiplus-0.8.ebuild,v 1.1 2004/06/08 16:17:21 latexer Exp $ + +DESCRIPTION="Library for using System.Drawing with Mono" + +HOMEPAGE="http://www.go-mono.com/" + +SRC_URI="http://www.go-mono.com/archive/beta2/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~x86" + +IUSE="tiff gif jpeg png" + +DEPEND=">=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-0.95" + +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 + emake || die +} + +src_install() { + einstall || die + + dodoc AUTHORS ChangeLog NEWS README +} diff --git a/dev-dotnet/libgdiplus/metadata.xml b/dev-dotnet/libgdiplus/metadata.xml new file mode 100644 index 000000000000..ba7eb92cb2fb --- /dev/null +++ b/dev-dotnet/libgdiplus/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>dotnet</herd> +<maintainer> + <email>latexer@gentoo.org</email> +</maintainer> +</pkgmetadata> |