blob: cb54a6d9b8aeda4f3c4364decc707b2a44a1869a (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-electronics/gwave/gwave-20020122.ebuild,v 1.1 2004/12/27 19:46:24 ribosome Exp $
DESCRIPTION="A waveform viewer analog data, such as spice simulations"
HOMEPAGE="http://www.geda.seul.org/tools/gwave/"
SRC_URI="http://www.geda.seul.org/dist/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="x86"
SLOT="0"
IUSE=""
DEPEND="x11-libs/gtk+
dev-util/guile
x11-libs/guile-gtk"
src_compile() {
econf || die "econf failed"
make || die
}
src_install() {
make DESTDIR=${D} install || die
rm -f doc/Makefile* *.1
dodoc AUTHORS ChangeLog INSTALL NEWS README TODO doc/*
}
|