aboutsummaryrefslogtreecommitdiff
path: root/japanese/jls
diff options
context:
space:
mode:
authorJohn Marino <marino@FreeBSD.org>2016-02-05 16:41:00 +0000
committerJohn Marino <marino@FreeBSD.org>2016-02-05 16:41:00 +0000
commitd1dbcc3293d0afb10e3cccfeb4b60ebe9a424f5c (patch)
treeefb3cc29ee156e91abd2d45a761150d3ce77a7a2 /japanese/jls
parent240071263dcf5c6436101c5b47b433bad2619876 (diff)
downloadports-d1dbcc3293d0afb10e3cccfeb4b60ebe9a424f5c.tar.gz
ports-d1dbcc3293d0afb10e3cccfeb4b60ebe9a424f5c.zip
japanese/jls: document ncurses requirement (USES+=ncurses)
Also link with libncurses, not libtermap. While here, join compound command with "&&" and wrap in parentheses. approved by: infrastructure blanket
Notes
Notes: svn path=/head/; revision=408222
Diffstat (limited to 'japanese/jls')
-rw-r--r--japanese/jls/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/japanese/jls/Makefile b/japanese/jls/Makefile
index 682c8fa67582..bd7e5b10b3d0 100644
--- a/japanese/jls/Makefile
+++ b/japanese/jls/Makefile
@@ -15,14 +15,17 @@ MAINTAINER= kazami@angels.vg
COMMENT= Japanized ls
CONFLICTS= sleuthkit-[0-9]*
-USES= uidfix
+USES= ncurses uidfix
PLIST_FILES= bin/jls \
man/man1/jls.1.gz
WRKSRC= ${WRKDIR}/ls
pre-patch:
- cd ${WRKSRC}; ${MV} ls.1 jls.1
+ (cd ${WRKSRC} && ${MV} ls.1 jls.1)
+post-patch:
+ @${REINPLACE_CMD} -e 's|-ltermcap|-lncurses|g' ${WRKSRC}/Makefile
+
.include <bsd.port.mk>