blob: 6bccfd828e99f6392e7900fff2b7e6054fa4700e (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit toolchain-funcs
DESCRIPTION="General purpose multiple alignment program for DNA and proteins"
HOMEPAGE="http://www.embl-heidelberg.de/~seqanal/"
SRC_URI="ftp://ftp.ebi.ac.uk/pub/software/unix/clustalw/${PN}${PV}.UNIX.tar.gz"
LICENSE="clustalw"
SLOT="1"
KEYWORDS="~alpha amd64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris"
IUSE=""
S="${WORKDIR}"/${PN}${PV}
PATCHES=( "${FILESDIR}"/${PV}-as-needed.patch )
src_prepare() {
default
sed \
-e "/^CC/s:cc:$(tc-getCC):g" \
-i makefile || die
sed \
-e "s%clustalw_help%/usr/share/doc/${PF}/clustalw_help%" \
-i clustalw.c || die
}
src_install() {
dobin clustalw
dodoc README clustalv.doc clustalw{.doc,.ms,_help}
}
|