blob: 3496b867c734aaeb86fe66d0c7639faa2f05104e (
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
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/maude/maude-2.1.1.ebuild,v 1.2 2004/08/30 16:25:25 dholm Exp $
DESCRIPTION="Maude - A high-level specification language"
HOMEPAGE="http://maude.cs.uiuc.edu/"
SRC_URI="mirror://gentoo/${P}.tar.bz2
mirror://gentoo/${PN}-full-doc-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE="doc"
RDEPEND="virtual/libc
dev-libs/buddy
dev-libs/libtecla
dev-libs/gmp"
DEPEND="${RDEPEND}
sys-devel/bison
sys-devel/flex"
src_compile() {
# econf/emake fails with a "file not found" error.
./configure --bindir=/usr/bin --datadir=/usr/share/${PN} || die
make || die
}
src_install() {
make install DESTDIR=${D}
dodoc AUTHORS ChangeLog NEWS README
# Sets the full maude library path.
insinto /etc/env.d
doins ${FILESDIR}/23maude
cd ${WORKDIR}/${PN}-full-doc-${PV}
# Full maude library
insinto /usr/share/${PN}
doins full-maude.maude
insinto /usr/share/doc/${P}/pdf
doins maude-manual.pdf maude-primer.pdf
insinto /usr/share/doc/${P}/ps
doins maude-manual.ps
if use doc; then
insinto /usr/share/${PN}/examples
doins maude-examples/*
insinto /usr/share/${PN}/primer-examples
doins examples/*
fi
}
src_test() {
pwd
make check || die
}
|