doc/ja_JP.eucJP/htdocs/ports/Makefile.ja
Hiroki Sato 282a032540 - Remove junk directories.
- Repocopy from www/<lang> to head/<lang>/htdocs to eliminate duplicate
  information in the www and the doc directory.
- Add various administration files to svnadmin.
 
Approved by:	doceng (implicit)
2012-05-17 02:51:08 +00:00

25 lines
645 B
Text

# $FreeBSD$
CVSROOT?= /home/ncvs
PERL?= /usr/bin/perl
CVS_OPT?= -d ${CVSROOT} -R
CUR_EN!= head ${CVSROOT}/ports/INDEX,v |\
${PERL} -ne 'print $$1 if (/^head\t(.*);/)'
OLD_EN!= ${PERL} -ne 'print $$1 if (m@Original revision: /ports/INDEX (.*)@)' comments.ja
all: comments.en.${CUR_EN} comments.en.${OLD_EN}
comments.en.${CUR_EN}:
awk -F\| '{ printf("%s|%s\n", $$2, $$4); }' INDEX | sed -e 's@^/usr/ports/@@' > ${.TARGET}
comments.en.${OLD_EN}:
cvs ${CVS_OPT} co -r ${OLD_EN} -p ports/INDEX |\
awk -F\| '{ printf("%s|%s\n", $$2, $$4); }' |\
sed -e 's@^/usr/ports/@@' > ${.TARGET}
clean:
rm -f comments.en.*
.include "../../web.mk"