Port details |
- p5-Mail-Tools Perl5 modules for dealing with Internet e-mail messages
- 2.22 mail =269 2.21Version of this port present on the latest quarterly branch.
- Maintainer: perl@FreeBSD.org
- Port Added: unknown
- Last Update: 2024-11-22 06:26:04
- Commit Hash: 2c3a0c3
- People watching this port, also watch:: libiconv, expat, gmake, p5-URI, m4
- Also Listed In: perl5
- License: ART10 GPLv1+
- WWW:
- https://metacpan.org/release/MailTools
- Description:
- MailTools is a collection of Perl modules for dealing with Internet
e-mail messages.
The modules included can perform a wide range of tasks, including
parsing e-mail addresses, parsing mailcap files, manipulating
message header fields and bodies, sending messages via SMTP or the
Unix mail and sendmail commands, reading mbox mail boxes, and
message filtering through Perl subroutines.
- ¦ ¦ ¦ ¦
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - Dependency lines:
-
- p5-Mail-Tools>0:mail/p5-Mail-Tools
- To install the port:
- cd /usr/ports/mail/p5-Mail-Tools/ && make install clean
- To add the package, run one of these commands:
- pkg install mail/p5-Mail-Tools
- pkg install p5-Mail-Tools
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: p5-Mail-Tools
- Flavors: there is no flavor information for this port.
- distinfo:
- TIMESTAMP = 1732239730
SHA256 (MailTools-2.22.tar.gz) = 3bf68bb212298fa699a52749dddff35583a74f36a92ca89c843b854f29d87c77
SIZE (MailTools-2.22.tar.gz) = 58647
Packages (timestamps in pop-ups are UTC):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- p5-TimeDate>=0 : devel/p5-TimeDate
- perl5>=5.36<5.37 : lang/perl5.36
- perl5>=5.36<5.37 : lang/perl5.36
- Runtime dependencies:
-
- p5-TimeDate>=0 : devel/p5-TimeDate
- perl5>=5.36<5.37 : lang/perl5.36
- This port is required by:
- for Build
-
- mail/dkfilter
- mail/mailscanner
- mail/mimedefang
- mail/p5-Email-Valid
- mail/p5-MIME-Lite
- mail/p5-MIME-Tools
- mail/p5-Mail-Address-MobileJp
-
Deleted ports which required this port:
- for Run
-
- dns/renewck
- mail/dkfilter
- mail/mailscanner
- mail/mimedefang
- mail/notmuch-mutt
- mail/p5-Email-Valid
- mail/p5-MIME-Lite
-
Deleted ports which required this port:
- * - deleted ports are only shown under the This port is required by section. It was harder to do for the Required section. Perhaps later...
Configuration Options:
- No options to configure
- Options name:
- mail_p5-Mail-Tools
- USES:
- perl5
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
2.22 22 Nov 2024 06:26:04 |
Po-Chuan Hsieh (sunpoet) |
mail/p5-Mail-Tools: Update to 2.22
Changes: https://metacpan.org/dist/Mail-Tools/changes |
07 Sep 2022 21:58:51 |
Stefan Eßer (se) |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
2.21 07 Sep 2022 21:10:59 |
Stefan Eßer (se) |
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above ) |
2.21 20 Jul 2022 14:22:19 |
Tobias C. Berner (tcberner) |
mail: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* <ashish@FreeBSD.org>
* Aaron Dalton <aaron@FreeBSD.org>
* Adam David <adam@FreeBSD.org>
* Adam McDougall <mcdouga9@egr.msu.edu>
* Adam Weinberger <adamw@FreeBSD.org>
* Ade Lovett <ade@FreeBSD.org>
* Akinori MUSHA aka knu <knu@idaemons.org>
* Alex Deiter <tiamat@komi.mts.ru>
* Alex Dupre <ale@FreeBSD.org>
* Alex Dupre <sysadmin@alexdupre.com>
* Alex Perel <veers@disturbed.net> (Only the first 15 lines of the commit message are shown above ) |
2.21 04 Oct 2021 19:58:01 |
Rene Ladan (rene) |
*: re-assign kuriyama@s ports to the pool, commit bit safekept
With hat: portmgr-secretary |
2.21 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
2.21 15 Aug 2020 20:41:05 |
swills |
mail/p5-Mail-Tools: Update to 2.21
PR: 245441
Submitted by: Sergei Vyshenski <svysh.fbsd@gmail.com>
Approved by: maintainer timeout (kuriyama, >2 months) |
2.19 09 Jul 2018 08:40:18 |
mat |
Remove all := from BUILD_DEPENDS, here are never needed.
While there, cleanup, and sort depends.
When build and run dependencies are the same, there are three ways to
avoid duplicating the list while not adding the framework added
BUILD_DEPENDS to the RUN_DEPENDS. In order of preference, they are:
1) use RUN_DEPENDS to set BUILD_DEPENDS:
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= foo:bar/baz
2) create another variable and use it:
MY_DEPENDS= foo:bar/baz
BUILD_DEPENDS= ${MY_DEPENDS}
RUN_DEPENDS= ${MY_DEPENDS}
3) use BUILD_DEPENDS to set RUN_DEPENDS and force evaluation:
BUILD_DEPENDS= foo:bar/baz
RUN_DEPENDS:= ${BUILD_DEPENDS}
Sponsored by: Absolight |
2.19 27 May 2018 20:15:20 |
sunpoet |
Update WWW
search.cpan.org is shutting down.
It will redirect to metacpan.org after June 25, 2018.
With hat: perl |
2.19 21 Dec 2017 12:09:48 |
wen |
- Update to 2.19
Changes: http://search.cpan.org/src/MARKOV/MailTools-2.19/ChangeLog
PR: 223483
Submitted by: svysh.fbsd@gmail.com
Approved by: maintainer(timeout, > 40 days) |
2.14 15 Sep 2017 08:58:50 |
mat |
Fix license information for portgs that use "the same license as Perl".
Sponsored by: Absolight |
2.14 01 Apr 2016 14:16:20 |
mat |
Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.
With hat: portmgr
Sponsored by: Absolight |
2.14 06 May 2015 13:51:29 |
kuriyama |
- Update to 2.14.
PR: ports/198247
Submitted by: Sergei Vyshenski <svysh.fbsd@gmail.com> |
2.13_1 26 Nov 2014 13:08:38 |
mat |
Change the way Perl modules are installed, update the default Perl to 5.18.
Before, we had:
site_perl : lib/perl5/site_perl/5.18
site_perl/perl_arch : lib/perl5/site_perl/5.18/mach
perl_man3 : lib/perl5/5.18/man/man3
Now we have:
site_perl : lib/perl5/site_perl
site_arch : lib/perl5/site_perl/mach/5.18
perl_man3 : lib/perl5/site_perl/man/man3
Modules without any .so will be installed at the same place regardless of the (Only the first 15 lines of the commit message are shown above ) |
2.13 12 Jan 2014 13:47:46 |
kuriyama |
- Upgrade to 2.13. |
2.12 05 Jan 2014 16:33:44 |
az |
- support stage
Approved by: portmgr (blanket infrastructure) |
2.12 20 Sep 2013 19:59:14 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
mail) |
2.12 04 Sep 2013 12:28:16 |
az |
- convert to the new perl5 framework
Approved by: portmgr (bapt@, blanket) |
2.12 14 Jan 2013 14:52:08 |
kuriyama |
- Upgrade to 2.12. |
2.11 31 Aug 2012 09:56:25 |
kuriyama |
- Upgrade to 2.11. |
2.09 10 Jun 2012 18:42:48 |
swills |
- Convert all remaining instances of BUILD_DEPENDS=${RUN_DEPENDS} or
RUN_DEPENDS=${BUILD_DEPENDS} to use := which portlint has warned
about for a while.
PR: ports/168208
Approved by: portmgr (miwi) |
2.09 11 Mar 2012 09:05:48 |
kuriyama |
- Upgrade to 2.09.
Feature safe: yes |
2.08 17 Sep 2011 07:06:45 |
sunpoet |
- Change PERL_CONFIGURE to "yes" for all values between 5.8.1+ and 5.8.9+
Suggested by: az
With hat: perl |
2.08 05 Jul 2011 13:57:18 |
kuriyama |
- Upgrade to 2.08. |
2.07 03 Jul 2011 13:53:52 |
ohauer |
- remove MD5 |
2.07 09 Oct 2010 14:55:09 |
kuriyama |
- Upgrade to 2.07. |
2.06 07 Feb 2010 13:28:26 |
kuriyama |
- Upgrade to 2.06. |
2.05 20 Dec 2009 14:09:09 |
kuriyama |
- Upgrade to 2.05. |
2.04 17 Oct 2008 22:48:22 |
kuriyama |
Upgrade to 2.04.
PR: ports/127763, ports/128168
Submitted by: leeym@, delphij@ |
2.02 24 Feb 2008 08:11:57 |
kuriyama |
- Upgrade to 2.02.
- Use CPAN macro.
PR: ports/120599
Submitted by: Felippe de Meirelles Motta <lippemail@gmail.com> |
1.77 11 Oct 2007 18:28:16 |
garga |
- Update to 1.77
PR: ports/116336
Submitted by: Richard A Secor <rsecor@seqlogic.com>
Approved by: maintainer timeout (almost a month) |
1.74 13 Mar 2006 05:00:11 |
kuriyama |
Upgrade to 1.74 (previous version disappeared from CPAN mirrors).
Submitted by: Matthew Seaman <m.seaman@infracaninophile.co.uk>
Approved by: portmgr (marcus) |
1.73 30 Jan 2006 14:09:37 |
kuriyama |
- Upgrade to 1.73.
PR: ports/92464
Submitted by: leeym |
1.67 22 Jan 2006 12:50:54 |
edwin |
SHA256ify
Approved by: krion@ |
1.67 22 Jan 2006 02:20:05 |
edwin |
Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtry
Approved by: krion@
PR: ports/88711 (related) |
1.67 21 Sep 2005 19:31:43 |
fenner |
search.cpan.org redirect reduction canonicalization project, pass 1:
URLs automatically rewritten from /search?dist=Foo or /dist/Foo
to /dist/Foo/ (note trailing slash). After a 2002(!) reorganization,
this is the preferred way to refer to modules on search.cpan.org.
This pass brought to you by http://people.freebsd.org/~fenner/fix-search |
1.67 23 Jul 2005 08:38:13 |
kuriyama |
Update to 1.67. |
1.66 25 Jan 2005 00:59:57 |
kuriyama |
Update to 1.66. |
1.65 11 Jan 2005 02:50:51 |
kuriyama |
Update to 1.65.
Submitted by: Corentin Plouet <c.plouet@medria.com> |
1.64 12 Oct 2004 23:22:12 |
kuriyama |
- Upgrade to 1.64. |
1.62 26 May 2004 08:01:49 |
demon |
Update to version 1.62.
Approved by: maintainer |
1.60 19 Apr 2004 03:12:30 |
kris |
Don't remove a directory we didn't create |
1.60 18 Mar 2004 00:48:53 |
kuriyama |
SIZEify.
Submitted by: trevor |
1.60 24 Oct 2003 12:05:09 |
ijliao |
utilize SITE_PERL
PR: 58166
Submitted by: Cheng-Lung Sung <clsung@dragon2.net> |
1.60 06 Oct 2003 22:25:51 |
kuriyama |
Upgrade to 1.60 (includes a couple of bugfixes).
Requested by: milter@free.fr |
1.58 22 Feb 2003 07:48:51 |
kuriyama |
de-pkg-comment. |
1.58 20 Feb 2003 16:33:26 |
sobomax |
Conditionalise several dependencies on PERL_LEVEL to make those ports more
friendly for perl-5.8.0, which has those dependencies included into the
base distribution.
Sponsired by: Porta Software Ltd |
1.58 22 Jan 2003 00:02:04 |
kuriyama |
Upgrade to 1.58.
Submitted by: Joseph Scott <joseph@randomnetworks.com> |
1.53 13 Dec 2002 14:15:51 |
kuriyama |
Upgrade to 1.53.
Well-synced CPAN mirrors already do not have 1.51. Unbreak fetching
by upgrade.
PR: ports/46079
Submitted by: Sergei Kolobov <sergei@kolobov.com>
Approved by: portmgr (knu) |
1.51 18 Nov 2002 03:28:43 |
kuriyama |
Upgrade to 1.51.
From ChangeLog:
- Removed the possibility to use 'mailx', which was the
default: removal from the detectionn routines and Mail/Mailer/mail.pm.
Strongly suggested by [Sebastian Krahmer]
PR: ports/45266
Submitted by: Phil Pennock <pdp@nl.demon.net> |
1.50 26 Oct 2002 13:50:13 |
sobomax |
Correct RUN_DEPENDS. |
1.50 06 Oct 2002 08:33:38 |
kuriyama |
Upgrade to 1.50.
PR: ports/43231
Submitted by: Peter Avalos <pavalos@theshell.com> |
1.48 28 Aug 2002 01:05:05 |
kuriyama |
Upgrade to 1.48.
PR: ports/42071
Submitted by: Bruce M Simpson <bms@spc.org> |
1.46 06 Jun 2002 01:02:44 |
kuriyama |
Upgrade to 1.46. |
1.44 16 Apr 2002 06:08:31 |
kuriyama |
Upgrade to 1.44.
Submitted by: Emil Sit <sit@mit.edu>
PR: ports/36798 |
19 Feb 2002 01:57:01 |
kuriyama |
Upgrade to 1.43. |
24 Aug 2001 22:32:55 |
tobez |
Remove redundant USE_PERL5 statements. |
15 Aug 2001 17:38:08 |
kuriyama |
o Update to version 1.16. o Remove redundant BUILD_DEPENDS (only need to
depend on p5-Net once). o Add USE_PERL5. o Sort pkg-plist. o Don't fail on
deinstall if other Mail:: modules are installed. |
01 Mar 2001 06:39:18 |
vanilla |
Remove do-configure section, use PERL_CONFIGURE now. |
05 Feb 2001 15:11:27 |
olgeni |
Spaces->tabs in the mail category. |
08 Jan 2001 06:39:45 |
kuriyama |
Use $PERL_CONFIGURE. |
16 Oct 2000 15:24:39 |
kuriyama |
Upgrade to 1.15. |
08 Oct 2000 04:16:42 |
asami |
Convert category mail to new layout. |
17 Jun 2000 03:37:15 |
will |
Lots and lots of cleanups. Teach p5-* in general about PKGNAMEPREFIX. Add
some missing/wrong dependencies. Show how to respect CC/CFLAGS. Many
miscellaneous modifications. I used more excessive hacks to force p5-Jcode
and p5-WWW-Search to respect CC/CFLAGS. |