summaryrefslogtreecommitdiff
blob: 8ce8863d5ad211e07e7bb89b891b400a399ae4c6 (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
61
# Copyright 1999-2005 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.3 2005/12/23 21:23:18 blubb 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"
IUSE=""

DEPEND="sci-biology/clustalw
	sci-biology/ncbi-tools
	virtual/x11
	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
}