31 lines
658 B
Bash
31 lines
658 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="Estimated Locations of Pattern Hits - Motif finder program"
|
|
LICENSE="Artistic"
|
|
HOMEPAGE="http://cbcb.umd.edu/software/ELPH/"
|
|
SRC_URI="ftp://ftp.cbcb.umd.edu/pub/software/elph/ELPH-${PV}.tar.gz"
|
|
|
|
SLOT="0"
|
|
IUSE=""
|
|
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
|
|
|
|
S=${WORKDIR}/${PN^^}/sources
|
|
|
|
PATCHES=( "${FILESDIR}/${PN}-1.0.1-fix-build-system.patch" )
|
|
|
|
src_configure() {
|
|
tc-export CC CXX
|
|
}
|
|
|
|
src_install() {
|
|
dobin elph
|
|
|
|
cd "${WORKDIR}"/ELPH || die
|
|
dodoc VERSION
|
|
newdoc Readme.ELPH README
|
|
}
|