blob: 6c9b87de978672f8d35e95f3a60d4fa291e309fd (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/mozart-stdlib/mozart-stdlib-1.4.0.ebuild,v 1.3 2010/11/20 00:03:35 keri Exp $
inherit eutils
MY_P="mozart-${PV}.20080704-std"
DESCRIPTION="The Mozart Standard Library"
HOMEPAGE="http://www.mozart-oz.org/"
SRC_URI="http://www.mozart-oz.org/download/mozart-ftp/store/1.4.0-2008-07-02-tar/mozart-1.4.0.20080704-std.tar.gz"
LICENSE="Mozart"
SLOT="0"
KEYWORDS="-amd64 ~ppc -ppc64 ~sparc ~x86"
IUSE="doc"
DEPEND="dev-lang/mozart"
RDEPEND="${DEPEND}"
S="${WORKDIR}"/${MY_P}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-ozload.patch
}
src_compile() {
econf
emake -j1 || die "emake failed"
}
src_install() {
emake -j1 \
PREFIX="${D}"/usr/lib/mozart \
install || die "emake install failed"
dosym /usr/lib/mozart/bin/ozmake /usr/bin/ozmake || die
if use doc ; then
dohtml -r * || die
fi
doman ozmake/ozmake.1 || die
dodoc ozmake/{CHANGES,DESIGN,NOTES,README} || die
}
|