1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-23 09:10:43 +00:00

- Update to 3.1.7

- Reword COMMENT and rewrite and update pkg-descr
- Install additional documentation
- Use macros in pkg-plist
- Take maintainership

PR:		53547
Submitted by:	Sergei Kolobov <sergei@kolobov.com>
This commit is contained in:
Erwin Lansing 2003-06-21 08:39:40 +00:00
parent 9bbd52917d
commit 940a48e669
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=83400
4 changed files with 54 additions and 30 deletions

View File

@ -6,34 +6,38 @@
#
PORTNAME= getmail
PORTVERSION= 3.1.0
PORTVERSION= 3.1.7
CATEGORIES= mail python
MASTER_SITES= http://www.qcc.ca/~charlesc/software/getmail-3.0/%SUBDIR%/
MASTER_SITE_SUBDIR= . old-versions
MAINTAINER= ports@FreeBSD.org
COMMENT= POP3 mail retriever written in Python
MAINTAINER= sergei@kolobov.com
COMMENT= POP3 mail retriever with reliable Maildir and command delivery
USE_PYTHON= yes
USE_REINPLACE= yes
NO_BUILD= yes
DOCS= CHANGELOG docs.txt faq.txt getmail.txt
SCRIPTS= getmail getmail_maildir getmail_mbox
MAN1= getmail.1
DOCS= CHANGELOG THANKS TODO docs.txt faq.txt getmail.txt \
docs.html faq.html
post-patch:
@${REINPLACE_CMD} -e 's!/usr/lib/getmail!${DATADIR}!' \
-e 's!`which python`!${PYTHON_CMD}!' ${WRKSRC}/getmail
@cd ${WRKSRC} && \
${REINPLACE_CMD} -e 's!/usr/lib/getmail!${DATADIR}!' \
-e 's!/usr/bin/python!${PYTHON_CMD}!' ${SCRIPTS}
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/getmail ${PREFIX}/bin
cd ${WRKSRC} && ${INSTALL_SCRIPT} ${SCRIPTS} ${PREFIX}/bin
cd ${WRKSRC} && ${INSTALL_MAN} ${MAN1} ${MANPREFIX}/man/man1
@${MKDIR} ${DATADIR}
${INSTALL_SCRIPT} ${WRKSRC}/*.py ${DATADIR}
@${MKDIR} ${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/getmailrc-example ${EXAMPLESDIR}
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for file in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
.endif
.include <bsd.port.mk>

View File

@ -1 +1 @@
MD5 (getmail-3.1.0.tar.gz) = 3b461145a3516ff9a81b310ea70ac92d
MD5 (getmail-3.1.7.tar.gz) = e5bffd36858ed4cdc98236b3b1f50594

View File

@ -1,4 +1,18 @@
POP3 mail retriever written in Python. getmail includes many features
similiar to fetchmail and intends to be a complete replacement.
A POP3 mail retriever with reliable Maildir and command delivery.
WWW: http://www.qcc.sk.ca/~charlesc/software/getmail-2.0/
Summary of features:
- Retrieve mail from an unlimited number of POP3 mailboxes and servers.
- Support for multidrop or domain mailboxes.
- Safe and reliable delivery to qmail-style Maildirs, as well as program
(pipe) delivery for use with arbitrary external MDAs. Includes an MDA
for mbox files that supports mboxrd format and fcntl-type flock locking.
- Does not destroy information by rewriting mail headers.
- Does not cause mail loops by doing SMTP injection, and therefore does
not require that you run an MTA (like qmail or sendmail) on your host.
- Can remember which mail it has already retrieved, and can be set to
only download new messages.
- Written in Python, and therefore easy to extend or customize.
- Simple to install, configure, and use.
Author: Charles Cazabon <getmail@discworld.dyndns.org>
WWW: http://www.qcc.sk.ca/~charlesc/software/getmail-3.0/

View File

@ -1,17 +1,23 @@
bin/getmail
%%PORTDOCS%%share/doc/getmail/CHANGELOG
%%PORTDOCS%%share/doc/getmail/docs.txt
%%PORTDOCS%%share/doc/getmail/faq.txt
%%PORTDOCS%%share/doc/getmail/getmail.txt
share/examples/getmail/getmailrc-example
share/getmail/ConfParser.py
share/getmail/getmail.py
share/getmail/getmail_classes.py
share/getmail/getmail_constants.py
share/getmail/getmail_defaults.py
share/getmail/getmail_mbox.py
share/getmail/getmail_utilities.py
share/getmail/timeoutsocket.py
@dirrm share/getmail
@dirrm share/examples/getmail
%%PORTDOCS%%@dirrm share/doc/getmail
bin/getmail_maildir
bin/getmail_mbox
%%PORTDOCS%%%%DOCSDIR%%/CHANGELOG
%%PORTDOCS%%%%DOCSDIR%%/THANKS
%%PORTDOCS%%%%DOCSDIR%%/TODO
%%PORTDOCS%%%%DOCSDIR%%/docs.html
%%PORTDOCS%%%%DOCSDIR%%/docs.txt
%%PORTDOCS%%%%DOCSDIR%%/faq.html
%%PORTDOCS%%%%DOCSDIR%%/faq.txt
%%PORTDOCS%%%%DOCSDIR%%/getmail.txt
%%PORTDOCS%%@dirrm %%DOCSDIR%%
%%EXAMPLESDIR%%/getmailrc-example
@dirrm %%EXAMPLESDIR%%
%%DATADIR%%/ConfParser.py
%%DATADIR%%/getmail.py
%%DATADIR%%/getmail_classes.py
%%DATADIR%%/getmail_constants.py
%%DATADIR%%/getmail_defaults.py
%%DATADIR%%/getmail_mbox.py
%%DATADIR%%/getmail_utilities.py
%%DATADIR%%/timeoutsocket.py
@dirrm %%DATADIR%%