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-1312.ebuild ChangeLog
Date: Sun, 01 Dec 2013 17:02:26
Message-Id: 20131201170219.5846B2004B@flycatcher.gentoo.org
1 jlec 13/12/01 17:02:19
2
3 Modified: ChangeLog
4 Added: rebase-1312.ebuild
5 Log:
6 sci-biology/rebase: Version Bump
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
9
10 Revision Changes Path
11 1.119 sci-biology/rebase/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/rebase/ChangeLog?rev=1.119&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/rebase/ChangeLog?rev=1.119&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/rebase/ChangeLog?r1=1.118&r2=1.119
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-biology/rebase/ChangeLog,v
20 retrieving revision 1.118
21 retrieving revision 1.119
22 diff -u -r1.118 -r1.119
23 --- ChangeLog 6 Nov 2013 12:32:47 -0000 1.118
24 +++ ChangeLog 1 Dec 2013 17:02:19 -0000 1.119
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-biology/rebase
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/rebase/ChangeLog,v 1.118 2013/11/06 12:32:47 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/rebase/ChangeLog,v 1.119 2013/12/01 17:02:19 jlec Exp $
30 +
31 +*rebase-1312 (01 Dec 2013)
32 +
33 + 01 Dec 2013; Justin Lecher <jlec@g.o> +rebase-1312.ebuild:
34 + Version Bump
35
36 06 Nov 2013; Justin Lecher <jlec@g.o> Manifest:
37 Fix tarball and ist checksum, #490360
38
39
40
41 1.1 sci-biology/rebase/rebase-1312.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/rebase/rebase-1312.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/rebase/rebase-1312.ebuild?rev=1.1&content-type=text/plain
45
46 Index: rebase-1312.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sci-biology/rebase/rebase-1312.ebuild,v 1.1 2013/12/01 17:02:19 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 }