Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-visualization/spyview/
Date: Mon, 11 Dec 2017 19:46:54
Message-Id: 1513021590.690af36ac17362cedef67be92d4b59594c169538.mgorny@gentoo
1 commit: 690af36ac17362cedef67be92d4b59594c169538
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 11 19:42:19 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 11 19:46:30 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=690af36a
7
8 sci-visualization/spyview: Drop old
9
10 sci-visualization/spyview/spyview-20150124.ebuild | 53 -----------------------
11 1 file changed, 53 deletions(-)
12
13 diff --git a/sci-visualization/spyview/spyview-20150124.ebuild b/sci-visualization/spyview/spyview-20150124.ebuild
14 deleted file mode 100644
15 index 2608591392d..00000000000
16 --- a/sci-visualization/spyview/spyview-20150124.ebuild
17 +++ /dev/null
18 @@ -1,53 +0,0 @@
19 -# Copyright 1999-2017 Gentoo Foundation
20 -# Distributed under the terms of the GNU General Public License v2
21 -
22 -EAPI=6
23 -
24 -inherit autotools flag-o-matic
25 -
26 -DESCRIPTION="2D and 3D data visualization and analysis program"
27 -HOMEPAGE="http://nsweb.tn.tudelft.nl/~gsteele/spyview/"
28 -SRC_URI="https://github.com/gsteele13/spyview/archive/966012afae2fbb77262bd96a7e530e81b0ed3b90.tar.gz -> $P.tgz"
29 -
30 -LICENSE="GPL-3"
31 -SLOT="0"
32 -KEYWORDS="~amd64 ~x86"
33 -IUSE=""
34 -
35 -COMMON_DEPEND="
36 - dev-libs/boost:=
37 - media-libs/netpbm
38 - x11-libs/fltk:1[opengl]
39 - app-text/ghostscript-gpl
40 - virtual/glu
41 -"
42 -
43 -DEPEND="${COMMON_DEPEND}
44 - sys-apps/groff"
45 -
46 -RDEPEND="${COMMON_DEPEND}
47 - sci-visualization/gnuplot"
48 -
49 -PATCHES=( ${FILESDIR}/${P}-gnuplot_interface_fix.patch )
50 -
51 -src_unpack() {
52 - default
53 - mv -v "${WORKDIR}"/spyview-*/source "${S}" || die
54 -}
55 -
56 -src_prepare() {
57 - append-cflags $(fltk-config --cflags)
58 - append-cxxflags $(fltk-config --cxxflags)
59 - append-cppflags -I"${EPREFIX}"/usr/include/netpbm
60 -
61 - # append-ldflags $(fltk-config --ldflags)
62 - # this one leads to an insane amount of warnings
63 - append-ldflags -L$(dirname $(fltk-config --libs))
64 -
65 - while IFS="" read -d $'\0' -r file; do
66 - sed -i -e 's:-mwindows -mconsole::g' "$file" || die
67 - done < <(find "${S}" -name Makefile.am -print0)
68 -
69 - default
70 - eautoreconf
71 -}