blob: 306e195e5871c72baafc03e3ba1b56c2cc07c0ca (
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
41
42
43
44
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils flag-o-matic toolchain-funcs
RELDATE="2012-03-07"
RELEASE="${PN}-v${PV}-${RELDATE}"
DESCRIPTION="Additional cd-hit itools: read-linker, cd-hit-lap and cd-hit-dup"
HOMEPAGE="http://weizhong-lab.ucsd.edu/cd-hit/"
SRC_URI="
http://cdhit.googlecode.com/files/${RELEASE}.tgz
http://weizhong-lab.ucsd.edu/cd-hit/wiki/doku.php?id=cd-hit-auxtools-manual -> cd-hit-auxtools-manual.html"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
LICENSE="GPL-2"
IUSE="doc openmp"
S="${WORKDIR}"/${RELEASE}
pkg_setup() {
use openmp && ! tc-has-openmp && die "Please switch to an openmp compatible compiler"
}
src_prepare() {
tc-export CXX
use openmp || append-flags -DNO_OPENMP
epatch "${FILESDIR}"/${PV}-gentoo.patch
}
src_compile() {
local myconf=
use openmp && myconf="openmp=yes"
emake ${myconf}
}
src_install() {
dobin read-linker cd-hit-lap cd-hit-dup
use doc && dodoc "${DISTDIR}"/cd-hit-auxtools-manual.html
}
|