blob: 782b0d82c486394808672652c0b58db0c51b75e9 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-electronics/xcircuit/xcircuit-3.6.165.ebuild,v 1.1 2010/02/26 09:22:54 ssuominen Exp $
EAPI=2
inherit autotools eutils
DESCRIPTION="Circuit drawing and schematic capture program."
SRC_URI="http://opencircuitdesign.com/xcircuit/archive/${P}.tgz"
HOMEPAGE="http://opencircuitdesign.com/xcircuit"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND="x11-libs/libX11
x11-libs/libXt
x11-libs/libXpm
x11-libs/libSM
x11-libs/libICE
sys-libs/zlib
app-text/ghostscript-gpl
dev-lang/tcl
dev-lang/tk"
RESTRICT="test" #131024
src_prepare() {
epatch "${FILESDIR}"/${P}-implicit.patch
eautoreconf
}
src_configure() {
econf \
--disable-dependency-tracking \
--with-tcl \
--with-ngspice
}
src_compile() {
emake appdefaultsdir="/usr/share/X11/app-defaults" || die
}
src_install () {
emake DESTDIR="${D}" appdefaultsdir="/usr/share/X11/app-defaults" \
appmandir="/usr/share/man/man1" install || die
dodoc CHANGES README* TODO
}
|