# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ S=${WORKDIR}/bf DESCRIPTION="Brainfuck compiler and interpreter" SRC_URI="http://www.catseye.mb.ca/esoteric/bf/brainfunct.tar.gz" HOMEPAGE="http://www.catseye.mb.ca/esoteric/bf/" SLOT="0" LICENSE="LGPL-2" KEYWORDS="x86 ppc sparc alpha" DEPEND="sys-libs/glibc" RDEPEND=${DEPEND} src_compile() { emake || die } src_install() { install -d ${D}/usr/bin install -c bfi ${D}/usr/bin/bfi install -c bfc ${D}/usr/bin/bfc } pkg_postinst() { einfo "Have fun, don't commit suicide or anything :-P" einfo "Your friendly neighborhood malverian" einfo "XOXOXOXOXO!!!!" }