summaryrefslogtreecommitdiff
blob: 6f9fe4b29198bc2f560935a287fb225e19e1e9b0 (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
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI="1"

inherit autotools multilib user

DESCRIPTION="Large Graph Visualization System"
HOMEPAGE="http://tulip.labri.fr/"
SRC_URI="mirror://sourceforge/auber/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"

IUSE="stats tlprender"

RDEPEND="dev-libs/libxml2
	media-libs/freetype:2
	media-libs/glew
	dev-qt/qthelp:4
	dev-qt/qtgui:4
	dev-qt/qtopengl:4"
DEPEND="${RDEPEND}"

pkg_setup() {
	enewgroup tulip
}

src_unpack() {
	unpack ${A}
	cd "${S}"
	eautoreconf
}

src_compile() {
	econf	$(use_enable tlprender) \
		$(use_enable stats stat-gui) \
		"--with-qt-includes=/usr/include/qt4" \
		"--with-qt-libraries=/usr/$(get_libdir)/qt4" \
		"MOC=/usr/bin/moc"
	emake || die "make failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "Install failed"
	rm -r "${D}/usr/share/tulip"
	dodoc TODO README AUTHORS ChangeLog || die "dodoc failed"
}