blob: 9f7099b1c7b02d52645c8e556b8f447c9a715d9c (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-visualization/fityk/fityk-0.9.8.ebuild,v 1.1 2012/04/25 03:15:56 bicatali Exp $
EAPI=4
WX_GTK_VER="2.8"
# python eclass cruft
PYTHON_DEPEND="python? 2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"
inherit python wxwidgets
DESCRIPTION="General-purpose nonlinear curve fitting and data analysis"
HOMEPAGE="http://fityk.nieto.pl/"
SRC_URI="mirror://github/wojdyr/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc examples gnuplot lua readline python static-libs wxwidgets"
CDEPEND=">=sci-libs/xylib-0.8
lua? ( dev-lang/lua )
readline? ( sys-libs/readline )
wxwidgets? ( x11-libs/wxGTK:2.8[X] )"
DEPEND="${CDEPEND}
dev-libs/boost
>=sys-devel/libtool-2.2"
RDEPEND="${CDEPEND}
gnuplot? ( sci-visualization/gnuplot )"
src_prepare() {
has_version "<dev-libs/boost-1.37" && \
sed -i -e 's:impl/directives.hpp:directives.ipp:g' \
src/optional_suffix.h
sed -i \
-e '/^LTLIBRARIES/s:$(pyexec_LTLIBRARIES)::g' \
-e '/install-exec-am/s:install-pyexecLTLIBRARIES::' \
swig/Makefile.in || die
if use python; then
echo '#!/bin/sh' > config/py-compile
fi
}
src_configure() {
econf \
--docdir="${EPREFIX}/usr/share/doc/${PF}" \
--disable-xyconvert \
$(use_enable lua) \
$(use_enable python) \
$(use_enable static-libs static) \
$(use_enable wxwidgets GUI) \
$(use_with doc) \
$(use_with readline)
}
src_compile() {
use python && python_copy_sources swig
default
if use python; then
compilation() {
emake \
PYTHON_CPPFLAGS="-I$(python_get_includedir)" \
PYTHON_LDFLAGS="$(python_get_library -l)" \
PYTHON_SITE_PKG="$(python_get_sitedir)" \
PYTHON_VERSION="$(python_get_version)" \
pyexecdir="$(python_get_sitedir)" \
_fityk.la
}
python_execute_function -s --source-dir swig compilation
fi
}
src_install() {
default
if use python; then
installation() {
emake \
DESTDIR="${D}" \
pyexecdir="$(python_get_sitedir)" \
pythondir="$(python_get_sitedir)" \
install install-pyexecLTLIBRARIES
}
python_execute_function -s --source-dir swig installation
python_clean_installation_image
fi
if use examples; then
insinto /usr/share/doc/${PF}/examples
doins samples/*
fi
}
pkg_postinst() {
use python && python_mod_optimize ${PN}.py
}
pkg_postrm() {
use python && python_mod_cleanup ${PN}.py
}
|