1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/misc/whichman/Makefile
Danilo Egea Gondolfo 579702e0d8 - Add stage support
2013-12-08 03:21:53 +00:00

29 lines
770 B
Makefile

# Created by: Yen-Ming Lee <leeym@cae.ce.ntu.edu.tw>
# $FreeBSD$
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>