blob: 0d7d77b6a1d063e43cc86557c7d73be849ef3ed0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-biology/elph/elph-0.1.5.ebuild,v 1.7 2005/10/18 01:05:39 ribosome Exp $
inherit eutils 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="x86 ppc-macos"
S="${WORKDIR}/ELPH/sources"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-usage.patch
sed -i -e "s/CC := g++/CC := $(tc-getCXX)/" \
-e "s/-fno-exceptions -fno-rtti -D_REENTRANT -g/${CXXFLAGS}/" \
-e "s/LINKER := g++/LINKER := $(tc-getCXX)/" \
Makefile || die "Failed to patch Makefile."
}
src_compile() {
make || die "Compilation failed."
}
src_install() {
dobin elph || "Failed to install program."
cd "${WORKDIR}"/ELPH
dodoc VERSION || die "Documentation installation failed."
newdoc Readme.ELPH README || die "Readme installation failed."
}
|