Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-biology/rnaview: rnaview-20040713-r2.ebuild ChangeLog rnaview-20040713-r1.ebuild
Date: Mon, 06 Sep 2010 12:24:49
Message-Id: 20100906122445.CF0CD20051@flycatcher.gentoo.org
1 xarthisius 10/09/06 12:24:45
2
3 Modified: ChangeLog
4 Added: rnaview-20040713-r2.ebuild
5 Removed: rnaview-20040713-r1.ebuild
6 Log:
7 Respect LDFLAGS wrt bug 336196. Thanks to Diego for the report. Fix install and implicit function declaration. Drop old.
8
9 (Portage version: 2.2_rc73/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.12 sci-biology/rnaview/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/rnaview/ChangeLog?rev=1.12&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/rnaview/ChangeLog?rev=1.12&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/rnaview/ChangeLog?r1=1.11&r2=1.12
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sci-biology/rnaview/ChangeLog,v
21 retrieving revision 1.11
22 retrieving revision 1.12
23 diff -u -r1.11 -r1.12
24 --- ChangeLog 26 Aug 2008 18:08:55 -0000 1.11
25 +++ ChangeLog 6 Sep 2010 12:24:45 -0000 1.12
26 @@ -1,6 +1,15 @@
27 # ChangeLog for sci-biology/rnaview
28 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/rnaview/ChangeLog,v 1.11 2008/08/26 18:08:55 ribosome Exp $
30 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/rnaview/ChangeLog,v 1.12 2010/09/06 12:24:45 xarthisius Exp $
32 +
33 +*rnaview-20040713-r2 (06 Sep 2010)
34 +
35 + 06 Sep 2010; Kacper Kowalik <xarthisius@g.o>
36 + -rnaview-20040713-r1.ebuild, +rnaview-20040713-r2.ebuild,
37 + +files/rnaview-20040713-implicit.patch,
38 + +files/rnaview-20040713-makefile.patch:
39 + Respect LDFLAGS wrt bug 336196. Thanks to Diego for the report. Fix
40 + install and implicit function declaration. Drop old.
41
42 *rnaview-20040713-r1 (26 Aug 2008)
43
44
45
46
47 1.1 sci-biology/rnaview/rnaview-20040713-r2.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/rnaview/rnaview-20040713-r2.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/rnaview/rnaview-20040713-r2.ebuild?rev=1.1&content-type=text/plain
51
52 Index: rnaview-20040713-r2.ebuild
53 ===================================================================
54 # Copyright 1999-2010 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/sci-biology/rnaview/rnaview-20040713-r2.ebuild,v 1.1 2010/09/06 12:24:45 xarthisius Exp $
57
58 EAPI=2
59
60 inherit eutils toolchain-funcs
61
62 DESCRIPTION="Generates 2D displays of RNA/DNA secondary structures with tertiary interactions"
63 HOMEPAGE="http://ndbserver.rutgers.edu/services/download/index.html"
64 SRC_URI="mirror://gentoo/${P}.tar.bz2"
65 LICENSE="public-domain"
66
67 SLOT="0"
68 KEYWORDS="~amd64 ~x86"
69 IUSE=""
70
71 src_prepare() {
72 epatch "${FILESDIR}"/${P}-makefile.patch \
73 "${FILESDIR}"/${P}-implicit.patch
74 cat <<- EOF > 22rnaview
75 RNAVIEW="/usr/share/${PN}"
76 EOF
77 }
78
79 src_compile() {
80 emake CC="$(tc-getCC)" || die
81 }
82
83 src_install() {
84 emake DESTDIR="${D}" install || die
85 dodoc README || die
86 doenvd 22rnaview || die
87 }