1356fcd32b
- pass maintainership to submitter while here - install license via license framework, not manually - convert to optionsng - remove deprecated Author field in pkg-descr - whitespace fixes in pkg-descr PR: 171723 Submitted by: Guy Brand <gb at unistra dot fr> Feature safe: yes
32 lines
606 B
Makefile
32 lines
606 B
Makefile
# Created by: Alan Eldridge <alane@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tree
|
|
PORTVERSION= 1.6.0
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ftp://mama.indstate.edu/linux/tree/ \
|
|
CENKES
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= gb@unistra.fr
|
|
COMMENT= Display a tree-view of directories with optional color or HTML output
|
|
|
|
LICENSE= GPLv2
|
|
|
|
MAKE_ENV+= MKDIR="${MKDIR}"
|
|
USE_GMAKE= yes
|
|
|
|
MAN1= tree.1
|
|
PLIST_FILES= bin/tree
|
|
|
|
PORTDOCS= CHANGES README
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_MAN} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|