blob: b84a2ecb81477dfee14d7d7e076b81aa1ca72422 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/gwydion-dylan-bin/gwydion-dylan-bin-2.4.0.ebuild,v 1.4 2007/07/02 14:42:29 peper Exp $
DESCRIPTION="The Dylan Programming Language Compiler"
HOMEPAGE="http://www.gwydiondylan.org/"
SRC_URI="x86? ( mirror://gentoo/${P}-x86.tbz2 )"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
RESTRICT="strip"
LOC="/opt/gwydion-dylan"
DEPEND=""
RDEPEND=">=dev-libs/boehm-gc-6.4"
S="${WORKDIR}"
src_compile() {
mkdir -p ./${LOC}
mv usr/* ./${LOC}
}
src_install() {
cp -pr * ${D}
doenvd ${FILESDIR}/20gwydion-dylan
}
|