blob: fceba214a6d4869c1c9b0d02a7c9e6246435aecd (
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
34
35
36
37
38
39
|
# Created by: Sergei Kolobov <sergei@kolobov.com>
# $FreeBSD$
PORTNAME= porttools
PORTVERSION= 0.99
PORTREVISION= 11
CATEGORIES= ports-mgmt
MASTER_SITES= SF
MAINTAINER= joemann@beefree.free.de
COMMENT= Tools for testing and submitting port updates and new ports
LICENSE= BSD
RUN_DEPENDS= portlint:${PORTSDIR}/ports-mgmt/portlint \
cdiff:${PORTSDIR}/textproc/cdiff \
sudo:${PORTSDIR}/security/sudo \
svn:${PORTSDIR}/devel/subversion
MAKE_ENV= DATADIR="${DATADIR}" DOCSDIR="${DOCSDIR}"
# Make the version information of porttools itself
# available for inclusion in the PRs generated by it.
MAKE_ENV+= PORTVERSION="${PORTVERSION}"
.if defined(PORTREVISION)
MAKE_ENV+= PORTREVISION="${PORTREVISION}"
.endif
.if defined(PORTEPOCH)
MAKE_ENV+= PORTEPOCH="${PORTEPOCH}"
.endif
OPTIONS_DEFINE= DOCS NEWFILE
OPTIONS_DEFAULT= NEWFILE
NEWFILE_DESC= Enable newfile support
NEWFILE_RUN_DEPENDS= newfile:${PORTSDIR}/devel/newfile
DOCS_INSTALL_TARGET= install install-docs
.include <bsd.port.mk>
|