Install this version:
emerge -a =sci-biology/edena-3.131028
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =sci-biology/edena-3.131028
Or alternatively:
emerge --autounmask-write -a =sci-biology/edena-3.131028
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 3.131028 | 7 | ~amd64 | 0 |
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="De novo short read OLC assembler (overlap-layout-consensus)"
HOMEPAGE="http://www.genomic.ch/edena.php"
SRC_URI="http://www.genomic.ch/edena/EdenaV"${PV}".tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
DEPEND=""
RDEPEND="${DEPEND}"
S="${WORKDIR}/EdenaV${PV}"
src_prepare(){
default
sed -e "s@^CCC.*@CCC = $(tc-getCXX)@" -e "s@^CFLAGS.*@CFLAGS = ${CFLAGS} -ansi -pthread@" -i src/Makefile || die
}
src_compile(){
cd src || die
default
}
src_install(){
dobin src/edena
dodoc referenceManual.pdf
}