Gentoo Archives: gentoo-commits

From: Martin Mokrejs <mmokrejs@×××××××××××××××.cz>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/phusion/
Date: Sat, 02 May 2015 15:09:55
Message-Id: 1430579340.a73a521f084a0e830acc97812812a694a7fe3e00.mmokrejs@gentoo
1 commit: a73a521f084a0e830acc97812812a694a7fe3e00
2 Author: Martin Mokrejš <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
3 AuthorDate: Sat May 2 15:09:00 2015 +0000
4 Commit: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
5 CommitDate: Sat May 2 15:09:00 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=a73a521f
7
8 sci-biology/phusion: clarified missing LICENSE, have asked upstream for clarification
9
10 Package-Manager: portage-2.2.18
11
12 sci-biology/phusion/ChangeLog | 10 ++++++++
13 sci-biology/phusion/metadata.xml | 9 +++++++
14 sci-biology/phusion/phusion-2.1c.ebuild | 42 +++++++++++++++++++++++++++++++++
15 3 files changed, 61 insertions(+)
16
17 diff --git a/sci-biology/phusion/ChangeLog b/sci-biology/phusion/ChangeLog
18 new file mode 100644
19 index 0000000..b829645
20 --- /dev/null
21 +++ b/sci-biology/phusion/ChangeLog
22 @@ -0,0 +1,10 @@
23 +# ChangeLog for sci-biology/phusion
24 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
25 +# $Header: $
26 +
27 +*phusion-2.1c (02 May 2015)
28 +
29 + 02 May 2015; Martin Mokrejs <mmokrejs@×××××××××××××××.cz> +metadata.xml,
30 + +phusion-2.1c.ebuild:
31 + sci-biology/phusion: clarified missing LICENSE, have asked upstream for
32 + clarification
33
34 diff --git a/sci-biology/phusion/metadata.xml b/sci-biology/phusion/metadata.xml
35 new file mode 100644
36 index 0000000..2bc8930
37 --- /dev/null
38 +++ b/sci-biology/phusion/metadata.xml
39 @@ -0,0 +1,9 @@
40 +<?xml version="1.0" encoding="UTF-8"?>
41 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
42 +<pkgmetadata>
43 + <herd>sci-biology</herd>
44 + <maintainer>
45 + <email>mmokrejs@×××××××××××××××.cz</email>
46 + <name>Martin Mokrejs</name>
47 + </maintainer>
48 +</pkgmetadata>
49
50 diff --git a/sci-biology/phusion/phusion-2.1c.ebuild b/sci-biology/phusion/phusion-2.1c.ebuild
51 new file mode 100644
52 index 0000000..14fde04
53 --- /dev/null
54 +++ b/sci-biology/phusion/phusion-2.1c.ebuild
55 @@ -0,0 +1,42 @@
56 +# Copyright 1999-2015 Gentoo Foundation
57 +# Distributed under the terms of the GNU General Public License v2
58 +# $Header: $
59 +
60 +EAPI=5
61 +
62 +inherit eutils
63 +
64 +DESCRIPTION="Whole genome shotgun assembler using phrap (for Sanger-based reads)"
65 +HOMEPAGE="http://www.sanger.ac.uk/resources/software/phusion/"
66 +SRC_URI="ftp://ftp.sanger.ac.uk/pub/resources/software/phusion/phusion_pipeline_v2.1c.tar.gz"
67 +
68 +LICENSE="all-rights-reserved" # temporarily placed value
69 +# from http://genome.cshlp.org/content/13/1/81.full
70 +# Availability
71 +# Phusion is undergoing a rewrite of the code to make this a portable package. It will be made available free of charge to academic sites, but requires licensing for commercial use. For more information please contact the authors.
72 +SLOT="0"
73 +KEYWORDS=""
74 +IUSE=""
75 +
76 +DEPEND="app-shells/tcsh"
77 +RDEPEND="${DEPEND}
78 + sci-biology/phrap
79 + dev-lang/perl"
80 +
81 +# contains bundled ssaha
82 +# file collision with sci-biology/shrimp on /usr/bin/fasta2fastq
83 +
84 +S="${WORKDIR}"/"phusion_pipeline_v2.1c"
85 +
86 +src_prepare(){
87 + cp -pf /usr/bin/phrap src/phrap/phrap.manylong || die
88 +}
89 +
90 +src_compile(){
91 + tcsh install.csh || csh install.csh || die
92 +}
93 +
94 +src_install(){
95 + dobin bin/*
96 + dodoc README.1st releaseNote_v2.1c doc/*
97 +}