blob: f10b7802dca1460956a0dda1f98af78dc7fc1701 (
plain)
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
|
# Ports collection makefile for: piddle
# Date created: 29 Feb 2000
# Whom: dom@happygiraffe.net
#
# $FreeBSD$
#
PORTNAME= piddle
PORTVERSION= 1.0.15
PORTEPOCH= 1
CATEGORIES= graphics python
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= dom@happygiraffe.net
COMMENT= Graphical Drawing library for Python
USE_PYTHON= yes
USE_PYDISTUTILS= yes
.if !defined(NOPORTDOCS)
PORTDOCS= *
.endif
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
(cd ${WRKSRC}/docs ; tar cf - *) | (cd ${DOCSDIR} ; tar xf -)
.endif
.include <bsd.port.mk>
|