| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yafu/yafu-1.33.ebuild,v 1.1 2012/11/19 07:41:56 patrick Exp $
|
| 4 |
|
| 5 |
EAPI=4
|
| 6 |
DESCRIPTION="Relative Expression-Based Object Language"
|
| 7 |
HOMEPAGE="http://rebol.com"
|
| 8 |
|
| 9 |
MY_PR=${PVR/3_pre/}
|
| 10 |
SRC_URI="http://www.rebol.com/r3/downloads/r3-a${MY_PR}-4-4.tar.gz"
|
| 11 |
|
| 12 |
inherit eutils
|
| 13 |
|
| 14 |
# sourcecode uses this license:
|
| 15 |
LICENSE="Apache-2.0"
|
| 16 |
SLOT="0"
|
| 17 |
KEYWORDS="~amd64 ~x86"
|
| 18 |
IUSE=""
|
| 19 |
|
| 20 |
RDEPEND="amd64? ( app-emulation/emul-linux-x86-baselibs )"
|
| 21 |
DEPEND=""
|
| 22 |
|
| 23 |
QA_PRESTRIPPED="opt/rebol/r3"
|
| 24 |
|
| 25 |
S=${WORKDIR}
|
| 26 |
|
| 27 |
src_compile() {
|
| 28 |
:;
|
| 29 |
}
|
| 30 |
|
| 31 |
src_install() {
|
| 32 |
mkdir -p "${D}/opt/rebol/"
|
| 33 |
cp "${S}/r3" "${D}/opt/rebol/" || die "Failed to install"
|
| 34 |
}
|