blob: 29bf11bb1d39517465ed7e5b005111fee6995510 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit cvs versionator
ECVS_SERVER="cvs.motion-twin.com:/cvsroot"
DESCRIPTION="The Motion-Twin ActionScript 2 Compiler"
HOMEPAGE="http://www.mtasc.org"
SRC_URI="http://www.mtasc.org/doc/${PN}/install.ml"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-lang/ocaml"
RDEPEND=${DEPEND}
S=${WORKDIR}
src_unpack() {
cp "${DISTDIR}/install.ml" .
sed -i "/download();/d" install.ml || die
for M in extlib-dev swflib extc; do
ECVS_MODULE="ocaml/${M}"
cvs_src_unpack
done
ECVS_MODULE="ocaml/mtasc"
ECVS_BRANCH="v`replace_all_version_separators -`"
cvs_src_unpack
}
src_compile() {
ocaml install.ml || die "ocaml install failed"
}
src_install() {
# Don't install CVS directories.
find ocaml/mtasc/std{,8} -name "CVS" -exec rm -rf {} \; 2> /dev/null
dobin bin/mtasc bin/mtasc-byte || die
insinto /usr/share/mtasc
doins -r ocaml/mtasc/std{,8} || die
dodoc ocaml/mtasc/doc/{Readme.linux,CHANGES.txt} || die
}
pkg_postinst() {
einfo "mm classes are installed in /usr/share/mtasc/std"
einfo "so when needed you should compile with:"
einfo "mtasc -cp /usr/share/mtasc/std ..."
}
|