diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-03-15 23:35:33 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-03-15 23:35:33 +0000 |
commit | 65a42fa9945ceafe34a0b3de189c5ad54ce7eef4 (patch) | |
tree | 1f88158b23dbd76301afb774630ccb8a692e7467 /app-emulation | |
parent | Fixed mplayer-1.0_pre5-r3's message about not using custom CFLAGS. Put in th... (diff) | |
download | historical-65a42fa9945ceafe34a0b3de189c5ad54ce7eef4.tar.gz historical-65a42fa9945ceafe34a0b3de189c5ad54ce7eef4.tar.bz2 historical-65a42fa9945ceafe34a0b3de189c5ad54ce7eef4.zip |
amd64 multilib check #85423
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/wine/Manifest | 4 | ||||
-rw-r--r-- | app-emulation/wine/wine-20050211.ebuild | 12 | ||||
-rw-r--r-- | app-emulation/wine/wine-20050310.ebuild | 12 |
3 files changed, 24 insertions, 4 deletions
diff --git a/app-emulation/wine/Manifest b/app-emulation/wine/Manifest index ccc918c09b10..1338d0b00244 100644 --- a/app-emulation/wine/Manifest +++ b/app-emulation/wine/Manifest @@ -1,10 +1,10 @@ MD5 4aec1efb2da76e4815808698c38a880c ChangeLog 15879 MD5 6525c48ba09d08599432ea6c299e52f4 metadata.xml 354 -MD5 818b09eeccf27fe694f00fa4a4a59772 wine-20050310.ebuild 3145 +MD5 a22ccfdc3379570c5ff48f69e049df81 wine-20050310.ebuild 3396 MD5 1fcec66c3a3db069065a704291b8b4c4 wine-20041019.ebuild 3772 MD5 fb6682213117b666a78dd3b8960b190d wine-20041019-r3.ebuild 2927 MD5 db33247fa3d4ed19668319fa3497fa61 wine-20050111.ebuild 3059 -MD5 c41d09a37f4ebf02fba589d6fd567dc0 wine-20050211.ebuild 3187 +MD5 4ea4f74fbaaed6258e92be3a8b22d5c7 wine-20050211.ebuild 3438 MD5 67846279ad436d5d70d0857d29c5fabf files/20050211-docs.patch 719 MD5 64c9b939319110b4f44ef6f431262181 files/digest-wine-20041019 212 MD5 1668a758aa2007cb99a773b3c5c844c9 files/winearts-kdecvs-fix.patch 325 diff --git a/app-emulation/wine/wine-20050211.ebuild b/app-emulation/wine/wine-20050211.ebuild index 8286871a0651..976fbb32b757 100644 --- a/app-emulation/wine/wine-20050211.ebuild +++ b/app-emulation/wine/wine-20050211.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/wine-20050211.ebuild,v 1.3 2005/03/08 16:49:41 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/wine-20050211.ebuild,v 1.4 2005/03/15 23:35:33 vapier Exp $ inherit eutils flag-o-matic @@ -36,6 +36,16 @@ DEPEND="${RDEPEND} doc? ( app-text/docbook-sgml-utils app-text/jadetex ) sys-devel/flex" +pkg_setup() { + if use amd64 && ! has_m32; then + eerror "Your compiler seems to be unable to compile 32bit code." + eerror "Make sure you compile gcc with:" + echo + eerror " USE=multilib FEATURES=-sandbox" + die "Cannot produce 32bit code" + fi +} + src_unpack() { unpack Wine-${PV}.tar.gz cd "${S}" diff --git a/app-emulation/wine/wine-20050310.ebuild b/app-emulation/wine/wine-20050310.ebuild index 542ccabbc1d4..f30a9636abb8 100644 --- a/app-emulation/wine/wine-20050310.ebuild +++ b/app-emulation/wine/wine-20050310.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/wine-20050310.ebuild,v 1.1 2005/03/13 11:00:04 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/wine-20050310.ebuild,v 1.2 2005/03/15 23:35:33 vapier Exp $ inherit eutils flag-o-matic @@ -36,6 +36,16 @@ DEPEND="${RDEPEND} doc? ( app-text/docbook-sgml-utils app-text/jadetex ) sys-devel/flex" +pkg_setup() { + if use amd64 && ! has_m32; then + eerror "Your compiler seems to be unable to compile 32bit code." + eerror "Make sure you compile gcc with:" + echo + eerror " USE=multilib FEATURES=-sandbox" + die "Cannot produce 32bit code" + fi +} + src_unpack() { unpack Wine-${PV}.tar.gz cd "${S}" |