Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-chemistry/redcat/files/, sci-chemistry/redcat/
Date: Sat, 18 Nov 2017 14:42:04
Message-Id: 1511016101.d32956d25396c0405bcb13115bcf91772138a9cf.jlec@gentoo
1 commit: d32956d25396c0405bcb13115bcf91772138a9cf
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 18 14:41:41 2017 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 18 14:41:41 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=d32956d2
7
8 sci-chemistry/redcat: Drop due to unmet dependency
9
10 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
11
12 sci-chemistry/redcat/files/CMakeLists.txt | 13 -------
13 sci-chemistry/redcat/metadata.xml | 11 ------
14 sci-chemistry/redcat/redcat-3.ebuild | 63 -------------------------------
15 3 files changed, 87 deletions(-)
16
17 diff --git a/sci-chemistry/redcat/files/CMakeLists.txt b/sci-chemistry/redcat/files/CMakeLists.txt
18 deleted file mode 100644
19 index dbb134cf0..000000000
20 --- a/sci-chemistry/redcat/files/CMakeLists.txt
21 +++ /dev/null
22 @@ -1,13 +0,0 @@
23 -cmake_minimum_required (VERSION 2.8)
24 -project (Redcat)
25 -
26 -find_package(Eigen3 REQUIRED)
27 -
28 -include_directories (${Redcat_SOURCE_DIR}/src)
29 -include_directories (${EIGEN3_INCLUDE_DIR})
30 -
31 -add_executable (Redcat src/main.cpp src/Redcat.cpp src/tensor.cpp src/matrix.cpp src/SVDiface.cpp)
32 -add_executable (Dynamic src/Dynamic.cpp)
33 -
34 -install (TARGETS Redcat Dynamic DESTINATION bin)
35 -
36
37 diff --git a/sci-chemistry/redcat/metadata.xml b/sci-chemistry/redcat/metadata.xml
38 deleted file mode 100644
39 index bce834c0c..000000000
40 --- a/sci-chemistry/redcat/metadata.xml
41 +++ /dev/null
42 @@ -1,11 +0,0 @@
43 -<?xml version="1.0" encoding="UTF-8"?>
44 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
45 -<pkgmetadata>
46 - <maintainer type="person">
47 - <email>jlec@g.o</email>
48 - </maintainer>
49 -<maintainer type="project">
50 - <email>sci-chemistry@g.o</email>
51 - <name>Gentoo Chemistry Project</name>
52 - </maintainer>
53 -</pkgmetadata>
54
55 diff --git a/sci-chemistry/redcat/redcat-3.ebuild b/sci-chemistry/redcat/redcat-3.ebuild
56 deleted file mode 100644
57 index 8f4d8133f..000000000
58 --- a/sci-chemistry/redcat/redcat-3.ebuild
59 +++ /dev/null
60 @@ -1,63 +0,0 @@
61 -# Copyright 1999-2015 Gentoo Foundation
62 -# Distributed under the terms of the GNU General Public License v2
63 -
64 -EAPI=5
65 -
66 -inherit cmake-utils java-pkg-2
67 -
68 -DESCRIPTION="Analysis of RDCs for structure validation and elucidation"
69 -HOMEPAGE="http://ifestos.cse.sc.edu/software.php"
70 -SRC_URI="http://ifestos.cse.sc.edu/downloads.php?get=Redcat.${PV}.tar.gz -> Redcat.${PV}.tar.gz"
71 -
72 -SLOT="0"
73 -LICENSE="GPL-3"
74 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
75 -IUSE=""
76 -
77 -RDEPEND="
78 - dev-cpp/eigen:3
79 - dev-lang/tcl:*
80 - dev-tcltk/bwidget
81 - virtual/jdk:1.7
82 - "
83 -DEPEND="${RDEPEND}
84 - virtual/jre:1.7
85 -"
86 -
87 -RESTRICT="fetch"
88 -
89 -S="${WORKDIR}"/Redcat
90 -
91 -pkg_nofetch() {
92 - elog "Please download ${A} from"
93 - elog "http://ifestos.cse.sc.edu/downloads.php"
94 -}
95 -
96 -src_prepare() {
97 - cp "${FILESDIR}"/CMakeLists.txt . || die
98 - sed \
99 - -e '/BWidget/s:1.9.4:1.9.7:g' \
100 - -i scripts/REDCAT.tcl || die
101 - cmake-utils_src_prepare
102 - java-pkg-2_src_prepare
103 -}
104 -
105 -src_install() {
106 - cmake-utils_src_install
107 -
108 - java-pkg_dojar XplorGUI/XplorGUI.jar
109 - java-pkg_dolauncher XplorGUI --jar XplorGUI.jar
110 -
111 - dodoc Misc/REDCATManual.odt
112 - docompress -x /usr/share/doc/${PF}/REDCATManual.odt
113 -
114 - exeinto /usr/libexec/${PN}
115 - doexe scripts/*
116 -
117 - dosym ../libexec/${PN}/REDCAT.tcl /usr/bin/REDCAT.tcl
118 - dosym ../libexec/${PN}/MakeRedcat.tcl /usr/bin/MakeRedcat.tcl
119 -
120 - echo "${EPREFIX}/usr/share/redcat/" > conf/${PN}.conf
121 - insinto /usr/share/redcat/
122 - doins -r conf/${PN}.conf vmd data
123 -}