blob: a178852679707f856ac26ea9d8e6ffaf80a81486 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/bff/bff-1.0.3.1.ebuild,v 1.5 2006/09/09 09:05:26 blubb Exp $
inherit toolchain-funcs
DESCRIPTION="a brainfuck interpreter"
HOMEPAGE="http://swapped.cc/bf/"
SRC_URI="http://swapped.cc/bf/files/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND=""
RDEPEND=""
src_compile() {
$(tc-getCC) ${CFLAGS} -o bff bff.c || die "compile failed"
}
src_install() {
dobin bff
into /usr
dodoc README
}
|