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: ChangeLog alexandria-0.6.8.ebuild
Date: Mon, 26 Dec 2011 10:57:09
Message-Id: 20111226105658.8C6932004B@flycatcher.gentoo.org
1 fauli 11/12/26 10:56:58
2
3 Modified: ChangeLog
4 Added: alexandria-0.6.8.ebuild
5 Log:
6 version bump for newer Ruby GTK versions, patch and information provided by Tomoh K. in bug 395117.
7
8 (Portage version: 2.1.10.41/cvs/Linux i686)
9
10 Revision Changes Path
11 1.47 app-misc/alexandria/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/alexandria/ChangeLog?rev=1.47&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/alexandria/ChangeLog?rev=1.47&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/alexandria/ChangeLog?r1=1.46&r2=1.47
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-misc/alexandria/ChangeLog,v
20 retrieving revision 1.46
21 retrieving revision 1.47
22 diff -u -r1.46 -r1.47
23 --- ChangeLog 13 Dec 2011 19:26:15 -0000 1.46
24 +++ ChangeLog 26 Dec 2011 10:56:58 -0000 1.47
25 @@ -1,6 +1,13 @@
26 # ChangeLog for app-misc/alexandria
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-misc/alexandria/ChangeLog,v 1.46 2011/12/13 19:26:15 fauli Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-misc/alexandria/ChangeLog,v 1.47 2011/12/26 10:56:58 fauli Exp $
30 +
31 +*alexandria-0.6.8 (26 Dec 2011)
32 +
33 + 26 Dec 2011; Christian Faulhammer <fauli@g.o>
34 + +alexandria-0.6.8.ebuild, +files/alexandria-0.6.8-set_status_label.patch:
35 + version bump for newer Ruby GTK versions, patch and information provided
36 + by Tomoh K. in bug 395117.
37
38 *alexandria-0.6.7 (13 Dec 2011)
39
40
41
42
43 1.1 app-misc/alexandria/alexandria-0.6.8.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/alexandria/alexandria-0.6.8.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/alexandria/alexandria-0.6.8.ebuild?rev=1.1&content-type=text/plain
47
48 Index: alexandria-0.6.8.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-misc/alexandria/alexandria-0.6.8.ebuild,v 1.1 2011/12/26 10:56:58 fauli Exp $
53
54 EAPI=4
55 USE_RUBY="ruby18"
56
57 inherit gnome2 ruby-ng
58
59 DESCRIPTION="A GNOME application to help you manage your book collection"
60 HOMEPAGE="http://alexandria.rubyforge.org/"
61 SRC_URI="mirror://rubyforge/${PN}/${PN}-${PV}.tar.gz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="evo"
67
68 DOCS="ChangeLog README TODO doc/BUGS doc/cuecat_support.rdoc doc/FAQ doc/HACKING doc/NEWS"
69
70 ruby_add_rdepend "
71 >=dev-ruby/ruby-gettext-0.6.1
72 >=dev-ruby/ruby-gtk2-0.90
73 >=dev-ruby/ruby-goocanvas-0.90
74 >=dev-ruby/ruby-gstreamer-0.90
75 >=dev-ruby/ruby-pango-0.90
76 >=dev-ruby/imagesize-0.1.1
77 dev-ruby/hpricot
78 evo? ( >=dev-ruby/revolution-0.5 )"
79
80 ruby_add_bdepend "dev-ruby/rake"
81
82 DEPEND="${DEPEND}
83 gnome-base/gconf:2
84 app-text/scrollkeeper"
85
86 RUBY_PATCHES=(
87 "${FILESDIR}/${P}-set_status_label.patch"
88 "${FILESDIR}/${PN}-0.6.6-Rakefile.patch"
89 )
90
91 each_ruby_compile() {
92 ${RUBY} -S rake || die
93 }
94
95 each_ruby_install() {
96 export DESTDIR="${D}" PREFIX=/usr RUBYLIBDIR="$(ruby_rbconfig_value 'sitelibdir')"
97 ${RUBY} -S rake install_package_staging || die
98 }
99
100 all_ruby_install() {
101 [ -n "${DOCS}" ] && dodoc ${DOCS} || die "Failed to install documentation"
102 }
103
104 pkg_postinst() {
105 unset PREFIX
106
107 gnome2_gconf_install
108
109 # For the next line see bug #76726
110 "${ROOT}/usr/bin/gconftool-2" --shutdown
111
112 echo
113 elog "To enable some book providers you will need to emerge"
114 elog "additional packages:"
115 echo
116 elog " For the Deastore book provider:"
117 elog " dev-ruby/htmlentities"
118 echo
119 elog " For Z39.50 support and the Library of Congress and"
120 elog " British Library book proviers:"
121 elog " dev-ruby/ruby-zoom"
122 }