summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sci-electronics/gtkwave/gtkwave-1.3.72.ebuild')
-rw-r--r--sci-electronics/gtkwave/gtkwave-1.3.72.ebuild39
1 files changed, 39 insertions, 0 deletions
diff --git a/sci-electronics/gtkwave/gtkwave-1.3.72.ebuild b/sci-electronics/gtkwave/gtkwave-1.3.72.ebuild
new file mode 100644
index 000000000000..f4caef961e3c
--- /dev/null
+++ b/sci-electronics/gtkwave/gtkwave-1.3.72.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/gtkwave/gtkwave-1.3.72.ebuild,v 1.1 2005/10/11 14:26:22 chrb Exp $
+
+inherit eutils
+
+DESCRIPTION="A wave viewer for LXT and Verilog VCD/EVCD files"
+HOMEPAGE="http://home.nc.rr.com/gtkwave/"
+SRC_URI="mirror://gentoo/gtkwave-1.3.72.tar.gz"
+
+IUSE=""
+LICENSE="GPL-2 MIT"
+SLOT="0"
+KEYWORDS="~x86 ~sparc ~ppc"
+
+DEPEND="virtual/x11
+ >=x11-libs/gtk+-2*
+ >=dev-libs/glib-2*
+ app-arch/bzip2"
+
+#S=${WORKDIR}/${MY_P}
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ epatch ${FILESDIR}/${P}.patch
+}
+
+src_compile() {
+ econf || die
+ sed -i -e "s/mandir = /mandir = \${prefix}/" ${S}/Makefile
+ emake || die
+}
+
+src_install() {
+ emake prefix=${D} install || die
+ dodoc AUTHORS ChangeLog README
+ dohtml -r doc/*
+}