diff --git a/ja/copyright/Makefile b/ja/copyright/Makefile index 6b04f6d5a4..d53044bc45 100644 --- a/ja/copyright/Makefile +++ b/ja/copyright/Makefile @@ -1,43 +1,43 @@ -# $FreeBSD: www/ja/copyright/Makefile,v 1.14 2000/11/07 11:37:53 kuriyama Exp $ +# $FreeBSD: www/ja/copyright/Makefile,v 1.15 2001/07/14 03:43:17 kuriyama Exp $ # The FreeBSD Japanese Documentation Project -# Original revision: 1.11 +# Original revision: 1.12 .if exists(../Makefile.conf) .include "../Makefile.conf" .endif .if exists(../Makefile.inc) .include "../Makefile.inc" .endif DOCS= license.sgml DOCS+= freebsd-license.sgml DOCS+= daemon.sgml DOCS+= copyright.sgml INDEXLINK= copyright.html CVS_READONLY?= YES CVS_OPT+= -Q .if !empty(CVS_READONLY) CVS_OPT+= -R .endif # DATA+= COPYING COPYING.LIB ${LEGAL} # FreeBSD Ports redistribution restrictions #LEGAL= LEGAL #LEGAL_FILE= ports/LEGAL -#CLEANFILES+= ${LEGAL} +#CLEANFILES+= ${LEGAL} #.if defined(NOPORTSCVS) #${LEGAL}: $${PORTSBASE}/${LEGAL_FILE} -# cp ${PORTSBASE}/${LEGAL_FILE} LEGAL +# ${CP} ${PORTSBASE}/${LEGAL_FILE} LEGAL #.else #${LEGAL}: -# cvs ${CVS_OPT} co -p ${LEGAL_FILE} > ${.TARGET} +# ${CVS} ${CVS_OPT} co -p ${LEGAL_FILE} > ${.TARGET} #.endif ### Revision checking REVCHECK= yes .include "${WEB_PREFIX}/share/mk/web.site.mk" diff --git a/ja/docproj/Makefile b/ja/docproj/Makefile index 91c4b1b1cc..3549e6571a 100644 --- a/ja/docproj/Makefile +++ b/ja/docproj/Makefile @@ -1,25 +1,26 @@ -# $FreeBSD: www/ja/docproj/Makefile,v 1.12 2000/10/02 09:16:06 kuriyama Exp $ +# $FreeBSD: www/ja/docproj/Makefile,v 1.13 2000/11/07 11:37:53 kuriyama Exp $ # The FreeBSD Japanese Documentation Project -# Original revision: 1.8 +# Original revision: 1.9 .if exists(../Makefile.conf) .include "../Makefile.conf" .endif .if exists(../Makefile.inc) .include "../Makefile.inc" .endif DOCS= current.sgml DOCS+= doc-set.sgml +#DOCS+= handbook.sgml DOCS+= sgml.sgml DOCS+= submitting.sgml DOCS+= who.sgml DOCS+= translations.sgml DOCS+= docproj.sgml INDEXLINK= docproj.html ### Revision checking REVCHECK= yes .include "${WEB_PREFIX}/share/mk/web.site.mk" diff --git a/ja/gallery/Makefile b/ja/gallery/Makefile index 93afb7309a..2688c942af 100644 --- a/ja/gallery/Makefile +++ b/ja/gallery/Makefile @@ -1,41 +1,46 @@ -# $FreeBSD: www/ja/gallery/Makefile,v 1.14 2001/09/05 08:35:15 kuriyama Exp $ +# $FreeBSD: www/ja/gallery/Makefile,v 1.15 2001/09/17 03:07:39 kuriyama Exp $ # The FreeBSD Japanese Documentation Project -# Original revision: 1.13 +# Original revision: 1.14 .if exists(../Makefile.conf) .include "../Makefile.conf" .endif .if exists(../Makefile.inc) .include "../Makefile.inc" .endif -XSLT= env SGML_CATALOG_FILES=/usr/local/share/xml/dtd/xhtml/xhtml.soc \ - xsltproc --catalogs +XSLTPROCFLAGS= --catalogs +XSLT= ${SETENV} SGML_CATALOG_FILES=${PREFIX}/share/xml/dtd/xhtml/xhtml.soc \ + ${XSLTPROC} ${XSLTPROCFLAGS} + SRC= ../../en/gallery/gallery.xml INDEXLINK= gallery.html DATA+= gallery.html cgallery.html npgallery.html pgallery.html -CLEANFILES+= cgallery.html npgallery.html pgallery.html gallery.html +CLEANFILES+= ${DATA} gallery.html: ${SRC} gallery.xsl ../includes.xsl - ${XSLT} gallery.xsl ${SRC} > gallery.html -# -tidy -i -m -f /dev/null gallery.html + ${XSLT} ${.CURDIR}/gallery.xsl ${.CURDIR}/${SRC} > ${.TARGET} +# -${TIDY} ${TIDYFLAGS} ${.TARGET} cgallery.html: ${SRC} gallery-entry.xsl - ${XSLT} --param type \'commercial\' gallery-entry.xsl ${SRC} > cgallery.html -# -tidy -i -m -f /dev/null cgallery.html + ${XSLT} --param type \'commercial\' \ + ${.CURDIR}/gallery-entry.xsl ${.CURDIR}/${SRC} > ${.TARGET} +# -${TIDY} ${TIDYFLAGS} ${.TARGET} npgallery.html: ${SRC} gallery-entry.xsl - ${XSLT} --param type \'nonprofit\' gallery-entry.xsl ${SRC} > npgallery.html -# -tidy -i -m -f /dev/null npgallery.html + ${XSLT} --param type \'nonprofit\' \ + ${.CURDIR}/gallery-entry.xsl ${.CURDIR}/${SRC} > ${.TARGET} +# -${TIDY} ${TIDYFLAGS} ${.TARGET} pgallery.html: ${SRC} gallery-entry.xsl - ${XSLT} --param type \'personal\' gallery-entry.xsl ${SRC} > pgallery.html -# -tidy -i -m -f /dev/null pgallery.html + ${XSLT} --param type \'personal\' \ + ${.CURDIR}/gallery-entry.xsl ${.CURDIR}/${SRC} > ${.TARGET} +# -${TIDY} ${TIDYFLAGS} ${.TARGET} ### Revision checking REVCHECK= yes .include "${WEB_PREFIX}/share/mk/web.site.mk"