commit: 6fbc24fdc88918751e01df44a013a24ac927977e Author: Filip Kobierski <fkobi <AT> pm <DOT> me> AuthorDate: Thu Sep 5 20:00:52 2024 +0000 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org> CommitDate: Mon Oct 7 13:13:15 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fbc24fd
dev-lang/bas: add 2.6 without lr0 USE flag Based on https://github.com/gentoo/gentoo/pull/33311 - update LICENSE - simplify ebuild - first closes Closes: https://bugs.gentoo.org/894774 Closes: https://github.com/gentoo/gentoo/pull/33311 Signed-off-by: Filip Kobierski <fkobi <AT> pm.me> Closes: https://github.com/gentoo/gentoo/pull/38466 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org> dev-lang/bas/Manifest | 1 + dev-lang/bas/bas-2.6.ebuild | 40 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) diff --git a/dev-lang/bas/Manifest b/dev-lang/bas/Manifest index f8fd39d3d8e9..ff11d932ebb3 100644 --- a/dev-lang/bas/Manifest +++ b/dev-lang/bas/Manifest @@ -1 +1,2 @@ DIST bas-2.4.tar.gz 258055 BLAKE2B ab7ce46ac0792d996ef0941af78f7f9dbec76226ee624c0b42623bf0236cdcb5dfa0694ce46b4a9e75b4e07f64192064f48a88db06affd71793f52c6578bcf19 SHA512 1a86805d1981a7bc920d7f6ab7827ee9f0ed9535b78b4c46718106e7abe0b1ef9298631e7e4d3d9bf206a8ca0e1239db48a9d94b0b85b71101aea0956d1454d7 +DIST bas-2.6.tar.gz 279148 BLAKE2B f04c4dfe453eaf5da8c84093c9b4b57c1554323bd4a8d8b36d14f2c3bedd4ce9ac79bdb609572d81cf2543274626e755b21178c6969cf9ed614ba4d9e067473a SHA512 f340630aa57931674a68c51d151f7eac77e2ea36197e4704ff9cc4f554c2da6c9b66983358e56c1efaee637470402f24ec3901ecbcc26a403d5e72b718390fd0 diff --git a/dev-lang/bas/bas-2.6.ebuild b/dev-lang/bas/bas-2.6.ebuild new file mode 100644 index 000000000000..ed037595a066 --- /dev/null +++ b/dev-lang/bas/bas-2.6.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools toolchain-funcs + +DESCRIPTION="An interpreter for the classic dialect of the programming language BASIC" +HOMEPAGE="http://www.moria.de/~michael/bas/" +SRC_URI="http://www.moria.de/~michael/bas/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + sys-libs/ncurses + virtual/libintl +" +DEPEND="${RDEPEND}" +BDEPEND="sys-devel/gettext" + +PATCHES=( "${FILESDIR}"/${PN}-2.1-makefile.patch ) + +src_prepare() { + default + eautoconf +} + +src_configure() { + tc-export AR + econf +} + +src_install() { + default + + docinto pdf + dodoc bas.pdf +}
