blob: e6e4e7ab43bffb69d8ed3b04d1f8f5da7e8ca4d4 (
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
28
29
30
31
32
|
# Copyright 1999-2003 Gentoo Technologies, Inc. and Tim Yamin <plasmaroo@gentoo.org> <plasmaroo@squirrelsoft.org.uk>
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-sci/gerbv/gerbv-0.15.ebuild,v 1.1 2003/11/27 22:54:08 plasmaroo Exp $
S=${WORKDIR}/${P}
DESCRIPTION="gerbv - The gEDA Gerber Viewer"
SRC_URI="http://www.geda.seul.org/dist/${P}.tar.gz"
HOMEPAGE="http://www.geda.seul.org"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 alpha sparc"
DEPEND=">=sys-libs/glibc-2.1.3
>=dev-libs/glib-1.2.10
>=x11-libs/gtk+-1.2.10
x11-base/xfree"
src_compile() {
econf || die
emake || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc AUTHORS CONTRIBUTORS COPYING ChangeLog NEWS README
}
|