Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-chemistry/gchemutils: gchemutils-0.13.1.ebuild ChangeLog
Date: Thu, 25 Nov 2010 13:06:55
Message-Id: 20101125130507.F149520051@flycatcher.gentoo.org
1 xarthisius 10/11/25 13:05:07
2
3 Modified: ChangeLog
4 Added: gchemutils-0.13.1.ebuild
5 Log:
6 Version bump. Fixes #271998, #342743 and #345095. Thanks to urcindalo and Diego Elio Pettenò for the reports. Thanks to Argon <argonovsky@×××××.com> for his work on new ebuild
7
8 (Portage version: 2.1.9.24/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.13 sci-chemistry/gchemutils/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/gchemutils/ChangeLog?rev=1.13&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/gchemutils/ChangeLog?rev=1.13&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/gchemutils/ChangeLog?r1=1.12&r2=1.13
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/gchemutils/ChangeLog,v
20 retrieving revision 1.12
21 retrieving revision 1.13
22 diff -u -r1.12 -r1.13
23 --- ChangeLog 16 May 2010 02:59:01 -0000 1.12
24 +++ ChangeLog 25 Nov 2010 13:05:07 -0000 1.13
25 @@ -1,6 +1,14 @@
26 # ChangeLog for sci-chemistry/gchemutils
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gchemutils/ChangeLog,v 1.12 2010/05/16 02:59:01 je_fro Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gchemutils/ChangeLog,v 1.13 2010/11/25 13:05:07 xarthisius Exp $
30 +
31 +*gchemutils-0.13.1 (25 Nov 2010)
32 +
33 + 25 Nov 2010; Kacper Kowalik <xarthisius@g.o>
34 + +gchemutils-0.13.1.ebuild:
35 + Version bump. Fixes #271998, #342743 and #345095. Thanks to urcindalo and
36 + Diego Elio Pettenò for the reports. Thanks to Argon <argonovsky@×××××.com>
37 + for his work on version bump.
38
39 16 May 2010; Jeff Gardner <je_fro@g.o> gchemutils-0.10.12.ebuild:
40 Removing gnome USE flag from libgsf and goffice.
41
42
43
44 1.1 sci-chemistry/gchemutils/gchemutils-0.13.1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/gchemutils/gchemutils-0.13.1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/gchemutils/gchemutils-0.13.1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: gchemutils-0.13.1.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gchemutils/gchemutils-0.13.1.ebuild,v 1.1 2010/11/25 13:05:07 xarthisius Exp $
54
55 EAPI=3
56
57 inherit gnome2 multilib versionator
58
59 MPV=$(get_version_component_range 1-2)
60 MY_PN=gnome-chemistry-utils
61 MY_P=${MY_PN}-${PV}
62
63 DESCRIPTION="C++ classes and Gtk+-2 widgets related to chemistry"
64 HOMEPAGE="http://www.nongnu.org/gchemutils/"
65 SRC_URI="http://download.savannah.gnu.org/releases/${PN}/${MPV}/${MY_P}.tar.bz2"
66
67 LICENSE="GPL-2"
68 SLOT="0"
69 KEYWORDS="~amd64 ~x86"
70 IUSE="nls nsplugin"
71
72 CDEPEND="gnome-base/libglade
73 x11-libs/goffice
74 x11-libs/gtkglext
75 sci-chemistry/chemical-mime-data
76 sci-chemistry/bodr
77 sci-chemistry/openbabel
78 nsplugin? ( || (
79 net-libs/xulrunner
80 www-client/firefox
81 ) )"
82 RDEPEND="${CDEPEND}
83 gnome-extra/yelp" #271998
84 DEPEND="${CDEPEND}
85 app-text/gnome-doc-utils
86 dev-util/pkgconfig
87 nls? ( sys-devel/gettext )"
88
89 S=${WORKDIR}/${MY_P}
90
91 pkg_setup() {
92 G2CONF="${G2CONF}
93 --disable-schemas-install
94 --disable-scrollkeeper
95 --disable-dependency-tracking
96 --disable-update-databases
97 $(use_enable nsplugin mozilla-plugin)
98 $(use_enable nls)"
99
100 if use nsplugin; then
101 G2CONF="${G2CONF} --with-mozilla-libdir=/usr/$(get_libdir)/nsbrowser/"
102 fi
103
104 DOCS="AUTHORS ChangeLog README TODO NEWS"
105 }
106
107 src_test() {
108 # There are no tests, and make check needlessly rebuilds docs needing extra
109 # app-text/docbook-xml-dtd-{4.1.2,4.5} wtr bug 342743
110 true
111 }
112
113 src_install() {
114 gnome2_src_install
115 find "${D}" -name "*.la" -delete
116 }
117
118 pkg_postinst() {
119 gnome2_pkg_postinst
120 elog "You can safely ignore any 'Unknown media type in type blah' warnings above."
121 elog "For more info see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=420795 "
122 }