From 0b7a6ea689c896fa26dbc857f5e8c13628596a0d Mon Sep 17 00:00:00 2001 From: Sam James Date: Fri, 25 Sep 2020 17:46:55 +0000 Subject: sci-geosciences/gpsd: call python_setup uncondiitonally python_setup is called by the distutils machinery when USE=python, but wasn't in the USE=-python case until now. We need this because we're using (e)scons to build. Closes: https://bugs.gentoo.org/734352 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Sam James --- sci-geosciences/gpsd/gpsd-3.21.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'sci-geosciences') diff --git a/sci-geosciences/gpsd/gpsd-3.21.ebuild b/sci-geosciences/gpsd/gpsd-3.21.ebuild index 12d81cded2b4..8083dc4252b3 100644 --- a/sci-geosciences/gpsd/gpsd-3.21.ebuild +++ b/sci-geosciences/gpsd/gpsd-3.21.ebuild @@ -100,7 +100,12 @@ src_prepare() { default - use python && distutils-r1_src_prepare + if use python ; then + distutils-r1_src_prepare + else + # We're using escons, bug #734352 + python_setup + fi } python_prepare_all() { -- cgit v1.2.3-65-gdbad