From cd6d4ba16cfac5ec04b8c732ad96c0a0b68de1a5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rainer=20M=C3=BCller?= <raimue@macports.org>
Date: Tue, 9 May 2017 00:22:21 +0200
Subject: [PATCH] graphene: Add missing dependency on Python 3
Closes: https://trac.macports.org/ticket/53806
---
graphics/graphene/Portfile | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/graphics/graphene/Portfile b/graphics/graphene/Portfile
index 65dddc2731..5dea91c1d7 100644
a
|
b
|
depends_build port:pkgconfig \ |
23 | 23 | port:autoconf \ |
24 | 24 | port:automake \ |
25 | 25 | port:libtool \ |
26 | | port:gtk-doc |
| 26 | port:gtk-doc \ |
| 27 | port:python35 |
27 | 28 | |
28 | 29 | depends_lib path:lib/pkgconfig/glib-2.0.pc:glib2 |
29 | 30 | |
… |
… |
gobject_introspection yes |
34 | 35 | configure.cmd ./autogen.sh |
35 | 36 | |
36 | 37 | configure.args --disable-silent-rules \ |
37 | | --enable-gtk-doc |
| 38 | --enable-gtk-doc \ |
| 39 | PYTHON3_PATH=${prefix}/bin/python3.5 |
38 | 40 | |
39 | 41 | livecheck.regex "archive/(\\d+\\.\\d*\[02468\](?:\\.\\d+)*)${extract.suffix}" |