diff options
author | kiri <kiri@FreeBSD.org> | 2003-05-08 13:08:06 +0800 |
---|---|---|
committer | kiri <kiri@FreeBSD.org> | 2003-05-08 13:08:06 +0800 |
commit | d229ada5e9132a0d5cffef7ce9e3538f9db624ca (patch) | |
tree | 952845d0f2ae0eff220633d8ccd7594648579737 /archivers/deepforest/scripts | |
parent | bfa7d9031bb230031b8af1d09ce2189f1f80d58f (diff) | |
download | freebsd-ports-gnome-d229ada5e9132a0d5cffef7ce9e3538f9db624ca.tar.gz freebsd-ports-gnome-d229ada5e9132a0d5cffef7ce9e3538f9db624ca.tar.zst freebsd-ports-gnome-d229ada5e9132a0d5cffef7ce9e3538f9db624ca.zip |
Set MASTER_SITES fetchable and correct reinplace command.
PR: 47650
Submitted by: Simon 'portlint' Schubert<corecode@corecode.ath.cx>
Diffstat (limited to 'archivers/deepforest/scripts')
-rw-r--r-- | archivers/deepforest/scripts/post-install | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/archivers/deepforest/scripts/post-install b/archivers/deepforest/scripts/post-install index aa14facb24c5..06d9aad764ce 100644 --- a/archivers/deepforest/scripts/post-install +++ b/archivers/deepforest/scripts/post-install @@ -3,9 +3,9 @@ case ${LANGUAGE} in Japanese) for f in DeepForest.app; do - ${PERL} -pi -e ' - s/^(exec[ \t]+)wishstep[^ \t]*([ \t]+.*)$/$1wishstep$ENV{VERSION}jp$2/ - ' ${PREFIX}/JDE/DeepForest/${f} + ${REINPLACE_CMD} -E -e \ + "s/^(exec[[:space:]]+)wishstep[^[:space:]]*([[:space:]]+.*)\$/\1wishstep${VERSION}jp\2/" \ + ${PREFIX}/JDE/DeepForest/${f} done ;; *) |