diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-10-16 09:40:19 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-10-16 09:42:12 +0200 |
commit | 0c84b5560bfe8fe26b60020f784878f6367c6a33 (patch) | |
tree | 71e87391fc13c9dbee25af9c2af068250946718f /sci-chemistry/ortep3 | |
parent | dev-db/mariadb: Remove old (diff) | |
download | gentoo-0c84b5560bfe8fe26b60020f784878f6367c6a33.tar.gz gentoo-0c84b5560bfe8fe26b60020f784878f6367c6a33.tar.bz2 gentoo-0c84b5560bfe8fe26b60020f784878f6367c6a33.zip |
sci-chemistry/ortep3: Remove last-rited pkg
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'sci-chemistry/ortep3')
-rw-r--r-- | sci-chemistry/ortep3/Manifest | 1 | ||||
-rw-r--r-- | sci-chemistry/ortep3/metadata.xml | 8 | ||||
-rw-r--r-- | sci-chemistry/ortep3/ortep3-1.0.3-r1.ebuild | 36 |
3 files changed, 0 insertions, 45 deletions
diff --git a/sci-chemistry/ortep3/Manifest b/sci-chemistry/ortep3/Manifest deleted file mode 100644 index bf39799242ac..000000000000 --- a/sci-chemistry/ortep3/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST ortep.f 177237 BLAKE2B ab081b3fb14823522a5418cc64d90f763a9dc7be5743836c1c432235e84edf22c76c7abb8d06bc7622360cc4108d44e5e71a898fa32890c28e4288c57368f46a SHA512 83e78fde2a798d7ee6b902133790f04787f54ceb62a1296ce8262cb8085bebf26e1c3b8f9c9c51ee0823f827bae40a75cede758c6cbe2c1b98a48bc49be6dd0b diff --git a/sci-chemistry/ortep3/metadata.xml b/sci-chemistry/ortep3/metadata.xml deleted file mode 100644 index da36ecbfcd6a..000000000000 --- a/sci-chemistry/ortep3/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>sci-chemistry@gentoo.org</email> - <name>Gentoo Chemistry Project</name> - </maintainer> -</pkgmetadata> diff --git a/sci-chemistry/ortep3/ortep3-1.0.3-r1.ebuild b/sci-chemistry/ortep3/ortep3-1.0.3-r1.ebuild deleted file mode 100644 index 6998ade89559..000000000000 --- a/sci-chemistry/ortep3/ortep3-1.0.3-r1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# 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} -} |