summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schlemmer <azarah@gentoo.org>2002-12-23 17:48:23 +0000
committerMartin Schlemmer <azarah@gentoo.org>2002-12-23 17:48:23 +0000
commit1e29f0ca72c3953a8c584a2c6d7785790dfc828a (patch)
tree30b5958876bc7ea93745683beb02f24ef6471b25 /app-emulation
parentIpv6 now configured by emerge. Fixed #11214. and Changed SRC_URI from .tar.gz... (diff)
downloadgentoo-2-1e29f0ca72c3953a8c584a2c6d7785790dfc828a.tar.gz
gentoo-2-1e29f0ca72c3953a8c584a2c6d7785790dfc828a.tar.bz2
gentoo-2-1e29f0ca72c3953a8c584a2c6d7785790dfc828a.zip
fix configure breaking
Diffstat (limited to 'app-emulation')
-rw-r--r--app-emulation/advancemame/ChangeLog9
-rw-r--r--app-emulation/advancemame/advancemame-0.61.1.ebuild13
2 files changed, 18 insertions, 4 deletions
diff --git a/app-emulation/advancemame/ChangeLog b/app-emulation/advancemame/ChangeLog
index c48513ecba8f..242acb5a36cb 100644
--- a/app-emulation/advancemame/ChangeLog
+++ b/app-emulation/advancemame/ChangeLog
@@ -1,10 +1,15 @@
# ChangeLog for app-emulation/advancemame
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/advancemame/ChangeLog,v 1.4 2002/11/28 18:45:05 gerk Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/advancemame/ChangeLog,v 1.5 2002/12/23 17:48:23 azarah Exp $
+
+ 23 Dec 2002; Martin Schlemmer <azarah@gentoo.org> advancemame-0.61.1.ebuild :
+
+ Replace econf with ./configure, as it breaks if we pass --host.
28 Nov 2002; Mark Guertin <gerk@gentoo.org> advancemame-0.62.0.ebuild,
advancemame-0.61.1.ebuild:
- set -ppc in keywords, uses x86 asm
+
+ Set -ppc in keywords, uses x86 asm
*advancemame-0.62.0 (20 Nov 2002)
diff --git a/app-emulation/advancemame/advancemame-0.61.1.ebuild b/app-emulation/advancemame/advancemame-0.61.1.ebuild
index eaf5b22ee4d7..3b1ef36264bb 100644
--- a/app-emulation/advancemame/advancemame-0.61.1.ebuild
+++ b/app-emulation/advancemame/advancemame-0.61.1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/advancemame/advancemame-0.61.1.ebuild,v 1.5 2002/11/30 21:29:32 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/advancemame/advancemame-0.61.1.ebuild,v 1.6 2002/12/23 17:48:23 azarah Exp $
# This build we configure to explicitly use SDL, as it is very
# difficult to get it working with fb or svgalib support. Anyway,
@@ -68,7 +68,16 @@ src_unpack() {
src_compile() {
# Configure with explicit SDL support
- econf --with-system=sdl
+ # NOTE: do not use econf, as we should not
+ # pass --host ...
+ ./configure \
+ --prefix=/usr \
+ --infodir=/usr/share/info \
+ --mandir=/usr/share/man \
+ --with-system=sdl \
+ --enable-pthread \
+ ${myconf} || die
+
emake || die
}