blob: 4337bac406c1d5628b3f37a6e5fc7a4bf33b22ab (
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
106
107
108
109
110
111
112
113
114
115
116
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-visualization/hippodraw/hippodraw-1.21.3.ebuild,v 1.3 2008/06/18 10:51:21 markusle Exp $
inherit eutils qt3
MY_PN=HippoDraw
DESCRIPTION="Highly interactive data analysis Qt environment for C++ and python"
HOMEPAGE="http://www.slac.stanford.edu/grp/ek/hippodraw/"
SRC_URI="ftp://ftp.slac.stanford.edu/users/pfkeb/${PN}/${MY_PN}-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="root fits numpy doc"
# minuit: included in root-5, but standalone cheaper to build
# qt4 not implemented:
# - won't work with sip on amd64
# - is still under testing
# opengl: completely buggy
# wcslib: not yet implemented (wcslib has nasty build system)
# sip: still buggy (gcc411 issue?)
RDEPEND=">=dev-lang/python-2.3
>=dev-libs/boost-1.32
$(qt_min_version 3.1)
numpy? ( dev-python/numpy )
fits? ( sci-libs/cfitsio
numpy? ( dev-python/pyfits ) )
!root? ( >=sci-libs/minuit-5 )
root? ( >=sci-physics/root-5 )"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )"
S=${WORKDIR}/${MY_PN}-${PV}
pkg_setup() {
# need python threads (see bug #224269)
if ! built_with_use dev-lang/python threads; then
die "hippodraw needs dev-lang/python with USE=\"threads\""
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-gcc4.3.patch
epatch "${FILESDIR}"/${P}-numarray.patch
local docdir=/usr/share/doc/${PF}
# fix the install doc directory to gentoo's one
sed -i \
-e "s:\$(pkgdatadir)/html:${docdir}/html:" \
doc/Makefile.in
# fix an extra DESTDIR inherited from Makefile.am
sed -i \
-e "s:\$(DESTDIR)\$(pkgdatadir)/examples:${docdir}/examples:" \
examples/Makefile.in
# since we do not slot, remove version name in includes
sed -i \
-e 's/$(pkgincludedir)-$(VERSION)/$(pkgincludedir)/' \
*/Makefile.in
#if use sip; then
# sed -i \
# -e "s:/usr/local:/usr:g"\
# -e "" \
# sip/Makefile.in
#fi
}
src_compile() {
local myconf="--with-boost-include=/usr/include"
myconf="${myconf} --with-boost-lib=/usr/$(get_libdir)"
myconf="${myconf} --with-boost-libname=boost_python"
myconf="${myconf} --with-minuit2-include=/usr/include"
myconf="${myconf} --with-minuit2-lib=/usr/$(get_libdir)"
myconf="${myconf} --disable-numarraybuild"
#built_with_use dev-libs/boost threads && myconf="${myconf}-mt"
myconf="${myconf} --with-Qt-include-dir=/usr/qt/3/include"
myconf="${myconf} --with-Qt-lib-dir=/usr/qt/3/$(get_libdir)"
myconf="${myconf} --with-Qt-bin-dir=/usr/qt/3/bin"
if use root; then
myconf="${myconf} --with-root-include=/usr/include/root"
myconf="${myconf} --with-root-lib=/usr/$(get_libdir)/root"
fi
if use fits; then
myconf="${myconf} --with-cfitsio-include=/usr/include"
myconf="${myconf} --with-cfitsio-lib=/usr/$(get_libdir)"
fi
econf \
$(use_enable numpy numpybuild) \
$(use_enable doc help) \
${myconf} || die "econf failed"
# qtui failed with -j2, so build it first with -j1
emake -j1 -C qtui || die "make qtui failed"
emake || die "emake failed"
if use doc; then
make docs || die "make docs failed"
fi
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
make_desktop_entry hippodraw HippoDraw hippoApp \
Science "/usr/share/${MY_PN}"
dodoc README DISCLAIMER.rtf
}
|