blob: 3e9a0a5b0f61860605afa8499b725fff013232cd (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/rebol-bin/rebol-bin-3_pre111.ebuild,v 1.1 2012/12/23 10:55:09 patrick Exp $
EAPI=4
DESCRIPTION="Relative Expression-Based Object Language"
HOMEPAGE="http://rebol.com"
MY_PR=${PVR/3_pre/}
SRC_URI="http://www.rebol.com/r3/downloads/r3-a${MY_PR}-4-4.tar.gz"
inherit eutils
# sourcecode uses this license:
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="amd64? ( app-emulation/emul-linux-x86-baselibs )"
DEPEND=""
QA_PRESTRIPPED="opt/rebol/r3"
S=${WORKDIR}
src_compile() {
:;
}
src_install() {
mkdir -p "${D}/opt/rebol/"
cp "${S}/r3" "${D}/opt/rebol/" || die "Failed to install"
}
|