blob: a7ae333c75b57ed58afda42c0b0e2f1ff6abdb5f (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-electronics/xcircuit/xcircuit-3.6.161.ebuild,v 1.2 2009/12/26 17:45:00 pva Exp $
EAPI=2
inherit autotools
DESCRIPTION="Circuit drawing and schematic capture program."
SRC_URI="http://opencircuitdesign.com/xcircuit/archive/${P}.tgz"
HOMEPAGE="http://opencircuitdesign.com/xcircuit"
KEYWORDS=""
SLOT="0"
LICENSE="GPL-2"
IUSE=""
RDEPEND="app-text/ghostscript-gpl
dev-lang/tk
x11-libs/libXt"
DEPEND="${RDEPEND}"
RESTRICT="test" #131024
src_prepare() {
eautoreconf
}
src_configure() {
econf \
--disable-dependency-tracking \
--with-tcl \
--with-ngspice
}
src_install () {
emake DESTDIR="${D}" appdefaultsdir="/usr/share/X11/app-defaults" \
appmandir="/usr/share/man/man1" install || die "emake install failed"
dodoc CHANGES README* TODO
}
|