blob: 3b3a2633067130c80bb5fd5319297e5c39de2991 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-embedded/gpsim/gpsim-0.22.0.ebuild,v 1.9 2009/05/10 15:35:46 ssuominen Exp $
inherit eutils autotools
DESCRIPTION="A simulator for the Microchip PIC microcontrollers"
HOMEPAGE="http://www.dattalo.com/gnupic/gpsim.html"
SRC_URI="mirror://sourceforge/gpsim/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 x86"
IUSE="doc gtk"
RDEPEND="dev-libs/glib
dev-libs/popt
>=dev-embedded/gputils-0.12.0
gtk? ( >=x11-libs/gtk+extra-2.1.1 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
sys-devel/flex
|| ( dev-util/yacc sys-devel/bison )"
src_prepare() {
# Fix compilation with gcc 4.3, bug #218210
epatch "${FILESDIR}/${P}-gcc43.patch"
epatch "${FILESDIR}/${P}-eXdbm.patch"
eautoreconf
}
src_configure() {
econf $(use_enable gtk gui)
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog HISTORY PROCESSORS README README.MODULES TODO
if use doc ; then
insinto /usr/share/doc/${PF}
doins "${S}"/doc/gpsim.pdf
fi
}
|