89f9ff99f9
vgrind formats the program sources which are arguments in a nice style using troff(1). Comments are placed in italics, keywords in bold face, and the name of the current function is listed down the margin of each page as it is encountered. help and OK sthen@
38 lines
993 B
Makefile
38 lines
993 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2010/10/23 16:49:11 jasper Exp $
|
|
|
|
COMMENT= grind nice listings of programs
|
|
|
|
DISTNAME= vgrind-1.0
|
|
CATEGORIES= textproc
|
|
|
|
# 3-clause BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB += c
|
|
|
|
MASTER_SITES= http://distfiles.nl/
|
|
|
|
USE_GROFF= Yes
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC}; ${SUBST_CMD} vgrind{.sh,.1,efs.5} pathnames.h
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/tmac/ ${PREFIX}/share/vgrind
|
|
${INSTALL_SCRIPT} ${WRKSRC}/vgrind.sh ${PREFIX}/bin/vgrind
|
|
${INSTALL_PROGRAM} ${WRKSRC}/vfontedpr ${PREFIX}/libexec/
|
|
${INSTALL_DATA} ${WRKSRC}/vgrindefs.src \
|
|
${PREFIX}/share/vgrind/vgrindefs
|
|
${INSTALL_DATA} ${WRKSRC}/vgrindefs.src.db \
|
|
${PREFIX}/share/vgrind/vgrindefs.db
|
|
${INSTALL_DATA} ${WRKSRC}/tmac.vgrind ${PREFIX}/share/tmac
|
|
${INSTALL_MAN} ${WRKSRC}/vgrind.1 ${PREFIX}/man/man1/
|
|
${INSTALL_MAN} ${WRKSRC}/vgrindefs.5 ${PREFIX}/man/man5/
|
|
|
|
.include <bsd.port.mk>
|