Gentoo Archives: gentoo-commits

From: "Jonathan Callen (abcd)" <abcd@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/xmlformat: ChangeLog xmlformat-1.04.ebuild
Date: Mon, 22 Feb 2010 20:55:35
Message-Id: E1NjfJU-0004T1-OD@stork.gentoo.org
1 abcd 10/02/22 20:55:32
2
3 Modified: ChangeLog xmlformat-1.04.ebuild
4 Log:
5 Transfer prefix keywords, use `doins -r` to install documentation, use relative symlinks in /usr/bin
6 (Portage version: -svn/cvs/Linux i686)
7
8 Revision Changes Path
9 1.10 app-text/xmlformat/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/xmlformat/ChangeLog?rev=1.10&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/xmlformat/ChangeLog?rev=1.10&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/xmlformat/ChangeLog?r1=1.9&r2=1.10
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-text/xmlformat/ChangeLog,v
18 retrieving revision 1.9
19 retrieving revision 1.10
20 diff -u -r1.9 -r1.10
21 --- ChangeLog 15 Feb 2009 18:13:30 -0000 1.9
22 +++ ChangeLog 22 Feb 2010 20:55:32 -0000 1.10
23 @@ -1,6 +1,10 @@
24 # ChangeLog for app-text/xmlformat
25 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-text/xmlformat/ChangeLog,v 1.9 2009/02/15 18:13:30 patrick Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/app-text/xmlformat/ChangeLog,v 1.10 2010/02/22 20:55:32 abcd Exp $
29 +
30 + 22 Feb 2010; Jonathan Callen <abcd@g.o> xmlformat-1.04.ebuild:
31 + Transfer prefix keywords, use `doins -r` to install documentation, use
32 + relative symlinks in /usr/bin
33
34 *xmlformat-1.04 (15 Feb 2009)
35
36
37
38
39 1.2 app-text/xmlformat/xmlformat-1.04.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/xmlformat/xmlformat-1.04.ebuild?rev=1.2&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/xmlformat/xmlformat-1.04.ebuild?rev=1.2&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/xmlformat/xmlformat-1.04.ebuild?r1=1.1&r2=1.2
44
45 Index: xmlformat-1.04.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/app-text/xmlformat/xmlformat-1.04.ebuild,v
48 retrieving revision 1.1
49 retrieving revision 1.2
50 diff -u -r1.1 -r1.2
51 --- xmlformat-1.04.ebuild 15 Feb 2009 18:13:30 -0000 1.1
52 +++ xmlformat-1.04.ebuild 22 Feb 2010 20:55:32 -0000 1.2
53 @@ -1,6 +1,6 @@
54 -# Copyright 1999-2009 Gentoo Foundation
55 +# Copyright 1999-2010 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/app-text/xmlformat/xmlformat-1.04.ebuild,v 1.1 2009/02/15 18:13:30 patrick Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/app-text/xmlformat/xmlformat-1.04.ebuild,v 1.2 2010/02/22 20:55:32 abcd Exp $
59
60 DESCRIPTION="Reformat XML documents to your custom style"
61 SRC_URI="http://www.kitebird.com/software/${PN}/${P}.tar.gz"
62 @@ -8,7 +8,7 @@
63
64 SLOT="0"
65 LICENSE="xmlformat"
66 -KEYWORDS="~amd64 ~ppc ~x86"
67 +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
68
69 DEPEND="ruby? ( virtual/ruby )
70 !ruby? ( dev-lang/perl )"
71 @@ -20,9 +20,9 @@
72 if use ruby
73 then
74 dobin xmlformat.rb
75 - dosym /usr/bin/xmlformat.rb /usr/bin/xmlformat
76 + dosym xmlformat.rb /usr/bin/xmlformat
77 else
78 - dosym /usr/bin/xmlformat.pl /usr/bin/xmlformat
79 + dosym xmlformat.pl /usr/bin/xmlformat
80 fi
81
82 dodoc BUGS ChangeLog LICENSE README TODO
83 @@ -30,7 +30,8 @@
84 if use doc
85 then
86 # APIs
87 - cp -R docs/* ${D}/usr/share/doc/${PF}
88 + insinto /usr/share/doc/${PF}
89 + doins -r docs/*
90 fi
91 }