blob: 48f9415b267f84b89a23b29c65d0d7783a0b2f60 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/molden/molden-4.7.ebuild,v 1.7 2010/12/16 15:09:26 jlec Exp $
inherit eutils toolchain-funcs flag-o-matic
MY_P="${PN}${PV}"
DESCRIPTION="Display molecular density from GAMESS-UK, GAMESS-US, GAUSSIAN and Mopac/Ampac."
HOMEPAGE="http://www.cmbi.kun.nl/~schaft/molden/molden.html"
SRC_URI="ftp://ftp.cmbi.kun.nl/pub/molgraph/${PN}/${MY_P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="alpha amd64 ia64 x86"
IUSE="opengl"
RDEPEND="opengl? ( media-libs/freeglut
virtual/opengl )
x11-libs/libXmu"
DEPEND="${RDEPEND}
app-editors/vim"
# vim provides ex, which the build system uses (surf/Makefile, at least)
S="${WORKDIR}/${MY_P}"
src_compile() {
# Use -mieee on alpha, according to the Makefile
use alpha && append-flags -mieee
# Honor CC, CFLAGS, FC, and FFLAGS from environment;
# unfortunately a bash bug prevents us from doing typeset and
# assignment on the same line.
typeset -a args
args=( CC="$(tc-getCC) ${CFLAGS}" \
FC="$(tc-getFC)" LDR="$(tc-getFC)" FFLAGS="${FFLAGS}" )
einfo "Building Molden..."
emake -j1 "${args[@]}" || die "molden emake failed"
if use opengl ; then
einfo "Building Molden OpenGL helper..."
emake -j1 "${args[@]}" moldenogl || die "moldenogl emake failed"
fi
}
src_install() {
dobin molden || die "failed to install molden executable."
if use opengl ; then
dobin moldenogl || die "failed to install moldenogl."
fi
dodoc HISTORY README REGISTER || die "failed to install docs."
cd doc
uncompress * && dodoc * || die "failed to install docs."
}
|