You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-biology/ariadne/ariadne-1.3-r3.ebuild

48 lines
911 B

# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit toolchain-funcs
DESCRIPTION="Protein sequences and profiles comparison"
HOMEPAGE="http://www.well.ox.ac.uk/ariadne/"
SRC_URI="http://www.well.ox.ac.uk/${PN}/${P}.tar.Z"
LICENSE="ARIADNE"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="static-libs"
DEPEND=">=sci-biology/ncbi-tools-0.20041020-r1"
RDEPEND="${DEPEND}"
S=${WORKDIR}/SRC-${PV}
PATCHES=(
"${FILESDIR}"/${P}-gcc4.patch
"${FILESDIR}"/${P}-implicits.patch
)
src_prepare() {
default
sed -i -e "s/\$(CFLAGS)/\$(LDFLAGS) &/" Makefile || die #359045
sed -e "s/blosum62/BLOSUM62/" -i prospero.c || die
}
src_compile() {
emake CC="$(tc-getCC)" OPTIMISE="${CFLAGS}"
}
src_install() {
dobin Linux/{ariadne,prospero}
use static-libs && dolib.a Linux/libseq.a
insinto /usr/include/${PN}
doins Include/*.h
einstalldocs
}