Gentoo Archives: gentoo-commits

From: Horea Christian <horea.christ@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-chemistry/mtz2sca/, sci-chemistry/mtz2sca/files/
Date: Mon, 28 Sep 2020 08:28:04
Message-Id: 1601281096.2ea18f2946d8584b6119c4d3e7895539680ea599.chymera@gentoo
1 commit: 2ea18f2946d8584b6119c4d3e7895539680ea599
2 Author: Horea Christian <chr <AT> chymera <DOT> eu>
3 AuthorDate: Mon Sep 28 08:18:16 2020 +0000
4 Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
5 CommitDate: Mon Sep 28 08:18:16 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=2ea18f29
7
8 sci-chemistry/mtz2sca: removed discontinued package
9
10 Package-Manager: Portage-3.0.8, Repoman-3.0.1
11 Signed-off-by: Horea Christian <chr <AT> chymera.eu>
12
13 sci-chemistry/mtz2sca/files/0.3-gentoo.patch | 26 ---------------------
14 sci-chemistry/mtz2sca/metadata.xml | 8 -------
15 sci-chemistry/mtz2sca/mtz2sca-0.3.ebuild | 35 ----------------------------
16 3 files changed, 69 deletions(-)
17
18 diff --git a/sci-chemistry/mtz2sca/files/0.3-gentoo.patch b/sci-chemistry/mtz2sca/files/0.3-gentoo.patch
19 deleted file mode 100644
20 index bbab8d2f6..000000000
21 --- a/sci-chemistry/mtz2sca/files/0.3-gentoo.patch
22 +++ /dev/null
23 @@ -1,26 +0,0 @@
24 ---- Makefile 2007-11-19 09:20:45.000000000 +0100
25 -+++ Makefile.new 2009-07-16 22:42:22.000000000 +0200
26 -@@ -1,11 +1,11 @@
27 - CC = gcc
28 - CXX = g++
29 - CFLAGS = -g
30 --COPT = -O2
31 -+COPT =
32 - DEFS =
33 - CCP4 = /usr/local/crystallography/libs/gpp4-1.0.4
34 --LDFLAGS = -static -L${CCP4}/lib -lgpp4
35 --INCL = -I${CCP4}/include/gpp4
36 -+LIBS = -lccp4c
37 -+INCL = -I/usr/include/cpp4
38 - TARGET = mtz2sca
39 - OBJS = label.o \
40 - mtzin.o \
41 -@@ -17,7 +17,7 @@
42 - mtz2sca.o
43 -
44 - all: $(OBJS) defines.h
45 -- $(CXX) $(CFLAGS) $(DEFS) $(INCL) $(OBJS) -o $(TARGET) $(LDFLAGS)
46 -+ $(CXX) $(CFLAGS) $(LDFLAGS) -o $(TARGET) $(DEFS) $(INCL) $(OBJS) $(LIBS)
47 -
48 - %.o: %.cpp defines.h
49 - $(CXX) -c $(INCL) $(DEFS) $(CFLAGS) $(COPT) $<
50
51 diff --git a/sci-chemistry/mtz2sca/metadata.xml b/sci-chemistry/mtz2sca/metadata.xml
52 deleted file mode 100644
53 index da36ecbfc..000000000
54 --- a/sci-chemistry/mtz2sca/metadata.xml
55 +++ /dev/null
56 @@ -1,8 +0,0 @@
57 -<?xml version="1.0" encoding="UTF-8"?>
58 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
59 -<pkgmetadata>
60 - <maintainer type="project">
61 - <email>sci-chemistry@g.o</email>
62 - <name>Gentoo Chemistry Project</name>
63 - </maintainer>
64 -</pkgmetadata>
65
66 diff --git a/sci-chemistry/mtz2sca/mtz2sca-0.3.ebuild b/sci-chemistry/mtz2sca/mtz2sca-0.3.ebuild
67 deleted file mode 100644
68 index 4ecbc0b82..000000000
69 --- a/sci-chemistry/mtz2sca/mtz2sca-0.3.ebuild
70 +++ /dev/null
71 @@ -1,35 +0,0 @@
72 -# Copyright 1999-2015 Gentoo Foundation
73 -# Distributed under the terms of the GNU General Public License v2
74 -
75 -EAPI=5
76 -
77 -inherit eutils toolchain-funcs
78 -
79 -DESCRIPTION="Converts CCP4 mtz-files containing anomalous data to Scalepack format"
80 -HOMEPAGE="http://shelx.uni-ac.gwdg.de/~tg/research/programs/conv/mtz2x/mtz2sca/"
81 -SRC_URI="http://shelx.uni-ac.gwdg.de/~tg/research/programs/conv/mtz2x/${PN}/binaries/${PV}/${PN}_v${PV}.tar.gz"
82 -
83 -LICENSE="GPL-3"
84 -SLOT="0"
85 -KEYWORDS="~amd64 ~x86"
86 -IUSE=""
87 -
88 -RDEPEND="sci-libs/libccp4"
89 -DEPEND="${RDEPEND}"
90 -
91 -S="${WORKDIR}"/
92 -
93 -src_prepare() {
94 - epatch "${FILESDIR}"/${PV}-gentoo.patch
95 -}
96 -
97 -src_compile() {
98 - emake \
99 - CXX=$(tc-getCXX) \
100 - CFLAGS="${CFLAGS}" \
101 - LDFLAGS="${LDFLAGS}"
102 -}
103 -
104 -src_install() {
105 - dobin ${PN}
106 -}