diff options
author | Markus Dittrich <markusle@gentoo.org> | 2008-01-07 14:18:20 +0000 |
---|---|---|
committer | Markus Dittrich <markusle@gentoo.org> | 2008-01-07 14:18:20 +0000 |
commit | 74f9fd59db904cb321a86472a99a647c038444e6 (patch) | |
tree | ba6152af36e3a2e1fdfeae0b8005162c9e91a5a3 | |
parent | Remove old version and leave one ebuild behind for mips wrt #200106 (diff) | |
download | gentoo-2-74f9fd59db904cb321a86472a99a647c038444e6.tar.gz gentoo-2-74f9fd59db904cb321a86472a99a647c038444e6.tar.bz2 gentoo-2-74f9fd59db904cb321a86472a99a647c038444e6.zip |
Version bump.
(Portage version: 2.1.4_rc14)
-rw-r--r-- | sci-visualization/gwyddion/ChangeLog | 7 | ||||
-rw-r--r-- | sci-visualization/gwyddion/files/digest-gwyddion-2.9 | 3 | ||||
-rw-r--r-- | sci-visualization/gwyddion/gwyddion-2.9.ebuild | 38 |
3 files changed, 47 insertions, 1 deletions
diff --git a/sci-visualization/gwyddion/ChangeLog b/sci-visualization/gwyddion/ChangeLog index d115cd8bc595..8aac1ea62bae 100644 --- a/sci-visualization/gwyddion/ChangeLog +++ b/sci-visualization/gwyddion/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-visualization/gwyddion # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v 1.10 2008/01/07 12:00:43 markusle Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v 1.11 2008/01/07 14:18:19 markusle Exp $ + +*gwyddion-2.9 (07 Jan 2008) + + 07 Jan 2008; Markus Dittrich <markusle@gentoo.org> +gwyddion-2.9.ebuild: + Version bump. 07 Jan 2008; Markus Dittrich <markusle@gentoo.org> gwyddion-2.5.ebuild: Added pkconfig dependency (fixes bug #204722). diff --git a/sci-visualization/gwyddion/files/digest-gwyddion-2.9 b/sci-visualization/gwyddion/files/digest-gwyddion-2.9 new file mode 100644 index 000000000000..bc260cadb03f --- /dev/null +++ b/sci-visualization/gwyddion/files/digest-gwyddion-2.9 @@ -0,0 +1,3 @@ +MD5 6f5c3448749822962211347168123cf3 gwyddion-2.9.tar.bz2 2330381 +RMD160 9d9dfea2fe6e72c1b716d86720d79317308caf1b gwyddion-2.9.tar.bz2 2330381 +SHA256 e619f2a0a7a8d1bf37b982893e3953b5d4a77a729716442504b9ca1485c983ff gwyddion-2.9.tar.bz2 2330381 diff --git a/sci-visualization/gwyddion/gwyddion-2.9.ebuild b/sci-visualization/gwyddion/gwyddion-2.9.ebuild new file mode 100644 index 000000000000..69b1de6a2853 --- /dev/null +++ b/sci-visualization/gwyddion/gwyddion-2.9.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/gwyddion-2.9.ebuild,v 1.1 2008/01/07 14:18:19 markusle Exp $ + +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="python perl ruby nls" + +DEPEND="virtual/opengl + python? ( virtual/python ) + perl? ( dev-lang/perl ) + ruby? ( virtual/ruby ) + >=x11-libs/gtk+-2.8 + x11-libs/pango + x11-libs/cairo + dev-util/pkgconfig + x11-libs/gtkglext" + +src_compile() { + econf \ + $(use_enable python) \ + $(use_enable perl) \ + $(use_enable ruby) \ + $(use_enable nls) \ + --disable-desktop-file-update \ + || die "econf failed." + emake || die "emake failed." +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed." + dodoc AUTHORS ChangeLog NEWS README THANKS TODO +} |