blob: 507e01f4537fce98d2999671504bb270fe053654 (
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/app-sci/pcb/pcb-20031113-r1.ebuild,v 1.6 2004/06/24 22:14:35 agriffis Exp $
DESCRIPTION="tool for the layout of printed circuit boards"
HOMEPAGE="http://pcb.sourceforge.net/"
SRC_URI="mirror://sourceforge/pcb/${P}.tar.gz"
LICENSE="GPL-2"
IUSE=""
KEYWORDS="x86"
SLOT="0"
RDEPEND="virtual/x11"
DEPEND="${RDEPEND}
=dev-lang/tk-8*"
src_compile() {
econf || die
emake || die
sed -i -e 's/\(^START-INFO\)/INFO-DIR-SECTION Miscellaneous\n\1/' \
doc/pcb.info
}
src_install() {
make DESTDIR=${D} install || die
}
|