diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-03-10 00:24:59 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-03-10 00:24:59 +0000 |
commit | 3b19d827013c2267553b1b20e0329b75681ee7da (patch) | |
tree | 772cab3d777cb61062ed63273fe7a0d69039ec8d /games-engines | |
parent | Version bump. (Manifest recommit) (diff) | |
download | gentoo-2-3b19d827013c2267553b1b20e0329b75681ee7da.tar.gz gentoo-2-3b19d827013c2267553b1b20e0329b75681ee7da.tar.bz2 gentoo-2-3b19d827013c2267553b1b20e0329b75681ee7da.zip |
fix bug #44185 - fails on parallel make; spelling fixes
Diffstat (limited to 'games-engines')
-rw-r--r-- | games-engines/exult/ChangeLog | 8 | ||||
-rw-r--r-- | games-engines/exult/exult-1.1.10_rc2.ebuild | 17 |
2 files changed, 15 insertions, 10 deletions
diff --git a/games-engines/exult/ChangeLog b/games-engines/exult/ChangeLog index c6dce620e70c..d9f6de813300 100644 --- a/games-engines/exult/ChangeLog +++ b/games-engines/exult/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-engines/exult -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-engines/exult/ChangeLog,v 1.4 2004/03/06 04:40:50 vapier Exp $ +# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-engines/exult/ChangeLog,v 1.5 2004/03/10 00:24:59 mr_bones_ Exp $ + + 09 Mar 2004; Michael Sterrett <mr_bones_@gentoo.org> + exult-1.1.10_rc2.ebuild: + fix bug #44185 - fails on parallel make; spelling fixes *exult-1.1.10_rc2 (05 Mar 2004) diff --git a/games-engines/exult/exult-1.1.10_rc2.ebuild b/games-engines/exult/exult-1.1.10_rc2.ebuild index baa76b24b6bd..7f5d09b3bb72 100644 --- a/games-engines/exult/exult-1.1.10_rc2.ebuild +++ b/games-engines/exult/exult-1.1.10_rc2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-engines/exult/exult-1.1.10_rc2.ebuild,v 1.1 2004/03/06 04:40:50 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-engines/exult/exult-1.1.10_rc2.ebuild,v 1.2 2004/03/10 00:24:59 mr_bones_ Exp $ inherit games @@ -23,9 +23,9 @@ S=${WORKDIR}/${MY_P} pkg_setup() { ewarn "*********************************************************" - ewarn " I had massive problems with exult when using agressive" + ewarn " I had massive problems with exult when using aggressive" ewarn " CFLAGS and CXXFLAGS. If exult segfaults try less" - ewarn " agressive optimizations and/or a different -march" + ewarn " aggressive optimizations and/or a different -march" ewarn " e.g.: -march=i386 instead of -march=i686 on x86" ewarn "*********************************************************" } @@ -39,19 +39,20 @@ src_compile() { `use_enable mmx` \ `use_enable 3dnow` \ || die - emake || die + # bug #44185 - fails on parallel make + emake -j1 || die "emake failed" } src_install() { - make DESTDIR=${D} install || die "make install failed" - mv ${D}/${GAMES_DATADIR}/{applications,icons} ${D}/usr/share/ + make DESTDIR="${D}" install || die "make install failed" + cp -R "${D}/${GAMES_DATADIR}"/{applications,icons} "${D}/usr/share/" \ + || die "cp failed" dodoc AUTHORS ChangeLog NEWS FAQ README README.1ST prepgamesdirs } pkg_postinst() { - einfo "To hear music in exult," - einfo "you have to install a timidity-patch." + einfo "To hear music in exult, you have to install a timidity-patch." einfo "Try this:" einfo " $ emerge timidity-eawpatches" einfo "kernel drivers. Install alsa instead." |