You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-chemistry/ortep3/ortep3-1.0.3-r1.ebuild

37 lines
716 B

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
inherit fortran-2 toolchain-funcs
DESCRIPTION="Thermal ellipsoid plot program for crystal structure illustrations"
HOMEPAGE="http://www.ornl.gov/sci/ortep/"
SRC_URI="ftp://ftp.ornl.gov/pub/ortep/src/ortep.f"
SLOT="0"
LICENSE="public-domain"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="
sci-libs/pgplot
x11-libs/libX11"
DEPEND="${RDEPEND}"
S="${WORKDIR}"
src_unpack() {
cp "${DISTDIR}"/${A} "${S}" || die
}
src_compile() {
COMMAND="$(tc-getFC) ${FFLAGS:- -O2} ${LDFLAGS} -o ${PN} ortep.f -lpgplot -lX11"
echo ${COMMAND}
${COMMAND} || die "Compilation failed"
}
src_install() {
dobin ${PN}
}