Gentoo Archives: gentoo-commits

From: "Christian Faulhammer (fauli)" <fauli@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/alexandria: alexandria-0.6.5.ebuild ChangeLog
Date: Mon, 24 Aug 2009 18:55:19
Message-Id: E1MfehJ-0005pN-MN@stork.gentoo.org
1 fauli 09/08/24 18:55:17
2
3 Modified: ChangeLog
4 Added: alexandria-0.6.5.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.6.13/cvs/Linux i686)
8
9 Revision Changes Path
10 1.32 app-misc/alexandria/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/alexandria/ChangeLog?rev=1.32&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/alexandria/ChangeLog?rev=1.32&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/alexandria/ChangeLog?r1=1.31&r2=1.32
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-misc/alexandria/ChangeLog,v
19 retrieving revision 1.31
20 retrieving revision 1.32
21 diff -u -r1.31 -r1.32
22 --- ChangeLog 24 Aug 2009 18:44:25 -0000 1.31
23 +++ ChangeLog 24 Aug 2009 18:55:17 -0000 1.32
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-misc/alexandria
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-misc/alexandria/ChangeLog,v 1.31 2009/08/24 18:44:25 graaff Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-misc/alexandria/ChangeLog,v 1.32 2009/08/24 18:55:17 fauli Exp $
29 +
30 +*alexandria-0.6.5 (24 Aug 2009)
31 +
32 + 24 Aug 2009; Christian Faulhammer <fauli@g.o>
33 + +alexandria-0.6.5.ebuild:
34 + version bump
35
36 24 Aug 2009; Hans de Graaff <graaff@g.o> -alexandria-0.5.1.ebuild:
37 Remove old version that still depended on the now gone
38
39
40
41 1.1 app-misc/alexandria/alexandria-0.6.5.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/alexandria/alexandria-0.6.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/alexandria/alexandria-0.6.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: alexandria-0.6.5.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-misc/alexandria/alexandria-0.6.5.ebuild,v 1.1 2009/08/24 18:55:17 fauli Exp $
51
52 inherit gnome2 ruby
53
54 DESCRIPTION="A GNOME application to help you manage your book collection"
55 HOMEPAGE="http://alexandria.rubyforge.org/"
56 SRC_URI="mirror://rubyforge/${PN}/${PN}-${PV}.tar.gz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ppc ~x86"
61 IUSE="evo"
62
63 DOCS="ChangeLog README TODO"
64
65 RDEPEND=">=dev-lang/ruby-1.8.0
66 >=dev-ruby/ruby-gettext-0.6.1
67 >=dev-ruby/ruby-gnome2-0.16.0
68 >=dev-ruby/ruby-libglade2-0.12.0
69 >=dev-ruby/ruby-gconf2-0.12.0
70 >=dev-ruby/imagesize-0.1.1
71 dev-ruby/hpricot
72 evo? ( >=dev-ruby/revolution-0.5 )"
73
74 DEPEND=">=dev-lang/ruby-1.8.0
75 app-text/scrollkeeper
76 dev-ruby/rake"
77
78 PATCHES=(
79 "${FILESDIR}/${PN}-rakefile.patch"
80 )
81
82 src_compile() {
83 rake || die
84 }
85
86 src_install() {
87 export PREFIX="${D}/usr"
88 rake install || die
89
90 [ -n "${DOCS}" ] && dodoc ${DOCS}
91
92 # Move the installed docs to the gentoo standard directory
93 for doc in "${D}/usr/share/doc/alexandria/*"
94 do
95 dodoc $doc
96 done
97 rm -rf "${D}/usr/share/doc/alexandria"
98 }
99
100 pkg_postinst() {
101 unset PREFIX
102
103 gnome2_gconf_install
104
105 # For the next line see bug #76726
106 "${ROOT}/usr/bin/gconftool-2" --shutdown
107
108 echo
109 elog "To enable some book providers you will need to emerge"
110 elog "additional packages:"
111 echo
112 elog " For the Deastore book provider:"
113 elog " dev-ruby/htmlentities"
114 echo
115 elog " For Z39.50 support and the Library of Congress and"
116 elog " British Library book proviers:"
117 elog " dev-ruby/ruby-zoom"
118 }