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-1507.ebuild ChangeLog
Date: Tue, 30 Jun 2015 06:28:12
Message-Id: 20150630062804.13C7B744@oystercatcher.gentoo.org
1 jlec 15/06/30 06:28:04
2
3 Modified: ChangeLog
4 Added: rebase-1507.ebuild
5 Log:
6 Version Bump
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key E9402A79B03529A2!)
9
10 Revision Changes Path
11 1.165 sci-biology/rebase/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/rebase/ChangeLog?rev=1.165&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/rebase/ChangeLog?rev=1.165&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/rebase/ChangeLog?r1=1.164&r2=1.165
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-biology/rebase/ChangeLog,v
20 retrieving revision 1.164
21 retrieving revision 1.165
22 diff -u -r1.164 -r1.165
23 --- ChangeLog 15 Jun 2015 17:59:38 -0000 1.164
24 +++ ChangeLog 30 Jun 2015 06:28:04 -0000 1.165
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.164 2015/06/15 17:59:38 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/rebase/ChangeLog,v 1.165 2015/06/30 06:28:04 jlec Exp $
30 +
31 +*rebase-1507 (30 Jun 2015)
32 +
33 + 30 Jun 2015; Justin Lecher <jlec@g.o> +rebase-1507.ebuild:
34 + Version Bump
35
36 15 Jun 2015; Justin Lecher <jlec@g.o> -rebase-1504.ebuild:
37 Drop old
38
39
40
41 1.1 sci-biology/rebase/rebase-1507.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/rebase/rebase-1507.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/rebase/rebase-1507.ebuild?rev=1.1&content-type=text/plain
45
46 Index: rebase-1507.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-1507.ebuild,v 1.1 2015/06/30 06:28:04 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 }