mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-07 11:49:40 +00:00
04c10abf89
- Bump PORTREVISION. Submitted by: David Naylor <naylor.b.david@gmail.com> (maintainer) Feature safe: yes
32 lines
610 B
Makefile
32 lines
610 B
Makefile
# Created by: David Naylor <naylor.b.david@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= portbuilder
|
|
DISTVERSION= 0.1.5.4
|
|
PORTREVISION= 1
|
|
CATEGORIES= ports-mgmt
|
|
MASTER_SITES= http://cloud.github.com/downloads/DragonSA/portbuilder/
|
|
|
|
MAINTAINER= naylor.b.david@gmail.com
|
|
COMMENT= Concurrent FreeBSD port builder
|
|
|
|
LICENSE= BSD
|
|
|
|
USE_PYTHON= 2.6+
|
|
USE_PYDISTUTILS=yes
|
|
USE_XZ= yes
|
|
|
|
PORTDOCS= BUGS ChangeLog COPYRIGHT README
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${DOCSDIR}
|
|
.for file in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|