summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2018-03-11 12:02:45 +0100
committerPacho Ramos <pacho@gentoo.org>2018-03-11 12:05:10 +0100
commitb522124233e90a84963ca9512f1bb5166983a6ab (patch)
tree0e1ce170481b3a4600b3e3b5bca31303d3e1202d /sci-chemistry
parentRemove masked for removal packages (diff)
downloadgentoo-b522124233e90a84963ca9512f1bb5166983a6ab.tar.gz
gentoo-b522124233e90a84963ca9512f1bb5166983a6ab.tar.bz2
gentoo-b522124233e90a84963ca9512f1bb5166983a6ab.zip
Remove masked for removal packages
Diffstat (limited to 'sci-chemistry')
-rw-r--r--sci-chemistry/platon/Manifest1
-rw-r--r--sci-chemistry/platon/metadata.xml8
-rw-r--r--sci-chemistry/platon/platon-20151001.ebuild72
3 files changed, 0 insertions, 81 deletions
diff --git a/sci-chemistry/platon/Manifest b/sci-chemistry/platon/Manifest
deleted file mode 100644
index 39a972099157..000000000000
--- a/sci-chemistry/platon/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST platon-20151001.tar.gz 12076455 BLAKE2B fbf814f849da46ebb19eef9c2ed18be964df06986c04fc42bd1b582023bc6115332e30f7c172f0d2e9e5e0fd473eaac2c996c0dd494e8e5b6d99c66295cf1ea9 SHA512 fc93e4c425c25ddc9ae634c82b63e95c5ce99bcbada43976478a58783e3b369f082e08e2ee24ff7d9ebe2d9d2d730cd42f6361276a53bed9edd0c0476cfb5148
diff --git a/sci-chemistry/platon/metadata.xml b/sci-chemistry/platon/metadata.xml
deleted file mode 100644
index da36ecbfcd6a..000000000000
--- a/sci-chemistry/platon/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/platon/platon-20151001.ebuild b/sci-chemistry/platon/platon-20151001.ebuild
deleted file mode 100644
index 7fcfb6bfc853..000000000000
--- a/sci-chemistry/platon/platon-20151001.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils fortran-2 flag-o-matic multilib toolchain-funcs
-
-DESCRIPTION="Versatile, SHELX-97 compatible, multipurpose crystallographic tool"
-HOMEPAGE="http://www.cryst.chem.uu.nl/platon/"
-SRC_URI="http://www.cryst.chem.uu.nl/xraysoft/unix/${PN}.tar.gz -> ${P}.tar.gz"
-
-SLOT="0"
-LICENSE="free-noncomm"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
-IUSE="examples"
-
-# Can't do libf2c dependent on whether <gcc-4 is selected for the build,
-# so we must always require it
-RDEPEND="x11-libs/libX11"
-DEPEND="${RDEPEND}"
-
-RESTRICT="mirror"
-
-S="${WORKDIR}/${PN}"
-
-pkg_nofetch() {
- elog "If there is a digest mismatch, please file a bug"
- elog "at https://bugs.gentoo.org/ -- a version bump"
- elog "is probably required."
-}
-
-src_unpack() {
- default
- cd "${S}" || die
- gunzip platon.f.gz xdrvr.c.gz || die
-}
-
-src_compile() {
- # easy to ICE, at least on gcc 4.3
- strip-flags
-
- COMMAND="$(tc-getCC) -c ${CFLAGS} xdrvr.c"
- echo ${COMMAND}
- ${COMMAND} || die "Compilation of xdrvr.c failed"
- COMMAND="$(tc-getFC) -c ${FFLAGS:- -O2} -fno-second-underscore platon.f"
- echo ${COMMAND}
- ${COMMAND} || die "Compilation of platon.f failed"
- COMMAND="$(tc-getFC) -o platon ${LDFLAGS} platon.o xdrvr.o -lX11 ${F2C}"
- echo ${COMMAND}
- ${COMMAND} || die "Linking failed"
-}
-
-src_install() {
- dobin platon
-
- for bin in pluton s cifchk helena stidy; do
- dosym platon /usr/bin/${bin}
- done
-
- insinto /usr/$(get_libdir)/platon
- doins check.def
-
- echo "CHECKDEF=\"${EPREFIX}/usr/$(get_libdir)/platon/check.def\"" > "${T}"/env.d
- newenvd "${T}"/env.d 50platon
-
- dodoc README.*
-
- if use examples; then
- insinto /usr/share/${PN}
- doins -r TEST
- fi
-}