blob: ab10c7e4f966e30c2e5a6ad260a8e4479a39fc00 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-electronics/gtkwave/gtkwave-3.3.14.ebuild,v 1.4 2011/01/03 14:30:32 xmw Exp $
EAPI="2"
DESCRIPTION="A wave viewer for LXT, LXT2, VZT, GHW and standard Verilog VCD/EVCD files"
HOMEPAGE="http://gtkwave.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
IUSE="doc examples fasttree fatlines judy lzma tcl"
LICENSE="GPL-2 MIT"
SLOT="0"
KEYWORDS="amd64 ~ppc sparc x86 ~amd64-linux ~x86-linux"
RDEPEND=">=dev-libs/glib-2
>=x11-libs/gtk+-2
x11-libs/pango
judy? ( dev-libs/judy )
tcl? ( dev-lang/tcl dev-lang/tk )
lzma? ( app-arch/xz-utils )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
dev-util/gperf"
src_prepare(){
sed -i -e 's/doc examples//' Makefile.in || die "sed failed"
}
src_configure(){
econf --disable-local-libz \
--disable-local-libbz2 \
--disable-dependency-tracking \
--enable-largefile \
$(use_enable fatlines) \
$(use_enable tcl) \
$(use_enable lzma xz) \
$(use_enable fasttree) \
$(use_enable judy)
}
src_install() {
emake DESTDIR="${D}" install || die "Installation failed"
dodoc ANALOG_README.TXT SYSTEMVERILOG_README.TXT CHANGELOG.TXT
if use doc ; then
insinto /usr/share/doc/${PF}
doins "doc/${PN}.odt" || die "Failed to install documentation."
fi
if use examples ; then
insinto /usr/share/doc/${PF}
doins -r examples || die "Failed to install examples."
fi
}
|