diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2010-09-15 18:48:44 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2010-09-15 18:48:44 +0000 |
commit | 2a88af96c2a6661c3ff3888aa1cd70137cd71bc3 (patch) | |
tree | 277dcbdab1f45399c0a1a5df94c92eed8892b7c0 | |
parent | Make hicolor-icon-theme an alternative to gnome-icon-theme, bug #326855. Drop... (diff) | |
download | gentoo-2-2a88af96c2a6661c3ff3888aa1cd70137cd71bc3.tar.gz gentoo-2-2a88af96c2a6661c3ff3888aa1cd70137cd71bc3.tar.bz2 gentoo-2-2a88af96c2a6661c3ff3888aa1cd70137cd71bc3.zip |
respect LDFLAGS (bug #337476)
(Portage version: 2.1.8.3/cvs/Linux i686)
-rw-r--r-- | games-action/noiz2sa/ChangeLog | 5 | ||||
-rw-r--r-- | games-action/noiz2sa/noiz2sa-0.51a.ebuild | 9 |
2 files changed, 10 insertions, 4 deletions
diff --git a/games-action/noiz2sa/ChangeLog b/games-action/noiz2sa/ChangeLog index e19a3cfb0bd9..bcb93c1fd077 100644 --- a/games-action/noiz2sa/ChangeLog +++ b/games-action/noiz2sa/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-action/noiz2sa # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/noiz2sa/ChangeLog,v 1.8 2010/01/25 20:46:25 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/noiz2sa/ChangeLog,v 1.9 2010/09/15 18:48:44 mr_bones_ Exp $ + + 15 Sep 2010; Michael Sterrett <mr_bones_@gentoo.org> noiz2sa-0.51a.ebuild: + respect LDFLAGS (bug #337476) 25 Jan 2010; Michael Sterrett <mr_bones_@gentoo.org> noiz2sa-0.51a.ebuild: EAPI=2; tidy diff --git a/games-action/noiz2sa/noiz2sa-0.51a.ebuild b/games-action/noiz2sa/noiz2sa-0.51a.ebuild index 3a167d1041eb..8e7dd50bcf2f 100644 --- a/games-action/noiz2sa/noiz2sa-0.51a.ebuild +++ b/games-action/noiz2sa/noiz2sa-0.51a.ebuild @@ -1,20 +1,20 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/noiz2sa/noiz2sa-0.51a.ebuild,v 1.9 2010/01/25 20:46:25 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/noiz2sa/noiz2sa-0.51a.ebuild,v 1.10 2010/09/15 18:48:44 mr_bones_ Exp $ EAPI=2 inherit eutils games DESCRIPTION="Abstract Shooting Game" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" HOMEPAGE="http://www.asahi-net.or.jp/~cs8k-cyu/windows/noiz2sa_e.html http://sourceforge.net/projects/noiz2sa/" +SRC_URI="mirror://sourceforge/noiz2sa/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="amd64 ~ppc x86" IUSE="" -DEPEND="media-libs/sdl-mixer +DEPEND="media-libs/sdl-mixer[vorbis] >=dev-libs/libbulletml-0.0.3 virtual/opengl" @@ -24,6 +24,9 @@ src_prepare(){ cd "${S}/src" epatch "${FILESDIR}/${P}"-gcc41.patch sed \ + -e '/^CC/d' \ + -e '/^CXX/d' \ + -e '/^LDFLAGS/s/=/+=/' \ -e "s/-lglut/-lGL/" \ makefile.lin > Makefile \ || die "sed failed" |