mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
4073a04ab6
- fixed a stupid bug in port create: quote arguments passed to newfile(1); thanks Radim Kolar for reporting it
34 lines
756 B
Makefile
34 lines
756 B
Makefile
# New ports collection makefile for: porttools
|
|
# Date created: 2003-06-18
|
|
# Whom: Sergei Kolobov <sergei@kolobov.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= porttools
|
|
PORTVERSION= 0.77
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= sergei@FreeBSD.org
|
|
COMMENT= Tools for testing and submitting port updates and new ports
|
|
|
|
RUN_DEPENDS= portlint:${PORTSDIR}/devel/portlint \
|
|
cdiff:${PORTSDIR}/textproc/cdiff \
|
|
sudo:${PORTSDIR}/security/sudo
|
|
|
|
.if !defined(WITHOUT_NEWFILE)
|
|
RUN_DEPENDS+= newfile:${PORTSDIR}/devel/newfile
|
|
.endif
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
INSTALL_TARGET= install install-docs
|
|
.endif
|
|
|
|
MAKE_ENV= DATADIR="${DATADIR}" DOCSDIR="${DOCSDIR}"
|
|
MAN1= port.1
|
|
MAN5= porttools.5
|
|
|
|
.include <bsd.port.mk>
|