1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00

Remove patches whose sole purpose was to provide the full path to Perl,

and take care of this by a simple perl line in post-patch.
Submitted by:	Alex Kapranoff <kapr@acm.org>
This commit is contained in:
Masafumi Max NAKANE 2002-05-16 08:37:33 +00:00
parent 976aa0b236
commit 9b88b5b4e3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=59242
8 changed files with 10 additions and 121 deletions

View File

@ -40,6 +40,16 @@ pre-extract:
${ECHO} "Do not build mailagent as root or it won't pass the sanity tests."; \
${FALSE}; fi
post-patch:
@(cd ${WRKSRC}; \
${PERL} -pi.bak \
-e 's|exec perl -S|exec ${PERL} -S|' \
agent/edusers.SH agent/magent.sh agent/maildist.SH \
agent/mailhelp.SH agent/maillist.SH agent/mailpatch.SH \
agent/package.SH agent/test/TEST agent/test/atail \
bin/perload misc/getcost/getcost misc/mime/unmime \
misc/news/newsgate)
post-install:
@${MKDIR} ${PREFIX}/share/examples/mailagent
@${MKDIR} ${PREFIX}/share/examples/mailagent/misc

View File

@ -1,17 +0,0 @@
*** agent/edusers.SH.orig Thu Aug 10 15:34:55 1995
--- agent/edusers.SH Thu Jul 25 19:55:26 1996
***************
*** 17,22 ****
echo "Extracting agent/edusers (with variable substitutions)"
$spitshell >edusers <<!GROK!THIS!
$startperl
! eval "exec perl -S \$0 \$*"
if \$running_under_some_shell;
--- 17,22 ----
echo "Extracting agent/edusers (with variable substitutions)"
$spitshell >edusers <<!GROK!THIS!
$startperl
! eval "exec $perlpath -S \$0 \$*"
if \$running_under_some_shell;

View File

@ -1,17 +0,0 @@
*** agent/maildist.SH.orig Wed Mar 22 05:51:25 1995
--- agent/maildist.SH Thu Jul 25 19:53:05 1996
***************
*** 17,22 ****
echo "Extracting agent/maildist (with variable substitutions)"
$spitshell >maildist <<!GROK!THIS!
$startperl
! eval "exec perl -S \$0 \$*"
if \$running_under_some_shell;
--- 17,22 ----
echo "Extracting agent/maildist (with variable substitutions)"
$spitshell >maildist <<!GROK!THIS!
$startperl
! eval "exec $perlpath -S \$0 \$*"
if \$running_under_some_shell;

View File

@ -1,17 +0,0 @@
*** agent/mailhelp.SH.orig Wed Mar 22 05:51:24 1995
--- agent/mailhelp.SH Thu Jul 25 19:56:16 1996
***************
*** 17,22 ****
echo "Extracting agent/mailhelp (with variable substitutions)"
$spitshell >mailhelp <<!GROK!THIS!
$startperl
! eval "exec perl -S \$0 \$*"
if \$running_under_some_shell;
--- 17,22 ----
echo "Extracting agent/mailhelp (with variable substitutions)"
$spitshell >mailhelp <<!GROK!THIS!
$startperl
! eval "exec $perlpath -S \$0 \$*"
if \$running_under_some_shell;

View File

@ -1,17 +0,0 @@
*** agent/maillist.SH.orig Thu Aug 10 15:38:06 1995
--- agent/maillist.SH Thu Jul 25 19:54:00 1996
***************
*** 17,22 ****
echo "Extracting agent/maillist (with variable substitutions)"
$spitshell >maillist <<!GROK!THIS!
$startperl
! eval "exec perl -S \$0 \$*"
if \$running_under_some_shell;
--- 17,22 ----
echo "Extracting agent/maillist (with variable substitutions)"
$spitshell >maillist <<!GROK!THIS!
$startperl
! eval "exec $perlpath -S \$0 \$*"
if \$running_under_some_shell;

View File

@ -1,17 +0,0 @@
*** agent/mailpatch.SH.orig Wed Mar 22 05:51:24 1995
--- agent/mailpatch.SH Thu Jul 25 19:56:34 1996
***************
*** 17,22 ****
echo "Extracting agent/mailpatch (with variable substitutions)"
$spitshell >mailpatch <<!GROK!THIS!
$startperl
! eval "exec perl -S \$0 \$*"
if \$running_under_some_shell;
--- 17,22 ----
echo "Extracting agent/mailpatch (with variable substitutions)"
$spitshell >mailpatch <<!GROK!THIS!
$startperl
! eval "exec $perlpath -S \$0 \$*"
if \$running_under_some_shell;

View File

@ -1,17 +0,0 @@
*** agent/package.SH.orig Thu Aug 10 15:34:35 1995
--- agent/package.SH Thu Jul 25 19:54:42 1996
***************
*** 17,22 ****
echo "Extracting agent/package (with variable substitutions)"
$spitshell >package <<!GROK!THIS!
$startperl
! eval "exec perl -S \$0 \$*"
if \$running_under_some_shell;
--- 17,22 ----
echo "Extracting agent/package (with variable substitutions)"
$spitshell >package <<!GROK!THIS!
$startperl
! eval "exec $perlpath -S \$0 \$*"
if \$running_under_some_shell;

View File

@ -1,19 +0,0 @@
*** agent/magent.sh.orig Sat Sep 16 09:05:29 1995
--- agent/magent.sh Thu Jul 25 19:58:11 1996
***************
*** 17,23 ****
echo "Extracting agent/magent (with variable substitutions)"
$spitshell >magent <<!GROK!THIS!
$startperl
! eval 'exec perl -S \$0 "\$@"'
if \$running_under_some_shell;
# You'll need to set up a .forward file that feeds your mail to this script,
--- 17,23 ----
echo "Extracting agent/magent (with variable substitutions)"
$spitshell >magent <<!GROK!THIS!
$startperl
! eval 'exec $perlpath -S \$0 "\$@"'
if \$running_under_some_shell;
# You'll need to set up a .forward file that feeds your mail to this script,