blob: 61f11a6c963e626077fcc8f81ca55c2c3adb5c7a (
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
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/app-sci/scigraphica/scigraphica-0.8.0.ebuild,v 1.2 2002/07/11 06:30:18 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Scientific application for data analysis and technical graphics."
SRC_URI="http://scigraphica.sourceforge.net/src/${P}.tar.gz"
HOMEPAGE="http://scigraphica.sourceforge.net/"
DEPEND=">=x11-libs/gtk+extra-0.99.17
>=dev-python/Numeric-20.3
>=dev-libs/libxml-1.8.16
gnome? ( >=gnome-base/gnome-libs-1.4.1.2-r3 >=gnome-base/ORBit-0.5.12-r1 >=gnome-base/gnome-print-0.34 )"
#bonobo? ( >=gnome-base/bonobo-1.0.18 )"
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 ABOUT-NLS AUTHORS COPYING ChangeLog FAQ.compile \
INSTALL NEWS README TODO
}
|