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.30.ebuild ChangeLog
Date: Fri, 30 Nov 2012 05:52:09
Message-Id: 20121130055157.336F320C65@flycatcher.gentoo.org
1 bicatali 12/11/30 05:51:57
2
3 Modified: ChangeLog
4 Added: gwyddion-2.30.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.01.21313-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
9
10 Revision Changes Path
11 1.42 sci-visualization/gwyddion/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gwyddion/ChangeLog?rev=1.42&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gwyddion/ChangeLog?rev=1.42&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gwyddion/ChangeLog?r1=1.41&r2=1.42
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v
20 retrieving revision 1.41
21 retrieving revision 1.42
22 diff -u -r1.41 -r1.42
23 --- ChangeLog 30 Nov 2012 05:29:17 -0000 1.41
24 +++ ChangeLog 30 Nov 2012 05:51:57 -0000 1.42
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-visualization/gwyddion
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v 1.41 2012/11/30 05:29:17 bicatali Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v 1.42 2012/11/30 05:51:57 bicatali Exp $
30 +
31 +*gwyddion-2.30 (30 Nov 2012)
32 +
33 + 30 Nov 2012; Sébastien Fabbro <bicatali@g.o> +gwyddion-2.30.ebuild:
34 + Version bump
35
36 30 Nov 2012; Sébastien Fabbro <bicatali@g.o> -gwyddion-2.28.ebuild,
37 gwyddion-2.29.ebuild:
38
39
40
41 1.1 sci-visualization/gwyddion/gwyddion-2.30.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gwyddion/gwyddion-2.30.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gwyddion/gwyddion-2.30.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gwyddion-2.30.ebuild
47 ===================================================================
48 # Copyright 1999-2012 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.30.ebuild,v 1.1 2012/11/30 05:51:57 bicatali Exp $
51
52 EAPI=4
53
54 PYTHON_DEPEND="python? 2"
55 AUTOTOOLS_IN_SOURCE_BUILD=1
56
57 inherit eutils fdo-mime gnome2-utils python autotools-utils
58
59 DESCRIPTION="Framework for Scanning Mode Microscopy data analysis"
60 HOMEPAGE="http://gwyddion.net/"
61 SRC_URI="http://gwyddion.net/download/${PV}/${P}.tar.xz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
66 IUSE="doc fftw gnome kde nls opengl perl python ruby sourceview xml X"
67
68 RDEPEND="media-libs/libpng
69 x11-libs/cairo
70 x11-libs/gtk+:2
71 x11-libs/libXmu
72 x11-libs/pango
73 fftw? ( >=sci-libs/fftw-3 )
74 gnome? ( gnome-base/gconf:2 )
75 kde? ( >=kde-base/kdelibs-4 )
76 opengl? ( virtual/opengl x11-libs/gtkglext )
77 perl? ( dev-lang/perl )
78 python? ( dev-python/pygtk:2 )
79 ruby? ( dev-ruby/narray )
80 sourceview? ( x11-libs/gtksourceview:2.0 )
81 xml? ( dev-libs/libxml2:2 )"
82
83 DEPEND="${RDEPEND}
84 virtual/pkgconfig
85 doc? ( dev-util/gtk-doc )"
86
87 MAKEOPTS+=" V=1"
88
89 pkg_setup() {
90 use python && python_set_active_version 2
91 }
92
93 src_prepare() {
94 epatch "${FILESDIR}"/${PN}-2.25-libpng15.patch
95 }
96
97 src_configure() {
98 local myeconfargs=(
99 --disable-rpath
100 $(use_enable doc gtk-doc)
101 $(use_enable nls)
102 $(use_enable python pygwy)
103 $(use_with perl)
104 $(use_with python)
105 $(use_with ruby)
106 $(use_with fftw fftw3)
107 $(use_with opengl gl) \
108 $(use_with sourceview gtksourceview)
109 $(use_with xml libxml2)
110 $(use_with X x)
111 $(use_with kde kde4-thumbnailer)
112 )
113 autotools-utils_src_configure
114 }
115
116 src_install() {
117 autotools-utils_src_install
118 use python && dodoc modules/pygwy/README.pygwy
119 }
120
121 pkg_postinst() {
122 use gnome && gnome2_gconf_install
123 fdo-mime_desktop_database_update
124 }
125
126 pkg_prerm() {
127 use gnome && gnome2_gconf_uninstall
128 }
129
130 pkg_postrm() {
131 fdo-mime_desktop_database_update
132 }