0a7e30a5ba
disabled. Many bugfixes, most notable changes - some locale definitions/aliases added (from GNU locale), many other locale-related changes - added facility to convert character set of incoming messages to display character set - added facility to convert character set of new message to outgoing character set (text-charset) - added support for pgp5 and gpg ! - POP mailboxes can be accessed via username@hostname folder name - added U command - mark e-mail as unread - security (no effect on NetBSD, since elm is not installed sgid/suid): reset egid on couple of places where it was not and should be - elm.mimecharsets is generated by Configure in batch mode, so it's not needed to ship our own - dropped remailer stuff and g/c memory modes stuff from Configure - e-mail address/aliases handling changes
36 lines
1 KiB
Makefile
36 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.12 2000/06/04 16:28:21 jdolecek Exp $
|
|
# FreeBSD: Makefile,v 1.42 1997/12/24 01:21:07 alex Exp
|
|
#
|
|
|
|
DISTNAME= elm-2.4ME+78
|
|
CATEGORIES= mail
|
|
MASTER_SITES= ftp://ftp.ozone.fmi.fi/KEH/ \
|
|
ftp://ftp.funet.fi/pub/unix/mail/elm/elm-2.4ME+/ \
|
|
ftp://ftp.ibp.fr/pub/unix/mail/elm-me/
|
|
|
|
MAINTAINER= packages@netbsd.org
|
|
HOMEPAGE= http://www.myxa.com/old/elm.html
|
|
|
|
HAS_CONFIGURE= Yes
|
|
CONFIGURE_SCRIPT= ./Configure
|
|
CONFIGURE_ENV= PREFIX="${PREFIX}" RUN_AS_BATCH=yes
|
|
CONFIGURE_ARGS= -S
|
|
|
|
WRKSRC= ${WRKDIR}/elm2.4.ME+.78
|
|
|
|
pre-configure:
|
|
${CP} ${FILESDIR}/config.sh ${WRKSRC}/
|
|
${MV} ${WRKSRC}/nls/LANGS ${WRKSRC}/nls/LANGS.tmpl
|
|
${SED} -e 's:__PREFIX:'${PREFIX}':g'< ${WRKSRC}/nls/LANGS.tmpl > ${WRKSRC}/nls/LANGS
|
|
|
|
post-install:
|
|
cd ${WRKSRC}/nls; ${MAKE} install
|
|
if [ -f ${PREFIX}/lib/elm.mimetypes ] ; then \
|
|
${INSTALL_DATA} \
|
|
${FILESDIR}/elm.mimetypes ${PREFIX}/lib/elm.mimetypes-dist; \
|
|
else \
|
|
${INSTALL_DATA} \
|
|
${FILESDIR}/elm.mimetypes ${PREFIX}/lib; \
|
|
fi
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|