diff options
author | Peter Johanson <latexer@gentoo.org> | 2004-07-03 01:58:18 +0000 |
---|---|---|
committer | Peter Johanson <latexer@gentoo.org> | 2004-07-03 01:58:18 +0000 |
commit | 30e30e52b13797afb34aa213e51ff7ba3bd6f420 (patch) | |
tree | 0a5fc29070bd2a7b114676b166d27766fbdea5b7 /dev-dotnet | |
parent | Stable x86 amd64. (Manifest recommit) (diff) | |
download | gentoo-2-30e30e52b13797afb34aa213e51ff7ba3bd6f420.tar.gz gentoo-2-30e30e52b13797afb34aa213e51ff7ba3bd6f420.tar.bz2 gentoo-2-30e30e52b13797afb34aa213e51ff7ba3bd6f420.zip |
Linking fix. Revision bumping to make sure it propogates. See bug #55916.
Diffstat (limited to 'dev-dotnet')
-rw-r--r-- | dev-dotnet/libgdiplus/ChangeLog | 8 | ||||
-rw-r--r-- | dev-dotnet/libgdiplus/Manifest | 2 | ||||
-rw-r--r-- | dev-dotnet/libgdiplus/files/digest-libgdiplus-1.0-r1 | 1 | ||||
-rw-r--r-- | dev-dotnet/libgdiplus/libgdiplus-1.0-r1.ebuild | 56 |
4 files changed, 66 insertions, 1 deletions
diff --git a/dev-dotnet/libgdiplus/ChangeLog b/dev-dotnet/libgdiplus/ChangeLog index 8a789b60a50b..cd018bc78963 100644 --- a/dev-dotnet/libgdiplus/ChangeLog +++ b/dev-dotnet/libgdiplus/ChangeLog @@ -1,6 +1,12 @@ # 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.8 2004/06/30 15:37:21 latexer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/ChangeLog,v 1.9 2004/07/03 01:58:18 latexer Exp $ + +*libgdiplus-1.0-r1 (02 Jul 2004) + + 02 Jul 2004; Peter Johanson <latexer@gentoo.org> +libgdiplus-1.0-r1.ebuild: + Revision bump to make sure people get it. This fixes a major linking bug + thanks to libtool breakage. See bug#55916 *libgdiplus-1.0 (30 Jun 2004) diff --git a/dev-dotnet/libgdiplus/Manifest b/dev-dotnet/libgdiplus/Manifest index 2882881d1c77..49fb8150be2b 100644 --- a/dev-dotnet/libgdiplus/Manifest +++ b/dev-dotnet/libgdiplus/Manifest @@ -1,4 +1,5 @@ MD5 87144d203d0f0ab8fb7885916d2fd539 libgdiplus-0.10.ebuild 1097 +MD5 151aea0138be88922477f33c9f50d632 libgdiplus-1.0-r1.ebuild 1268 MD5 67e09b00fc8883165fb8eb984c5eaef3 libgdiplus-1.0.ebuild 1088 MD5 466101b16c2c4b87ff30e059f236d328 libgdiplus-0.9.ebuild 1099 MD5 fa4a3bec3da42b61957a7888487f5da5 libgdiplus-0.8.ebuild 1099 @@ -8,3 +9,4 @@ MD5 3bf6a958ac0a770bad2fa1a82750d86b files/digest-libgdiplus-0.8 66 MD5 3e503665200b569e0abec71de0d64033 files/digest-libgdiplus-0.9 66 MD5 d6aa8125f4d7db8f5a5575e1e63adb84 files/digest-libgdiplus-1.0 66 MD5 05d7adbae7e631db534761528164f112 files/digest-libgdiplus-0.10 67 +MD5 d6aa8125f4d7db8f5a5575e1e63adb84 files/digest-libgdiplus-1.0-r1 66 diff --git a/dev-dotnet/libgdiplus/files/digest-libgdiplus-1.0-r1 b/dev-dotnet/libgdiplus/files/digest-libgdiplus-1.0-r1 new file mode 100644 index 000000000000..b7696caa8204 --- /dev/null +++ b/dev-dotnet/libgdiplus/files/digest-libgdiplus-1.0-r1 @@ -0,0 +1 @@ +MD5 36e7f78bf943effa81669c416e4874d4 libgdiplus-1.0.tar.gz 327197 diff --git a/dev-dotnet/libgdiplus/libgdiplus-1.0-r1.ebuild b/dev-dotnet/libgdiplus/libgdiplus-1.0-r1.ebuild new file mode 100644 index 000000000000..9920c44f900c --- /dev/null +++ b/dev-dotnet/libgdiplus/libgdiplus-1.0-r1.ebuild @@ -0,0 +1,56 @@ +# 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-r1.ebuild,v 1.1 2004/07/03 01:58:18 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" + +src_unpack() { + unpack ${A} + cd ${S} + + # See bug #55916 + einfo "Fixing a libtool problem" + rm ltmain.sh + aclocal + libtoolize --force --copy +} + +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 +} |