From 9c49dffef9a4802004cc1216559bf5847e68a16b Mon Sep 17 00:00:00 2001 From: Jameson Graef Rollins Date: Mon, 6 Apr 2009 19:53:56 -0700 Subject: [PATCH] macports: add a hook to replace the keytrans shebang line with one that use /usr/bin/env. this removes the -T taint checking option, so we need to make sure this is ok, but this is the only way to get keytrans to work with the correct macports version of perl --- packaging/macports/Portfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/packaging/macports/Portfile b/packaging/macports/Portfile index 0c440b6..7d87a93 100644 --- a/packaging/macports/Portfile +++ b/packaging/macports/Portfile @@ -36,6 +36,7 @@ checksums md5 8590532f4702fa44027a6a583657c9ef use_configure no post-build { + # update paths to SYS*DIRs exec sed -i .tmp -e "s|/etc/monkeysphere|${prefix}/etc/monkeysphere|g" \ ${worksrcpath}/src/share/defaultenv \ ${worksrcpath}/src/transitions/0.23 \ @@ -55,6 +56,12 @@ post-build { ${worksrcpath}/src/monkeysphere-host \ ${worksrcpath}/src/monkeysphere-authentication \ ${worksrcpath}/src/monkeysphere + + # fix perl shebang line + exec sed -i .tmp -e "s|#!/usr/bin/perl -T|#!/usr/bin/env perl|g" \ + ${worksrcpath}/src/share/keytrans + + # remove leftover sed cruft exec find ${worksrcpath} -name *.tmp -delete } -- 2.25.1