summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus D. Hanwell <cryos@gentoo.org>2006-07-15 22:06:48 +0000
committerMarcus D. Hanwell <cryos@gentoo.org>2006-07-15 22:06:48 +0000
commit98ffac763de4ce4aa826a9527941d9994cf3978a (patch)
treed3a0271363d9b18e4647adb6d582327919de3537 /sci-visualization
parent- masked =app-arch/tar-1.15.91 cuz it sucks and can/will break your system (diff)
downloadgentoo-2-98ffac763de4ce4aa826a9527941d9994cf3978a.tar.gz
gentoo-2-98ffac763de4ce4aa826a9527941d9994cf3978a.tar.bz2
gentoo-2-98ffac763de4ce4aa826a9527941d9994cf3978a.zip
Version bump.
(Portage version: 2.1.1_pre2-r8)
Diffstat (limited to 'sci-visualization')
-rw-r--r--sci-visualization/gwyddion/ChangeLog7
-rw-r--r--sci-visualization/gwyddion/files/digest-gwyddion-1.163
-rw-r--r--sci-visualization/gwyddion/gwyddion-1.16.ebuild35
3 files changed, 44 insertions, 1 deletions
diff --git a/sci-visualization/gwyddion/ChangeLog b/sci-visualization/gwyddion/ChangeLog
index 5ec53118fd74..eb08522dd4b3 100644
--- a/sci-visualization/gwyddion/ChangeLog
+++ b/sci-visualization/gwyddion/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sci-visualization/gwyddion
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v 1.3 2006/06/25 19:23:47 cryos Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v 1.4 2006/07/15 22:06:48 cryos Exp $
+
+*gwyddion-1.16 (15 Jul 2006)
+
+ 15 Jul 2006; Marcus D. Hanwell <cryos@gentoo.org> +gwyddion-1.16.ebuild:
+ Version bump.
29 Jan 2006; Marcus D. Hanwell <cryos@gentoo.org> +metadata.xml,
+gwyddion-1.15.ebuild:
diff --git a/sci-visualization/gwyddion/files/digest-gwyddion-1.16 b/sci-visualization/gwyddion/files/digest-gwyddion-1.16
new file mode 100644
index 000000000000..46c22ec95694
--- /dev/null
+++ b/sci-visualization/gwyddion/files/digest-gwyddion-1.16
@@ -0,0 +1,3 @@
+MD5 c8f8edf23d599d5464040ee572726946 gwyddion-1.16.tar.bz2 1551340
+RMD160 1293d1199360b3d0258d240de2ec9ac1c7a23d78 gwyddion-1.16.tar.bz2 1551340
+SHA256 bb82ebdb4dad0f52e7b5c246587f89110e04e624d179a13aab59cd7f581c9de0 gwyddion-1.16.tar.bz2 1551340
diff --git a/sci-visualization/gwyddion/gwyddion-1.16.ebuild b/sci-visualization/gwyddion/gwyddion-1.16.ebuild
new file mode 100644
index 000000000000..23e4fedac73a
--- /dev/null
+++ b/sci-visualization/gwyddion/gwyddion-1.16.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/gwyddion-1.16.ebuild,v 1.1 2006/07/15 22:06:48 cryos 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.6
+ 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
+}