blob: 52172c08a3116dbe54329b90a4c1cd5a51d21d17 (
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
|
# New ports collection Makefile for: portbuilder
# Date created: 2011/04/03
# Whom: David Naylor <naylor.b.david@gmail.com>
#
# $FreeBSD$
PORTNAME= portbuilder
DISTVERSION= 0.1.5.2
CATEGORIES= ports-mgmt
MASTER_SITES= http://cloud.github.com/downloads/DragonSA/portbuilder/
MAINTAINER= naylor.b.david@gmail.com
COMMENT= Concurrent FreeBSD port builder
LICENSES= BSD
USE_PYTHON= 2.6+
USE_PYDISTUTILS=yes
USE_XZ= yes
PORTDOCS= BUGS ChangeLog COPYRIGHT README
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for file in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|