head	1.3;
access;
symbols
	HRS_XML_CLEANUP:1.2
	HRS_XML_CLEANUP_PRE:1.1
	EMILYBOYD_REDESIGN:1.1
	PRE_REDESIGN:1.1;
locks; strict;
comment	@# @;


1.3
date	2006.10.21.12.37.41;	author jkois;	state Exp;
branches;
next	1.2;

1.2
date	2006.08.19.21.21.52;	author hrs;	state Exp;
branches;
next	1.1;

1.1
date	2002.12.06.21.57.48;	author ue;	state Exp;
branches;
next	;


desc
@@


1.3
log
@1. MFen - www-mega-patch from hrs@@:

- Merge the changes into the external German repository.
- Fix problems caused by this process.
- Merge the corrected version back.

2. MFbed:  Update the German website.

www/de/about.sgml                       1.5   -> 1.10
www/de/applications.sgml                1.31  -> 1.33
www/de/index.xsl                        1.152 -> 1.156
www/de/internet.sgml                    1.35  -> 1.37
www/de/send-pr.sgml                     1.52  -> 1.54
www/de/where.sgml                       1.84  -> 1.86
www/de/community/mailinglists.sgml      1.9   -> 1.11
www/de/news/Makefile                    1.43  -> 1.46
www/de/news/news.sgml                   1.44  -> 1.46
www/de/platforms/sparc.sgml             1.26  -> 1.28
www/de/platforms/ia64/index.xsl         1.5   -> 1.7
www/de/share/sgml/navibar.l10n.ent      1.1   -> 1.5
www/de/share/sgml/news.xml              1.1   -> 1.16
www/de/share/sgml/press.xml             1.1   -> 1.11

Obtained from:  The FreeBSD German Documentation Project.
@
text
@#
# $FreeBSD$
# $FreeBSDde: de-www/doc/Makefile,v 1.2 2006/10/19 19:26:01 jkois Exp $
# basiert auf: 1.9
#
# Build the FreeBSD documentation *outside* of the www tree, and install it
# in to the right place as necessary.
#
# This assumes that you have the www/ and doc/ trees checked out beside
# one another -- this was always the case anyway, so there are no extra
# requirements here.
#
.if exists(../Makefile.conf)
.include "../Makefile.conf"
.endif
.if exists(../Makefile.inc)
.include "../Makefile.inc"
.endif

all: all-all all-install

all-all:
	@@unset DESTDIR || true; \
	 cd ${DOC_PREFIX}/${LANGCODE}; \
		${MAKE} FORMATS="html-split html" \
			INSTALL_COMPRESSED= all
all-install:
	@@unset DESTDIR || true; \
	 cd ${DOC_PREFIX}/${LANGCODE}; \
		${MAKE} FORMATS="html-split html" DOCDIR=${.OBJDIR} \
			INSTALL_COMPRESSED= install
install clean:
	@@unset DESTDIR || true; \
	 cd ${DOC_PREFIX}/${LANGCODE}; \
		${MAKE} FORMATS="html-split html" DOCDIR=${DESTDIR}/data/doc \
			INSTALL_COMPRESSED= ${.TARGET}
.if make(clean)
	${RM} -rf de* handbook faq
.endif

.include "${WEB_PREFIX}/share/mk/web.site.mk"

obj: _OBJUSE

_OBJUSE: .USE
	@@unset DESTDIR || true; \
	 cd ${DOC_PREFIX}/${LANGCODE}; \
		${MAKE} ${.TARGET}
@


1.2
log
@www cleanup mega commit:

 - Move includes.nav*.sgml to share/sgml/navibar.ent and
   <lang>/share/sgml/navibar.l10n.ent.

 - Move includes.sgml and includes.xsl to
   share/sgml/common.ent, share/sgml/header.ent, <lang>/share/sgml/l10n.ent,
   and <lang>?share/sgml/header.l10n.ent.

 - Move most of XSLT libraries to share/sgml/*.xsl and
   <lang>/share/sgml/*.xsl.

 - Move news.xml and other *.xml files for the similar purpose
   to share/sgml/*.xml and <lang>/share/sgml/*.xml.

 - Switch to use a custom DTD for HTML document.  Now we use
   "-//FreeBSD//DTD HTML 4.01 Transitional-Based Extension", which is
   HTML 4.01 + some entities previously pulled via
   "<!ENTITY % includes SYSTEM "includes.sgml"> %includes;" line.
   The location of entity file will be resolved by using catalog file.

 - Add DOCTYPE declearation to XML documents.  This makes the followings
   possible:

   * Use of &foo; entities for SGML in an XML file instead of defining
     {$foo} as the same content.

   * &symbolic; entities for Latin characters.

 - Duplicated information between SGML and XML, or English and
   translated doc, has been removed as much as possible.
@
text
@d2 3
a4 3
# $FreeBSD: www/de/doc/Makefile,v 1.1 2002/12/06 21:57:48 ue Exp $
# $FreeBSDde: de-www/doc/Makefile,v 1.1 2002/12/02 05:35:13 ue Exp $
# basiert auf: 1.8
@


1.1
log
@MFbed: Revive the German portion of the web site for 5.0-RELEASE
Phase 1: Switch to new-style setup of FAQ/handbook (.../doc/de_DE.ISO8859-1)

Changes to includes and availability were neccessary because of the changes
made in the framework since the last update, the web site would not build
otherwise.

Reviewed by:	-doc, Silence on -www
@
text
@d2 1
a2 1
# $FreeBSD$
d13 6
d24 1
a24 1
	 cd ${.CURDIR}/../../../doc/de_DE.ISO8859-1; \
d29 1
a29 1
	 cd ${.CURDIR}/../../../doc/de_DE.ISO8859-1; \
a31 6
all-pgpkeyring:
	@@unset DESTDIR || true; \
	 cd ${.CURDIR}/../../../doc/de_DE.ISO8859-1/books/handbook; \
		${MAKE} \
			pgpkeyring > ${.OBJDIR}/pgpkeyring.txt

d34 1
a34 1
	 cd ${.CURDIR}/../../../doc/de_DE.ISO8859-1; \
a36 6
#.if make(install)
#	@@unset DESTDIR || true; \
#	 cd ${.CURDIR}/../../../doc/de_DE.ISO8859-1/books/handbook; \
#		${MAKE} \
#			pgpkeyring > ${DESTDIR}/data/doc/pgpkeyring.txt
#.endif
d41 1
a41 1
.include "${.CURDIR}/../../share/mk/web.site.mk"
d47 1
a47 1
	 cd ${.CURDIR}/../../../doc/de_DE.ISO8859-1; \
@

