Makefile 829 B

123456789101112131415161718192021222324252627282930
  1. # Created by: Douglas Thrift <douglas@douglasthrift.net>
  2. # $FreeBSD: head/security/py-SecretStorage/Makefile 472884 2018-06-20 17:05:41Z mat $
  3. PORTNAME= SecretStorage
  4. PORTVERSION= 2.3.1
  5. CATEGORIES= security python
  6. MASTER_SITES= CHEESESHOP
  7. PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
  8. MAINTAINER= douglas@douglasthrift.net
  9. COMMENT= Store passwords using the SecretService DBus API
  10. LICENSE= BSD3CLAUSE
  11. LICENSE_FILE= ${WRKSRC}/LICENSE
  12. RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>0:security/py-cryptography@${PY_FLAVOR}
  13. NO_ARCH= yes
  14. USES= python
  15. USE_PYTHON= autoplist distutils
  16. .include <bsd.port.pre.mk>
  17. .if ${PYTHON_REL} > 3000
  18. RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dbus>=0.84.0:devel/py-dbus@${PY_FLAVOR}
  19. .else
  20. RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dbus>=0.84.0:devel/py-dbus@${PY_FLAVOR}
  21. .endif
  22. .include <bsd.port.post.mk>