blob: d4b4fe2af37a7c2737ba7ac20cd26cae050d9245 (
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools toolchain-funcs virtualx xdg
DESCRIPTION="GPL Electronic Design Automation: Printed Circuit Board editor"
HOMEPAGE="http://pcb.geda-project.org/"
SRC_URI="https://downloads.sourceforge.net/pcb/pcb/${P}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="dbus doc gcode gif gsvit gui jpeg m4lib-png nelma png test tk toporouter"
# toporouter-output USE flag removed, there seems to be no result
RESTRICT="!test? ( test )"
RDEPEND="
dev-libs/glib:2
sci-electronics/electronics-menu
gif? ( media-libs/gd )
gsvit? ( media-libs/gd[png] )
gui? (
x11-libs/gtk+:2
x11-libs/pango
dbus? ( sys-apps/dbus )
)
jpeg? ( media-libs/gd[jpeg] )
nelma? ( media-libs/gd[png] )
gcode? ( media-libs/gd[png] )
virtual/libintl
png? ( media-libs/gd[png] )
m4lib-png? ( media-libs/gd[png] )
tk? ( >=dev-lang/tk-8:0 )"
#toporouter-output? ( x11-libs/cairo )
DEPEND="${RDEPEND}"
BDEPEND="
>=dev-util/intltool-0.35
virtual/pkgconfig
sys-devel/gettext
test? (
sci-electronics/gerbv
virtual/imagemagick-tools
)"
PATCHES=( "${FILESDIR}"/${PN}-4.2.2-fix-autotools.patch )
src_prepare() {
default
eautoreconf
# tests are unconditional, even in the known presence of missing/disabled
# features, so we have to remove feature tests ourselves.
if ! use gcode; then
sed -i '/^hid_gcode/d' tests/tests.list || die
fi
if ! use gsvit; then
sed -i '/^hid_gsvit/d' tests/tests.list || die
fi
if ! use nelma; then
sed -i '/^hid_nelma/d' tests/tests.list || die
fi
if ! use png; then
sed -i '/^hid_png/d' tests/tests.list || die
fi
if ! use gif; then
sed -i '/^hid_png10[[:digit:]]/d' tests/tests.list || die
fi
if ! use jpeg; then
sed -i '/^hid_png20[[:digit:]]/d' tests/tests.list || die
fi
}
src_configure() {
local exporters=( bom gerber ps ipcd356 )
if use png || use jpeg || use gif; then
exporters+=( png )
fi
use gcode && exporters+=( gcode )
use gsvit && exporters+=( gsvit )
use nelma && exporters+=( nelma )
use tk || export WISH="${EPREFIX}/bin/true"
# toporouter-output USE flag removed, seems to do nothing
# opengl disabled unconditionally, due to requiring EOL gtkglext
econf \
--disable-gl \
--disable-rpath \
--disable-toporouter-output \
--disable-update-mime-database \
--disable-update-desktop-database \
--disable-xrender \
--enable-nls \
$(use_enable doc) \
$(use_enable gif) \
$(use_enable jpeg) \
$(use_enable png) \
$(use_enable m4lib-png) \
$(use_enable toporouter) \
$(use_enable gui dbus $(usex dbus yes no)) \
--with-gui=$(usex gui gtk batch) \
--with-exporters="${exporters[*]}"
}
src_compile() {
emake AR="$(tc-getAR)"
}
src_test() {
virtx emake check
}
|