Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-visualization/gwyddion: gwyddion-2.24.ebuild ChangeLog
Date: Tue, 03 May 2011 05:40:26
Message-Id: 20110503054015.76E5020054@flycatcher.gentoo.org
1 bicatali 11/05/03 05:40:15
2
3 Modified: ChangeLog
4 Added: gwyddion-2.24.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.1.9.46/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.27 sci-visualization/gwyddion/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gwyddion/ChangeLog?rev=1.27&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gwyddion/ChangeLog?rev=1.27&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gwyddion/ChangeLog?r1=1.26&r2=1.27
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v
20 retrieving revision 1.26
21 retrieving revision 1.27
22 diff -u -r1.26 -r1.27
23 --- ChangeLog 5 Apr 2011 05:36:05 -0000 1.26
24 +++ ChangeLog 3 May 2011 05:40:15 -0000 1.27
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-visualization/gwyddion
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v 1.26 2011/04/05 05:36:05 ulm Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v 1.27 2011/05/03 05:40:15 bicatali Exp $
30 +
31 +*gwyddion-2.24 (03 May 2011)
32 +
33 + 03 May 2011; Sébastien Fabbro <bicatali@g.o> +gwyddion-2.24.ebuild:
34 + Version bump
35
36 05 Apr 2011; Ulrich Mueller <ulm@g.o> gwyddion-2.10.ebuild:
37 Depend on dev-lang/python because virtual/python will go away, bug 358849.
38
39
40
41 1.1 sci-visualization/gwyddion/gwyddion-2.24.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gwyddion/gwyddion-2.24.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gwyddion/gwyddion-2.24.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gwyddion-2.24.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/gwyddion-2.24.ebuild,v 1.1 2011/05/03 05:40:15 bicatali Exp $
51
52 EAPI=2
53
54 PYTHON_DEPEND="python? 2"
55
56 inherit fdo-mime gnome2-utils python
57
58 DESCRIPTION="A software framework for SPM data analysis"
59 HOMEPAGE="http://gwyddion.net/"
60 SRC_URI="http://gwyddion.net/download/${PV}/${P}.tar.bz2"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="doc fftw gnome kde nls opengl perl python ruby sourceview xml X"
66
67 RDEPEND="
68 x11-libs/gtk+:2
69 x11-libs/cairo
70 x11-libs/pango
71 x11-libs/libXmu
72 fftw? ( >=sci-libs/fftw-3 )
73 gnome? ( gnome-base/gconf:2 )
74 kde? ( >=kde-base/kdelibs-4 )
75 opengl? ( virtual/opengl x11-libs/gtkglext )
76 perl? ( dev-lang/perl )
77 python? ( dev-python/pygtk:2 )
78 ruby? ( dev-ruby/narray )
79 sourceview? ( x11-libs/gtksourceview:2.0 )
80 xml? ( dev-libs/libxml2:2 )"
81
82 DEPEND="${RDEPEND}
83 dev-util/pkgconfig
84 doc? ( dev-util/gtk-doc )"
85
86 pkg_setup() {
87 use python && python_set_active_version 2
88 }
89
90 src_configure() {
91 econf \
92 --disable-desktop-file-update \
93 --disable-rpath \
94 --enable-library-bloat \
95 --enable-plugin-proxy \
96 $(use_enable doc gtk-doc) \
97 $(use_enable nls) \
98 $(use_enable python pygwy) \
99 $(use_with perl) \
100 $(use_with python) \
101 $(use_with ruby) \
102 $(use_with fftw fftw3) \
103 $(use_with opengl gl) \
104 $(use_with sourceview gtksourceview) \
105 $(use_with xml spml) \
106 $(use_with X x) \
107 $(use_with kde kde4-thumbnailer)
108 }
109
110 src_install() {
111 emake DESTDIR="${D}" install || die "emake install failed"
112 dodoc AUTHORS ChangeLog NEWS README THANKS TODO
113 use python && dodoc modules/pygwy/README.pygwy
114 }
115
116 pkg_postinst() {
117 use gnome && gnome2_gconf_install
118 fdo-mime_desktop_database_update
119 }
120
121 pkg_prerm() {
122 use gnome && gnome2_gconf_uninstall
123 }
124
125 pkg_postrm() {
126 fdo-mime_desktop_database_update
127 }