1b6564e340
Version 1.8.0 (11/16/2018) - Added an experimental --fromfile option (suggested by several people.) This may eventually be replaced or supplimented by a --fromjson option. - Added support for BSD's CLICOLOR and CLICOLOR_FORCE environment variables. (Suggested by Alyssa Ross) - Use strftime() exclusively when formatting date/time to respect locale. - Some man page fixes and cleanups curtsey of Kirill Kolyshkin - Update BINDIR in Makefile for MacOS X -- It is not allowed to install programs to /usr/bin on MacOS X any longer due to System Integrity Protection (SIP) (Shawn Mehan) - Misc patches from Jacob Wahlgren: - Improved command line switch error reporting. - Symbolic links not displayed if a -P pattern is active - Missing argument error reporting fixes on long format switches. - Fixed JSON output hanging commas (John Lane, Tad, others) - JSON size output ignored -h/--si flags (Wagner Camarao) - Fixed issue with malformed multibyte string handling. (Mantas Mikulėnas) - Fixed issue where mbstowcs() fails to null terminate the string due to improper UTF-8 encoding leading to garbage being printed. (Nick Craig-Wood) - Found a bug where the wrong inode (and device) information would be printed for symbolic links. (Stephan Gabert)
30 lines
857 B
Makefile
30 lines
857 B
Makefile
# $NetBSD: Makefile,v 1.12 2020/05/18 10:20:13 nia Exp $
|
|
|
|
DISTNAME= tree-1.8.0
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://mama.indstate.edu/users/ice/tree/src/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://mama.indstate.edu/users/ice/tree/
|
|
COMMENT= Print a text or HTML tree diagram of a directory structure
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
USE_TOOLS+= gmake
|
|
NO_CONFIGURE= yes
|
|
|
|
CFLAGS.Linux+= -DLINUX -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
|
|
|
|
MAKE_FLAGS+= prefix=${PREFIX}
|
|
MAKE_FLAGS+= CFLAGS=${CFLAGS:Q}
|
|
MAKE_FLAGS+= LDFLAGS=${LDFLAGS:Q}
|
|
MAKE_FLAGS+= MANDIR=${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
|
|
|
|
INSTALLATION_DIRS+= bin
|
|
INSTALLATION_DIRS+= ${PKGMANDIR}/man1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/tree ${DESTDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/doc/tree.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|