blob: 49f9fd58d22e78fc5dd3ddcb70474ea876af32f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header $
EAPI=2
inherit base flag-o-matic eutils multilib
DESCRIPTION="Interactive plotting program"
HOMEPAGE="http://kavli.nano.tudelft.nl/~gsteele/spyview/"
SRC_URI="http://kavli.nano.tudelft.nl/~gsteele/${PN}/versions/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
COMMON_DEPEND=">=dev-libs/boost-1.39
media-libs/netpbm
>=x11-libs/fltk-1.1.9:1.1
app-text/ghostscript-gpl"
DEPEND="${COMMON_DEPEND}
sys-apps/groff"
RDEPEND="${COMMON_DEPEND}
sci-visualization/gnuplot"
S=${WORKDIR}/spyview-2010-02-03-11_57
src_prepare() {
epatch "${FILESDIR}"/${PN}-includes.patch
append-cflags $(fltk-config --cflags)
append-cxxflags $(fltk-config --cxxflags) -I/usr/include/netpbm
# append-ldflags $(fltk-config --ldflags)
# this one leads to an insane amount of warnings
append-ldflags -L/usr/$(get_libdir)/fltk-1.1
}
src_configure() {
econf --datadir=/usr/share/spyview
}
|