1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-25 21:07:40 +00:00
freebsd-ports/mail/exmh2/Makefile
Bruce A. Mah d1f12ac02d Update exmh to 2.3.1. This release was made primarily to fix a symlink
vulnerability reported to bugtraq.  Mostly a bugfix release although a few
new features (filtering in sedit, optional expect-based inc wrapper,
optional bitmap buttons) have been added.

FreeBSD-specific parts to this commit:  Removed patchfiles that were
imported from the exmh CVS repository as they are now a part of the
exmh-2.3.1 release.  Fixed pkg-descr to quiet a few portlint warnings.
Changed port to use wish-8.3 rather than wish-8.2 (suggested by markm).
2001-01-22 20:06:10 +00:00

68 lines
1.6 KiB
Makefile

# New ports collection Makefile for: exmh2
# Date created: 1 Jan 97
# Whom: Peter Wemm <peter@freebsd.org>
#
# $FreeBSD$
#
# "+=" and "?=" lines are for sharing this Makefile with japanese/exmh2.
PORTNAME= exmh
PORTVERSION= 2.3.1
CATEGORIES+= mail tk83
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER?= bmah@FreeBSD.org
.if defined(JAPANESE_EXMH)
RUN_DEPENDS= wish8.0jp:${PORTSDIR}/japanese/tk80
BUILD_DEPENDS= tclsh8.0jp:${PORTSDIR}/japanese/tcl80
WISH= wish8.0jp
TCLSH= tclsh8.0jp
.else
RUN_DEPENDS= wish8.3:${PORTSDIR}/x11-toolkits/tk83
BUILD_DEPENDS= tclsh8.3:${PORTSDIR}/lang/tcl83
WISH= wish8.3
TCLSH= tclsh8.3
.endif
# exmh is pretty useless without this, but it's not needed to build it.
.if defined(JAPANESE_EXMH)
RUN_DEPENDS+= repl:${PORTSDIR}/japanese/mh
.else
.if defined(WITH_MH)
RUN_DEPENDS+= repl:${PORTSDIR}/mail/mh
.else
RUN_DEPENDS+= repl:${PORTSDIR}/mail/nmh
SCRIPTS_ENV+= USE_NMH=YES
.endif
.endif
# 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/gnupg
# security/pgp
# security/pgp5
# security/pgp6
# mail/faces
# audio/rplay
PLIST_SUB= EXMH_VERSION=${PORTVERSION}
MAN1= exmh.1
do-build:
@cd ${WRKSRC} && ${SETENV} PREFIX=${PREFIX} TCLSH=${TCLSH} \
WISH=${PREFIX}/bin/${WISH} WRKSRC=${WRKSRC} \
${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/build
do-install:
@cd ${WRKSRC} && ${SETENV} PREFIX=${PREFIX} \
WRKSRC=${WRKSRC} ${SH} ${SCRIPTDIR}/install
.include <bsd.port.mk>