Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/docbook-xsl-ns-stylesheets: ChangeLog docbook-xsl-ns-stylesheets-1.76.0.ebuild
Date: Sat, 04 Sep 2010 15:18:46
Message-Id: 20100904151841.A38A120051@flycatcher.gentoo.org
1 flameeyes 10/09/04 15:18:41
2
3 Modified: ChangeLog
4 Added: docbook-xsl-ns-stylesheets-1.76.0.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2_rc74/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.21 app-text/docbook-xsl-ns-stylesheets/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/docbook-xsl-ns-stylesheets/ChangeLog?rev=1.21&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/docbook-xsl-ns-stylesheets/ChangeLog?rev=1.21&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/docbook-xsl-ns-stylesheets/ChangeLog?r1=1.20&r2=1.21
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-text/docbook-xsl-ns-stylesheets/ChangeLog,v
20 retrieving revision 1.20
21 retrieving revision 1.21
22 diff -u -r1.20 -r1.21
23 --- ChangeLog 21 Aug 2010 19:59:29 -0000 1.20
24 +++ ChangeLog 4 Sep 2010 15:18:41 -0000 1.21
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-text/docbook-xsl-ns-stylesheets
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-text/docbook-xsl-ns-stylesheets/ChangeLog,v 1.20 2010/08/21 19:59:29 flameeyes Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-text/docbook-xsl-ns-stylesheets/ChangeLog,v 1.21 2010/09/04 15:18:41 flameeyes Exp $
30 +
31 +*docbook-xsl-ns-stylesheets-1.76.0 (04 Sep 2010)
32 +
33 + 04 Sep 2010; Diego E. Pettenò <flameeyes@g.o>
34 + +docbook-xsl-ns-stylesheets-1.76.0.ebuild:
35 + Version bump.
36
37 21 Aug 2010; Diego E. Pettenò <flameeyes@g.o>
38 -docbook-xsl-ns-stylesheets-1.74.0.ebuild,
39
40
41
42 1.1 app-text/docbook-xsl-ns-stylesheets/docbook-xsl-ns-stylesheets-1.76.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/docbook-xsl-ns-stylesheets/docbook-xsl-ns-stylesheets-1.76.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/docbook-xsl-ns-stylesheets/docbook-xsl-ns-stylesheets-1.76.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: docbook-xsl-ns-stylesheets-1.76.0.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-text/docbook-xsl-ns-stylesheets/docbook-xsl-ns-stylesheets-1.76.0.ebuild,v 1.1 2010/09/04 15:18:41 flameeyes Exp $
52
53 DESCRIPTION="XSL Stylesheets for Docbook"
54 HOMEPAGE="http://wiki.docbook.org/topic/DocBookXslStylesheets"
55 SRC_URI="mirror://sourceforge/docbook/docbook-xsl-ns-${PV}.tar.bz2"
56
57 LICENSE="BSD"
58 SLOT="0"
59 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
60 IUSE=""
61
62 RDEPEND=">=app-text/build-docbook-catalog-1.4"
63
64 S=${WORKDIR}/docbook-xsl-ns-${PV}
65
66 # Makefile is broken in this release
67 RESTRICT=test
68
69 # The makefile runs tests, not builds.
70 src_compile() { :; }
71
72 src_test() {
73 emake check || die "test failed"
74 }
75
76 src_install() {
77 # Create the installation directory
78 DEST="/usr/share/sgml/docbook/xsl-ns-stylesheets"
79 insinto ${DEST}
80
81 local i
82 for sheet in $(find . -maxdepth 1 -mindepth 1 -type d); do
83 i=$(basename $sheet)
84 cd "${S}"/${i}
85 for doc in ChangeLog README; do
86 if [ -e "$doc" ]; then
87 mv ${doc} ${doc}.${i}
88 dodoc ${doc}.${i}
89 rm ${doc}.${i}
90 fi
91 done
92
93 doins -r "${S}"/${i}
94 done
95
96 # Install misc. docs
97 # The changelog is now zipped, and copied as the RELEASE-NOTES, so we
98 # don't need to install it
99 cd "${S}"
100 dodoc AUTHORS BUGS NEWS README RELEASE-NOTES.txt TODO
101 doins VERSION
102 }
103
104 pkg_postinst() {
105 build-docbook-catalog
106 }
107
108 pkg_postrm() {
109 build-docbook-catalog
110 }