summaryrefslogtreecommitdiff
blob: 60abee37280dab13a2fcff91afa44073eae06980 (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
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-sci/xcircuit/xcircuit-3.1.29.ebuild,v 1.2 2003/12/09 18:11:38 lanius Exp $

S=${WORKDIR}/${P}

DESCRIPTION="Circuit drawing and schematic capture program."
SRC_URI="http://xcircuit.ece.jhu.edu/archive/${P}.tar.bz2"
HOMEPAGE="http://xcircuit.ece.jhu.edu"

KEYWORDS="x86 ~ppc"
SLOT="0"
LICENSE="GPL-2"

DEPEND="virtual/x11
	virtual/ghostscript"


src_compile() {

	aclocal && autoconf || die "Could not recreate configuration files!"
	econf || die "Configuration failed"
	make || die

}

src_install () {

	make DESTDIR=${D} install || die "Installation failed"
	dodoc COPYRIGHT README*

}