a72bf303d7
1.4.1: Features Support most of the GGF Extensions Tooling Exit successfully when no docs change Documentation Fix typo in Name documentation
35 lines
924 B
Makefile
35 lines
924 B
Makefile
# $NetBSD: Makefile,v 1.8 2018/02/22 09:11:18 adam Exp $
|
|
|
|
DISTNAME= gssapi-1.4.1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= security python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=g/gssapi/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/pythongssapi/python-gssapi
|
|
COMMENT= Low-level and high-level wrappers around GSSAPI C libraries
|
|
LICENSE= modified-bsd
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-decorator-[0-9]*:../../devel/py-decorator
|
|
DEPENDS+= ${PYPKGPREFIX}-six>=1.4.0:../../lang/py-six
|
|
|
|
.include "../../lang/python/distutils.mk"
|
|
|
|
.if ${PYVERSSUFFIX} == "2.7"
|
|
DEPENDS+= ${PYPKGPREFIX}-enum34-[0-9]*:../../devel/py-enum34
|
|
.endif
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
PLIST_VARS+= mitkrb posix
|
|
|
|
# On Darwin, py-gssapi uses -framework GSS
|
|
.if ${OPSYS} != "Darwin"
|
|
PLIST.posix= yes
|
|
. include "../../mk/krb5.buildlink3.mk"
|
|
. if ${KRB5_TYPE} == "mit-krb5"
|
|
PLIST.mitkrb= yes
|
|
. endif
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|