diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2009-04-02 18:53:56 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2009-04-02 18:53:56 +0000 |
commit | 9652b2e195632379a90dddf4dab8ef5acccbc99a (patch) | |
tree | 908212a3389d04492f2efaed714a995648e2dce5 /games-action | |
parent | Remove world read from config file to fix security issue when using bindpw fi... (diff) | |
download | gentoo-2-9652b2e195632379a90dddf4dab8ef5acccbc99a.tar.gz gentoo-2-9652b2e195632379a90dddf4dab8ef5acccbc99a.tar.bz2 gentoo-2-9652b2e195632379a90dddf4dab8ef5acccbc99a.zip |
configure isn't an autoconf script so don't try to treat it like one.
(Portage version: 2.1.6.7/cvs/Linux i686)
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/chickens/ChangeLog | 6 | ||||
-rw-r--r-- | games-action/chickens/chickens-0.2.4.ebuild | 10 |
2 files changed, 13 insertions, 3 deletions
diff --git a/games-action/chickens/ChangeLog b/games-action/chickens/ChangeLog index 933f77dea452..9774a8704fd1 100644 --- a/games-action/chickens/ChangeLog +++ b/games-action/chickens/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-action/chickens # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/chickens/ChangeLog,v 1.13 2009/01/29 02:46:23 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/chickens/ChangeLog,v 1.14 2009/04/02 18:53:56 mr_bones_ Exp $ + + 02 Apr 2009; Michael Sterrett <mr_bones_@gentoo.org> + chickens-0.2.4.ebuild: + configure isn't an autoconf script so don't try to treat it like one. 29 Jan 2009; Michael Sterrett <mr_bones_@gentoo.org> chickens-0.2.4.ebuild: diff --git a/games-action/chickens/chickens-0.2.4.ebuild b/games-action/chickens/chickens-0.2.4.ebuild index 73a476ea6f7c..3f48a8c5df0b 100644 --- a/games-action/chickens/chickens-0.2.4.ebuild +++ b/games-action/chickens/chickens-0.2.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/chickens/chickens-0.2.4.ebuild,v 1.13 2009/01/29 02:46:23 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/chickens/chickens-0.2.4.ebuild,v 1.14 2009/04/02 18:53:56 mr_bones_ Exp $ EAPI=2 inherit eutils games @@ -30,9 +30,15 @@ src_prepare() { -e "s:\"sound/:\"${GAMES_DATADIR}/${PN}/sound/:" \ -e "s:\"dat/:\"${GAMES_DATADIR}/${PN}/dat/:" main.cpp README \ || die "sed failed" - sed -i '/^CPPFLAGS/d' configure || die "sed failed" + sed -i \ + -e '/^CPPFLAGS/d' \ + configure \ + || die "sed failed" } +src_configure() { + ./configure || die +} src_install() { dogamesbin ${PN} || die "dogamesbin failed" insinto "${GAMES_DATADIR}"/${PN} |