mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
91b31c2c77
* Changed comment headers to match my name and FreeBSD email Reviewed by: matthew (mentor) Approved by: matthew (mentor) Differential Revision: https://reviews.freebsd.org/D11466
39 lines
827 B
Makefile
39 lines
827 B
Makefile
# Created by: Richard Gallamore <ultima@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= portest
|
|
PORTVERSION= 0.1.9
|
|
CATEGORIES= ports-mgmt
|
|
|
|
MAINTAINER= ultima@FreeBSD.org
|
|
COMMENT= Patch file automation for FreeBSD-ports
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= ultima1252
|
|
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= sbin/portest
|
|
|
|
OPTIONS_DEFINE= GIT PORTLINT PORTTOOLS POUDRIERE
|
|
|
|
GIT_DESC= Git support
|
|
GIT_RUN_DEPENDS= git:devel/git
|
|
|
|
PORTLINT_DESC= Portlint support
|
|
PORTLINT_RUN_DEPENDS= portlint:ports-mgmt/portlint
|
|
|
|
PORTTOOLS_DESC= Porttools support
|
|
PORTTOOLS_RUN_DEPENDS= port:ports-mgmt/porttools
|
|
|
|
POUDRIERE_DESC= Poudriere and parallel build support
|
|
POUDRIERE_RUN_DEPENDS= poudriere:ports-mgmt/poudriere \
|
|
tmux:sysutils/tmux
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/portest ${STAGEDIR}${PREFIX}/sbin/portest
|
|
|
|
.include <bsd.port.mk>
|