blob: 5162f4040481cc1c3db775de6b9b7741df423c78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $NetBSD: Makefile,v 1.3 2016/06/08 17:43:39 wiz Exp $
DISTNAME= py-bcrypt-0.4
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= python security
MASTER_SITES= ${MASTER_SITE_PYPI:=p/py-bcrypt/}
MAINTAINER= rodent@NetBSD.org
HOMEPAGE= https://code.google.com/p/py-bcrypt
COMMENT= Provides bcrypt password hashing and key derivation in python
LICENSE= isc AND modified-bsd AND original-bsd
CONFLICTS+= ${PYPKGPREFIX}-bcrypt-[0-9]*:../../security/py-bcrypt
CFLAGS.SunOS+= -Du_int8_t=uint8_t -Du_int16_t=uint16_t
CFLAGS.SunOS+= -Du_int32_t=uint32_t -Du_int64_t=uint64_t
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"
|