35 lines
672 B
Makefile
35 lines
672 B
Makefile
# $OpenBSD: Makefile,v 1.9 2016/01/07 21:37:49 jasper Exp $
|
|
|
|
COMMENT= secure storing of passwords using the SecretService DBus API
|
|
|
|
MODPY_EGG_VERSION= 2.1.3
|
|
DISTNAME= SecretStorage-${MODPY_EGG_VERSION}
|
|
PKGNAME= py-${DISTNAME:L}
|
|
|
|
CATEGORIES= security
|
|
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
MODPY_PI = Yes
|
|
|
|
MODULES= lang/python
|
|
|
|
MODPY_SETUPTOOLS= Yes
|
|
|
|
NO_TEST= Yes
|
|
|
|
RUN_DEPENDS= devel/py-gobject3${MODPY_FLAVOR} \
|
|
security/py-crypto${MODPY_FLAVOR} \
|
|
x11/dbus-python${MODPY_FLAVOR}
|
|
|
|
FLAVORS = python3
|
|
FLAVOR ?=
|
|
|
|
# org.freedesktop.secrets
|
|
# (XXX add "gnome-keyring-*|ksecretsservice-*" when implemented)
|
|
RUN_DEPENDS += x11/gnome/keyring
|
|
|
|
.include <bsd.port.mk>
|