summaryrefslogtreecommitdiff
blob: 93cf099815f55465820f1ebdfed1a9a13559976e (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
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

DESCRIPTION="A interpreted language mainly used for games"
HOMEPAGE="http://squirrel-lang.org/"
SRC_URI="mirror://sourceforge/squirrel/squirrel_${PV}_stable.tar.gz"

LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc examples"

DEPEND=""
RDEPEND=""

S="${WORKDIR}/SQUIRREL2"

src_compile() {
	if use amd64 ; then
		emake sq64 || die "emake failed"
	else
		emake || die "emake failed"
	fi
}

src_install() {
	dobin bin/sq || die "installing sq binary"
	dolib.a lib/* || die "copying library files failed"
	insinto /usr
	doins -r include || die "copying files failed"
	dodoc HISTORY README || die "copying documentation failed"

	if use doc ; then
		insinto /usr/share/doc/${PF}
		doins doc/{squirrel2.pdf,sqstdlib2.pdf} || die "copying documentation failed"
	fi

	if use examples ; then
		insinto /usr/share/doc/${PF}/samples
		doins -r etc samples/* || die "copying examples failed"
	fi
}