diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2012-11-01 16:53:11 +0000 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2012-11-01 16:53:11 +0000 |
commit | f43b6dfb24ffed4846f1bbf76a533e1304f57a79 (patch) | |
tree | 18e2e398c8b04c8427868cf6802fcdadc6bd1df0 /dev-lang | |
parent | Version bump: EAPI 4, add ~amd64 keyword wrt bug #440766, add USE flags 'debu... (diff) | |
download | gentoo-2-f43b6dfb24ffed4846f1bbf76a533e1304f57a79.tar.gz gentoo-2-f43b6dfb24ffed4846f1bbf76a533e1304f57a79.tar.bz2 gentoo-2-f43b6dfb24ffed4846f1bbf76a533e1304f57a79.zip |
Version bump: EAPI 4, add ~amd64 keyword
(Portage version: 2.2.0_alpha141/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/bashforth/ChangeLog | 7 | ||||
-rw-r--r-- | dev-lang/bashforth/bashforth-0.58a.ebuild | 25 |
2 files changed, 31 insertions, 1 deletions
diff --git a/dev-lang/bashforth/ChangeLog b/dev-lang/bashforth/ChangeLog index 135a244719bb..f492643966ad 100644 --- a/dev-lang/bashforth/ChangeLog +++ b/dev-lang/bashforth/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-lang/bashforth # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/bashforth/ChangeLog,v 1.5 2012/05/10 15:43:19 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/bashforth/ChangeLog,v 1.6 2012/11/01 16:53:11 pinkbyte Exp $ + +*bashforth-0.58a (01 Nov 2012) + + 01 Nov 2012; Sergey Popov <pinkbyte@gentoo.org> +bashforth-0.58a.ebuild: + Version bump: EAPI 4, add ~amd64 keyword 10 May 2012; Agostino Sarubbo <ago@gentoo.org> -bashforth-0.54a.ebuild: Remove old diff --git a/dev-lang/bashforth/bashforth-0.58a.ebuild b/dev-lang/bashforth/bashforth-0.58a.ebuild new file mode 100644 index 000000000000..4fbd3915b3f7 --- /dev/null +++ b/dev-lang/bashforth/bashforth-0.58a.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/bashforth/bashforth-0.58a.ebuild,v 1.1 2012/11/01 16:53:11 pinkbyte Exp $ + +EAPI=4 + +DESCRIPTION="String-threaded Forth interpreter in Bash" +HOMEPAGE="http://www.forthfreak.net/index.cgi?BashForth" +SRC_URI="http://forthfreak.net/${PN}.versions/${P}" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=">app-shells/bash-3.0" + +S="${WORKDIR}" + +src_unpack() { + cp "${DISTDIR}/${P}" "${S}" +} + +src_install() { + newbin "${P}" "${PN}" +} |