Gentoo Archives: gentoo-doc-cvs

From: "Joshua Saddler (nightmorph)" <nightmorph@g.o>
To: gentoo-doc-cvs@l.g.o
Subject: [gentoo-doc-cvs] gentoo commit in xml/htdocs/doc/en: xml-guide.xml
Date: Sat, 28 Feb 2009 01:34:24
Message-Id: E1LdE5t-0006lG-1D@stork.gentoo.org
1 nightmorph 09/02/28 01:34:21
2
3 Modified: xml-guide.xml
4 Log:
5 econf doesn't need explicit die, bug 253629
6
7 Revision Changes Path
8 1.69 xml/htdocs/doc/en/xml-guide.xml
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/xml-guide.xml?rev=1.69&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/xml-guide.xml?rev=1.69&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/xml-guide.xml?r1=1.68&r2=1.69
13
14 Index: xml-guide.xml
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/xml-guide.xml,v
17 retrieving revision 1.68
18 retrieving revision 1.69
19 diff -u -r1.68 -r1.69
20 --- xml-guide.xml 9 Mar 2008 13:13:15 -0000 1.68
21 +++ xml-guide.xml 28 Feb 2009 01:34:20 -0000 1.69
22 @@ -1,5 +1,5 @@
23 <?xml version="1.0" encoding="UTF-8"?>
24 -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/xml-guide.xml,v 1.68 2008/03/09 13:13:15 neysx Exp $ -->
25 +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/xml-guide.xml,v 1.69 2009/02/28 01:34:20 nightmorph Exp $ -->
26 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
27
28 <guide>
29 @@ -20,6 +20,9 @@
30 <author title="Editor">
31 <mail link="swift@g.o">Sven Vermeulen</mail>
32 </author>
33 +<author title="Editor">
34 + <mail link="nightmorph"/>
35 +</author>
36
37 <abstract>
38 This guide shows you how to compose web documentation using the new lightweight
39 @@ -32,8 +35,8 @@
40 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
41 <license/>
42
43 -<version>9</version>
44 -<date>2008-03-09</date>
45 +<version>10</version>
46 +<date>2009-02-27</date>
47
48 <chapter>
49 <title>GuideXML basics</title>
50 @@ -447,7 +450,7 @@
51 </p>
52
53 <pre caption="My first ebuild">
54 -<comment># Copyright 1999-2006 <b>Gentoo Foundation</b>
55 +<comment># Copyright 1999-2009 <b>Gentoo Foundation</b>
56 # Distributed under the terms of the GNU General Public License v2
57 # &#36;Header: $</comment>
58
59 @@ -461,7 +464,7 @@
60 <ident>IUSE</ident>=<const>""</const>
61
62 <stmt>src_compile()</stmt> {
63 - <keyword>econf</keyword> --with-posix-regex || <keyword>die</keyword> <const>"econf failed"</const>
64 + <keyword>econf</keyword> --with-posix-regex
65 <keyword>emake</keyword> || <keyword>die</keyword> <const>"emake failed"</const>
66 }