diff options
author | Peter Wemm <peter@FreeBSD.org> | 1996-10-10 15:00:53 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 1996-10-10 15:00:53 +0000 |
commit | e108e11e606f896390f884500f6c72dd259f81f7 (patch) | |
tree | 3715ba41b8b9ac6d17ef6eedab67f03cd2b87cb1 /mail/exmh2/Makefile | |
parent | 585cf7dd5e1f9e605b318238e05f5a641d328a0a (diff) | |
download | ports-e108e11e606f896390f884500f6c72dd259f81f7.tar.gz ports-e108e11e606f896390f884500f6c72dd259f81f7.zip |
Notes
Diffstat (limited to 'mail/exmh2/Makefile')
-rw-r--r-- | mail/exmh2/Makefile | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/mail/exmh2/Makefile b/mail/exmh2/Makefile new file mode 100644 index 000000000000..470d5cea2671 --- /dev/null +++ b/mail/exmh2/Makefile @@ -0,0 +1,49 @@ +# New ports collection Makefile for: exmh +# Version required: 1.6.9 +# Date released: 10 Oct 96 +# Whom: Peter Wemm <peter@freebsd.org> + +DISTNAME= exmh-1.6.9 +CATEGORIES+= mail +MASTER_SITES= ftp://ftp.sunlabs.com/pub/tcl/exmh/ +EXTRACT_SUFX= .tar.Z + +MAINTAINER= peter@FreeBSD.org + +RUN_DEPENDS= wish4.1:${PORTSDIR}/x11/tk41 +WISH= wish4.1 + +# exmh is pretty useless without this, but it's not needed to build it. +RUN_DEPENDS+= repl:${PORTSDIR}/mail/mh + +# full mime support needs mmencode/mmdecode from metamail +RUN_DEPENDS+= mmencode:${PORTSDIR}/mail/metamail + +# Additionally, exmh will use the following ports if present: +# lang/expect +# misc/glimpse +# security/pgp + +# It will use these commands to view faces or play audio, we dont have ports. +# faces +# play + +post-extract: + @rm -rf ${WRKSRC}/lib/*.orig + +do-build: + @cd ${WRKSRC} && ${SETENV} PREFIX=${PREFIX} \ + WISH=${PREFIX}/bin/${WISH} WRKSRC=${WRKSRC} \ + FILESDIR=${FILESDIR} ${SCRIPTDIR}/build + +do-install: + @cd ${WRKSRC} && ${SETENV} PREFIX=${PREFIX} \ + WRKSRC=${WRKSRC} ${SCRIPTDIR}/install +.if !defined(NOMANCOMPRESS) + gzip -9f ${PREFIX}/man/man1/exmh-custom.1 + gzip -9f ${PREFIX}/man/man1/exmh-ref.1 + gzip -9f ${PREFIX}/man/man1/exmh-use.1 + gzip -9f ${PREFIX}/man/man1/exmh.1 +.endif + +.include <bsd.port.mk> |