diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2017-06-04 21:51:07 +0000 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2017-06-04 21:51:07 +0000 |
commit | 1c85e8290f3bf60901458e1643201aca434a2ddc (patch) | |
tree | 36230945e678cb4f62a64879daef26809bcc6b07 | |
parent | 1df5845160e6774ed188be317779d36a7e2870f6 (diff) | |
download | FreeBSD-ports-1c85e8290f3bf60901458e1643201aca434a2ddc.zip FreeBSD-ports-1c85e8290f3bf60901458e1643201aca434a2ddc.tar.gz |
MFH: r442592
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
Approved by: portmgr (implicit)
-rw-r--r-- | archivers/py-attic/Makefile | 3 | ||||
-rw-r--r-- | archivers/py-borgbackup/Makefile | 3 | ||||
-rw-r--r-- | audio/lollypop/Makefile | 3 | ||||
-rw-r--r-- | comms/wsjt/Makefile | 3 | ||||
-rw-r--r-- | comms/wspr/Makefile | 3 | ||||
-rw-r--r-- | mail/rss2email3/Makefile | 3 | ||||
-rw-r--r-- | math/convertall/Makefile | 3 | ||||
-rw-r--r-- | math/rpcalc/Makefile | 3 | ||||
-rw-r--r-- | multimedia/mps-youtube/Makefile | 3 | ||||
-rw-r--r-- | net-im/poezio/Makefile | 3 | ||||
-rw-r--r-- | net/tiny-network-utilities/Makefile | 3 | ||||
-rw-r--r-- | ports-mgmt/py-pytoport/Makefile | 3 | ||||
-rw-r--r-- | security/morphis/Makefile | 3 |
13 files changed, 26 insertions, 13 deletions
diff --git a/archivers/py-attic/Makefile b/archivers/py-attic/Makefile index 75e0987..eb1476e 100644 --- a/archivers/py-attic/Makefile +++ b/archivers/py-attic/Makefile @@ -25,7 +25,8 @@ PYDISTUTILS_BUILDPATH=${BUILD_WRKSRC}/build/lib.${OPSYS:tl}-${UNAMER}-${ARCH}-${ .include <bsd.port.pre.mk> -.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/archivers/py-borgbackup/Makefile b/archivers/py-borgbackup/Makefile index d992153..50e6703 100644 --- a/archivers/py-borgbackup/Makefile +++ b/archivers/py-borgbackup/Makefile @@ -28,7 +28,8 @@ USE_PYTHON= autoplist distutils .include <bsd.port.pre.mk> -.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/audio/lollypop/Makefile b/audio/lollypop/Makefile index 91740a8..18ff7a9 100644 --- a/audio/lollypop/Makefile +++ b/audio/lollypop/Makefile @@ -36,7 +36,8 @@ SUB_FILES= pkg-message .include <bsd.port.pre.mk> -.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/wsjt/Makefile b/comms/wsjt/Makefile index 27dd2dd..f20e3d8 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 9661010..ba67d41 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 diff --git a/mail/rss2email3/Makefile b/mail/rss2email3/Makefile index 5524694..e80fe7f 100644 --- a/mail/rss2email3/Makefile +++ b/mail/rss2email3/Makefile @@ -35,7 +35,8 @@ post-install: .include <bsd.port.pre.mk> -.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/math/convertall/Makefile b/math/convertall/Makefile index 8453cbb..5ab4221 100644 --- a/math/convertall/Makefile +++ b/math/convertall/Makefile @@ -41,7 +41,8 @@ do-install: .include <bsd.port.pre.mk> -.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/math/rpcalc/Makefile b/math/rpcalc/Makefile index ab158bd..b8af315 100644 --- a/math/rpcalc/Makefile +++ b/math/rpcalc/Makefile @@ -36,7 +36,8 @@ do-install: .include <bsd.port.pre.mk> -.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/multimedia/mps-youtube/Makefile b/multimedia/mps-youtube/Makefile index 78107fa..a3d6917 100644 --- a/multimedia/mps-youtube/Makefile +++ b/multimedia/mps-youtube/Makefile @@ -47,7 +47,8 @@ post-install: .include <bsd.port.pre.mk> -.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/net-im/poezio/Makefile b/net-im/poezio/Makefile index 6df03c9..457ff01 100644 --- a/net-im/poezio/Makefile +++ b/net-im/poezio/Makefile @@ -20,7 +20,8 @@ USE_PYTHON= distutils autoplist .include <bsd.port.pre.mk> -.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/net/tiny-network-utilities/Makefile b/net/tiny-network-utilities/Makefile index 7ff77903..282d111 100644 --- a/net/tiny-network-utilities/Makefile +++ b/net/tiny-network-utilities/Makefile @@ -27,7 +27,8 @@ PLIST_FILES= ${FILES_EXEC:%=bin/%} ${FILES_LIB:%=${PYTHON_SITELIBDIR}/%.py} .include <bsd.port.pre.mk> -.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/ports-mgmt/py-pytoport/Makefile b/ports-mgmt/py-pytoport/Makefile index 7dd190b..51e6753 100644 --- a/ports-mgmt/py-pytoport/Makefile +++ b/ports-mgmt/py-pytoport/Makefile @@ -25,7 +25,8 @@ USE_PYTHON= autoplist distutils .include <bsd.port.pre.mk> -.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/security/morphis/Makefile b/security/morphis/Makefile index 9d3554f..851d2b9 100644 --- a/security/morphis/Makefile +++ b/security/morphis/Makefile @@ -27,7 +27,8 @@ NO_ARCH= yes .include <bsd.port.pre.mk> -.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 |