diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-04-07 19:47:38 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-04-07 19:47:38 +0000 |
commit | 7ea162ba54a0065ad3be6a38d6ee7809a0774198 (patch) | |
tree | 5ff9703eee8543446c79a400dd5c5b45d8908b77 /app-sci/gwave | |
parent | My bad. #47063. (diff) | |
download | gentoo-2-7ea162ba54a0065ad3be6a38d6ee7809a0774198.tar.gz gentoo-2-7ea162ba54a0065ad3be6a38d6ee7809a0774198.tar.bz2 gentoo-2-7ea162ba54a0065ad3be6a38d6ee7809a0774198.zip |
add inherit eutils
Diffstat (limited to 'app-sci/gwave')
-rw-r--r-- | app-sci/gwave/gwave-20030804.ebuild | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/app-sci/gwave/gwave-20030804.ebuild b/app-sci/gwave/gwave-20030804.ebuild index f4d70af11b85..0f65c860fc9d 100644 --- a/app-sci/gwave/gwave-20030804.ebuild +++ b/app-sci/gwave/gwave-20030804.ebuild @@ -1,32 +1,30 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/gwave/gwave-20030804.ebuild,v 1.2 2004/02/01 17:52:59 plasmaroo Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/gwave/gwave-20030804.ebuild,v 1.3 2004/04/07 19:44:50 vapier Exp $ + +inherit eutils 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" +KEYWORDS="~x86" DEPEND=">=x11-libs/gtk+-1.2 >=dev-util/guile-1.6 >=x11-libs/guile-gtk-1.2.0.31" src_compile() { - - epatch ${FILESDIR}/gwave-${PV}.gcc33.patch.bz2 || die + epatch ${FILESDIR}/gwave-${PV}.gcc33.patch.bz2 econf || die make || die - } src_install() { - make DESTDIR=${D} install || die rm -f doc/Makefile* *.1 dodoc AUTHORS INSTALL NEWS README TODO doc/* - } |