blob: de9f20c6ecf83f04731280d1d9bb386ff345b0d4 (
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-electronics/pcb/pcb-20091103.ebuild,v 1.7 2011/03/06 09:27:50 jlec Exp $
EAPI="2"
inherit fdo-mime gnome2-utils eutils
DESCRIPTION="GPL Electronic Design Automation: Printed Circuit Board editor"
HOMEPAGE="http://www.gpleda.org/"
SRC_URI="mirror://sourceforge/pcb/files/pcb/${P}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~x86-macos"
IUSE="dbus doc gif gtk jpeg m4lib-png motif nelma nls png xrender test tk toporouter"
# toporouter-output USE flag removed for pcb-20091103 (output was disabled always)
# debug USE flag removed for pcb-20091103 (many crashes, should be fixed for next release)
CDEPEND="gif? ( >=media-libs/gd-2.0.23 )
gtk? ( x11-libs/gtk+:2 x11-libs/pango
dbus? ( sys-apps/dbus ) )
jpeg? ( >=media-libs/gd-2.0.23[jpeg] )
motif? ( !gtk? (
>=x11-libs/openmotif-2.3:0
dbus? ( sys-apps/dbus )
xrender? ( >=x11-libs/libXrender-0.9 ) ) )
nelma? ( >=media-libs/gd-2.0.23 )
nls? ( virtual/libintl )
png? ( >=media-libs/gd-2.0.23[png] )
m4lib-png? ( >=media-libs/gd-2.0.23[png] )
tk? ( >=dev-lang/tk-8 )"
#toporouter-output? ( x11-libs/cairo )
DEPEND="${CDEPEND}
test? (
|| ( media-gfx/graphicsmagick[imagemagick] media-gfx/imagemagick )
sci-electronics/gerbv
)
>=dev-util/intltool-0.35
dev-util/pkgconfig
nls? ( sys-devel/gettext )"
RDEPEND="${CDEPEND}
sci-electronics/electronics-menu"
pkg_setup() {
if use gtk && use motif; then
elog "Can only build for GTK+ or Motif/Lesstif GUI. GTK+ has priority."
fi
if !(use gtk || use motif); then
elog "Building without GUI, make sure you know what you are doing."
fi
if use dbus && !(use gtk || use motif); then
elog "dbus needs GTK or Motif/Lesstif GUI. Try USE=-dbus or USE=gtk or USE=motif."
fi
if (use gtk || (! use gtk && ! use motif)) && (use xrender); then
elog "The XRender extension is only usable with the Motif/Lesstif GUI."
fi
}
src_prepare() {
# fix bug in pcb-20091103, see http://archives.seul.org/geda/user/Nov-2009/msg00577.html
if use m4lib-png; then
rm -f lib/pcblib-newlib.stamp
fi
if ! use png; then
sed -i '/^hid_png1/d' tests/tests.list || die
fi
sed -i -e 's/example//' -e 's/tutorial//' -e 's/ win32//' Makefile.in || die "sed failed"
sed -i -e 's/DOC=doc/DOC="doc example tutorial"/' configure || die "sed failed"
sed -i -e 's/$(pkgdatadir)/$(docdir)/' {example,tutorial}/Makefile.in || die "sed failed"
# fix bug in pcb-20091103, should be fixed in next release
sed -i -e 's/free (&pd);/free (pd);/' src/hid/lesstif/main.c || die "sed failed"
# fix segfault during 'pcb -h' if USE=-gif or -jpeg or -png
epatch "${FILESDIR}"/${P}-png.patch
}
src_configure() {
local myconf
if use gtk ; then
myconf="--with-gui=gtk $(use_enable dbus) --disable-xrender"
elif use motif ; then
myconf="--with-gui=lesstif $(use_enable dbus) $(use_enable xrender)"
else
myconf="--with-gui=batch --disable-xrender --disable-dbus"
fi
local exporters="bom gerber ps"
if (use png || use jpeg || use gif) ; then
exporters="${exporters} png"
fi
use nelma && exporters="${exporters} nelma"
use tk || export WISH="/bin/true"
econf \
${myconf} \
$(use_enable doc) \
$(use_enable gif) \
$(use_enable jpeg) \
$(use_enable nls) \
$(use_enable png) \
$(use_enable m4lib-png) \
$(use_enable toporouter) \
--disable-toporouter-output \
--with-exporters="${exporters}" \
--disable-dependency-tracking \
--disable-rpath \
--disable-update-mime-database \
--disable-update-desktop-database \
--docdir="/usr/share/doc/${PF}"
}
# Removed for pcb-20091103 (should be fixed for next release):
# $(use_enable debug)
# $(use_enable toporouter-output) \
src_install() {
emake DESTDIR="${D}" install || die "install failed"
dodoc AUTHORS README NEWS ChangeLog
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
gnome2_icon_cache_update
}
pkg_postrm() {
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
gnome2_icon_cache_update
}
|