9c8b5ede43
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
42 lines
998 B
Makefile
42 lines
998 B
Makefile
# $NetBSD: Makefile,v 1.41 2006/03/04 21:30:00 jlam Exp $
|
|
|
|
DISTNAME= exmh-2.6.3
|
|
PKGREVISION= 1
|
|
CATEGORIES= mail tk
|
|
MASTER_SITES= ftp://ftp.scriptics.com/pub/tcl/exmh/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.beedub.com/exmh/
|
|
COMMENT= X11/TK based mail reader front end to MH
|
|
|
|
DEPENDS+= tk>=8.3.2:../../x11/tk
|
|
DEPENDS+= nmh>=1.0:../../mail/nmh
|
|
DEPENDS+= metamail>=2.7:../../mail/metamail
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
DIST_SUBDIR= ${PKGNAME_NOREV}
|
|
|
|
WISH= wish
|
|
TCLSH= tclsh
|
|
|
|
# Additionally, exmh will use the following packages if present:
|
|
# lang/expect
|
|
# textproc/glimpse
|
|
# security/gnupg
|
|
# security/pgp
|
|
# mail/faces
|
|
# audio/rplay
|
|
|
|
.include "../../mk/x11.buildlink3.mk"
|
|
|
|
do-build:
|
|
@cd ${WRKSRC} && ${SETENV} PREFIX=${PREFIX} TCLSH=${TCLSH} \
|
|
WISH=${PREFIX}/bin/${WISH} WRKSRC=${WRKSRC} \
|
|
FILESDIR=${FILESDIR} ${SH} ${FILESDIR}/build
|
|
|
|
do-install:
|
|
@cd ${WRKSRC} && ${SETENV} PREFIX=${PREFIX} \
|
|
WRKSRC=${WRKSRC} ${SH} ${FILESDIR}/install
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|