Merge the following from the English version:
1.11 -> 1.12 copyright/Makefile 1.8 -> 1.9 docproj/Makefile 1.13 -> 1.14 gallery/Makefile
This commit is contained in:
parent
e1acd5300b
commit
4542e5990d
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=11243
3 changed files with 26 additions and 20 deletions
|
|
@ -1,6 +1,6 @@
|
|||
# $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"
|
||||
|
|
@ -28,13 +28,13 @@ CVS_OPT+= -R
|
|||
# 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
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# $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"
|
||||
|
|
@ -11,6 +11,7 @@
|
|||
|
||||
DOCS= current.sgml
|
||||
DOCS+= doc-set.sgml
|
||||
#DOCS+= handbook.sgml
|
||||
DOCS+= sgml.sgml
|
||||
DOCS+= submitting.sgml
|
||||
DOCS+= who.sgml
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# $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"
|
||||
|
|
@ -9,31 +9,36 @@
|
|||
.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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue