games-arcade/diameter: work around the hand-rolled python detection code (bug #582888)

Package-Manager: portage-2.2.28
This commit is contained in:
Michael Sterrett
2016-05-24 22:45:42 -04:00
parent 62c75f76eb
commit 70ba89af11

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2015 Gentoo Foundation
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -28,16 +28,26 @@ DEPEND="${RDEPEND}
S=${WORKDIR}/gamediameter
pkg_setup() {
python-any-r1_pkg_setup
games_pkg_setup
}
src_prepare() {
sed -i \
-e "s:gamediameter:diameter:" \
configure.in || die
mv configure.in configure.ac || die
sed -i \
-e '/for i in .*\/lib/s:".*:/usr/lib/ ; do:' \
-e "/AC_SUBST.*LDFLAGS/s/\".*\"/\$PYTHON_LIBS/" \
acinclude.m4 || die
# bug #336812
sed -i \
-e '/gui nebular3.gif/s/gui//' \
data/texture/Makefile.am || die
eautoreconf
python_export PYTHON PYTHON_LIBS
}
src_install() {