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