summaryrefslogtreecommitdiff
blob: 6fa137c0433388f2f7cdbefacc44acc9c7869de2 (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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/otter/otter-3.2.ebuild,v 1.2 2005/04/22 00:06:28 wormo Exp $

DESCRIPTION="An Automated Deduction System."
SRC_URI="http://www-unix.mcs.anl.gov/AR/${PN}/${P}.tar.gz"
HOMEPAGE="http://www-unix.mcs.anl.gov/AR/otter/"

KEYWORDS="x86"
LICENSE="otter"
SLOT="0"
IUSE=""
DEPEND="virtual/libc"
S=${WORKDIR}/${P}/source
WORK=${WORKDIR}/${P}


src_compile() {
	cd ${S}
	emake || die
	cd ${S}/mace
	emake || die
}

src_install() {
	cd ${S}
	dobin otter mace/mace formed/formed
	cd ${WORK}
	dodoc README Legal Copying Changelog documents/*
}