Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/rnaview/
Date: Sat, 25 Feb 2017 17:13:19
Message-Id: 1488042772.2c550db03d91db4619d309316a5624a9fe59ede4.soap@gentoo
1 commit: 2c550db03d91db4619d309316a5624a9fe59ede4
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 25 16:35:43 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 25 17:12:52 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c550db0
7
8 sci-biology/rnaview: Remove old
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11 Closes: https://github.com/gentoo/gentoo/pull/4076
12
13 sci-biology/rnaview/rnaview-20040713-r2.ebuild | 34 ----------------------
14 sci-biology/rnaview/rnaview-20040713-r3.ebuild | 31 --------------------
15 sci-biology/rnaview/rnaview-20040713.ebuild | 39 --------------------------
16 3 files changed, 104 deletions(-)
17
18 diff --git a/sci-biology/rnaview/rnaview-20040713-r2.ebuild b/sci-biology/rnaview/rnaview-20040713-r2.ebuild
19 deleted file mode 100644
20 index ac9168c575..0000000000
21 --- a/sci-biology/rnaview/rnaview-20040713-r2.ebuild
22 +++ /dev/null
23 @@ -1,34 +0,0 @@
24 -# Copyright 1999-2010 Gentoo Foundation
25 -# Distributed under the terms of the GNU General Public License v2
26 -# $Id$
27 -
28 -EAPI=2
29 -
30 -inherit eutils toolchain-funcs
31 -
32 -DESCRIPTION="Generates 2D displays of RNA/DNA secondary structures with tertiary interactions"
33 -HOMEPAGE="http://ndbserver.rutgers.edu/services/download/index.html"
34 -SRC_URI="mirror://gentoo/${P}.tar.bz2"
35 -LICENSE="public-domain"
36 -
37 -SLOT="0"
38 -KEYWORDS="~amd64 ~x86"
39 -IUSE=""
40 -
41 -src_prepare() {
42 - epatch "${FILESDIR}"/${P}-makefile.patch \
43 - "${FILESDIR}"/${P}-implicit.patch
44 - cat <<- EOF > 22rnaview
45 - RNAVIEW="/usr/share/${PN}"
46 - EOF
47 -}
48 -
49 -src_compile() {
50 - emake CC="$(tc-getCC)" || die
51 -}
52 -
53 -src_install() {
54 - emake DESTDIR="${D}" install || die
55 - dodoc README || die
56 - doenvd 22rnaview || die
57 -}
58
59 diff --git a/sci-biology/rnaview/rnaview-20040713-r3.ebuild b/sci-biology/rnaview/rnaview-20040713-r3.ebuild
60 deleted file mode 100644
61 index 5f46e6bc58..0000000000
62 --- a/sci-biology/rnaview/rnaview-20040713-r3.ebuild
63 +++ /dev/null
64 @@ -1,31 +0,0 @@
65 -# Copyright 1999-2012 Gentoo Foundation
66 -# Distributed under the terms of the GNU General Public License v2
67 -# $Id$
68 -
69 -EAPI=4
70 -
71 -inherit eutils toolchain-funcs
72 -
73 -DESCRIPTION="Generates 2D displays of RNA/DNA secondary structures with tertiary interactions"
74 -HOMEPAGE="http://ndbserver.rutgers.edu/services/download/index.html"
75 -SRC_URI="mirror://gentoo/${P}.tar.bz2"
76 -
77 -LICENSE="public-domain"
78 -SLOT="0"
79 -KEYWORDS="~amd64 ~x86"
80 -IUSE=""
81 -
82 -src_prepare() {
83 - epatch \
84 - "${FILESDIR}"/${P}-makefile.patch \
85 - "${FILESDIR}"/${P}-implicit.patch
86 - cat <<- EOF > 22rnaview
87 - RNAVIEW="${EPREFIX}/usr/share/${PN}"
88 - EOF
89 - tc-export CC
90 -}
91 -
92 -src_install() {
93 - default
94 - doenvd 22rnaview
95 -}
96
97 diff --git a/sci-biology/rnaview/rnaview-20040713.ebuild b/sci-biology/rnaview/rnaview-20040713.ebuild
98 deleted file mode 100644
99 index 9bbb7a81f3..0000000000
100 --- a/sci-biology/rnaview/rnaview-20040713.ebuild
101 +++ /dev/null
102 @@ -1,39 +0,0 @@
103 -# Copyright 1999-2007 Gentoo Foundation
104 -# Distributed under the terms of the GNU General Public License v2
105 -# $Id$
106 -
107 -inherit toolchain-funcs
108 -
109 -DESCRIPTION="Generates 2D displays of RNA/DNA secondary structures with tertiary interactions"
110 -HOMEPAGE="http://ndbserver.rutgers.edu/services/download/index.html"
111 -SRC_URI="mirror://gentoo/${P}.tar.bz2"
112 -LICENSE="public-domain"
113 -
114 -SLOT="0"
115 -KEYWORDS="~amd64 x86"
116 -IUSE=""
117 -
118 -src_unpack() {
119 - unpack ${A}
120 - cd "${S}"
121 - sed -e "s/CC = cc/CC = $(tc-getCC)/" \
122 - -e "s/CFLAGS =/CFLAGS = ${CFLAGS}/" \
123 - -i Makefile || die
124 -}
125 -
126 -src_compile() {
127 - make clean
128 - make || die
129 - cd "${S}"/rnaml2ps
130 - make clean
131 - make || die
132 - cd "${S}"/test
133 - rm '.#t'
134 -}
135 -
136 -src_install() {
137 - dobin bin/rnaview rnaml2ps/rnaml2ps || die
138 - dodoc README || die
139 - mkdir -p "${D}"/usr/share/${PN}
140 - cp -r BASEPARS test "${D}"/usr/share/${PN}
141 -}