summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2017-12-11 20:42:19 +0100
committerMichał Górny <mgorny@gentoo.org>2017-12-11 20:46:30 +0100
commit690af36ac17362cedef67be92d4b59594c169538 (patch)
tree0fb6fe4b11491ba98bdc943943ef00fb56248230 /sci-visualization
parentsci-mathematics/pari: [QA] Move patches to distfiles (diff)
downloadgentoo-690af36ac17362cedef67be92d4b59594c169538.tar.gz
gentoo-690af36ac17362cedef67be92d4b59594c169538.tar.bz2
gentoo-690af36ac17362cedef67be92d4b59594c169538.zip
sci-visualization/spyview: Drop old
Diffstat (limited to 'sci-visualization')
-rw-r--r--sci-visualization/spyview/spyview-20150124.ebuild53
1 files changed, 0 insertions, 53 deletions
diff --git a/sci-visualization/spyview/spyview-20150124.ebuild b/sci-visualization/spyview/spyview-20150124.ebuild
deleted file mode 100644
index 2608591392d7..000000000000
--- a/sci-visualization/spyview/spyview-20150124.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools flag-o-matic
-
-DESCRIPTION="2D and 3D data visualization and analysis program"
-HOMEPAGE="http://nsweb.tn.tudelft.nl/~gsteele/spyview/"
-SRC_URI="https://github.com/gsteele13/spyview/archive/966012afae2fbb77262bd96a7e530e81b0ed3b90.tar.gz -> $P.tgz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-COMMON_DEPEND="
- dev-libs/boost:=
- media-libs/netpbm
- x11-libs/fltk:1[opengl]
- app-text/ghostscript-gpl
- virtual/glu
-"
-
-DEPEND="${COMMON_DEPEND}
- sys-apps/groff"
-
-RDEPEND="${COMMON_DEPEND}
- sci-visualization/gnuplot"
-
-PATCHES=( ${FILESDIR}/${P}-gnuplot_interface_fix.patch )
-
-src_unpack() {
- default
- mv -v "${WORKDIR}"/spyview-*/source "${S}" || die
-}
-
-src_prepare() {
- append-cflags $(fltk-config --cflags)
- append-cxxflags $(fltk-config --cxxflags)
- append-cppflags -I"${EPREFIX}"/usr/include/netpbm
-
- # append-ldflags $(fltk-config --ldflags)
- # this one leads to an insane amount of warnings
- append-ldflags -L$(dirname $(fltk-config --libs))
-
- while IFS="" read -d $'\0' -r file; do
- sed -i -e 's:-mwindows -mconsole::g' "$file" || die
- done < <(find "${S}" -name Makefile.am -print0)
-
- default
- eautoreconf
-}