pkgsrc/mail/getmail/Makefile
zuntum f599554099 Update getmail to 2.1.3
News:

Version 2.1.3
3 August 2001

  -change handling of command delivery.  Verification of existent command
  is smarter; arguments won't cause problems now.  Remove duplicate code.

Version 2.1.2
1 August 2001

  -getmail will now check the permissions on your getmailrc file, and refuse
  to run if the file is group- or world-writable.  Thanks to Fredrik Steen for
  the request.

Version 2.1.1
29 June 2001

  -add "no_received" option, similar to no_delivered_to, at request of getmail
  user Nigel Cunningham.
  -got rid of some trailing tabs in ConfigParser.py after a report from
  Fredrik Steen -- they're harmless, but unclean.  Fredrik is also in the
  process of packaging getmail for use in Debian.  Thanks, Fredrik.
  -changed the default path to the getmail library dir from /usr/local/lib/...
  to /usr/lib/... .  This only affects the getmail wrapper script; if you're
  using that, you may have to edit your copy, or change where you install the
  files to.
2001-08-07 14:42:27 +00:00

35 lines
1.1 KiB
Makefile

# $NetBSD: Makefile,v 1.6 2001/08/07 14:42:27 zuntum Exp $
#
DISTNAME= getmail-2.1.3
CATEGORIES= mail
MASTER_SITES= http://www.qcc.sk.ca/~charlesc/software/getmail-2.0/
MAINTAINER= zuntum@netbsd.org
HOMEPAGE= http://www.qcc.sk.ca/~charlesc/software/getmail-2.0/
COMMENT= POP3 mail retriever with reliable Maildir and mbox delivery
DEPENDS+= python>=1.52:../../lang/python
NO_CONFIGURE= YES
NO_BUILD= YES
post-patch:
${SED} "s,/usr/lib,${PREFIX}/libexec," ${WRKSRC}/getmail \
> ${WRKSRC}/getmail.done
${MV} ${WRKSRC}/getmail.done ${WRKSRC}/getmail
do-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/getmail
cd ${WRKSRC} && \
${INSTALL_DATA} TODO BUGS CHANGELOG getmailrc-example faq.txt \
getmail.txt docs.txt COPYING ${PREFIX}/share/doc/getmail
${INSTALL_DATA} ${WRKSRC}/getmailrc-example \
${PREFIX}/share/examples/getmailrc
${INSTALL_SCRIPT_DIR} ${PREFIX}/libexec/getmail
cd ${WRKSRC} && \
${INSTALL_SCRIPT} ConfParser.py timeoutsocket.py getmail.py \
${PREFIX}/libexec/getmail
${INSTALL_SCRIPT} ${WRKSRC}/getmail ${PREFIX}/bin
.include "../../mk/bsd.pkg.mk"