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.28.ebuild
Date: Wed, 06 Jun 2012 18:52:10
Message-Id: 20120606185155.D3E552004C@flycatcher.gentoo.org
1 bicatali 12/06/06 18:51:55
2
3 Modified: ChangeLog
4 Added: gwyddion-2.28.ebuild
5 Log:
6 Version bump. Forcing in source building, hopefully fixing bug #419899
7
8 (Portage version: 2.1.10.63/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.37 sci-visualization/gwyddion/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gwyddion/ChangeLog?rev=1.37&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gwyddion/ChangeLog?rev=1.37&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gwyddion/ChangeLog?r1=1.36&r2=1.37
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v
20 retrieving revision 1.36
21 retrieving revision 1.37
22 diff -u -r1.36 -r1.37
23 --- ChangeLog 4 May 2012 08:07:00 -0000 1.36
24 +++ ChangeLog 6 Jun 2012 18:51:55 -0000 1.37
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.36 2012/05/04 08:07:00 jdhore Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v 1.37 2012/06/06 18:51:55 bicatali Exp $
30 +
31 +*gwyddion-2.28 (06 Jun 2012)
32 +
33 + 06 Jun 2012; Sébastien Fabbro <bicatali@g.o> +gwyddion-2.28.ebuild:
34 + Version bump. Forcing in source building, hopefully fixing bug #419899
35
36 04 May 2012; Jeff Horelick <jdhore@g.o> gwyddion-2.25.ebuild,
37 gwyddion-2.27.ebuild:
38
39
40
41 1.1 sci-visualization/gwyddion/gwyddion-2.28.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gwyddion/gwyddion-2.28.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gwyddion/gwyddion-2.28.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gwyddion-2.28.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.28.ebuild,v 1.1 2012/06/06 18:51:55 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"
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 pkg_setup() {
88 use python && python_set_active_version 2
89 }
90
91 src_prepare() {
92 epatch "${FILESDIR}"/${PN}-2.25-libpng15.patch
93 }
94
95 src_configure() {
96 local myeconfargs+=(
97 --disable-rpath
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 autotools-utils_src_configure
112 }
113
114 src_install() {
115 autotools-utils_src_install
116 use python && dodoc modules/pygwy/README.pygwy
117 }
118
119 pkg_postinst() {
120 use gnome && gnome2_gconf_install
121 fdo-mime_desktop_database_update
122 }
123
124 pkg_prerm() {
125 use gnome && gnome2_gconf_uninstall
126 }
127
128 pkg_postrm() {
129 fdo-mime_desktop_database_update
130 }