Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-biology/rebase: ChangeLog rebase-1404.ebuild rebase-1311.ebuild rebase-1202.ebuild rebase-1312.ebuild rebase-1303.ebuild rebase-1310.ebuild
Date: Mon, 02 Jun 2014 08:46:56
Message-Id: 20140602084652.A043D2004E@flycatcher.gentoo.org
1 jlec 14/06/02 08:46:52
2
3 Modified: ChangeLog
4 Added: rebase-1404.ebuild
5 Removed: rebase-1311.ebuild rebase-1202.ebuild
6 rebase-1312.ebuild rebase-1303.ebuild
7 rebase-1310.ebuild
8 Log:
9 sci-biology/rebase: Version BUmp; clean old
10
11 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
12
13 Revision Changes Path
14 1.121 sci-biology/rebase/ChangeLog
15
16 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/rebase/ChangeLog?rev=1.121&view=markup
17 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/rebase/ChangeLog?rev=1.121&content-type=text/plain
18 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/rebase/ChangeLog?r1=1.120&r2=1.121
19
20 Index: ChangeLog
21 ===================================================================
22 RCS file: /var/cvsroot/gentoo-x86/sci-biology/rebase/ChangeLog,v
23 retrieving revision 1.120
24 retrieving revision 1.121
25 diff -u -r1.120 -r1.121
26 --- ChangeLog 6 Mar 2014 11:25:34 -0000 1.120
27 +++ ChangeLog 2 Jun 2014 08:46:52 -0000 1.121
28 @@ -1,6 +1,13 @@
29 # ChangeLog for sci-biology/rebase
30 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/rebase/ChangeLog,v 1.120 2014/03/06 11:25:34 jlec Exp $
32 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/rebase/ChangeLog,v 1.121 2014/06/02 08:46:52 jlec Exp $
33 +
34 +*rebase-1404 (02 Jun 2014)
35 +
36 + 02 Jun 2014; Justin Lecher <jlec@g.o> -rebase-1202.ebuild,
37 + -rebase-1303.ebuild, -rebase-1310.ebuild, -rebase-1311.ebuild,
38 + -rebase-1312.ebuild, +rebase-1404.ebuild:
39 + Version BUmp; clean old
40
41 *rebase-1403 (06 Mar 2014)
42
43
44
45
46 1.1 sci-biology/rebase/rebase-1404.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/rebase/rebase-1404.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/rebase/rebase-1404.ebuild?rev=1.1&content-type=text/plain
50
51 Index: rebase-1404.ebuild
52 ===================================================================
53 # Copyright 1999-2014 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/sci-biology/rebase/rebase-1404.ebuild,v 1.1 2014/06/02 08:46:52 jlec Exp $
56
57 EAPI=5
58
59 MY_PV=${PV#1}
60
61 DESCRIPTION="A restriction enzyme database"
62 HOMEPAGE="http://rebase.neb.com"
63 SRC_URI="http://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz"
64
65 SLOT="0"
66 LICENSE="public-domain"
67 KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
68 IUSE="emboss minimal"
69
70 RDEPEND="emboss? ( >=sci-biology/emboss-5.0.0 )"
71 DEPEND="${RDEPEND}"
72
73 RESTRICT="binchecks strip"
74
75 src_compile() {
76 if use emboss; then
77 echo; einfo "Indexing Rebase for usage with EMBOSS."
78 mkdir REBASE || die
79 EMBOSS_DATA="." rebaseextract -auto -infile withrefm.${MY_PV} \
80 -protofile proto.${MY_PV} -equivalences \
81 || die "Indexing Rebase failed."
82 echo
83 fi
84 }
85
86 src_install() {
87 if ! use minimal; then
88 insinto /usr/share/${PN}
89 doins withrefm.${MY_PV} proto.${MY_PV}
90 fi
91 newdoc REBASE.DOC README
92 if use emboss; then
93 insinto /usr/share/EMBOSS/data/REBASE
94 doins REBASE/embossre.{enz,ref,sup}
95 insinto /usr/share/EMBOSS/data
96 doins REBASE/embossre.equ
97 fi
98 }