summaryrefslogtreecommitdiff
blob: 73fa9eca83e5bf8aab1949d764be3aaa92fafe34 (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
45
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit autotools toolchain-funcs

DESCRIPTION="Generic tool for pairwise sequence comparison"
HOMEPAGE="https://www.ebi.ac.uk/about/vertebrate-genomics/software/exonerate"
SRC_URI="http://ftp.ebi.ac.uk/pub/software/vertebrategenomics/exonerate/${P}.tar.gz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~ppc-macos ~x64-macos"
IUSE="test utils"
REQUIRED_USE="test? ( utils )"
RESTRICT="!test? ( test )"

DEPEND="dev-libs/glib:2"
RDEPEND="${DEPEND}"

PATCHES=( "${FILESDIR}"/${P}-autotools.patch )

src_prepare() {
	default
	eautoreconf
}

src_configure() {
	# the bootstrapping code loads AR and CC from the environment
	tc-export CC RANLIB
	export C4_AR="$(tc-getAR)"

	econf \
		--enable-glib2 \
		--enable-largefile \
		--enable-pthreads \
		$(use_enable utils utilities)
}

src_install() {
	default

	doman doc/man/man1/*.1
}