diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2017-06-05 05:49:48 +0800 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2017-06-05 05:49:48 +0800 |
commit | ebe0a76e1f8bc5e5070fec3a092a34d774ca2f49 (patch) | |
tree | 19b640bd1b08d4a303f48f0d72d09c6be2264749 /comms | |
parent | bd486de3cc3e1d8d278d1c950a9699817094daa7 (diff) | |
download | freebsd-ports-gnome-ebe0a76e1f8bc5e5070fec3a092a34d774ca2f49.tar.gz freebsd-ports-gnome-ebe0a76e1f8bc5e5070fec3a092a34d774ca2f49.tar.zst freebsd-ports-gnome-ebe0a76e1f8bc5e5070fec3a092a34d774ca2f49.zip |
Allow these ports to build with PACKAGE_BUILDING_FLAVORS set.
Poudriere in particulr did not properly handle DEPENDS_ARGS which
made these ports not properly install dependencies. That bug
is being addressed along with adding FLAVORS support to it.
With hat: portmgr
MFH: 2017Q2
Diffstat (limited to 'comms')
-rw-r--r-- | comms/wsjt/Makefile | 3 | ||||
-rw-r--r-- | comms/wspr/Makefile | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/comms/wsjt/Makefile b/comms/wsjt/Makefile index 27dd2dd9fd3b..f20e3d8d7e44 100644 --- a/comms/wsjt/Makefile +++ b/comms/wsjt/Makefile @@ -103,7 +103,8 @@ post-install-DOCS-on: ${INSTALL_DATA} ${WRKSRC}/${d} ${STAGEDIR}${DOCSDIR} .endfor -.if defined(PACKAGE_BUILDING) && ${PYTHON_VER} != ${PYTHON_DEFAULT} +.if defined(PACKAGE_BUILDING) && !defined(PACKAGE_BUILDING_FLAVORS) && \ + ${PYTHON_VER} != ${PYTHON_DEFAULT} IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER} .endif diff --git a/comms/wspr/Makefile b/comms/wspr/Makefile index 9661010c0618..ba67d41f78c0 100644 --- a/comms/wspr/Makefile +++ b/comms/wspr/Makefile @@ -63,7 +63,8 @@ do-fetch: .endif .endif -.if defined(PACKAGE_BUILDING) && ${PYTHON_VER} != ${PYTHON_DEFAULT} +.if defined(PACKAGE_BUILDING) && !defined(PACKAGE_BUILDING_FLAVORS) && \ + ${PYTHON_VER} != ${PYTHON_DEFAULT} IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER} .endif |