diff options
author | agc <agc@pkgsrc.org> | 2000-01-24 14:19:56 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2000-01-24 14:19:56 +0000 |
commit | cb82fbe5975a5374f4bcbcdc65f81b097bbe296f (patch) | |
tree | 6d98f941480fa6b71cc900f6a8f16d5bcb028057 /mail/grepmail/Makefile | |
parent | 88de200418c453f12de9b54a8f0eb4987da7deec (diff) | |
download | pkgsrc-cb82fbe5975a5374f4bcbcdc65f81b097bbe296f.tar.gz |
Upgrade to version 4.11 of grepmail, an mbox formatted file search
utility. Install both versions, as grepmail-quick and grepmail-full,
and create a symlink to grepmail-full called grepmail.
New in version 4.11:
- Fixed a bug where an ASCII file would not be recognized as a mailbox when
the first couple emails did not have a "From:" line. (Thanks to Jeff Flowers
<jeff.flowers@npl.co.uk>)
- Added standard Perl testing.
New in version 4.1:
- Stripped auto-perl execution code, since it never works on all platforms.
(Installation instructions modified to require the user to fix the #! line.)
- Minor changes to allow grepmail to run without -w complaints.
New in version 4.0:
- Fixed a bug where shell characters needed to be escaped for compressed
files. (Bug found by Richard Clamp <richardc@tw2.com>
- Added #!/bin/sh as first line to make the rest compatible with csh/tcsh
users. (Bug found by Ed Arnold <era@ucar.edu>)
New in version 3.9:
- Took out specialization engine because there wasn't enough support to
program in that style.
- Offering 2 main versions now -- Date::Manip and Date::Parse
- Added -R option, which causes grepmail to recurse any directories
encountered. (Thanks to Emil Tiller <etiller@asc.corp.mot.com> for the
initial code.)
- Fixed a small bug that would cause some attachments not to be identified.
Diffstat (limited to 'mail/grepmail/Makefile')
-rw-r--r-- | mail/grepmail/Makefile | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/mail/grepmail/Makefile b/mail/grepmail/Makefile index 231906f677e..ba1605cc33a 100644 --- a/mail/grepmail/Makefile +++ b/mail/grepmail/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.1.1.1 1999/06/08 12:01:13 bad Exp $ +# $NetBSD: Makefile,v 1.2 2000/01/24 14:19:56 agc Exp $ # -DISTNAME= grepmail-3.8 +DISTNAME= grepmail-4.11 CATEGORIES= mail MASTER_SITES= http://www.cs.virginia.edu/~dwc3q/code/ @@ -12,16 +12,19 @@ CONFIGURE_ENV= PERL=${PREFIX}/bin/perl USE_PERL5= yes -do-configure: - @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PREFIX}/bin/perl specialize grepmail.in < /dev/null - do-build: - @cd ${WRKSRC} && \ - ${SED} -e '1s,.*,#!'${PREFIX}/bin/perl',' grepmail >grepmail.perl && \ - ${MV} -f grepmail.perl grepmail - @echo Build done. + @cd ${WRKSRC} ; \ + for i in 1 2 ; do \ + ${ECHO} "$$i" | ${SETENV} ${MAKE_ENV} ${PREFIX}/bin/perl Makefile.PL; \ + ${MAKE}; \ + ${RM} -f grepmail-$$i; \ + ${SED} -e '1s|.*|#! ${PREFIX}/bin/perl|' grepmail > grepmail-$$i; \ + done do-install: - @${INSTALL_SCRIPT} ${WRKSRC}/grepmail ${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/grepmail-1 ${PREFIX}/bin/grepmail-quick + ${INSTALL_SCRIPT} ${WRKSRC}/grepmail-2 ${PREFIX}/bin/grepmail-full + ${RM} -f ${PREFIX}/bin/grepmail + ${LN} -s grepmail-full ${PREFIX}/bin/grepmail .include "../../mk/bsd.pkg.mk" |