summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Lauer <patrick@gentoo.org>2009-03-07 21:54:55 +0000
committerPatrick Lauer <patrick@gentoo.org>2009-03-07 21:54:55 +0000
commit2bed7d1c75b851f63fe027a879ddaf8ddbca3d04 (patch)
tree276ac917f938cc1d29ac66ea9b75f5d91d124ef1 /sci-electronics
parentstable x86, bug 261500 (diff)
downloadgentoo-2-2bed7d1c75b851f63fe027a879ddaf8ddbca3d04.tar.gz
gentoo-2-2bed7d1c75b851f63fe027a879ddaf8ddbca3d04.tar.bz2
gentoo-2-2bed7d1c75b851f63fe027a879ddaf8ddbca3d04.zip
Bump to 3.2.0, with small fixes from Marcel Schmedes. Fixes #254784
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'sci-electronics')
-rw-r--r--sci-electronics/gtkwave/ChangeLog9
-rw-r--r--sci-electronics/gtkwave/gtkwave-3.2.0.ebuild36
2 files changed, 43 insertions, 2 deletions
diff --git a/sci-electronics/gtkwave/ChangeLog b/sci-electronics/gtkwave/ChangeLog
index 4cd312180df7..f66a63a174b3 100644
--- a/sci-electronics/gtkwave/ChangeLog
+++ b/sci-electronics/gtkwave/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sci-electronics/gtkwave
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/gtkwave/ChangeLog,v 1.47 2008/04/23 08:34:09 calchan Exp $
+# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/gtkwave/ChangeLog,v 1.48 2009/03/07 21:54:55 patrick Exp $
+
+*gtkwave-3.2.0 (07 Mar 2009)
+
+ 07 Mar 2009; Patrick Lauer <patrick@gentoo.org> +gtkwave-3.2.0.ebuild:
+ Bump to 3.2.0, with small fixes from Marcel Schmedes. Fixes #254784
*gtkwave-3.1.9 (23 Apr 2008)
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
+}