blob: 3c5693644ba47a2352af81575ccdebca88252781 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# New ports collection Makefile for: exmh2
# Version required: 2.0
# Date released: 1 Jan 97
# Whom: Peter Wemm <peter@freebsd.org>
#
# $Id: Makefile,v 1.18 1997/11/22 19:50:03 jseger Exp $
#
DISTNAME= exmh-2.0
PKGNAME= exmh-2.0
CATEGORIES= mail tk80
MASTER_SITES= ftp://ftp.sunlabs.com/pub/tcl/exmh/
EXTRACT_SUFX= .tar.Z
MAINTAINER= peter@FreeBSD.org
# There are likely to be distributed patches again.
DIST_SUBDIR= ${PKGNAME}
RUN_DEPENDS= wish8.0:${PORTSDIR}/x11/tk80
BUILD_DEPENDS= tclsh8.0:${PORTSDIR}/lang/tcl80
WISH= wish8.0
TCLSH= tclsh8.0
# 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
# mail/faces
# audio/rplay
MAN1= exmh.1
do-build:
@cd ${WRKSRC} && ${SETENV} PREFIX=${PREFIX} TCLSH=${TCLSH} \
WISH=${PREFIX}/bin/${WISH} WRKSRC=${WRKSRC} \
FILESDIR=${FILESDIR} ${SH} ${SCRIPTDIR}/build
do-install:
@cd ${WRKSRC} && ${SETENV} PREFIX=${PREFIX} \
WRKSRC=${WRKSRC} ${SH} ${SCRIPTDIR}/install
.include <bsd.port.mk>
|