blob: 84df2ed546909497776cdf1608d7bffcc21ca262 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-visualization/scigraphica/scigraphica-0.8.0-r2.ebuild,v 1.1 2006/01/29 20:18:29 cryos Exp $
inherit eutils
DESCRIPTION="Scientific application for data analysis and technical graphics"
SRC_URI="http://scigraphica.sourceforge.net/src/${P}.tar.gz"
HOMEPAGE="http://scigraphica.sourceforge.net/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="ppc x86"
IUSE="gnome"
DEPEND=">=x11-libs/gtk+extra-0.99.17
=dev-python/pygtk-0.6*
>=dev-python/numeric-20.3
>=dev-libs/libxml-1.8.16
>=media-libs/imlib-1.9.14
gnome? ( >=gnome-base/gnome-libs-1.4.1.2-r3 =gnome-base/orbit-0* >=gnome-base/gnome-print-0.34 )"
pkg_setup() {
if has_version ">=dev-python/pygtk-0.99"; then
eerror "Setup has detected that you have >=dev-python/pygtk-0.99 installed"
eerror "on yor system. This will conflict with the required pygtk-0.6"
ewarn "Therefore"
ewarn 'Please "emerge unmerge pygtk", then'
ewarn '"emerge scigraphica; run it once, and then remerge pygtk version'
ewarn 'you had (best accomplished by running "emerge -u --deep world")'
die
fi
}
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/gcc3.4.patch
}
src_compile() {
#bonobo breaks compile when enabled so it is not enabled for now.
#the result seems to be no printing under gnome.
#also need to look into --with-lp and --with-lpr config flags
local myconf=""
use gnome || myconf="${myconf} --without-gnome" #default enabled
# use bonobo && myconf="${myconf} --with-bonobo" #default disabled
#fix Exec= in sg.desktop
cp sg.desktop sg.desktop.orig
sed -e 's:\(Exec=\)sga:\1scigraphica:' sg.desktop.orig > sg.desktop
#fix termcap dependency
cp configure configure.orig
sed -e 's:-ltermcap:-lncurses:' configure.orig > configure
./configure \
--host=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man \
${myconf} || die "Configuration Failed"
emake || die "Parallel Make Failed"
}
src_install() {
make DESTDIR=${D} install || die "Installation Failed"
dodoc AUTHORS ChangeLog FAQ.compile \
INSTALL NEWS README TODO
}
pkg_postinst() {
ewarn "Please, if you need to remerge pygtk-2* afterwards, do not forget to run scigraphica"
ewarn "as your intended user once before that!"
ewarn "You may also want to remove ~/.scigpahica/config first."
}
|