summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2012-12-06 10:11:45 +0000
committerJustin Lecher <jlec@gentoo.org>2012-12-06 10:11:45 +0000
commit958736f6fb0a83797a52c2d09dc21a22a5d00240 (patch)
tree692412befb9b4e941a90734413a89281ed126527 /sci-visualization
parentIntroduce NO_WAF_LIBDIR to allow building packages that fails when libdir is ... (diff)
downloadgentoo-2-958736f6fb0a83797a52c2d09dc21a22a5d00240.tar.gz
gentoo-2-958736f6fb0a83797a52c2d09dc21a22a5d00240.tar.bz2
gentoo-2-958736f6fb0a83797a52c2d09dc21a22a5d00240.zip
sci-visualization/gwyddion: Drop old
(Portage version: 2.2.0_alpha144/cvs/Linux x86_64, signed Manifest commit with key 70EB7916)
Diffstat (limited to 'sci-visualization')
-rw-r--r--sci-visualization/gwyddion/ChangeLog5
-rw-r--r--sci-visualization/gwyddion/gwyddion-2.25.ebuild85
2 files changed, 4 insertions, 86 deletions
diff --git a/sci-visualization/gwyddion/ChangeLog b/sci-visualization/gwyddion/ChangeLog
index 4b819b177d9f..1bd0b44d0ce0 100644
--- a/sci-visualization/gwyddion/ChangeLog
+++ b/sci-visualization/gwyddion/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sci-visualization/gwyddion
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v 1.43 2012/12/06 04:22:09 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v 1.44 2012/12/06 10:11:45 jlec Exp $
+
+ 06 Dec 2012; Justin Lecher <jlec@gentoo.org> -gwyddion-2.25.ebuild:
+ Drop old
06 Dec 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> gwyddion-2.29.ebuild:
x86 stable wrt bug #442060
diff --git a/sci-visualization/gwyddion/gwyddion-2.25.ebuild b/sci-visualization/gwyddion/gwyddion-2.25.ebuild
deleted file mode 100644
index 50d8c5199649..000000000000
--- a/sci-visualization/gwyddion/gwyddion-2.25.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/gwyddion-2.25.ebuild,v 1.7 2012/05/04 08:07:00 jdhore Exp $
-
-EAPI=2
-
-PYTHON_DEPEND="python? 2"
-
-inherit eutils fdo-mime gnome2-utils python
-
-DESCRIPTION="A software framework for SPM data analysis"
-HOMEPAGE="http://gwyddion.net/"
-SRC_URI="http://gwyddion.net/download/${PV}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc fftw gnome kde nls opengl perl python ruby sourceview xml X"
-
-RDEPEND="
- media-libs/libpng
- x11-libs/cairo
- x11-libs/gtk+:2
- x11-libs/libXmu
- x11-libs/pango
- fftw? ( >=sci-libs/fftw-3 )
- gnome? ( gnome-base/gconf:2 )
- kde? ( >=kde-base/kdelibs-4 )
- opengl? ( virtual/opengl x11-libs/gtkglext )
- perl? ( dev-lang/perl )
- python? ( dev-python/pygtk:2 )
- ruby? ( dev-ruby/narray )
- sourceview? ( x11-libs/gtksourceview:2.0 )
- xml? ( dev-libs/libxml2:2 )"
-
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- doc? ( dev-util/gtk-doc )"
-
-pkg_setup() {
- use python && python_set_active_version 2
-}
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-libpng15.patch
-}
-
-src_configure() {
- econf \
- --disable-desktop-file-update \
- --disable-rpath \
- --enable-library-bloat \
- --enable-plugin-proxy \
- $(use_enable doc gtk-doc) \
- $(use_enable nls) \
- $(use_enable python pygwy) \
- $(use_with perl) \
- $(use_with python) \
- $(use_with ruby) \
- $(use_with fftw fftw3) \
- $(use_with opengl gl) \
- $(use_with sourceview gtksourceview) \
- $(use_with xml spml) \
- $(use_with X x) \
- $(use_with kde kde4-thumbnailer)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc AUTHORS ChangeLog NEWS README THANKS TODO
- 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
-}