diff options
author | Pacho Ramos <pacho@gentoo.org> | 2024-07-21 12:12:19 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2024-07-21 12:29:02 +0200 |
commit | 5ddb7f015855b8200c86af6be63d162f9e64897b (patch) | |
tree | a832afab49ed5d225fac618ed4c5e5706f83a04b /games-arcade/pachi | |
parent | app-text/doxygen: add 1.11.0 (diff) | |
download | gentoo-5ddb7f015855b8200c86af6be63d162f9e64897b.tar.gz gentoo-5ddb7f015855b8200c86af6be63d162f9e64897b.tar.bz2 gentoo-5ddb7f015855b8200c86af6be63d162f9e64897b.zip |
games-arcade/pachi: Fix installation with updated group
Closes: https://bugs.gentoo.org/811717
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'games-arcade/pachi')
-rw-r--r-- | games-arcade/pachi/pachi-1.0-r2.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/games-arcade/pachi/pachi-1.0-r2.ebuild b/games-arcade/pachi/pachi-1.0-r2.ebuild index c93353022186..49d3b76623a5 100644 --- a/games-arcade/pachi/pachi-1.0-r2.ebuild +++ b/games-arcade/pachi/pachi-1.0-r2.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit autotools desktop @@ -35,6 +35,9 @@ src_prepare() { rm -f missing || die mv configure.in configure.ac || die + + sed -i -e 's/games/gamestat/g' data/Makefile.am || die + eautoreconf } |