public
Fork of kballard/macports
Description: Git mirror of the MacPorts svn repo
Homepage: http://www.macports.org
Clone URL: git://github.com/tompouk/macports.git
doc/guide: Removed the data of the new guide as it is now in doc-new, also

reverted the Makefile to its state before the new guide. I hope this 
doesn't
cause any problems.


git-svn-id: http://svn.macports.org/repository/macports/trunk@29473 
d073be05-634f-4543-b044-5fe20cf6d1d6
Simon Ruderich (author)
Mon Sep 24 13:14:51 -0700 2007
commit  35ab730d044aa1add7e37dfdd849c2590c0d7f0f
tree    466f49834293cd0910a37d4b88d8aa69ad8fe3c8
parent  efeb98791693ade71502514d217b303f80bcc78c
  • doc/guide/Makefile
  • doc/guide/new/resources/docbook.css
  • doc/guide/new/resources/images/trac-default.png
  • doc/guide/new/xml/glossary.xml
  • doc/guide/new/xml/guide.xml
  • doc/guide/new/xml/installing.xml
  • doc/guide/new/xml/internals.xml
  • doc/guide/new/xml/intro.xml
  • doc/guide/new/xml/portfiledev.xml
  • doc/guide/new/xml/portfileref.xml
  • doc/guide/new/xml/project.xml
  • doc/guide/new/xml/using.xml
...
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
...
68
69
70
71
72
73
74
75
76
77
78
79
...
85
86
87
88
 
89
90
...
27
28
29
 
30
31
 
32
33
34
 
35
36
37
38
 
39
 
 
 
 
 
40
41
42
43
44
45
 
46
47
48
...
58
59
60
 
 
 
 
 
 
61
62
63
...
69
70
71
 
72
73
74
0
@@ -27,32 +27,22 @@
0
 # set XML_DEBUG_CATALOG= to see catalog debugging info
0
 
0
 SOURCEDIR?=    xml
0
-NEWSOURCEDIR?= new/xml
0
 DOCBOOK_XSL?=   ${prefix}/share/xsl/docbook-xsl/
0
 HTMLDIR?=    html
0
-NEWHTMLDIR?= new/html
0
 XHTMLDIR?=    xhtml
0
 STYLESHEET?=   ${DOCBOOK_XSL}/html/chunk.xsl
0
 XSTYLESHEET?=   ${DOCBOOK_XSL}/xhtml/chunk.xsl
0
-NEWSTYLESHEET?= ${DOCBOOK_XSL}/xhtml/docbook.xsl
0
 XML_CATALOG_FILES?= ${prefix}/etc/xml/catalog
0
 XML_DEBUG_CATALOG?=
0
 CSS_STYLESHEET?=  docbook.css
0
 RESOURCES?=    resources/
0
-NEWRESOURCES?= new/resources/
0
 STRINGPARAMS?=    --stringparam html.stylesheet ${CSS_STYLESHEET} --stringparam chunk.section.depth 0
0
-NEWSTRINGPARAMS?= --stringparam html.stylesheet ${CSS_STYLESHEET} \
0
- --stringparam section.autolabel 1 \
0
- --stringparam toc.section.depth 1 \
0
- --stringparam generate.toc "book toc" \
0
- --stringparam section.label.includes.component.label 1
0
 
0
 .PHONY : all
0
 .PHONY : clean
0
 #.PHONY : install
0
 .PHONY : html
0
 .PHONY : xhtml
0
-.PHONY : new
0
 .PHONY : check
0
 .PHONY : tidy
0
 
0
@@ -68,12 +58,6 @@ xhtml:
0
   cp ${RESOURCES}${CSS_STYLESHEET} ${XHTMLDIR}
0
   xsltproc --xinclude ${STRINGPARAMS} -o "${XHTMLDIR}/" "${XSTYLESHEET}" "${SOURCEDIR}/guide.xml"
0
 
0
-new:
0
- mkdir -p ${NEWHTMLDIR}
0
- cp ${NEWRESOURCES}${CSS_STYLESHEET} ${NEWHTMLDIR}
0
- cp ${NEWRESOURCES}/images/* ${NEWHTMLDIR}
0
- xsltproc --xinclude ${NEWSTRINGPARAMS} -o "${NEWHTMLDIR}/guide.html" "${NEWSTYLESHEET}" "${NEWSOURCEDIR}/guide.xml"
0
-
0
 all: html xhtml tidy
0
 
0
 tidy:
0
@@ -85,6 +69,6 @@ tidy:
0
   -tidy -quiet -modify -indent -xml ${XHTMLDIR}/*
0
 
0
 clean:
0
- rm -fr ${HTMLDIR} ${XHTMLDIR} ${NEWHTMLDIR}
0
+ rm -fr ${HTMLDIR} ${XHTMLDIR}
0
 
0
 include ../../base/Mk/macports.autoconf.mk

Comments

    No one has commented yet.