diff options
author | Grant Goodyear <g2boojum@gentoo.org> | 2002-01-17 20:55:34 +0000 |
---|---|---|
committer | Grant Goodyear <g2boojum@gentoo.org> | 2002-01-17 20:55:34 +0000 |
commit | 43754acb20f2ddca152a13f2ba7be6cea2158e76 (patch) | |
tree | dc401934ca073b8a51cbcfa48886daad3e9d9340 | |
parent | fix compile problem with gnome-libs-1.4.1.3 (diff) | |
download | gentoo-2-43754acb20f2ddca152a13f2ba7be6cea2158e76.tar.gz gentoo-2-43754acb20f2ddca152a13f2ba7be6cea2158e76.tar.bz2 gentoo-2-43754acb20f2ddca152a13f2ba7be6cea2158e76.zip |
Updated libast that adds --disable-mmx flab. It seems that our binutils is broken with respect to a number of the E packages (according to people on the E development list).
-rw-r--r-- | x11-libs/libast/files/digest-libast-0.4-r1 | 1 | ||||
-rw-r--r-- | x11-libs/libast/libast-0.4-r1.ebuild (renamed from x11-libs/libast/libast-0.4.ebuild) | 6 |
2 files changed, 5 insertions, 2 deletions
diff --git a/x11-libs/libast/files/digest-libast-0.4-r1 b/x11-libs/libast/files/digest-libast-0.4-r1 new file mode 100644 index 000000000000..05f989924277 --- /dev/null +++ b/x11-libs/libast/files/digest-libast-0.4-r1 @@ -0,0 +1 @@ +MD5 9424286314c1d816699b28964b91d015 libast-0.4.tar.gz 155648 diff --git a/x11-libs/libast/libast-0.4.ebuild b/x11-libs/libast/libast-0.4-r1.ebuild index 1d745a234ab0..d37e616ff20f 100644 --- a/x11-libs/libast/libast-0.4.ebuild +++ b/x11-libs/libast/libast-0.4-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2001 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Maintainer: Grant Goodyear <g2boojum@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libast/libast-0.4.ebuild,v 1.1 2002/01/16 18:56:17 g2boojum Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libast/libast-0.4-r1.ebuild,v 1.1 2002/01/17 20:55:34 g2boojum Exp $ S=${WORKDIR}/${P} DESCRIPTION="LIBrary of Assorted Spiffy Things. Needed for Eterm." @@ -13,11 +13,13 @@ DEPEND="virtual/glibc >=media-libs/freetype-1.3" src_compile() { + # always disable mmx because binutils-2.11.92+ seems to be broken for this package + myconf="--disable-mmx" ./configure \ --host=${CHOST} \ --prefix=/usr \ --infodir=/usr/share/info \ - --mandir=/usr/share/man || die "./configure failed" + --mandir=/usr/share/man "${myconf}" || die "./configure failed" emake || die } |