Gentoo Archives: gentoo-commits

From: "Olivier Fisette (ribosome)" <ribosome@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-biology/prints: prints-39.0.ebuild ChangeLog
Date: Tue, 01 Sep 2009 13:50:13
Message-Id: E1MiYZG-0001eL-Nu@stork.gentoo.org
1 ribosome 09/09/01 18:58:58
2
3 Modified: ChangeLog
4 Added: prints-39.0.ebuild
5 Log:
6 New upsteam version.
7 (Portage version: 2.2_rc40/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.20 sci-biology/prints/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/prints/ChangeLog?rev=1.20&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/prints/ChangeLog?rev=1.20&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/prints/ChangeLog?r1=1.19&r2=1.20
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-biology/prints/ChangeLog,v
19 retrieving revision 1.19
20 retrieving revision 1.20
21 diff -u -r1.19 -r1.20
22 --- ChangeLog 2 Nov 2006 20:21:23 -0000 1.19
23 +++ ChangeLog 1 Sep 2009 18:58:58 -0000 1.20
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sci-biology/prints
26 -# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/prints/ChangeLog,v 1.19 2006/11/02 20:21:23 grobian Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/prints/ChangeLog,v 1.20 2009/09/01 18:58:58 ribosome Exp $
30 +
31 +*prints-39.0 (01 Sep 2009)
32 +
33 + 01 Sep 2009; Olivier Fisette <ribosome@g.o> +prints-39.0.ebuild:
34 + New upstream version.
35
36 02 Nov 2006; Fabian Groffen <grobian@g.o> prints-38.0.ebuild:
37 Dropped ppc-macos, see you in prefix.
38
39
40
41 1.1 sci-biology/prints/prints-39.0.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/prints/prints-39.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/prints/prints-39.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: prints-39.0.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sci-biology/prints/prints-39.0.ebuild,v 1.1 2009/09/01 18:58:58 ribosome Exp $
51
52 MY_PV="${PV/./_}"
53
54 DESCRIPTION="A protein motif fingerprint database"
55 LICENSE="public-domain"
56 HOMEPAGE="http://www.bioinf.man.ac.uk/dbbrowser/PRINTS/"
57 SRC_URI="mirror://gentoo/${P}.tar.bz2"
58
59 SLOT="0"
60 IUSE="emboss minimal"
61 # Minimal build keeps only the indexed files (if applicable) and the
62 # documentation. The non-indexed database is not installed.
63 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
64
65 DEPEND="emboss? ( sci-biology/emboss )"
66
67 RDEPEND="${DEPEND}"
68
69 src_compile() {
70 if use emboss; then
71 mkdir PRINTS
72 echo
73 einfo "Indexing PRINTS for usage with EMBOSS."
74 EMBOSS_DATA="." printsextract -auto -infile prints${MY_PV}.dat || die \
75 "Indexing PRINTS failed."
76 echo
77 fi
78 }
79
80 src_install() {
81 if ! use minimal; then
82 insinto /usr/share/${PN}
83 doins newpr.lis ${PN}${MY_PV}.{all.fasta,dat,kdat,lis,nam,vsn} || die \
84 "Installing raw database failed."
85 fi
86 if use emboss; then
87 insinto /usr/share/EMBOSS/data/PRINTS
88 doins PRINTS/* || die "Installing EMBOSS data files failed."
89 fi
90 dodoc README || die "Documentation installation failed."
91 }