diff options
author | 2006-08-10 07:21:11 +0000 | |
---|---|---|
committer | 2006-08-10 07:21:11 +0000 | |
commit | 86946f546eca2c91b21e086b556de54734ee61a1 (patch) | |
tree | 0e658254d656054c96dae780ed24c93c7e6cef5a /dev-lang/brainwash/brainwash-0.3.ebuild | |
parent | media-libs/amanith: Added 'doins the/header/files' to src_install :-) (diff) | |
download | sunrise-86946f546eca2c91b21e086b556de54734ee61a1.tar.gz sunrise-86946f546eca2c91b21e086b556de54734ee61a1.tar.bz2 sunrise-86946f546eca2c91b21e086b556de54734ee61a1.zip |
dev-lang/brainwash: New ebuild for bug 143223. Thanks genstef.
svn path=/sunrise/; revision=822
Diffstat (limited to 'dev-lang/brainwash/brainwash-0.3.ebuild')
-rw-r--r-- | dev-lang/brainwash/brainwash-0.3.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/dev-lang/brainwash/brainwash-0.3.ebuild b/dev-lang/brainwash/brainwash-0.3.ebuild new file mode 100644 index 000000000..7cb01b4bd --- /dev/null +++ b/dev-lang/brainwash/brainwash-0.3.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +DESCRIPTION="An optimizing interpreter for the Brainfuck programming language." +HOMEPAGE="http://brainwash.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~x86" +IUSE="char" + +S="${WORKDIR}/${P}/src" + +src_compile() { + if use char ; then + emake char || die "emake failed" + else + emake || die "emake failed" + fi +} + +src_install() { + dobin brainwash + cd .. + dodoc README ChangeLog +} |