blob: 99b9894063ce2d9d6cca6d4513a241370f76ca8f (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-sci/pcb/pcb-20031113.ebuild,v 1.1 2003/11/22 16:34:01 plasmaroo Exp $
DESCRIPTION="PCB is a tool for the layout of printed circuit boards."
HOMEPAGE="http://sourceforge.net/projects/pcb/"
SRC_URI="mirror://sourceforge/pcb/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~x86"
DEPEND="x11-base/xfree"
SLOT="0"
S=${WORKDIR}/${P}
src_compile() {
econf || die
cd ${S}
emake || die
}
src_install() {
emake DESTDIR=${D} install || die
}
|