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/dialign-tx: ChangeLog dialign-tx-1.0.2-r1.ebuild
Date: Thu, 09 Sep 2010 09:36:23
Message-Id: 20100909093617.9783C20051@flycatcher.gentoo.org
1 xarthisius 10/09/09 09:36:17
2
3 Modified: ChangeLog
4 Added: dialign-tx-1.0.2-r1.ebuild
5 Log:
6 Respect LDFLAGS wrt bug 336533. Thanks to Diego for the report. Fix implicit function declarations.
7
8 (Portage version: 2.2_rc77/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.4 sci-biology/dialign-tx/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/dialign-tx/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/dialign-tx/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/dialign-tx/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-biology/dialign-tx/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 9 Feb 2010 11:20:45 -0000 1.3
24 +++ ChangeLog 9 Sep 2010 09:36:17 -0000 1.4
25 @@ -1,6 +1,13 @@
26 # ChangeLog for sci-biology/dialign-tx
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/dialign-tx/ChangeLog,v 1.3 2010/02/09 11:20:45 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/dialign-tx/ChangeLog,v 1.4 2010/09/09 09:36:17 xarthisius Exp $
30 +
31 +*dialign-tx-1.0.2-r1 (09 Sep 2010)
32 +
33 + 09 Sep 2010; Kacper Kowalik <xarthisius@g.o>
34 + +dialign-tx-1.0.2-r1.ebuild, +files/dialign-tx-1.0.2-implicits.patch:
35 + Respect LDFLAGS wrt bug 336533. Thanks to Diego for the report. Fix
36 + implicit function declarations.
37
38 09 Feb 2010; Pacho Ramos <pacho@g.o> dialign-tx-1.0.2.ebuild:
39 amd64 stable, bug 298774
40
41
42
43 1.1 sci-biology/dialign-tx/dialign-tx-1.0.2-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/dialign-tx/dialign-tx-1.0.2-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/dialign-tx/dialign-tx-1.0.2-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: dialign-tx-1.0.2-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sci-biology/dialign-tx/dialign-tx-1.0.2-r1.ebuild,v 1.1 2010/09/09 09:36:17 xarthisius Exp $
53
54 EAPI=2
55
56 inherit eutils multilib toolchain-funcs
57
58 MY_P=DIALIGN-TX_${PV}
59
60 DESCRIPTION="Greedy and progressive approaches for segment-based multiple sequence alignment"
61 HOMEPAGE="http://dialign-tx.gobics.de/"
62 SRC_URI="http://dialign-tx.gobics.de/${MY_P}.tar.gz"
63
64 LICENSE="LGPL-2.1"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE=""
68
69 S=${WORKDIR}/${MY_P}
70
71 src_prepare() {
72 sed -e "s/\$(CC) -o/\$(CC) \$(LDFLAGS) -o/" \
73 -i source/Makefile || die #336533
74 epatch "${FILESDIR}"/${P}-implicits.patch
75 }
76
77 src_compile() {
78 emake -C source clean
79 emake -C source CC="$(tc-getCC)" \
80 CPPFLAGS="" || die "make failed"
81 }
82
83 src_install() {
84 DESTTREE="/usr" dobin "${S}"/source/dialign-tx
85 insinto /usr/$(get_libdir)/${PN}/conf
86 doins "${S}"/conf/*
87 }
88
89 pkg_postinst() {
90 einfo "The configuration directory is"
91 einfo "${ROOT}usr/$(get_libdir)/${PN}/conf"
92 einfo "You will need to pass this to ${PN} on every run."
93 }