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