1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-02 06:03:50 +00:00
freebsd-ports/misc/whichman/Makefile
2021-04-06 16:31:07 +02:00

28 lines
758 B
Makefile

# Created by: Yen-Ming Lee <leeym@cae.ce.ntu.edu.tw>
PORTNAME= whichman
PORTVERSION= 2.4
CATEGORIES= misc
MASTER_SITES= http://main.linuxfocus.org/~guido.socher/ \
http://main.linuxfocus.org/~guido/
MAINTAINER= ports@FreeBSD.org
COMMENT= Approximate matching utilities to search for manpages and files
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}"
PLIST_FILES= bin/ftff bin/ftwhich bin/whichman \
man/man1/ftff.1.gz man/man1/ftwhich.1.gz \
man/man1/whichman.1.gz
post-patch:
@${REINPLACE_CMD} -e 's|/usr/man:||g' ${WRKSRC}/whichman.c
do-install:
.for name in ftff ftwhich whichman
${INSTALL_PROGRAM} ${WRKSRC}/${name} ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/man1/${name}.1 ${STAGEDIR}${MANPREFIX}/man/man1
.endfor
.include <bsd.port.mk>