diff options
Diffstat (limited to 'sci-electronics/gtkwave/gtkwave-3.2.0.ebuild')
-rw-r--r-- | sci-electronics/gtkwave/gtkwave-3.2.0.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/sci-electronics/gtkwave/gtkwave-3.2.0.ebuild b/sci-electronics/gtkwave/gtkwave-3.2.0.ebuild new file mode 100644 index 000000000000..ac435fa80a2f --- /dev/null +++ b/sci-electronics/gtkwave/gtkwave-3.2.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/gtkwave/gtkwave-3.2.0.ebuild,v 1.1 2009/03/07 21:54:55 patrick Exp $ + +DESCRIPTION="A wave viewer for LXT, LXT2, VZT, GHW and standard Verilog VCD/EVCD files" +HOMEPAGE="http://gtkwave.sourceforge.net/" + +SRC_URI="http://gtkwave.sourceforge.net/${P}.tar.gz" + +IUSE="doc examples" +LICENSE="GPL-2 MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" + +RDEPEND=">=dev-libs/glib-2 + >=x11-libs/gtk+-2 + x11-libs/pango" + +DEPEND="${RDEPEND} + dev-util/pkgconfig + dev-util/gperf" + +# S="${WORKDIR}/${PN}-${MY_PV}" + +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 "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 +} |