From 90715ad5ecc61b065f21a49196aafb1c48b29a29 Mon Sep 17 00:00:00 2001 From: newbluemoon Date: Sat, 11 Nov 2017 23:07:30 +0100 Subject: [PATCH] golly: fix cross compilation with wxWidgets --- srcpkgs/golly/template | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/srcpkgs/golly/template b/srcpkgs/golly/template index f3083f341e..a5ea81927c 100644 --- a/srcpkgs/golly/template +++ b/srcpkgs/golly/template @@ -5,7 +5,7 @@ revision=2 wrksrc="${pkgname}-${version}-src" build_style=gnu-configure configure_script="gui-wx/configure/configure" -configure_args="--with-wx-config=wx-config-3.0 LIBS=-lGL" +configure_args="LIBS=-lGL" hostmakedepends="automake" makedepends="MesaLib-devel glu-devel lua-devel python-devel wxWidgets-devel zlib-devel" @@ -16,8 +16,19 @@ homepage="http://golly.sourceforge.net/" distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}-src.tar.gz" checksum=c78951aca815d2897d966681d8999311676c3ef9f4106087001d529fc724c736 +if [ -n "${CROSS_BUILD}" ]; then + hostmakedepends+=" python" + + # find python includes; golly uses python’s distutils.sysconfig module + # and not python-config + pre_configure() { + CXXFLAGS+=" $(python-config --includes)" + } +fi + post_extract() { # POSIX name clash sed -i 's/PAGESIZE/GOLLYPAGESIZE/' gui-wx/*.cpp sed -i '/LDADD/s/ liblua\.a/ -llua5.3/g' gui-wx/configure/Makefile.in } +