* [gentoo-commits] proj/sci:master commit in: sci-biology/ffindex/
@ 2015-01-08 22:35 Martin Mokrejs
0 siblings, 0 replies; 8+ messages in thread
From: Martin Mokrejs @ 2015-01-08 22:35 UTC (permalink / raw
To: gentoo-commits
commit: 327968e523bfc4976cf38928a280048b7eb44fc9
Author: Martin Mokrejš <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
AuthorDate: Thu Jan 8 22:33:25 2015 +0000
Commit: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
CommitDate: Thu Jan 8 22:33:25 2015 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=327968e5
sci-biology/ffindex: new package, maybe fits better under some other herd?
Package-Manager: portage-2.2.7
---
sci-biology/ffindex/ChangeLog | 9 +++++++
sci-biology/ffindex/ffindex-0.9.9.3.ebuild | 43 ++++++++++++++++++++++++++++++
sci-biology/ffindex/metadata.xml | 9 +++++++
3 files changed, 61 insertions(+)
diff --git a/sci-biology/ffindex/ChangeLog b/sci-biology/ffindex/ChangeLog
new file mode 100644
index 0000000..a711d80
--- /dev/null
+++ b/sci-biology/ffindex/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for sci-biology/ffindex
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*ffindex-0.9.9.3 (08 Jan 2015)
+
+ 08 Jan 2015; Martin Mokrejs <mmokrejs@fold.natur.cuni.cz>
+ +ffindex-0.9.9.3.ebuild, +metadata.xml:
+ sci-biology/ffindex: new package, maybe fits better under some other herd?
diff --git a/sci-biology/ffindex/ffindex-0.9.9.3.ebuild b/sci-biology/ffindex/ffindex-0.9.9.3.ebuild
new file mode 100644
index 0000000..1a9a9a1
--- /dev/null
+++ b/sci-biology/ffindex/ffindex-0.9.9.3.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+DESCRIPTION="Simple index/database for huge amounts of small files"
+HOMEPAGE="http://pubshare.genzentrum.lmu.de/scientific_computing/software/ffindex"
+SRC_URI="http://downloads.sourceforge.net/project/transdecoder/TransDecoder_r20140704.tar.gz"
+
+LICENSE="CC-BY-3.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}"/TransDecoder_r20140704/3rd_party/ffindex-0.9.9.3
+
+src_compile(){
+ emake HAVE_MPI=1
+}
+
+src_install(){
+ dodoc README
+ cd src || die
+ dobin ffindex_apply ffindex_unpack ffindex_modify ffindex_get ffindex_from_fasta ffindex_build ffindex_apply_mpi
+
+ # * QA Notice: The following files contain writable and executable sections
+ # * Files with such sections will not work properly (or at all!) on some
+ # * architectures/operating systems. A bug should be filed at
+ # * http://bugs.gentoo.org/ to make sure the issue is fixed.
+ # * For more information, see http://hardened.gentoo.org/gnu-stack.xml
+ # * Please include the following list of files in your report:
+ # * Note: Bugs should be filed for the respective maintainers
+ # * of the package in question and not hardened@g.o.
+ # * RWX --- --- usr/lib64/libffindex.so.0.1
+ #
+ dolib libffindex.so.0.1 libffindex.so
+
+ # make install INSTALL_DIR="${DESTDIR}" HAVE_MPI=1
+}
diff --git a/sci-biology/ffindex/metadata.xml b/sci-biology/ffindex/metadata.xml
new file mode 100644
index 0000000..2bc8930
--- /dev/null
+++ b/sci-biology/ffindex/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>sci-biology</herd>
+ <maintainer>
+ <email>mmokrejs@fold.natur.cuni.cz</email>
+ <name>Martin Mokrejs</name>
+ </maintainer>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/ffindex/
@ 2015-05-25 19:39 Martin Mokrejs
0 siblings, 0 replies; 8+ messages in thread
From: Martin Mokrejs @ 2015-05-25 19:39 UTC (permalink / raw
To: gentoo-commits
commit: c35071ffbc4341ee39ee5e2d13641c866ddd45b5
Author: Martin Mokrejš <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
AuthorDate: Mon May 25 19:38:46 2015 +0000
Commit: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
CommitDate: Mon May 25 19:38:46 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=c35071ff
sci-biology/ffindex: fix SRC_URI because TransDecoder which contains this bundled thing has moved
Package-Manager: portage-2.2.18
sci-biology/ffindex/ChangeLog | 5 +++++
sci-biology/ffindex/ffindex-0.9.9.3.ebuild | 3 ++-
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/sci-biology/ffindex/ChangeLog b/sci-biology/ffindex/ChangeLog
index a711d80..c82f670 100644
--- a/sci-biology/ffindex/ChangeLog
+++ b/sci-biology/ffindex/ChangeLog
@@ -2,6 +2,11 @@
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 25 May 2015; Martin Mokrejs <mmokrejs@fold.natur.cuni.cz>
+ ffindex-0.9.9.3.ebuild:
+ sci-biology/ffindex: fix SRC_URI because TransDecoder which contains this
+ bundled thing has moved
+
*ffindex-0.9.9.3 (08 Jan 2015)
08 Jan 2015; Martin Mokrejs <mmokrejs@fold.natur.cuni.cz>
diff --git a/sci-biology/ffindex/ffindex-0.9.9.3.ebuild b/sci-biology/ffindex/ffindex-0.9.9.3.ebuild
index 1a9a9a1..c3ff78e 100644
--- a/sci-biology/ffindex/ffindex-0.9.9.3.ebuild
+++ b/sci-biology/ffindex/ffindex-0.9.9.3.ebuild
@@ -6,7 +6,8 @@ EAPI=5
DESCRIPTION="Simple index/database for huge amounts of small files"
HOMEPAGE="http://pubshare.genzentrum.lmu.de/scientific_computing/software/ffindex"
-SRC_URI="http://downloads.sourceforge.net/project/transdecoder/TransDecoder_r20140704.tar.gz"
+#SRC_URI="http://downloads.sourceforge.net/project/transdecoder/TransDecoder_r20140704.tar.gz"
+SRC_URI="https://github.com/TransDecoder/TransDecoder/archive/TransDecoder.tar.gz -> TransDecoder-2.0.1.tar.gz"
LICENSE="CC-BY-3.0"
SLOT="0"
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/ffindex/
@ 2015-06-06 10:23 Justin Lecher
0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2015-06-06 10:23 UTC (permalink / raw
To: gentoo-commits
commit: 51e28e38afe130c53bdfb63371af754342725b5f
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 6 10:10:48 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sat Jun 6 10:10:48 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=51e28e38
sci-biology/ffindex: Add github to remote-id in metadata.xml
Package-Manager: portage-2.2.20
sci-biology/ffindex/ChangeLog | 3 +++
sci-biology/ffindex/metadata.xml | 3 +++
2 files changed, 6 insertions(+)
diff --git a/sci-biology/ffindex/ChangeLog b/sci-biology/ffindex/ChangeLog
index c82f670..7dfb4b4 100644
--- a/sci-biology/ffindex/ChangeLog
+++ b/sci-biology/ffindex/ChangeLog
@@ -2,6 +2,9 @@
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 06 Jun 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
+ sci-biology/ffindex: Add github to remote-id in metadata.xml
+
25 May 2015; Martin Mokrejs <mmokrejs@fold.natur.cuni.cz>
ffindex-0.9.9.3.ebuild:
sci-biology/ffindex: fix SRC_URI because TransDecoder which contains this
diff --git a/sci-biology/ffindex/metadata.xml b/sci-biology/ffindex/metadata.xml
index 2bc8930..33de46b 100644
--- a/sci-biology/ffindex/metadata.xml
+++ b/sci-biology/ffindex/metadata.xml
@@ -6,4 +6,7 @@
<email>mmokrejs@fold.natur.cuni.cz</email>
<name>Martin Mokrejs</name>
</maintainer>
+ <upstream>
+ <remote-id type="github">TransDecoder/TransDecoder</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/ffindex/
@ 2015-11-19 21:09 Martin Mokrejs
0 siblings, 0 replies; 8+ messages in thread
From: Martin Mokrejs @ 2015-11-19 21:09 UTC (permalink / raw
To: gentoo-commits
commit: d9164ff91627cc4b4afb27e0979492b6d1ccf080
Author: Martin Mokrejš <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
AuthorDate: Thu Nov 19 21:08:46 2015 +0000
Commit: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
CommitDate: Thu Nov 19 21:08:46 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=d9164ff9
sci-biology/ffindex: fix HOMEPAGE, version bump
Package-Manager: portage-2.2.18
sci-biology/ffindex/ChangeLog | 6 ++++++
.../ffindex/{ffindex-0.9.9.3.ebuild => ffindex-0.9.9.6.ebuild} | 6 +++---
2 files changed, 9 insertions(+), 3 deletions(-)
diff --git a/sci-biology/ffindex/ChangeLog b/sci-biology/ffindex/ChangeLog
index 83d05db..7c800e6 100644
--- a/sci-biology/ffindex/ChangeLog
+++ b/sci-biology/ffindex/ChangeLog
@@ -2,6 +2,12 @@
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Id$
+*ffindex-0.9.9.6 (19 Nov 2015)
+
+ 19 Nov 2015; Martin Mokrejs <mmokrejs@fold.natur.cuni.cz>
+ +ffindex-0.9.9.6.ebuild, -ffindex-0.9.9.3.ebuild:
+ sci-biology/ffindex: fix HOMEPAGE, version bump
+
06 Jun 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
sci-biology/ffindex: Add github to remote-id in metadata.xml
diff --git a/sci-biology/ffindex/ffindex-0.9.9.3.ebuild b/sci-biology/ffindex/ffindex-0.9.9.6.ebuild
similarity index 82%
rename from sci-biology/ffindex/ffindex-0.9.9.3.ebuild
rename to sci-biology/ffindex/ffindex-0.9.9.6.ebuild
index 716109e..d6a839c 100644
--- a/sci-biology/ffindex/ffindex-0.9.9.3.ebuild
+++ b/sci-biology/ffindex/ffindex-0.9.9.6.ebuild
@@ -5,9 +5,9 @@
EAPI=5
DESCRIPTION="Simple index/database for huge amounts of small files"
-HOMEPAGE="http://pubshare.genzentrum.lmu.de/scientific_computing/software/ffindex"
+HOMEPAGE="http://www.splashground.de/~andy/programs/FFindex"
#SRC_URI="http://downloads.sourceforge.net/project/transdecoder/TransDecoder_r20140704.tar.gz"
-SRC_URI="https://github.com/TransDecoder/TransDecoder/archive/TransDecoder.tar.gz -> TransDecoder-2.0.1.tar.gz"
+SRC_URI="http://www.splashground.de/~andy/programs/FFindex/${P}.tar.gz"
LICENSE="CC-BY-3.0"
SLOT="0"
@@ -17,7 +17,7 @@ IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
-S="${WORKDIR}"/TransDecoder_r20140704/3rd_party/ffindex-0.9.9.3
+#S="${WORKDIR}"/TransDecoder_r20140704/3rd_party/ffindex-0.9.9.3
src_compile(){
emake HAVE_MPI=1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/ffindex/
@ 2015-11-19 21:13 Martin Mokrejs
0 siblings, 0 replies; 8+ messages in thread
From: Martin Mokrejs @ 2015-11-19 21:13 UTC (permalink / raw
To: gentoo-commits
commit: 4c98103c266e6bb31be04b08523bf69056fbaf42
Author: Martin Mokrejš <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
AuthorDate: Thu Nov 19 21:12:02 2015 +0000
Commit: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
CommitDate: Thu Nov 19 21:12:02 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=4c98103c
sci-biology/ffindex: add optional USE=mpi
Package-Manager: portage-2.2.18
sci-biology/ffindex/ChangeLog | 4 ++++
sci-biology/ffindex/ffindex-0.9.9.6.ebuild | 8 ++++++--
2 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/sci-biology/ffindex/ChangeLog b/sci-biology/ffindex/ChangeLog
index 7c800e6..89e64f8 100644
--- a/sci-biology/ffindex/ChangeLog
+++ b/sci-biology/ffindex/ChangeLog
@@ -2,6 +2,10 @@
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Id$
+ 19 Nov 2015; Martin Mokrejs <mmokrejs@fold.natur.cuni.cz>
+ ffindex-0.9.9.6.ebuild:
+ sci-biology/ffindex: add optional USE=mpi
+
*ffindex-0.9.9.6 (19 Nov 2015)
19 Nov 2015; Martin Mokrejs <mmokrejs@fold.natur.cuni.cz>
diff --git a/sci-biology/ffindex/ffindex-0.9.9.6.ebuild b/sci-biology/ffindex/ffindex-0.9.9.6.ebuild
index d6a839c..92db674 100644
--- a/sci-biology/ffindex/ffindex-0.9.9.6.ebuild
+++ b/sci-biology/ffindex/ffindex-0.9.9.6.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://www.splashground.de/~andy/programs/FFindex/${P}.tar.gz"
LICENSE="CC-BY-3.0"
SLOT="0"
KEYWORDS="~amd64"
-IUSE=""
+IUSE="mpi"
DEPEND=""
RDEPEND="${DEPEND}"
@@ -20,7 +20,11 @@ RDEPEND="${DEPEND}"
#S="${WORKDIR}"/TransDecoder_r20140704/3rd_party/ffindex-0.9.9.3
src_compile(){
- emake HAVE_MPI=1
+ if use mpi; then
+ emake HAVE_MPI=1
+ else
+ emake
+ fi
}
src_install(){
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/ffindex/
@ 2015-11-19 22:19 Martin Mokrejs
0 siblings, 0 replies; 8+ messages in thread
From: Martin Mokrejs @ 2015-11-19 22:19 UTC (permalink / raw
To: gentoo-commits
commit: ba4b5909b00f57f3d40a6962664b323d4ccc85df
Author: Martin Mokrejš <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
AuthorDate: Thu Nov 19 22:18:26 2015 +0000
Commit: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
CommitDate: Thu Nov 19 22:18:26 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=ba4b5909
sci-biology/ffindex: add DEPEND on virtual/mpi
Package-Manager: portage-2.2.18
sci-biology/ffindex/ChangeLog | 4 ++++
sci-biology/ffindex/ffindex-0.9.9.6.ebuild | 2 +-
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/sci-biology/ffindex/ChangeLog b/sci-biology/ffindex/ChangeLog
index 89e64f8..dee575c 100644
--- a/sci-biology/ffindex/ChangeLog
+++ b/sci-biology/ffindex/ChangeLog
@@ -4,6 +4,10 @@
19 Nov 2015; Martin Mokrejs <mmokrejs@fold.natur.cuni.cz>
ffindex-0.9.9.6.ebuild:
+ sci-biology/ffindex: add DEPEND on virtual/mpi
+
+ 19 Nov 2015; Martin Mokrejs <mmokrejs@fold.natur.cuni.cz>
+ ffindex-0.9.9.6.ebuild:
sci-biology/ffindex: add optional USE=mpi
*ffindex-0.9.9.6 (19 Nov 2015)
diff --git a/sci-biology/ffindex/ffindex-0.9.9.6.ebuild b/sci-biology/ffindex/ffindex-0.9.9.6.ebuild
index 92db674..c76310c 100644
--- a/sci-biology/ffindex/ffindex-0.9.9.6.ebuild
+++ b/sci-biology/ffindex/ffindex-0.9.9.6.ebuild
@@ -14,7 +14,7 @@ SLOT="0"
KEYWORDS="~amd64"
IUSE="mpi"
-DEPEND=""
+DEPEND="mpi? ( virtual/mpi )"
RDEPEND="${DEPEND}"
#S="${WORKDIR}"/TransDecoder_r20140704/3rd_party/ffindex-0.9.9.3
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/ffindex/
@ 2015-11-19 22:33 Martin Mokrejs
0 siblings, 0 replies; 8+ messages in thread
From: Martin Mokrejs @ 2015-11-19 22:33 UTC (permalink / raw
To: gentoo-commits
commit: 56107151a78e6937b14b815827efcec8d55e1520
Author: Martin Mokrejš <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
AuthorDate: Thu Nov 19 22:32:33 2015 +0000
Commit: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
CommitDate: Thu Nov 19 22:32:33 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=56107151
sci-biology/ffindex: install under USE=-mpi cases as well
Package-Manager: portage-2.2.18
sci-biology/ffindex/ChangeLog | 4 ++++
sci-biology/ffindex/ffindex-0.9.9.6.ebuild | 5 ++++-
2 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/sci-biology/ffindex/ChangeLog b/sci-biology/ffindex/ChangeLog
index dee575c..a998bf2 100644
--- a/sci-biology/ffindex/ChangeLog
+++ b/sci-biology/ffindex/ChangeLog
@@ -4,6 +4,10 @@
19 Nov 2015; Martin Mokrejs <mmokrejs@fold.natur.cuni.cz>
ffindex-0.9.9.6.ebuild:
+ sci-biology/ffindex: install under USE=-mpi cases as well
+
+ 19 Nov 2015; Martin Mokrejs <mmokrejs@fold.natur.cuni.cz>
+ ffindex-0.9.9.6.ebuild:
sci-biology/ffindex: add DEPEND on virtual/mpi
19 Nov 2015; Martin Mokrejs <mmokrejs@fold.natur.cuni.cz>
diff --git a/sci-biology/ffindex/ffindex-0.9.9.6.ebuild b/sci-biology/ffindex/ffindex-0.9.9.6.ebuild
index c76310c..92eb117 100644
--- a/sci-biology/ffindex/ffindex-0.9.9.6.ebuild
+++ b/sci-biology/ffindex/ffindex-0.9.9.6.ebuild
@@ -30,7 +30,10 @@ src_compile(){
src_install(){
dodoc README
cd src || die
- dobin ffindex_apply ffindex_unpack ffindex_modify ffindex_get ffindex_from_fasta ffindex_build ffindex_apply_mpi
+ dobin ffindex_apply ffindex_unpack ffindex_modify ffindex_get ffindex_from_fasta ffindex_build
+ if use mpi; then
+ dobin ffindex_apply_mpi
+ fi
# * QA Notice: The following files contain writable and executable sections
# * Files with such sections will not work properly (or at all!) on some
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/ffindex/
@ 2021-01-18 13:31 Andrew Ammerlaan
0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2021-01-18 13:31 UTC (permalink / raw
To: gentoo-commits
commit: 80a9b4bc4b3b5a854bc732a9c60e46665b52ca5f
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Mon Jan 18 13:27:44 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Jan 18 13:27:44 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=80a9b4bc
sci-biology/ffindex: versio bump, fix fetching
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
.../ffindex/{ffindex-0.9.9.6.ebuild => ffindex-1.0.ebuild} | 13 ++++++-------
1 file changed, 6 insertions(+), 7 deletions(-)
diff --git a/sci-biology/ffindex/ffindex-0.9.9.6.ebuild b/sci-biology/ffindex/ffindex-1.0.ebuild
similarity index 75%
rename from sci-biology/ffindex/ffindex-0.9.9.6.ebuild
rename to sci-biology/ffindex/ffindex-1.0.ebuild
index 8ea8a7633..ff1807353 100644
--- a/sci-biology/ffindex/ffindex-0.9.9.6.ebuild
+++ b/sci-biology/ffindex/ffindex-1.0.ebuild
@@ -1,12 +1,11 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
+EAPI=7
DESCRIPTION="Simple index/database for huge amounts of small files"
-HOMEPAGE="http://www.splashground.de/~andy/programs/FFindex"
-#SRC_URI="http://downloads.sourceforge.net/project/transdecoder/TransDecoder_r20140704.tar.gz"
-SRC_URI="http://www.splashground.de/~andy/programs/FFindex/${P}.tar.gz"
+HOMEPAGE="https://github.com/ahcm/ffindex"
+SRC_URI="https://github.com/ahcm/ffindex/archive/${P}.tar.gz"
LICENSE="CC-BY-3.0"
SLOT="0"
@@ -16,7 +15,7 @@ IUSE="mpi"
DEPEND="mpi? ( virtual/mpi )"
RDEPEND="${DEPEND}"
-#S="${WORKDIR}"/TransDecoder_r20140704/3rd_party/ffindex-0.9.9.3
+S="${WORKDIR}/${PN}-${PN}-${PV}"
src_compile(){
if use mpi; then
@@ -44,7 +43,7 @@ src_install(){
# * of the package in question and not hardened@g.o.
# * RWX --- --- usr/lib64/libffindex.so.0.1
#
- dolib libffindex.so.0.1 libffindex.so
+ dolib.so libffindex.so.0.1 libffindex.so
# make install INSTALL_DIR="${DESTDIR}" HAVE_MPI=1
}
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2021-01-18 13:31 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-06 10:23 [gentoo-commits] proj/sci:master commit in: sci-biology/ffindex/ Justin Lecher
-- strict thread matches above, loose matches on Subject: below --
2021-01-18 13:31 Andrew Ammerlaan
2015-11-19 22:33 Martin Mokrejs
2015-11-19 22:19 Martin Mokrejs
2015-11-19 21:13 Martin Mokrejs
2015-11-19 21:09 Martin Mokrejs
2015-05-25 19:39 Martin Mokrejs
2015-01-08 22:35 Martin Mokrejs
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox