mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +00:00
Set MASTER_SITES fetchable and correct reinplace commands.
This commit is contained in:
parent
428faffc40
commit
24fd1ae51d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=80428
@ -8,20 +8,24 @@
|
||||
PORTNAME= jgv
|
||||
PORTVERSION= 0.2a
|
||||
CATEGORIES+= ${CATEGORY_LIST}
|
||||
MASTER_SITES= http://www.aaa-int.or.jp/~jfactory/JDE/dist/
|
||||
MASTER_SITES= http://www.aaa-int.or.jp/~jfactory/JDE/dist/ \
|
||||
${MASTER_SITE_LOCAL}
|
||||
MASTER_SITE_SUBDIR= . kiri
|
||||
DISTNAME= JGV-${PORTVERSION}
|
||||
EXTRACT_ONLY= # extracted directly in install target
|
||||
|
||||
MAINTAINER= kiri@pis.toba-cmt.ac.jp
|
||||
MAINTAINER= kiri@FreeBSD.org
|
||||
COMMENT= A graphic viewer with various image types
|
||||
|
||||
RUN_DEPENDS= ${RUN_DEP_LIST}
|
||||
LIB_DEPENDS= ${LIB_DEP_LIST}
|
||||
|
||||
EXTRACT_ONLY= # extracted directly in install target
|
||||
NO_WRKSUBDIR= yes
|
||||
NO_BUILD= yes
|
||||
USE_X_PREFIX= yes
|
||||
SCRIPTS_ENV= LANG=C LN=${LN} PERL=${PERL} LANGUAGE=${LANGUAGE} VERSION=${TKSTEPVERSION}
|
||||
USE_REINPLACE= yes
|
||||
SCRIPTS_ENV= LANG=C LN=${LN} REINPLACE_CMD="${REINPLACE_CMD}" \
|
||||
LANGUAGE=${LANGUAGE} VERSION=${TKSTEPVERSION}
|
||||
PLIST_SUB= PIXMAP_PATH=${PIXMAPPATH:S@^${PREFIX}/@@}
|
||||
|
||||
# This port is for both graphics/jgv and japanese/jgv.
|
||||
|
@ -10,4 +10,4 @@ Note that both graphics/jgv and japanese/jgv are mutually exclusive and
|
||||
SHOULD NOT BE INSTALLED SIMULTANEOUSLY!
|
||||
|
||||
-KIRIYAMA Kazuhiko
|
||||
<kiri@pis.toba-cmt.ac.jp>
|
||||
<kiri@FreeBSD.org>
|
||||
|
@ -26,3 +26,4 @@ bin/JGV.app
|
||||
@dirrm JDE/JGV/menu
|
||||
@dirrm JDE/JGV/modules
|
||||
@dirrm JDE/JGV
|
||||
@unexec rmdir %D/JDE 2>/dev/null || true
|
||||
|
@ -5,9 +5,9 @@ installdir=${PREFIX}/JDE/JGV; export installdir
|
||||
case ${LANGUAGE} in
|
||||
Japanese)
|
||||
for f in JGV.app; do
|
||||
${PERL} -pi -e '
|
||||
s/^(exec[ \t]+)wishstep[^ \t]*([ \t]+.*)$/$1wishstep$ENV{VERSION}jp$2/
|
||||
' ${installdir}/bin/${f}
|
||||
${REINPLACE_CMD} -E -e \
|
||||
"s/^(exec[[:space:]]+)wishstep[[:space:]]*([[:space:]]+.*)\$/\1wishstep${VERSION}jp\2/" \
|
||||
${installdir}/bin/${f}
|
||||
done
|
||||
;;
|
||||
*)
|
||||
@ -22,9 +22,9 @@ for f in JGV JGV.app; do
|
||||
target=${installdir}/defaults/${f}
|
||||
;;
|
||||
esac
|
||||
${PERL} -pi -e '
|
||||
s/^([ \t]*set[ \t]+Jlib[ \t]+)"[^"]*"$/$1"$ENV{installdir}"/;
|
||||
' ${target}
|
||||
${REINPLACE_CMD} -E -e \
|
||||
"s@^([[:space:]]*set[[:space:]]+Jlib[[:space:]]+)\"[^\"]*\"\$@\1\"${installdir}/\"@" \
|
||||
${target}
|
||||
done
|
||||
|
||||
${LN} -sf ${installdir}/bin/JGV.app ${PREFIX}/bin
|
||||
|
Loading…
Reference in New Issue
Block a user