blob: d404091a2b953b1bcedecaad324af8a288f20f3b (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-misc/gri/gri-2.12.7.ebuild,v 1.4 2006/01/15 13:07:35 cryos Exp $
inherit eutils
IUSE=""
DESCRIPTION="language for scientific graphics programming"
HOMEPAGE="http://gri.sourceforge.net/"
SRC_URI="mirror://sourceforge/gri/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 amd64 ~ppc"
DEPEND=">=sci-libs/netcdf-3.5.0
virtual/tetex
media-gfx/imagemagick"
src_compile() {
econf || die
emake || die
}
src_install() {
# Replace PREFIX now and correct paths in the startup message.
sed -e s,PREFIX/share/doc/gri/,/usr/share/doc/${P}/, -i ${S}/startup.msg
einstall || die
dodoc AUTHOR README
#move docs to the proper place
mv ${D}/usr/share/gri/doc/* ${D}/usr/share/doc/${PF}
rmdir ${D}/usr/share/gri/doc/
}
|