f9b43d1974
* 2.7.2 More bug fixes, plus some performance improvements for the new sequences code added in 2.6. The exmh-strip utility is integrated as "Save/Extract Attachments". * 2.7.1 (Wasn't officially released in tarball form.) * 2.7.0 Accumulates over a year of minor fixes in the CVS tree. Also fix some pkglint complaints, and take maintainership.
58 lines
1.7 KiB
Makefile
58 lines
1.7 KiB
Makefile
# $NetBSD: Makefile,v 1.44 2006/10/20 08:15:14 dsainty Exp $
|
|
|
|
DISTNAME= exmh-2.7.2
|
|
CATEGORIES= mail tk
|
|
MASTER_SITES= ftp://ftp.tcl.tk/pub/tcl/exmh/
|
|
|
|
MAINTAINER= dsainty@NetBSD.org
|
|
HOMEPAGE= http://www.beedub.com/exmh/
|
|
COMMENT= X11/TK based mail reader front end to MH
|
|
|
|
DEPENDS+= nmh>=1.0:../../mail/nmh
|
|
DEPENDS+= metamail>=2.7:../../mail/metamail
|
|
|
|
USE_TOOLS+= tclsh
|
|
USE_TOOLS+= wish:run
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
DIST_SUBDIR= ${PKGNAME_NOREV}
|
|
|
|
# Additionally, exmh will use the following packages if present:
|
|
# lang/expect
|
|
# textproc/glimpse
|
|
# security/gnupg
|
|
# security/pgp
|
|
# mail/faces
|
|
# audio/rplay
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${SETENV} PREFIX=${PREFIX} TCLSH=${TCLSH:Q} \
|
|
WISH=${WISH:Q} WRKSRC=${WRKSRC} \
|
|
FILESDIR=${FILESDIR} ${SH} ${FILESDIR}/build
|
|
|
|
do-install:
|
|
${INSTALL_MAN} ${WRKSRC}/exmh.l ${PREFIX}/man/man1/exmh.1
|
|
for binfile in exmh-async exmh-bg exmh-strip exmh ftp.expect; do \
|
|
${INSTALL_SCRIPT} ${WRKSRC}/$$binfile ${PREFIX}/bin; \
|
|
done
|
|
vers=`sed -ne 's/^set vers \(.*\)/\1/p' ${WRKSRC}/exmh.install`; \
|
|
${INSTALL_DATA_DIR} ${PREFIX}/lib/exmh-$${vers}; \
|
|
${INSTALL_DATA_DIR} ${PREFIX}/lib/exmh-$${vers}/html; \
|
|
for libfile in \
|
|
${WRKSRC}/lib/PgpDecryptExpect \
|
|
${WRKSRC}/lib/*.tcl ${WRKSRC}/lib/*.bitmap \
|
|
${WRKSRC}/lib/*.ppm ${WRKSRC}/lib/help.* \
|
|
${WRKSRC}/lib/tclIndex ${WRKSRC}/lib/app-defaults \
|
|
${WRKSRC}/lib/app-defaults-* ${WRKSRC}/lib/*.mask \
|
|
${WRKSRC}/lib/*.exp ${WRKSRC}/lib/mime.types \
|
|
${WRKSRC}/lib/*.au ${WRKSRC}/lib/*.gif; do \
|
|
${INSTALL_DATA} $$libfile ${PREFIX}/lib/exmh-$${vers}; \
|
|
done; \
|
|
for hfile in ${WRKSRC}/lib/html/*; do \
|
|
${INSTALL_DATA} $$hfile ${PREFIX}/lib/exmh-$${vers}/html; \
|
|
done
|
|
|
|
.include "../../x11/tk/buildlink3.mk"
|
|
.include "../../mk/x11.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|