blob: e826fc0aacf121972bedfa07b2c929292065c63e (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-visualization/pyxplot/pyxplot-0.6.3.ebuild,v 1.5 2008/05/29 17:56:29 hawking Exp $
inherit eutils python
DESCRIPTION="Graphing program similar to gnuplot to produce publication-quality figures"
HOMEPAGE="http://www.pyxplot.org.uk/"
SRC_URI="http://www.pyxplot.org.uk/src/${PN}_${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
# test is actually done during emake in src_compile
RESTRICT="test"
# should use xdg-utils once those are working for postcript viewers
RDEPEND=">=dev-python/pyx-0.9
sci-libs/scipy
virtual/tetex
virtual/ghostscript
|| ( app-text/gv app-text/ggv )
media-gfx/imagemagick"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${PN}"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e "s:^\(USRDIR=\).*:\1/usr:g" \
-e 's:^\(MANDIR=\).*:\1${USRDIR}/share/man/man1:g' \
-e "s:^\(DOCDIR=\).*:\1\${USRDIR}/share/doc/${PF}:g" \
"${S}"/Makefile.skel || die "sed Makefile.skel failed"
epatch "${FILESDIR}"/${PV}-dont-build-pyx.patch
# Depends on dont-build-pyx.patch
epatch "${FILESDIR}"/${PV}-respect-destdir.patch
# It doesn't come with precompiled .pyc files,
# so fails if we try to install them.
sed -i \
-e "/pyc/d" \
"${S}"/Makefile.skel || die "sed pyx failed"
# allows proper commands
sed -i \
-e 's/${MAKE_COMMAND}/$(MAKE)/g' \
-e "s:\${PYTHON_COMMAND}:/usr/bin/python$(python_version):g" \
"${S}"/Makefile.skel || die "sed commands failed"
# install fig_init for examples to work once installed
sed -i \
-e 's/ex_\*/{ex_,fig}\*/' \
"${S}"/Makefile.skel || die "sed examples failed"
}
src_compile() {
# latex...
addwrite /var/cache/fonts
econf || die "econf failed"
emake -j1 || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc README AUTHORS ChangeLog || die "dodoc failed"
}
pkg_postinst() {
python_mod_optimize /usr/share/${PN}
}
pkg_postrm() {
python_mod_cleanup /usr/share/${PN}
}
|