1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00
freebsd-ports/ports-mgmt/portbuilder/Makefile
David Naylor a39d5573ba Update my ports to be compliant with new USES framework and fix other issues.
Changes:
 * various: migrate USE_BZIP2 to USES=tar:bzip2
 * various: migrate USE_XZ to USES=tar:xz
 * multimedia/py-ffmpeg: add and prefer github (GH) as master site
 * ports-mgmt/portbuilder: specify license as BSD2CLAUSE (instead of just BSD)

Most ports are updated infrequently so a single batch commit is preferred over
collating changes per port.
2014-04-24 20:11:01 +00:00

34 lines
653 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= dbn@FreeBSD.org
COMMENT= Concurrent FreeBSD port builder
LICENSE= BSD2CLAUSE
USE_PYTHON= yes
USE_PYDISTUTILS=yes
USES= tar:xz
PORTDOCS= BUGS ChangeLog COPYRIGHT README
OPTIONS_DEFINE= DOCS
.include <bsd.port.options.mk>
post-install:
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for file in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>