blob: 47c882ce947804a50fbeb494231d51f4cfa5e0a1 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-electronics/pcb/pcb-20070208.ebuild,v 1.2 2007/02/18 16:01:36 calchan Exp $
inherit eutils
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="~amd64 ~ppc ~sparc ~x86"
IUSE="gif jpeg png"
RDEPEND=">=x11-libs/gtk+-2.4
gif? ( media-libs/gd )
jpeg? ( media-libs/gd )
png? ( media-libs/gd )"
DEPEND="${RDEPEND}
=dev-lang/tk-8*
|| (
virtual/x11
x11-proto/xproto
)
dev-util/pkgconfig"
pkg_setup() {
if use jpeg ; then
built_with_use media-libs/gd jpeg || die "You need to emerge media-libs/gd with USE=jpeg"
fi
if use png ; then
echo "Using png"
built_with_use media-libs/gd png || die "You need to emerge media-libs/gd with USE=png"
fi
}
src_unpack() {
unpack ${A}
cd ${S}
sed -i 's/\(^START-INFO\)/INFO-DIR-SECTION Miscellaneous\n\1/' doc/pcb.info || die "sed failed"
}
src_compile() {
local EXPORTERS
if (use gif) || (use jpeg) || (use png) ; then
EXPORTERS="bom gerber png ps"
else
EXPORTERS="bom gerber ps"
fi
econf \
--disable-dependency-tracking \
$(use_enable gif ) \
$(use_enable jpeg ) \
$(use_enable png ) \
--with-exporters="${EXPORTERS}" \
|| die "Configuration failed"
emake || die "Compilation failed"
}
src_install() {
make DESTDIR=${D} install || die "Installation failed"
dodoc AUTHORS ChangeLog NEWS README
newicon win32/pcb_icon_big.xpm pcb.xpm
make_desktop_entry pcb PCB pcb.xpm Electronics
}
|