1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-25 21:07:40 +00:00

Fixed a problem (this ports is broken on bento)

Behavior of new lha (1.14f) is different from older one.
This commit is contained in:
Satoshi Taoka 2000-11-14 06:46:44 +00:00
parent 6a1b37225e
commit b85cb06f08
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=35129

View File

@ -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; \