diff options
author | kiri <kiri@FreeBSD.org> | 2003-05-08 19:00:15 +0800 |
---|---|---|
committer | kiri <kiri@FreeBSD.org> | 2003-05-08 19:00:15 +0800 |
commit | c02e408ab212bb818b4a6d4c34feb06f89dfca18 (patch) | |
tree | 32f348f7f9b52e1472a679e4e6c9bb92faa0baab /graphics | |
parent | 262d0a2f95068109fea6f021fb97cb489c111fff (diff) | |
download | freebsd-ports-gnome-c02e408ab212bb818b4a6d4c34feb06f89dfca18.tar.gz freebsd-ports-gnome-c02e408ab212bb818b4a6d4c34feb06f89dfca18.tar.zst freebsd-ports-gnome-c02e408ab212bb818b4a6d4c34feb06f89dfca18.zip |
Change in-place replacement.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/jgv/Makefile | 1 | ||||
-rw-r--r-- | graphics/jgv/scripts/post-install | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/graphics/jgv/Makefile b/graphics/jgv/Makefile index 655d3ad051bf..e54d43973bb8 100644 --- a/graphics/jgv/Makefile +++ b/graphics/jgv/Makefile @@ -24,6 +24,7 @@ NO_WRKSUBDIR= yes NO_BUILD= yes USE_X_PREFIX= yes USE_REINPLACE= yes +REINPLACE_ARGS= SCRIPTS_ENV= LANG=C LN=${LN} REINPLACE_CMD="${REINPLACE_CMD}" \ LANGUAGE=${LANGUAGE} VERSION=${TKSTEPVERSION} PLIST_SUB= PIXMAP_PATH=${PIXMAPPATH:S@^${PREFIX}/@@} diff --git a/graphics/jgv/scripts/post-install b/graphics/jgv/scripts/post-install index 6440c5657663..7d7d37fe2ca4 100644 --- a/graphics/jgv/scripts/post-install +++ b/graphics/jgv/scripts/post-install @@ -5,7 +5,7 @@ installdir=${PREFIX}/JDE/JGV; export installdir case ${LANGUAGE} in Japanese) for f in JGV.app; do - ${REINPLACE_CMD} -E -e \ + ${REINPLACE_CMD} -i "" -E -e \ "s/^(exec[[:space:]]+)wishstep[[:space:]]*([[:space:]]+.*)\$/\1wishstep${VERSION}jp\2/" \ ${installdir}/bin/${f} done @@ -22,7 +22,7 @@ for f in JGV JGV.app; do target=${installdir}/defaults/${f} ;; esac - ${REINPLACE_CMD} -E -e \ + ${REINPLACE_CMD} -i "" -E -e \ "s@^([[:space:]]*set[[:space:]]+Jlib[[:space:]]+)\"[^\"]*\"\$@\1\"${installdir}/\"@" \ ${target} done |