5138c9df84
Provided in PR 12580 by Ben Collver (collver@linuxfreemail.com) Exception and Termination Manager (ETM), a simple(-minded) library to manage exceptional conditions that arise during program execution, and to provide for orderly program shutdown.
26 lines
695 B
Makefile
26 lines
695 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2001/04/27 12:02:56 agc Exp $
|
|
#
|
|
|
|
DISTNAME= ETM-1.09
|
|
PKGNAME= libetm-1.09
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.primate.wisc.edu/software/ETM/
|
|
|
|
MAINTAINER= collver@linuxfreemail.com
|
|
HOMEPAGE= http://www.primate.wisc.edu/software/ETM/
|
|
COMMENT= exception and termination manager
|
|
|
|
WRKSRC= ${WRKDIR}/etm
|
|
|
|
post-patch:
|
|
${MV} ${WRKSRC}/Makefile ${WRKSRC}/Makefile.bak
|
|
${SED} <${WRKSRC}/Makefile.bak >${WRKSRC}/Makefile \
|
|
-e 's|/usr/local|${PREFIX}|' \
|
|
-e 's|install.sh|${INSTALL}|'
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/libetm
|
|
groff -Tascii -ms ${WRKSRC}/etm.ms \
|
|
>${PREFIX}/share/doc/libetm/etm.txt
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|