mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-12 07:27:57 +00:00
Set MASTER_SITES fetchable and correct reinplace commands.
This commit is contained in:
parent
ff9860d80e
commit
8c5ce27bb1
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=80424
@ -8,21 +8,24 @@
|
||||
PORTNAME= muggy
|
||||
PORTVERSION= 1.3.1
|
||||
CATEGORIES+= editors windowmaker tkstep80
|
||||
|
||||
MASTER_SITES= http://www.aaa-int.or.jp/~jfactory/Factory/JDE/dist/
|
||||
MASTER_SITES= http://www.aaa-int.or.jp/~jfactory/JDE/dist/ \
|
||||
${MASTER_SITE_LOCAL}
|
||||
MASTER_SITE_SUBDIR= . kiri
|
||||
DISTNAME= Muggy-${PORTVERSION}
|
||||
EXTRACT_ONLY= # extracted directly in install target
|
||||
|
||||
MAINTAINER= kiri@pis.toba-cmt.ac.jp
|
||||
MAINTAINER= kiri@FreeBSD.org
|
||||
COMMENT= A simple text editor for the X on TkStep
|
||||
|
||||
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 editors/muggy and japanese/muggy.
|
||||
|
@ -16,4 +16,4 @@ Note that both editors/muggy and japanese/muggy are mutually exclusive and
|
||||
SHOULD NOT BE INSTALLED SIMULTANEOUSLY!
|
||||
|
||||
-KIRIYAMA Kazuhiko
|
||||
<kiri@pis.toba-cmt.ac.jp>
|
||||
<kiri@FreeBSD.org>
|
||||
|
@ -34,3 +34,4 @@ bin/Muggy.app
|
||||
@dirrm JDE/Muggy/modules/Undo.m
|
||||
@dirrm JDE/Muggy/modules
|
||||
@dirrm JDE/Muggy
|
||||
@unexec rmdir %D/JDE 2>/dev/null || true
|
||||
|
@ -5,9 +5,9 @@ installdir=${PREFIX}/JDE/Muggy; export installdir
|
||||
case ${LANGUAGE} in
|
||||
Japanese)
|
||||
for f in Muggy.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 Muggy Muggy.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/Muggy.app ${PREFIX}/bin
|
||||
|
Loading…
Reference in New Issue
Block a user