blob: 7b13aa155e8f44e6c592fba8caac54dfc88d0c88 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/raster3d/raster3d-2.7c.ebuild,v 1.8 2007/07/22 07:25:12 dberkholz Exp $
inherit toolchain-funcs fortran
NAME="Raster3D"
DESCRIPTION="a set of tools for generating high quality raster images of proteins or other molecules"
LICENSE="as-is"
HOMEPAGE="http://www.bmsc.washington.edu/raster3d/raster3d.html"
SRC_URI="http://www.bmsc.washington.edu/${PN}/${NAME}_${PV}.tar.gz"
SLOT="0"
IUSE=""
KEYWORDS="ppc x86"
RDEPEND="media-libs/jpeg
media-libs/libpng
media-libs/tiff"
DEPEND="${RDEPEND}
x11-misc/imake"
S="${WORKDIR}/${NAME}_${PV}"
src_unpack() {
unpack ${A}
epatch "${FILESDIR}"/raster3d-gcc-4.1-gentoo.patch
}
src_compile() {
cd "${S}"
# fix Makefile to honor user's CFLAGS/FFLAGS
sed -e "s:gcc:$(tc-getCC):" \
-e "s:g77:${FORTRANC}:" \
-e "s:-g -m486 -w:${CFLAGS}:" \
-e "s:-g -O -w -malign-double:${FFLAGS} -w:" \
-i Makefile || die "Failed to patch makefile"
sed -e "s:prefix = /usr/local:prefix = /usr:" \
-i Makefile.template || \
die "Failed to patch makefile.template"
make linux || die "Failed to make linux target."
make all || die "Failed to make all target."
}
src_install() {
emake prefix="${D}"/usr \
bindir="${D}"/usr/bin \
datadir="${D}"/usr/share/Raster3D/materials \
mandir="${D}"/usr/share/man/man1 \
htmldir="${D}"/usr/share/Raster3D/html \
examdir="${D}"/usr/share/Raster3D/examples \
install || die "Failed to install application."
dodir /etc/env.d
echo -e "R3D_LIB=/usr/share/${NAME}/materials" > \
"${D}"/etc/env.d/10raster3d || \
die "Failed to install env file."
}
|