aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHorea Christian <chr@chymera.eu>2020-09-28 04:18:16 -0400
committerHorea Christian <chr@chymera.eu>2020-09-28 04:18:16 -0400
commit2ea18f2946d8584b6119c4d3e7895539680ea599 (patch)
tree91ee53e9de408b1597f276ab9fc40b7f4b99debd /sci-chemistry/mtz2sca
parentsci-chemistry/mtz2hkl: removed discontinued package (diff)
downloadsci-2ea18f2946d8584b6119c4d3e7895539680ea599.tar.gz
sci-2ea18f2946d8584b6119c4d3e7895539680ea599.tar.bz2
sci-2ea18f2946d8584b6119c4d3e7895539680ea599.zip
sci-chemistry/mtz2sca: removed discontinued package
Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Horea Christian <chr@chymera.eu>
Diffstat (limited to 'sci-chemistry/mtz2sca')
-rw-r--r--sci-chemistry/mtz2sca/Manifest1
-rw-r--r--sci-chemistry/mtz2sca/files/0.3-gentoo.patch26
-rw-r--r--sci-chemistry/mtz2sca/metadata.xml8
-rw-r--r--sci-chemistry/mtz2sca/mtz2sca-0.3.ebuild35
4 files changed, 0 insertions, 70 deletions
diff --git a/sci-chemistry/mtz2sca/Manifest b/sci-chemistry/mtz2sca/Manifest
deleted file mode 100644
index 3dcdf1281..000000000
--- a/sci-chemistry/mtz2sca/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST mtz2sca_v0.3.tar.gz 17190 BLAKE2B ee21bbac0bce5d7d87ec06b270f53b46434e5b8d634ecc815f4ff787ef41d82860606780ba537e8c72d90b80f4f0ae6f96d082fee59019d8eee2fb6a25f73a10 SHA512 b74eb3dd03276e0ffa78a92820362306a9f0974bafd178cda93a4c960fb67cedf5b6410e51bdf71d230a86b6d8b9eb35d239eb6c2a5c4596cf049150337d42b2
diff --git a/sci-chemistry/mtz2sca/files/0.3-gentoo.patch b/sci-chemistry/mtz2sca/files/0.3-gentoo.patch
deleted file mode 100644
index bbab8d2f6..000000000
--- a/sci-chemistry/mtz2sca/files/0.3-gentoo.patch
+++ /dev/null
@@ -1,26 +0,0 @@
---- Makefile 2007-11-19 09:20:45.000000000 +0100
-+++ Makefile.new 2009-07-16 22:42:22.000000000 +0200
-@@ -1,11 +1,11 @@
- CC = gcc
- CXX = g++
- CFLAGS = -g
--COPT = -O2
-+COPT =
- DEFS =
- CCP4 = /usr/local/crystallography/libs/gpp4-1.0.4
--LDFLAGS = -static -L${CCP4}/lib -lgpp4
--INCL = -I${CCP4}/include/gpp4
-+LIBS = -lccp4c
-+INCL = -I/usr/include/cpp4
- TARGET = mtz2sca
- OBJS = label.o \
- mtzin.o \
-@@ -17,7 +17,7 @@
- mtz2sca.o
-
- all: $(OBJS) defines.h
-- $(CXX) $(CFLAGS) $(DEFS) $(INCL) $(OBJS) -o $(TARGET) $(LDFLAGS)
-+ $(CXX) $(CFLAGS) $(LDFLAGS) -o $(TARGET) $(DEFS) $(INCL) $(OBJS) $(LIBS)
-
- %.o: %.cpp defines.h
- $(CXX) -c $(INCL) $(DEFS) $(CFLAGS) $(COPT) $<
diff --git a/sci-chemistry/mtz2sca/metadata.xml b/sci-chemistry/mtz2sca/metadata.xml
deleted file mode 100644
index da36ecbfc..000000000
--- a/sci-chemistry/mtz2sca/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/mtz2sca/mtz2sca-0.3.ebuild b/sci-chemistry/mtz2sca/mtz2sca-0.3.ebuild
deleted file mode 100644
index 4ecbc0b82..000000000
--- a/sci-chemistry/mtz2sca/mtz2sca-0.3.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Converts CCP4 mtz-files containing anomalous data to Scalepack format"
-HOMEPAGE="http://shelx.uni-ac.gwdg.de/~tg/research/programs/conv/mtz2x/mtz2sca/"
-SRC_URI="http://shelx.uni-ac.gwdg.de/~tg/research/programs/conv/mtz2x/${PN}/binaries/${PV}/${PN}_v${PV}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="sci-libs/libccp4"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}"/
-
-src_prepare() {
- epatch "${FILESDIR}"/${PV}-gentoo.patch
-}
-
-src_compile() {
- emake \
- CXX=$(tc-getCXX) \
- CFLAGS="${CFLAGS}" \
- LDFLAGS="${LDFLAGS}"
-}
-
-src_install() {
- dobin ${PN}
-}