blob: ec74e56b021687f530f31b2219c55e6d7d3022f1 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-biology/clustalx/clustalx-1.83-r2.ebuild,v 1.5 2006/10/24 04:35:59 je_fro Exp $
inherit toolchain-funcs eutils
DESCRIPTION="Graphical interface for the ClustalW multiple alignment program"
HOMEPAGE="http://www-igbmc.u-strasbg.fr/BioInfo/ClustalX/"
SRC_URI="ftp://ftp-igbmc.u-strasbg.fr/pub/ClustalX/clustalx1.83.sun.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="amd64 x86 ~sparc"
IUSE=""
DEPEND="sci-biology/clustalw
sci-biology/ncbi-tools
virtual/motif"
S="${WORKDIR}/${PN}${PV}.sun"
pkg_setup() {
if ! built_with_use sci-biology/ncbi-tools X; then
echo
eerror "ClustalX requires the Vibrant toolkit, which is part of the"
eerror "optional X support in the \"sci-biology/ncbi-tools\" package."
eerror "To install ClustalX on your system, first recompile"
eerror "\"sci-biology/ncbi-tools\" with the \"X\" USE flag enabled,"
eerror "then try to install ClustalX again."
die "X support not enabled in \"sci-biology/ncbi-tools\""
fi
}
src_unpack() {
unpack ${A}
cd ${S}
cp makefile.linux makefile
sed -e "s/CC = cc/CC = $(tc-getCC)/" \
-e "s/CFLAGS = -c -O/CFLAGS = -c ${CFLAGS}/" \
-e "s/LFLAGS = -O -lm/LFLAGS = -lm ${CFLAGS}/" \
-e "s%-I/usr/bio/src/ncbi/include%-I/usr/include/ncbi%" \
-e "s%-L/usr/bio/src/ncbi/lib -L/usr/ccs/lib -L/usr/X11R6/lib%-L/usr/lib -L/usr/X11R6/lib%" \
-i makefile || die
sed -i -e "s%clustalx_help%/usr/share/doc/${PF}/clustalx_help%" clustalx.c || die
sed -i -e "s%clustalw.doc%../clustalw.doc%" clustalx.html || die
}
src_compile() {
make || die
}
src_install() {
dobin clustalx
dodoc README_X
dohtml clustalx.html
insinto /usr/share/doc/${PF}
doins clustalx_help clustalw.doc
}
|