blob: 67c1efc4ddf55c01e6d6d31a584f9609e56cbd3c (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-electronics/gtkwave/gtkwave-3.1.1.ebuild,v 1.6 2008/04/21 14:31:41 calchan Exp $
DOC_VERSION="3.1.0"
DESCRIPTION="A wave viewer for LXT, LXT2, VZT, GHW and standard Verilog VCD/EVCD files"
HOMEPAGE="http://home.nc.rr.com/gtkwave/"
SRC_URI="http://home.nc.rr.com/gtkwave/${P}.tar.gz
doc? ( http://home.nc.rr.com/gtkwave/${PN}-doc-${DOC_VERSION}.tar.gz )"
IUSE="doc examples"
LICENSE="GPL-2 MIT"
SLOT="0"
KEYWORDS="amd64 ppc sparc x86"
RDEPEND=">=x11-libs/gtk+-2"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_install() {
emake DESTDIR="${D}" install || die "Installation failed"
dodoc ANALOG_README.TXT CHANGELOG.TXT
if use doc ; then
insinto /usr/share/doc/${PF}
doins "${WORKDIR}/${PN}.pdf" || die "Failed to install documentation."
fi
if use examples ; then
insinto /usr/share/doc/${PF}
doins -r examples || die "Failed to install examples."
fi
}
|