فهرست منبع

[MANUAL] Brazilian Portuguese:
- update files


git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@19591 44c647ce-9c0f-0410-b52a-842ac1e357ba

mauriciofauth 16 سال پیش
والد
کامیت
a93c2d3fae
2فایلهای تغییر یافته به همراه23 افزوده شده و 46 حذف شده
  1. 2 1
      documentation/manual/pt-br/Makefile.in
  2. 21 45
      documentation/manual/pt-br/configure.in

+ 2 - 1
documentation/manual/pt-br/Makefile.in

@@ -58,7 +58,8 @@ html: html/index.html
 
 html/index.html: $(MANUAL_XML) $(HTML_XSL)
 	@echo "Rendering the whole manual with $(XSLTPROC)..."
-	$(XSLTPROC) --xinclude --output html/index.html $(HTML_XSL) $(MANUAL_XML)
+	$(XMLLINT) --xinclude --output _temp_manual.xml $(MANUAL_XML)
+	$(XSLTPROC) --xinclude --output html/index.html $(HTML_XSL) _temp_manual.xml
 	@echo "Copying manual figures (recursively)..."
 	-[ -d figures ] && cp -r figures html/
 

+ 21 - 45
documentation/manual/pt-br/configure.in

@@ -1,68 +1,46 @@
 AC_INIT(Makefile.in)
 AC_COPYRIGHT([Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)])
 
-XINC=xinc
-XEP=xep
 FOP=fop
 XSLTPROC=xsltproc
 XMLLINT=xmllint
 
-AC_ARG_WITH(xep, [  --with-xep   Where to find RenderX XEP],
-	[
-		if test "x$withval" != "xno"; then
-			XEP="$withval"
-		fi
-	]
-)
-AC_PATH_PROG(XEP,  $XEP)
-
-AC_ARG_WITH(xinc, [  --with-xinc  Where to find lunasil XINC],
-	[
-		if test "x$withval" != "xno"; then
-			XINC="$withval"
-		fi
-	]
-)
-AC_PATH_PROG(XINC, $XINC)
-
 AC_ARG_WITH(fop, [  --with-fop  Where to find Apache FOP],
-	[
-		if test "x$withval" != "xno"; then
-			FOP="$withval"
-		fi
-	]
+    [
+        if test "x$withval" != "xno"; then
+            FOP="$withval"
+        fi
+    ]
 )
 AC_PATH_PROG(FOP,  $FOP)
 
 AC_ARG_WITH(xsltproc, [  --with-xsltproc  Where to find xsltproc],
-	[
-		if test "x$withval" != "xno"; then
-			XSLTPROC="$withval"
-		fi
-	]
+    [
+        if test "x$withval" != "xno"; then
+            XSLTPROC="$withval"
+        fi
+    ]
 )
 AC_PATH_PROG(XSLTPROC,  $XSLTPROC)
 
 AC_ARG_WITH(xmllint, [  --with-xmllint  Where to find xmllint],
-	[
-		if test "x$withval" != "xno"; then
-			XMLLINT="$withval"
-		fi
-	]
+    [
+        if test "x$withval" != "xno"; then
+            XMLLINT="$withval"
+        fi
+    ]
 )
 AC_PATH_PROG(XMLLINT,  $XMLLINT)
 
 ECSRC=../trunk
 AC_ARG_WITH(ecsrc, [  --with-ecsrc  Where to find the ecelerity source],
-	[
-		if test "x$withval" != "xno"; then
-			ECSRC="$withval"
-		fi
-	]
+    [
+        if test "x$withval" != "xno"; then
+            ECSRC="$withval"
+        fi
+    ]
 )
 
-AC_SUBST(XINC)
-AC_SUBST(XEP)
 AC_SUBST(FOP)
 AC_SUBST(XSLTPROC)
 AC_SUBST(XMLLINT)
@@ -78,9 +56,7 @@ cat > config.nice <<EOT
     --with-ecsrc='$ECSRC' \
     --with-xsltproc='$XSLTPROC' \
     --with-xmllint='$XMLLINT' \
-    --with-fop='$FOP' \
-    --with-xinc='$XINC' \
-    --with-xep='$XEP'
+    --with-fop='$FOP'
 
 EOT
 chmod +x config.nice