summaryrefslogtreecommitdiff
path: root/mail/grepmail/Makefile
diff options
context:
space:
mode:
authoragc <agc>2000-01-24 14:19:56 +0000
committeragc <agc>2000-01-24 14:19:56 +0000
commite778475d2cd4b43d850004768bab8e3ed661319a (patch)
tree6d98f941480fa6b71cc900f6a8f16d5bcb028057 /mail/grepmail/Makefile
parent70cc74f7cd38782ca32012f168fef3ec8801aa0d (diff)
downloadpkgsrc-e778475d2cd4b43d850004768bab8e3ed661319a.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/Makefile23
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"