blob: 6d231f3e75a107707d2ee118c2635f29a081f1a7 (
plain)
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
50
51
52
53
54
55
56
57
58
59
|
# $NetBSD: Makefile,v 1.8 1998/04/24 09:20:35 agc Exp $
# FreeBSD Id: Makefile,v 1.25 1998/02/15 05:36:54 peter Exp
#
DISTNAME= exmh-2.0.1
CATEGORIES= mail tk80
MASTER_SITES= ftp://ftp.sunlabs.com/pub/tcl/exmh/
EXTRACT_SUFX= .tar.Z
PATCH_SITES= http://sunscript.sun.com/exmh/patches/2.0.1/
PATCHFILES= utils.patch folderNew.patch extrasInit.patch exec.patch \
app-defaults.patch pgpMisc.patch seditMime.patch mime.patch \
bindings.patch html_bindings.patch find.patch mh.patch \
pgp.patch
# User contributed and "new features". Some not useable as-is.
PATCHFILES+= seditpost.patch inc.patch next.patch
# XXX pgpExec.patch has got confused paths (supplied as patch-as)
# XXX newsgroups.patch is relative to a different directory (patch-at)
# XXX MDN.patch doesn't apply (patch-au)
# XXX post.from.patch doesn't apply (patch-av)
.if defined(PATCH_DEBUG)
PATCH_DIST_ARGS= -d ${WRKSRC}/lib -E ${PATCH_DIST_STRIP}
.else
PATCH_DIST_ARGS= -d ${WRKSRC}/lib --forward --quiet -E ${PATCH_DIST_STRIP}
.endif
MAINTAINER= packages@netbsd.org
BUILD_DEPENDS= tclsh8.0:../../lang/tcl80
RUN_DEPENDS= wish8.0:../../x11/tk80
# exmh is pretty useless without this, but it's not needed to build it.
RUN_DEPENDS+= repl:../../mail/nmh
# full mime support needs mmencode/mmdecode from metamail
RUN_DEPENDS+= mmencode:../../mail/metamail
DIST_SUBDIR= ${PKGNAME}
WISH= wish8.0
TCLSH= tclsh8.0
# 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 "../../mk/bsd.pkg.mk"
|