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-stylesheets: docbook-xsl-stylesheets-1.76.0.ebuild ChangeLog
Date: Sat, 04 Sep 2010 15:15:09
Message-Id: 20100904151501.4204020051@flycatcher.gentoo.org
1 flameeyes 10/09/04 15:15:01
2
3 Modified: ChangeLog
4 Added: docbook-xsl-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.103 app-text/docbook-xsl-stylesheets/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/docbook-xsl-stylesheets/ChangeLog?rev=1.103&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/docbook-xsl-stylesheets/ChangeLog?rev=1.103&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/docbook-xsl-stylesheets/ChangeLog?r1=1.102&r2=1.103
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-text/docbook-xsl-stylesheets/ChangeLog,v
20 retrieving revision 1.102
21 retrieving revision 1.103
22 diff -u -r1.102 -r1.103
23 --- ChangeLog 18 Aug 2010 16:46:07 -0000 1.102
24 +++ ChangeLog 4 Sep 2010 15:15:01 -0000 1.103
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-text/docbook-xsl-stylesheets
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-text/docbook-xsl-stylesheets/ChangeLog,v 1.102 2010/08/18 16:46:07 grobian Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-text/docbook-xsl-stylesheets/ChangeLog,v 1.103 2010/09/04 15:15:01 flameeyes Exp $
30 +
31 +*docbook-xsl-stylesheets-1.76.0 (04 Sep 2010)
32 +
33 + 04 Sep 2010; Diego E. Pettenò <flameeyes@g.o>
34 + +docbook-xsl-stylesheets-1.76.0.ebuild:
35 + Version bump.
36
37 18 Aug 2010; Fabian Groffen <grobian@g.o>
38 docbook-xsl-stylesheets-1.75.2.ebuild:
39
40
41
42 1.1 app-text/docbook-xsl-stylesheets/docbook-xsl-stylesheets-1.76.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/docbook-xsl-stylesheets/docbook-xsl-stylesheets-1.76.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/docbook-xsl-stylesheets/docbook-xsl-stylesheets-1.76.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: docbook-xsl-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-stylesheets/docbook-xsl-stylesheets-1.76.0.ebuild,v 1.1 2010/09/04 15:15:01 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-${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 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
60 IUSE=""
61
62 RDEPEND=">=app-text/build-docbook-catalog-1.1"
63
64 S=${WORKDIR}/docbook-xsl-${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-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 }