diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2008-05-23 01:36:07 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2008-05-23 01:36:07 +0000 |
commit | 243edec81ddbfc2138ea406a70e0fbea13e31c65 (patch) | |
tree | a202cb3be94344c05e84284c5cf27202a75310a9 /games-puzzle/fish-fillets | |
parent | Instruct users to add FEATURES="metadata-transfer", since >=sys-apps/portage-... (diff) | |
download | gentoo-2-243edec81ddbfc2138ea406a70e0fbea13e31c65.tar.gz gentoo-2-243edec81ddbfc2138ea406a70e0fbea13e31c65.tar.bz2 gentoo-2-243edec81ddbfc2138ea406a70e0fbea13e31c65.zip |
fix run-time error with USE=-deprecated lua 5.1.3 (bug #223271)
(Portage version: 2.1.4.4)
Diffstat (limited to 'games-puzzle/fish-fillets')
-rw-r--r-- | games-puzzle/fish-fillets/ChangeLog | 6 | ||||
-rw-r--r-- | games-puzzle/fish-fillets/fish-fillets-0.8.0.ebuild | 8 |
2 files changed, 12 insertions, 2 deletions
diff --git a/games-puzzle/fish-fillets/ChangeLog b/games-puzzle/fish-fillets/ChangeLog index 6a626a789f9b..8a5c39e69b6f 100644 --- a/games-puzzle/fish-fillets/ChangeLog +++ b/games-puzzle/fish-fillets/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-puzzle/fish-fillets # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/fish-fillets/ChangeLog,v 1.29 2008/04/24 02:01:31 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/fish-fillets/ChangeLog,v 1.30 2008/05/23 01:36:07 mr_bones_ Exp $ + + 23 May 2008; Michael Sterrett <mr_bones_@gentoo.org> + fish-fillets-0.8.0.ebuild: + fix run-time error with USE=-deprecated lua 5.1.3 (bug #223271) 24 Apr 2008; Michael Sterrett <mr_bones_@gentoo.org> +files/fish-fillets-0.8.0-gcc43.patch, fish-fillets-0.8.0.ebuild: diff --git a/games-puzzle/fish-fillets/fish-fillets-0.8.0.ebuild b/games-puzzle/fish-fillets/fish-fillets-0.8.0.ebuild index 6ce9cb3e70ed..a060db640ebc 100644 --- a/games-puzzle/fish-fillets/fish-fillets-0.8.0.ebuild +++ b/games-puzzle/fish-fillets/fish-fillets-0.8.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/fish-fillets/fish-fillets-0.8.0.ebuild,v 1.3 2008/04/24 02:01:31 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/fish-fillets/fish-fillets-0.8.0.ebuild,v 1.4 2008/05/23 01:36:07 mr_bones_ Exp $ inherit eutils games @@ -30,6 +30,12 @@ src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}/${P}-gcc43.patch" + + #.mod was renamed to .fmod in lua 5.1.3 - bug #223271 + sed -i \ + -e 's/\.mod(/.fmod(/' \ + $(grep -rl "\.mod\>" "${WORKDIR}"/fillets-ng-data-${DATA_PV}) \ + || die "sed failed" } src_compile() { |