dilfridge 15/01/09 20:32:27 Modified: ChangeLog metadata.xml Added: gwyddion-2.39.ebuild Log: Version bump, EAPI=5, python-single-r1, fixes build with Perl 5.20, bug 536150 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key EBE6A336BE19039C!)
Revision Changes Path 1.46 sci-visualization/gwyddion/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gwyddion/ChangeLog?rev=1.46&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gwyddion/ChangeLog?rev=1.46&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gwyddion/ChangeLog?r1=1.45&r2=1.46 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- ChangeLog 23 Jan 2013 10:21:53 -0000 1.45 +++ ChangeLog 9 Jan 2015 20:32:27 -0000 1.46 @@ -1,6 +1,12 @@ # ChangeLog for sci-visualization/gwyddion -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v 1.45 2013/01/23 10:21:53 jlec Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v 1.46 2015/01/09 20:32:27 dilfridge Exp $ + +*gwyddion-2.39 (09 Jan 2015) + + 09 Jan 2015; Andreas K. Huettel <dilfri...@gentoo.org> +gwyddion-2.39.ebuild: + Version bump, EAPI=5, python-single-r1, fixes build with Perl 5.20, bug + 536150 *gwyddion-2.30-r1 (23 Jan 2013) 1.7 sci-visualization/gwyddion/metadata.xml file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gwyddion/metadata.xml?rev=1.7&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gwyddion/metadata.xml?rev=1.7&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gwyddion/metadata.xml?r1=1.6&r2=1.7 Index: metadata.xml =================================================================== RCS file: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/metadata.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- metadata.xml 23 Jan 2013 10:21:53 -0000 1.6 +++ metadata.xml 9 Jan 2015 20:32:27 -0000 1.7 @@ -14,4 +14,9 @@ Enable support for <pkg>x11-libs/gtksourceview</pkg> </flag> </use> + <use> + <flag name="fits"> + Enable FITS image import via <pkg>sci-libs/cfitsio</pkg> + </flag> + </use> </pkgmetadata> 1.1 sci-visualization/gwyddion/gwyddion-2.39.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gwyddion/gwyddion-2.39.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gwyddion/gwyddion-2.39.ebuild?rev=1.1&content-type=text/plain Index: gwyddion-2.39.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/gwyddion-2.39.ebuild,v 1.1 2015/01/09 20:32:27 dilfridge Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) AUTOTOOLS_IN_SOURCE_BUILD=1 inherit autotools-utils fdo-mime gnome2-utils python-single-r1 DESCRIPTION="Framework for Scanning Mode Microscopy data analysis" HOMEPAGE="http://gwyddion.net/" SRC_URI="http://gwyddion.net/download/${PV}/${P}.tar.xz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" IUSE="doc fits fftw gnome kde nls opengl perl python ruby sourceview xml X" RDEPEND=" media-libs/libpng:0 x11-libs/cairo x11-libs/gtk+:2 x11-libs/libXmu x11-libs/pango fits? ( sci-libs/cfitsio ) fftw? ( sci-libs/fftw:3.0 ) gnome? ( gnome-base/gconf:2 ) kde? ( kde-base/kdelibs:4 ) opengl? ( virtual/opengl x11-libs/gtkglext ) perl? ( dev-lang/perl ) python? ( ${PYTHON_DEPS} dev-python/pygtk:2[${PYTHON_USEDEP}] ) ruby? ( dev-ruby/narray ) sourceview? ( x11-libs/gtksourceview:2.0 ) xml? ( dev-libs/libxml2:2 )" DEPEND="${RDEPEND} virtual/pkgconfig doc? ( dev-util/gtk-doc ) " REQUIRED_USE="${PYTHON_REQUIRED_USE}" MAKEOPTS+=" V=1" pkg_setup() { use python && python-single-r1_pkg_setup } src_configure() { local myeconfargs=( --disable-rpath $(use_enable doc gtk-doc) $(use_enable nls) $(use_enable python pygwy) $(use_enable fits cfitsio) $(use_with perl) $(use_with python) $(use_with ruby) $(use_with fftw fftw3) $(use_with opengl gl) \ $(use_with sourceview gtksourceview) $(use_with xml libxml2) $(use_with X x) $(use_with kde kde4-thumbnailer) ) autotools-utils_src_configure } src_install() { autotools-utils_src_install use python && dodoc modules/pygwy/README.pygwy } pkg_postinst() { use gnome && gnome2_gconf_install fdo-mime_desktop_database_update } pkg_prerm() { use gnome && gnome2_gconf_uninstall } pkg_postrm() { fdo-mime_desktop_database_update }