blob: b38e2f816b17c7ddebdd3c72bf8136869cca715e (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-electronics/gerbv/gerbv-0.15.ebuild,v 1.4 2006/01/22 15:51:29 plasmaroo Exp $
DESCRIPTION="gerbv - The gEDA Gerber Viewer"
SRC_URI="http://www.geda.seul.org/dist/${P}.tar.gz"
HOMEPAGE="http://www.geda.seul.org"
IUSE=""
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="alpha ppc sparc x86"
DEPEND="dev-util/guile
=x11-libs/gtk+-1*
media-libs/gdk-pixbuf"
src_compile() {
econf || die
emake || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc AUTHORS CONTRIBUTORS COPYING ChangeLog NEWS README
}
|