blob: 59d260fd45c91df1de1d2268829ced1904e87ff1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# New ports collection makefile for: py-pyasn1
# Date created: Sat Apr 8 21:37:32 CDT 2006
# Whom: Martin Jackson <mhjacks@swbell.net>
#
# $FreeBSD$
#
PORTNAME= asn1
PORTVERSION= 0.1.4
PORTEPOCH= 1
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP \
SF/py${PORTNAME}/py${PORTNAME}/${PORTVERSION}
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= py${PORTNAME}-${PORTVERSION}
MAINTAINER= mhjacks@swbell.net
COMMENT= ASN.1 toolkit for Python
LICENSE= BSD
# Python3 ready
USE_PYTHON= yes
USE_PYDISTUTILS= easy_install
PYDISTUTILS_PKGNAME= pyasn1
DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME}
BASEDOCS= CHANGES \
README \
TODO
DOCDOCS= pyasn1-tutorial.html
.include <bsd.port.options.mk>
post-install:
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}
.for f in ${BASEDOCS}
@${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
.endfor
.for f in ${DOCDOCS}
@${INSTALL_DATA} ${WRKSRC}/doc/${f} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|