Gentoo Archives: gentoo-commits

From: "Ian Stakenvicius (axs)" <axs@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-biology/GBrowse: GBrowse-2.48-r1.ebuild ChangeLog GBrowse-2.48.ebuild
Date: Wed, 27 Aug 2014 16:23:23
Message-Id: 20140827162319.56E3A3FEB@oystercatcher.gentoo.org
1 axs 14/08/27 16:23:19
2
3 Modified: ChangeLog
4 Added: GBrowse-2.48-r1.ebuild
5 Removed: GBrowse-2.48.ebuild
6 Log:
7 bumped EAPI to 5 to support dev-lang/perl upgrades
8
9 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 2B6559ED)
10
11 Revision Changes Path
12 1.7 sci-biology/GBrowse/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/GBrowse/ChangeLog?rev=1.7&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/GBrowse/ChangeLog?rev=1.7&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/GBrowse/ChangeLog?r1=1.6&r2=1.7
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sci-biology/GBrowse/ChangeLog,v
21 retrieving revision 1.6
22 retrieving revision 1.7
23 diff -u -r1.6 -r1.7
24 --- ChangeLog 19 Jun 2013 03:40:48 -0000 1.6
25 +++ ChangeLog 27 Aug 2014 16:23:19 -0000 1.7
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sci-biology/GBrowse
28 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/GBrowse/ChangeLog,v 1.6 2013/06/19 03:40:48 bicatali Exp $
30 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/GBrowse/ChangeLog,v 1.7 2014/08/27 16:23:19 axs Exp $
32 +
33 +*GBrowse-2.48-r1 (27 Aug 2014)
34 +
35 + 27 Aug 2014; Ian Stakenvicius (_AxS_) <axs@g.o>
36 + +GBrowse-2.48-r1.ebuild, -GBrowse-2.48.ebuild:
37 + bumped EAPI to 5 to support dev-lang/perl upgrades
38
39 19 Jun 2013; Sébastien Fabbro <bicatali@g.o> metadata.xml:
40 herd is now sci-biology
41
42
43
44 1.1 sci-biology/GBrowse/GBrowse-2.48-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/GBrowse/GBrowse-2.48-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/GBrowse/GBrowse-2.48-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: GBrowse-2.48-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/sci-biology/GBrowse/GBrowse-2.48-r1.ebuild,v 1.1 2014/08/27 16:23:19 axs Exp $
54
55 EAPI=5
56
57 MODULE_AUTHOR=LDS
58 inherit perl-module webapp
59
60 DESCRIPTION="Generic Model Organism Database Project - The Generic Genome Browser"
61 HOMEPAGE="http://gmod.org/wiki/GBrowse"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="-minimal mysql postgres +sqlite"
64
65 SLOT="0"
66 WEBAPP_MANUAL_SLOT="yes"
67
68 CDEPEND="!<sci-biology/GBrowse-2.44-r1
69 >=sci-biology/bioperl-1.6.9
70 >=dev-perl/Bio-Graphics-2.09
71 >=dev-perl/GD-2.07
72 >=dev-perl/CGI-Session-4.02
73 dev-perl/IO-String
74 dev-perl/JSON
75 dev-perl/libwww-perl
76 dev-perl/Statistics-Descriptive
77 !minimal? (
78 dev-perl/Bio-Das
79 >=dev-perl/Bio-SamTools-1.20
80 dev-perl/Crypt-SSLeay
81 dev-perl/DB_File-Lock
82 dev-perl/DBI
83 mysql? ( dev-perl/DBD-mysql )
84 postgres? ( dev-perl/DBD-Pg )
85 sqlite? ( dev-perl/DBD-SQLite )
86 dev-perl/FCGI
87 dev-perl/File-NFSLock
88 dev-perl/GD-SVG
89 dev-perl/Net-OpenID-Consumer
90 dev-perl/Net-SMTP-SSL
91 )"
92 # >=dev-perl/Bio-DB-BigFile-1.00 - requires jklib to compile
93 DEPEND="virtual/perl-Module-Build
94 dev-perl/Capture-Tiny
95 ${CDEPEND}"
96 RDEPEND="${CDEPEND}"
97
98 PATCHES=( "${FILESDIR}"/GBrowseInstall.pm-2.39.patch )
99
100 src_configure() {
101 webapp_src_preinst
102
103 # myconf="--install_base=${D}/usr" or "--install_base=/opt/gbrowse"
104 myconf="--conf=/etc/gbrowse2"
105 myconf="${myconf} --htdocs=${MY_HTDOCSDIR}"
106 myconf="${myconf} --cgibin=${MY_CGIBINDIR}"
107 myconf="${myconf} --tmp=/var/tmp/gbrowse2"
108 myconf="${myconf} --persistent=/var/db/gbrowse2"
109 myconf="${myconf} --databases=/var/db/gbrowse2/databases"
110 myconf="${myconf} --installconf=no"
111 myconf="${myconf} --installetc=no"
112 perl-module_src_configure
113 }
114
115 src_install() {
116 dodir /var/tmp/gbrowse2
117 dodir /var/db/gbrowse2/sessions
118 dodir /var/db/gbrowse2/userdata
119 webapp_serverowned -R /var/tmp/gbrowse2 /var/db/gbrowse2
120 perl-module_src_install
121 webapp_src_install
122 }