diff options
author | tcberner <tcberner@FreeBSD.org> | 2017-02-04 21:37:15 +0800 |
---|---|---|
committer | tcberner <tcberner@FreeBSD.org> | 2017-02-04 21:37:15 +0800 |
commit | 614efcf540e295f5c397c15efa09c57cf6f129d1 (patch) | |
tree | d3572a824910587e038d1100b5972b19f37005aa /net-p2p | |
parent | 456af42702b83f7d7a579791394af005ff85204e (diff) | |
download | freebsd-ports-gnome-614efcf540e295f5c397c15efa09c57cf6f129d1.tar.gz freebsd-ports-gnome-614efcf540e295f5c397c15efa09c57cf6f129d1.tar.zst freebsd-ports-gnome-614efcf540e295f5c397c15efa09c57cf6f129d1.zip |
Switch ports to use USE_PYQT=<foo> instead of using RUN_- and BUILD_DEPENDS
pyqt.mk provides USE_PYQT=<list> to depend on its components. Convert the ports
not yet using it to it.
Reviewed by: rakuco, mat
Approved by: rakuco (mentor)
Differential Revision: https://reviews.freebsd.org/D9261
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/bitmessage/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/net-p2p/bitmessage/Makefile b/net-p2p/bitmessage/Makefile index 5432196ab612..07ba6f22f153 100644 --- a/net-p2p/bitmessage/Makefile +++ b/net-p2p/bitmessage/Makefile @@ -13,16 +13,14 @@ COMMENT= Secure P2P communications client LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3 \ - ${PYTHON_PKGNAMEPREFIX}qt4-core>=${PYQT4_VERSION}:devel/py-qt4-core \ - ${PYTHON_PKGNAMEPREFIX}qt4-network>=${PYQT4_VERSION}:net/py-qt4-network \ - ${PYTHON_PKGNAMEPREFIX}qt4-gui>=${PYQT4_VERSION}:x11-toolkits/py-qt4-gui +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3 USE_GITHUB= yes GH_ACCOUNT= Bitmessage GH_PROJECT= PyBitmessage USES= python pyqt:4 ssl +USE_PYQT= core_run gui_run network_run NATIVE_POW_USES=gmake INSTALLS_ICONS= yes |