mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
4a3f7136b8
PR: ports/159573 Submitted by: Douglas William Thrift <douglas@douglasthrift.net> (maintainer)
38 lines
700 B
Makefile
38 lines
700 B
Makefile
# New ports collection makefile for: py-keyring
|
|
# Date created: 2 September 2009
|
|
# Whom: Douglas Thrift
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= keyring
|
|
PORTVERSION= 0.6.2
|
|
CATEGORIES= security python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= douglas@douglasthrift.net
|
|
COMMENT= Store and access your passwords safely
|
|
|
|
LICENSE= PSFL
|
|
|
|
LATEST_LINK= py-${PORTNAME}
|
|
|
|
USE_PYTHON= 2.5+
|
|
USE_PYDISTUTILS= yes
|
|
|
|
OPTIONS= GNOME_KEYRING "GNOME Keyring backend" Off \
|
|
KDE_KWALLET "KDE KWallet backend" Off
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if defined(WITH_GNOME_KEYRING)
|
|
USE_GNOME+= pygnomedesktop
|
|
.endif
|
|
|
|
.if defined(WITH_KDE_KWALLET)
|
|
USE_KDE4+= pykde4
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|