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/ariadne/
Date: Sun, 26 Feb 2017 19:19:00
Message-Id: 1488136725.ba8df63f6010dd2a03091f1cb818819289f0cd9a.soap@gentoo
1 commit: ba8df63f6010dd2a03091f1cb818819289f0cd9a
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 26 19:17:28 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 26 19:18:45 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba8df63f
7
8 sci-biology/ariadne: Remove old
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 sci-biology/ariadne/ariadne-1.3-r1.ebuild | 38 -----------------------------
13 sci-biology/ariadne/ariadne-1.3-r2.ebuild | 40 -------------------------------
14 2 files changed, 78 deletions(-)
15
16 diff --git a/sci-biology/ariadne/ariadne-1.3-r1.ebuild b/sci-biology/ariadne/ariadne-1.3-r1.ebuild
17 deleted file mode 100644
18 index 80a05b612c..0000000000
19 --- a/sci-biology/ariadne/ariadne-1.3-r1.ebuild
20 +++ /dev/null
21 @@ -1,38 +0,0 @@
22 -# Copyright 1999-2013 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -# $Id$
25 -
26 -inherit toolchain-funcs eutils
27 -
28 -DESCRIPTION="Protein sequences and profiles comparison"
29 -
30 -HOMEPAGE="http://www.well.ox.ac.uk/ariadne/"
31 -SRC_URI="http://www.well.ox.ac.uk/${PN}/${P}.tar.Z"
32 -
33 -LICENSE="ARIADNE"
34 -SLOT="0"
35 -KEYWORDS="~amd64 x86"
36 -IUSE=""
37 -
38 -DEPEND=">=sci-biology/ncbi-tools-0.20041020-r1"
39 -RDEPEND="${DEPEND}"
40 -
41 -S="${WORKDIR}/SRC-${PV}"
42 -
43 -src_unpack(){
44 - unpack ${A}
45 - cd "${S}"
46 - epatch "${FILESDIR}"/${P}-gcc4.patch
47 - sed -e "s/CC = gcc/CC = $(tc-getCC)/" \
48 - -e "s/OPTIMISE = -O2/OPTIMISE = ${CFLAGS}/" \
49 - -i Makefile || die
50 - sed -e "s/blosum62/BLOSUM62/" -i prospero.c || die
51 -}
52 -
53 -src_install() {
54 - dobin Linux/{ariadne,prospero} || die
55 - dolib Linux/libseq.a || die
56 - insinto /usr/include/${PN}
57 - doins Include/*.h || die
58 - dodoc README || die
59 -}
60
61 diff --git a/sci-biology/ariadne/ariadne-1.3-r2.ebuild b/sci-biology/ariadne/ariadne-1.3-r2.ebuild
62 deleted file mode 100644
63 index 1fa55ce322..0000000000
64 --- a/sci-biology/ariadne/ariadne-1.3-r2.ebuild
65 +++ /dev/null
66 @@ -1,40 +0,0 @@
67 -# Copyright 1999-2013 Gentoo Foundation
68 -# Distributed under the terms of the GNU General Public License v2
69 -# $Id$
70 -
71 -EAPI=4
72 -
73 -inherit eutils toolchain-funcs
74 -
75 -DESCRIPTION="Protein sequences and profiles comparison"
76 -HOMEPAGE="http://www.well.ox.ac.uk/ariadne/"
77 -SRC_URI="http://www.well.ox.ac.uk/${PN}/${P}.tar.Z"
78 -
79 -LICENSE="ARIADNE"
80 -SLOT="0"
81 -KEYWORDS="~amd64 ~x86"
82 -IUSE="static-libs"
83 -
84 -DEPEND=">=sci-biology/ncbi-tools-0.20041020-r1"
85 -RDEPEND="${DEPEND}"
86 -
87 -S=${WORKDIR}/SRC-${PV}
88 -
89 -src_prepare() {
90 - epatch "${FILESDIR}"/${P}-gcc4.patch \
91 - "${FILESDIR}"/${P}-implicits.patch
92 - sed -i -e "s/\$(CFLAGS)/\$(LDFLAGS) &/" Makefile || die #359045
93 - sed -e "s/blosum62/BLOSUM62/" -i prospero.c || die
94 -}
95 -
96 -src_compile() {
97 - emake CC="$(tc-getCC)" OPTIMISE="${CFLAGS}"
98 -}
99 -
100 -src_install() {
101 - dobin Linux/{ariadne,prospero}
102 - use static-libs && dolib.a Linux/libseq.a
103 - insinto /usr/include/${PN}
104 - doins Include/*.h || die
105 - dodoc README || die
106 -}