summaryrefslogtreecommitdiffhomepage
path: root/346.python3.vars
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de>2016-06-29 17:12:44 +0000
committerLucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de>2016-06-29 17:12:44 +0000
commit57879e8a366daf9ff3e6f778cc0db8b37708fde3 (patch)
treeed0b22daf5ab110c5f6f3b6dd826161ff386a94e /346.python3.vars
parentdfa5d9f05d18af8adc7eb55a85b08e8ec7cee45b (diff)
downloadmidipix_build-57879e8a366daf9ff3e6f778cc0db8b37708fde3.tar.bz2
midipix_build-57879e8a366daf9ff3e6f778cc0db8b37708fde3.tar.xz
Adds man-db v2.7.5 and its dependencies gdbm v1.12 and libpipeline v1.4.1.
Diffstat (limited to '346.python3.vars')
-rw-r--r--346.python3.vars19
1 files changed, 19 insertions, 0 deletions
diff --git a/346.python3.vars b/346.python3.vars
new file mode 100644
index 00000000..c987c798
--- /dev/null
+++ b/346.python3.vars
@@ -0,0 +1,19 @@
+#
+# . ./build.vars and set -o errexit are assumed.
+#
+
+pkg_python3_configure_pre() {
+ (cd ../${PKG_SUBDIR} && autoconf);
+ (unset BLDSHARED CC CFLAGS CPPFLAGS LDFLAGS;
+ mv config.cache ../${PKG_SUBDIR}/config.cache;
+ ../${PKG_SUBDIR}/configure;
+ make _FIP=Programs/host_freeze_importlib Programs/host_freeze_importlib \
+ BUILDPYTHON=hostpython hostpython \
+ PGEN=Parser/hostpgen Parser/hostpgen;
+ make distclean);
+ mv ../${PKG_SUBDIR}/config.cache .;
+ sed -i.orig '/^# autoconf/a\
+ac_cv_buggy_getaddrinfo=no' config.cache;
+};
+
+# vim:filetype=sh