blob: 82c8f60d931b4e2c3702c806a6338e869c089119 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="Relative Expression-Based Object Language"
HOMEPAGE="http://rebol.com"
# download links are from
# http://rebolsource.net/
# amd64 is of experimental build
git_commit=25033f8
SRC_URI="
amd64? ( http://rebolsource.net/downloads/experimental/r3-linux-x64-gbf237fc )
x86? ( http://rebolsource.net/downloads/linux-x86/r3-g${git_commit} )
"
# sourcecode uses this license:
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
QA_PREBUILT="opt/rebol/r3"
S=${WORKDIR}
src_unpack() {
mkdir -p "${S}"
cp "${DISTDIR}/${A}" "${S}"/r3 || die
}
src_compile() {
:
}
src_install() {
exeinto /opt/rebol
doexe r3
}
|