aboutsummaryrefslogtreecommitdiff
blob: 3109fe43902f39b9de10adcba2916c171200a552 (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
38
39
40
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=5

inherit toolchain-funcs versionator

MY_PV=$(replace_all_version_separators '-')

DESCRIPTION="Cis-eLement OVERrepresentation: Detection of functional DNA motifs"
HOMEPAGE="http://zlab.bu.edu/clover/"
SRC_URI="
	http://zlab.bu.edu/~mfrith/downloads/${PN}-${MY_PV}.tar.gz
	http://zlab.bu.edu/clover/jaspar2009core"

LICENSE="freedist"
SLOT="0"
IUSE=""
KEYWORDS="~x86 ~amd64"

S="${WORKDIR}/${PN}-${MY_PV}"

src_prepare() {
	sed \
		-e "s:g++:$(tc-getCXX) \$(LDFLAGS):; s:-Wall -O3:${CFLAGS}:" \
		-i Makefile || die "sed failed"
}

src_install() {
	dobin clover
	insinto /usr/share/${PN}
	doins "${DISTDIR}/jaspar2009core"
}

pkg_postinst() {
	einfo "The motif library jaspar2009core has been installed in"
	einfo "    /usr/share/clover/jaspar2009core"
	einfo "You can pass this library to clover for motif search, or use your own library."
}