blob: db058f2590c62302137a0a77920ee46fb19af552 (
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-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/raster3d/raster3d-2.9.1.ebuild,v 1.2 2010/04/01 19:58:32 jlec Exp $
EAPI="3"
inherit fortran flag-o-matic multilib toolchain-funcs versionator
MY_PN="Raster3D"
MY_PV=$(replace_version_separator 2 -)
MY_P="${MY_PN}-${MY_PV}"
DESCRIPTION="A set of tools for generating high quality raster images of proteins or other molecules"
HOMEPAGE="http://www.bmsc.washington.edu/raster3d/raster3d.html"
SRC_URI="http://www.bmsc.washington.edu/${PN}/${MY_P}.tar.gz"
LICENSE="as-is"
SLOT="0"
IUSE=""
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
RDEPEND="
media-libs/jpeg
media-libs/libpng
media-libs/tiff"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${MY_P}"
src_prepare() {
epatch "${FILESDIR}"/${PV}-as-needed.patch
}
src_compile() {
sed -e "s:prefix = /usr/local:prefix = ${EPREFIX}/usr:" \
-i Makefile.template || \
die "Failed to patch makefile.template"
if [[ ${FORTRANC} == gfortran ]]; then
append-cflags -Dgfortran
fi
append-fflags -ffixed-line-length-132
for target in linux-gfortran all; do
emake \
CFLAGS="${CFLAGS}" \
LDFLAGS="${LDFLAGS}" \
FFLAGS="${FFLAGS}" \
CC="$(tc-getCC)"\
FC="${FORTRANC}" \
INCDIRS="-I${EPREFIX}"/usr/include \
LIBDIRS="-L${EPREFIX}"/usr/$(get_libdir) \
${target} || die
done
}
src_install() {
emake prefix="${ED}"/usr \
bindir="${ED}"/usr/bin \
datadir="${ED}"/usr/share/Raster3D/materials \
mandir="${ED}"/usr/share/man/man1 \
htmldir="${ED}"/usr/share/Raster3D/html \
examdir="${ED}"/usr/share/Raster3D/examples \
install || die "Failed to install application."
dodir /etc/env.d
echo -e "R3D_LIB=${EPREFIX}/usr/share/${NAME}/materials" > \
"${ED}"/etc/env.d/10raster3d || \
die "Failed to install env file."
}
pkg_postinst() {
elog "Add following line:"
elog "<delegate decode=\"r3d\" command='\"render\" < \"%i\" > \"%o\"' />"
elog "to ${EPREFIX}/usr/$(get_libdir)/ImageMagick-6.5.8/config/delegates.xml"
elog "to make imagemagick use raster3d for .r3d files"
}
|