aboutsummaryrefslogtreecommitdiff
path: root/pt_BR.ISO8859-1/htdocs
diff options
context:
space:
mode:
authorHiroki Sato <hrs@FreeBSD.org>2012-05-17 02:51:08 +0000
committerHiroki Sato <hrs@FreeBSD.org>2012-05-17 02:51:08 +0000
commit282a032540622ef194d646326406f3349c379554 (patch)
treefeaefb45542a569175c58ea7016463938c1e9e9e /pt_BR.ISO8859-1/htdocs
parent2519deaad71bcaff33737e23ebcbd2824782ad0d (diff)
parent84d6e5fb459d9143f8b529749d8cde9face5b5e7 (diff)
downloaddoc-282a032540622ef194d646326406f3349c379554.tar.gz
doc-282a032540622ef194d646326406f3349c379554.zip
- 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)
Notes
Notes: svn path=/head/; revision=38821
Diffstat (limited to 'pt_BR.ISO8859-1/htdocs')
-rw-r--r--pt_BR.ISO8859-1/htdocs/FAQ/Makefile20
-rw-r--r--pt_BR.ISO8859-1/htdocs/FAQ/index.html23
-rw-r--r--pt_BR.ISO8859-1/htdocs/Makefile25
-rw-r--r--pt_BR.ISO8859-1/htdocs/Makefile.inc9
-rw-r--r--pt_BR.ISO8859-1/htdocs/doc/Makefile50
5 files changed, 127 insertions, 0 deletions
diff --git a/pt_BR.ISO8859-1/htdocs/FAQ/Makefile b/pt_BR.ISO8859-1/htdocs/FAQ/Makefile
new file mode 100644
index 0000000000..c678ce6b88
--- /dev/null
+++ b/pt_BR.ISO8859-1/htdocs/FAQ/Makefile
@@ -0,0 +1,20 @@
+# The FreeBSD Documentation Project
+# The FreeBSD Brazilian Portuguese Documentation Project
+#
+# Original version: 1.8
+#
+# $FreeBSD: www/pt_BR/FAQ/Makefile,v 1.1 2002/10/05 16:03:59 lioux Exp $
+#
+# Build the FreeBSD FAQ *outside* of the www tree, and install it
+# in to the right place as necessary.
+
+.if exists(../Makefile.conf)
+.include "../Makefile.conf"
+.endif
+.if exists(../Makefile.inc)
+.include "../Makefile.inc"
+.endif
+
+DATA= index.html
+
+.include "${WEB_PREFIX}/share/mk/web.site.mk"
diff --git a/pt_BR.ISO8859-1/htdocs/FAQ/index.html b/pt_BR.ISO8859-1/htdocs/FAQ/index.html
new file mode 100644
index 0000000000..1d6b7df6ab
--- /dev/null
+++ b/pt_BR.ISO8859-1/htdocs/FAQ/index.html
@@ -0,0 +1,23 @@
+<!--
+ The FreeBSD Documentation Project
+ The FreeBSD Brazilian Portuguese Documentation Project
+
+ Original revision: 1.1
+ $FreeBSD: www/pt_BR/FAQ/index.html,v 1.2 2004/01/06 00:33:00 lioux Exp $
+-->
+<html>
+ <head>
+ <meta http-equiv="refresh" content="5;url=../../doc/pt_BR.ISO8859-1/books/faq/index.html">
+ <title>O FAQ foi movido</title>
+ </head>
+
+ <body bgcolor="#ffffff">
+ <p>O FAQ n&atilde;o est&aacute; mais dispon&iacute;vel neste
+ endere&ccedil;o. Por favor, use <a
+ href="../../doc/pt_BR.ISO8859-1/books/faq/index.html">../../doc/pt_BR.ISO8859-1/books/faq/index.html</a>
+ para alcan&ccedil;&aacute;-lo. Voc&ecirc; ser&aacute;
+ automaticamente redirecionado para l&aacute; em alguns segundos.
+ Em caso negativo; por favor, siga o link e atualize seus
+ bookmarks. Pedimos desculpas pela inconveni&ecirc;ncia.</p>
+ </body>
+</html>
diff --git a/pt_BR.ISO8859-1/htdocs/Makefile b/pt_BR.ISO8859-1/htdocs/Makefile
new file mode 100644
index 0000000000..3f34d100a4
--- /dev/null
+++ b/pt_BR.ISO8859-1/htdocs/Makefile
@@ -0,0 +1,25 @@
+# The FreeBSD Documentation Project
+# The FreeBSD Brazilian Portuguese Documentation Project
+#
+# Based on: 1.105
+#
+# $FreeBSD: www/pt_BR/Makefile,v 1.2 2004/01/05 03:02:25 lioux Exp $
+
+.if exists(Makefile.conf)
+.include "Makefile.conf"
+.endif
+.if exists(../Makefile.inc)
+.include "../Makefile.inc"
+.endif
+
+# Subdirectories
+# SGML
+SUBDIR+= FAQ
+
+.if !defined(WEB_ONLY) || empty(WEB_ONLY)
+SUBDIR+= doc
+.endif
+
+WEBDIR?= data/pt_BR
+
+.include "${WEB_PREFIX}/share/mk/web.site.mk"
diff --git a/pt_BR.ISO8859-1/htdocs/Makefile.inc b/pt_BR.ISO8859-1/htdocs/Makefile.inc
new file mode 100644
index 0000000000..3ab4a55086
--- /dev/null
+++ b/pt_BR.ISO8859-1/htdocs/Makefile.inc
@@ -0,0 +1,9 @@
+# The FreeBSD Documentation Project
+# The FreeBSD Brazilian Portuguese Documentation Project
+#
+# Based on: 1.8
+#
+# $FreeBSD$
+
+WEBBASE?= /data/pt_BR
+WEB_PREFIX?= ${.CURDIR}/../..
diff --git a/pt_BR.ISO8859-1/htdocs/doc/Makefile b/pt_BR.ISO8859-1/htdocs/doc/Makefile
new file mode 100644
index 0000000000..63ccf5733e
--- /dev/null
+++ b/pt_BR.ISO8859-1/htdocs/doc/Makefile
@@ -0,0 +1,50 @@
+# The FreeBSD Documentation Project
+# The FreeBSD Brazilian Portuguese Documentation Project
+#
+# Original version: 1.8
+#
+# $FreeBSD: www/pt_BR/doc/Makefile,v 1.1 2004/01/05 03:05:24 lioux Exp $
+#
+# 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 pt* faq
+.endif
+
+.include "${WEB_PREFIX}/share/mk/web.site.mk"
+
+obj: _OBJUSE
+
+_OBJUSE: .USE
+ @unset DESTDIR || true; \
+ cd ${DOC_PREFIX}/${LANGCODE}; \
+ ${MAKE} ${.TARGET}