summaryrefslogtreecommitdiff
blob: f423b39861af32b66a331c26b5b52c108c9d5b5f (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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-biology/treeviewx/treeviewx-0.5.ebuild,v 1.2 2005/05/13 03:18:18 ribosome Exp $

inherit eutils

DESCRIPTION="A phylogenetic tree viewer"
HOMEPAGE="http://darwin.zoology.gla.ac.uk/~rpage/treeviewx/"
SRC_URI="http://darwin.zoology.gla.ac.uk/~rpage/${PN}/download/${PV}/tv-${PV}.tar.gz"
LICENSE="GPL-2"

KEYWORDS="x86"
SLOT="0"
IUSE=""

DEPEND=">=x11-libs/wxGTK-2.4.2-r2"

S=${WORKDIR}/tv-${PV}

pkg_setup() {
	if ! [ -e /usr/lib/libwx_gtk2-2.4.so ]; then
		eerror "TreeView X requires the non Unicode, gtk2-enabled version"
		eerror "of the wxGTK library. This version was not found on your"
		eerror "system. Please install \">=x11-libs/wx_TK-2.4.2-r2\" with"
		eerror "the \"gtk2\" \"USE\" flag enabled."
		die "Could not find non Unicode, gtk2-enabled wxGTK library."
	fi
}

src_unpack() {
	unpack ${A}
	cd ${S}
	epatch ${FILESDIR}/${PN}-gcc-3.4.patch
}

src_compile() {
	econf || die
	# The configure script may pick the Unicode wxGTK.
	if grep -q "gtk2u" Makefile; then
		sed -i -e 's/gtk2u/gtk2/' Makefile || die
		cd TreeLib
		sed -i -e 's/gtk2u/gtk2/' Makefile || die
		cd ../ncl-2.0
		sed -i -e 's/gtk2u/gtk2/' Makefile || die
		cd src
		sed -i -e 's/gtk2u/gtk2/' Makefile || die
	fi
	cd ${S}
	emake || die
}

src_install() {
	make install DESTDIR=${D} || die
}