summaryrefslogtreecommitdiff
path: root/ports-mgmt/portbuilder/Makefile
blob: f26a1ecd5e58bd9ccec8de1bd469c0884e14eff0 (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
# 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>