blob: 95295705a55a7c2568252c916876c4cab4dec345 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit fortran-2 multilib toolchain-funcs
DESCRIPTION="a general purpose molecular dynamics simulation package"
HOMEPAGE="http://www.ccp5.ac.uk/DL_POLY/"
SRC_URI="dl_poly_4.05.tar.gz"
LICENSE="STFC"
SLOT="0"
KEYWORDS="~amd64"
IUSE="doc"
RESTRICT="fetch"
DEPEND="virtual/mpi[fortran]"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${P//-/_}/source"
pkg_nofetch() {
einfo "Go to ${HOMEPAGE} and download ${A}"
einfo "into ${DISTDIR}"
}
src_prepare() {
cp ../build/Makefile_MPI Makefile || die
}
src_compile() {
# -I/usr/$(get_libdir) is needed to find mpi.mod
emake -j1 FC="mpif77 -c" FCFLAGS="${FFLAGS} -I${EPREFIX}/usr/$(get_libdir)" LD="mpif77 -o" LDFLAGS="${LDFLAGS}" EXE="${PN}" master
}
src_install() {
newbin "${PN}" DLPOLY.Z
use doc && dodoc ../manual/USRMAN*.pdf
}
|