diff options
author | taoka <taoka@FreeBSD.org> | 2000-11-14 14:46:44 +0800 |
---|---|---|
committer | taoka <taoka@FreeBSD.org> | 2000-11-14 14:46:44 +0800 |
commit | 3784291bc2e0a75865dfee1e7ae8f89537f6746c (patch) | |
tree | e5bc523a3d14c7ce1a05075f58c36665f6a6ac02 /japanese/wdic-fpw | |
parent | 819b5edae18490cfe71280e102de577e82e42856 (diff) | |
download | freebsd-ports-gnome-3784291bc2e0a75865dfee1e7ae8f89537f6746c.tar.gz freebsd-ports-gnome-3784291bc2e0a75865dfee1e7ae8f89537f6746c.tar.zst freebsd-ports-gnome-3784291bc2e0a75865dfee1e7ae8f89537f6746c.zip |
Fixed a problem (this ports is broken on bento)
Behavior of new lha (1.14f) is different from older one.
Diffstat (limited to 'japanese/wdic-fpw')
-rw-r--r-- | japanese/wdic-fpw/Makefile | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/japanese/wdic-fpw/Makefile b/japanese/wdic-fpw/Makefile index ab592fb7ca68..afd455bba520 100644 --- a/japanese/wdic-fpw/Makefile +++ b/japanese/wdic-fpw/Makefile @@ -39,10 +39,16 @@ post-extract: echo $$i; \ lha xf ${DISTDIR}/$$i; \ done -# for debugging on bento -.if defined(PARALLEL_PACKAGE_BUILD) - ls ${WRKSRC}/wdic${DICT_VERSION} -.endif +# In using lha-1.14f, characters of each filenames can be used uppercases, but +# in lha-1.14g, all are only used lowercases. ?? +.for i in WDIC.MAN TECH.DIC TEL.DIC RAIL.DIC ORG.DIC STD.DIC \ + COMM.DIC INFO.DIC MISC.DIC MOE1.DIC RCMP.DIC MOE2.DIC PASO.DIC \ + TRAN.DIC ELEC.DIC GAME.DIC SOFT.DIC YOGO.DIC KNOW.DIC DEV.DIC + t=`${ECHO} $i | ${SED} "y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/"`; \ + if [ ! -f ${WRKSRC}/wdic${DICT_VERSION}/$i ]; then \ + ${MV} ${WRKSRC}/wdic${DICT_VERSION}/$$t ${WRKSRC}/wdic${DICT_VERSION}/$i; \ + fi +.endfor post-build: cd ${WRKSRC}; nkf -eSd catalogs.sjis > catalogs.txt; \ |