blob: 9e89187e30a1b6ce571d2bc6215b2352938a1b91 (
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
33
34
35
36
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-electronics/pcb/pcb-20050127.ebuild,v 1.4 2005/05/07 10:12:25 pbienst 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"
SLOT="0"
KEYWORDS="x86 ~amd64 ~sparc ~ppc"
IUSE="Xaw3d"
RDEPEND="virtual/x11"
DEPEND="${RDEPEND}
=dev-lang/tk-8*"
src_unpack() {
unpack ${A}
cd ${S}
sed -i 's/\(^START-INFO\)/INFO-DIR-SECTION Miscellaneous\n\1/' doc/pcb.info
}
src_compile() {
local myconf=""
use Xaw3d \
&& myconf="--with-xaw=Xaw3d" \
|| myconf="--with-xaw=Xaw"
econf ${myconf} || die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS ChangeLog NEWS README
}
|