diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2020-02-12 19:26:13 +0000 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2020-02-12 19:26:13 +0000 |
commit | 481c9de774b0e585536731e604283a7606abd245 (patch) | |
tree | 711230f85c843e0f79b78989090b897037bf781c | |
parent | Update to 2.2.2 (diff) |
Simplify Makefile after r455210 and r472884
Approved by: portmgr (blanket)
Notes
Notes:
svn path=/head/; revision=525959
-rw-r--r-- | security/py-SecretStorage/Makefile | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/security/py-SecretStorage/Makefile b/security/py-SecretStorage/Makefile index b6e069e27eef..bb05d094cb68 100644 --- a/security/py-SecretStorage/Makefile +++ b/security/py-SecretStorage/Makefile @@ -13,18 +13,12 @@ COMMENT= Store passwords using the SecretService DBus API LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>0:security/py-cryptography@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>0:security/py-cryptography@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}dbus>=0.84.0:devel/py-dbus@${PY_FLAVOR} -NO_ARCH= yes USES= python USE_PYTHON= autoplist distutils -.include <bsd.port.pre.mk> - -.if ${PYTHON_REL} > 3000 -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dbus>=0.84.0:devel/py-dbus@${PY_FLAVOR} -.else -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dbus>=0.84.0:devel/py-dbus@${PY_FLAVOR} -.endif +NO_ARCH= yes -.include <bsd.port.post.mk> +.include <bsd.port.mk> |