Gentoo Archives: gentoo-commits

From: Mike Auty <ikelos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/ikelos:master commit in: media-gfx/mathmap/
Date: Tue, 01 Mar 2011 00:57:39
Message-Id: 573cd47e9c75382b6ee0b1dbf98c1769e76cc509.ikelos@gentoo
1 commit: 573cd47e9c75382b6ee0b1dbf98c1769e76cc509
2 Author: Mike Auty <ikelos <AT> gentoo <DOT> org>
3 AuthorDate: Tue Mar 1 00:57:18 2011 +0000
4 Commit: Mike Auty <ikelos <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 1 00:57:18 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/ikelos.git;a=commit;h=573cd47e
7
8 Bump mathmap to 1.3.5 (see bug 356625).
9
10 ---
11 media-gfx/mathmap/Manifest | 2 +
12 media-gfx/mathmap/mathmap-1.3.5.ebuild | 40 ++++++++++++++++++++++++++++++++
13 2 files changed, 42 insertions(+), 0 deletions(-)
14
15 diff --git a/media-gfx/mathmap/Manifest b/media-gfx/mathmap/Manifest
16 index d58023f..94d92fb 100644
17 --- a/media-gfx/mathmap/Manifest
18 +++ b/media-gfx/mathmap/Manifest
19 @@ -1,2 +1,4 @@
20 DIST mathmap-1.3.2.tar.gz 404420 RMD160 0705030a71dcd99810d335ed49dcce9678f673eb SHA1 e4b978585e8217140be02ca183ef818b575c47ed SHA256 526e389983e4d76611bf50825a259309d36ec58ce4a2470cb008a685836e9809
21 +DIST mathmap-1.3.5.tar.gz 2059832 RMD160 5803a80271ec84dd21af3560513be73b56c82113 SHA1 caddf75e77f26d75f9f1127f638b9945b1d752a4 SHA256 1d0542de10b189f8785a5adc62b7d49e6c1c7be1fa9cf1fecdd88e609ebd2172
22 EBUILD mathmap-1.3.2.ebuild 960 RMD160 27e3b3e9888b7064b798cde6edab7cbff233ae03 SHA1 b990e1712fea885c7f1f1fd53fc617f9dea69ff5 SHA256 bbdb3045da3990d4f8e9dd78bbdd39a529e50a31afebadd2388e3c3f3e0444ec
23 +EBUILD mathmap-1.3.5.ebuild 934 RMD160 8a798e888929915a94f882b5d080d60fbf2b22a3 SHA1 f71aa3b131f0a066a55d791638ce86128ac9ad6a SHA256 14392c50e7c7c284e67d0ccc16d33717a4ebd8fc5d49be421cd838572b549ef4
24
25 diff --git a/media-gfx/mathmap/mathmap-1.3.5.ebuild b/media-gfx/mathmap/mathmap-1.3.5.ebuild
26 new file mode 100644
27 index 0000000..e7617e9
28 --- /dev/null
29 +++ b/media-gfx/mathmap/mathmap-1.3.5.ebuild
30 @@ -0,0 +1,40 @@
31 +# Copyright 1999-2008 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Header: $
34 +
35 +EAPI="4"
36 +
37 +inherit eutils
38 +
39 +DESCRIPTION="Mathmap is an image manipulation scripting plugin for the Gimp"
40 +HOMEPAGE="http://www.complang.tuwien.ac.at/schani/mathmap/index.html"
41 +SRC_URI="http://www.complang.tuwien.ac.at/schani/mathmap/files/${P}.tar.gz"
42 +
43 +LICENSE="GPL-2"
44 +SLOT="0"
45 +KEYWORDS="~x86"
46 +IUSE=""
47 +
48 +RDEPEND=">=media-gfx/gimp-2.2
49 + sci-libs/gsl
50 + x11-libs/gtksourceview
51 + gnome-base/libgnomecanvas
52 + sci-libs/fftw:3.0"
53 +DEPEND="${RDEPEND}
54 + app-doc/doxygen"
55 +
56 +src_prepare() {
57 + #sed -i -e 's/GIMPDATADIR := /GIMPDATADIR := $(DESTDIR)/' Makefile
58 + #sed -i -e 's/--install-admin-bin/--prefix=$(DESTDIR) --install-admin-bin/' Makefile
59 + #sed -i -e 's/mkdir/mkdir -p/' Makefile
60 + true
61 +}
62 +
63 +src_compile() {
64 + emake -j1 || die "Failed to compile"
65 +}
66 +
67 +src_install() {
68 + emake install DESTDIR=${D} || die "Failed to install"
69 +}
70 +