summaryrefslogtreecommitdiff
path: root/dev-lang/bas/bas-2.6-r1.ebuild
diff options
context:
space:
mode:
authorMaciej Barć <xgqt@gentoo.org>2024-11-28 11:11:56 +0100
committerMaciej Barć <xgqt@gentoo.org>2024-11-28 11:23:47 +0100
commitfc77ab1faf14207e21f6723f72d5b062be50b685 (patch)
treee34eac1f2a81fd2a878b43b2032e783a1edd96e6 /dev-lang/bas/bas-2.6-r1.ebuild
parent4004f3e6b79ed2cfeb0abf96b253db56f64a483d (diff)
downloadgentoo-fc77ab1faf14207e21f6723f72d5b062be50b685.tar.gz
gentoo-fc77ab1faf14207e21f6723f72d5b062be50b685.tar.bz2
gentoo-fc77ab1faf14207e21f6723f72d5b062be50b685.zip
dev-lang/bas: bind ncurses slot; style tweaks
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'dev-lang/bas/bas-2.6-r1.ebuild')
-rw-r--r--dev-lang/bas/bas-2.6-r1.ebuild47
1 files changed, 47 insertions, 0 deletions
diff --git a/dev-lang/bas/bas-2.6-r1.ebuild b/dev-lang/bas/bas-2.6-r1.ebuild
new file mode 100644
index 000000000000..5bc47feca374
--- /dev/null
+++ b/dev-lang/bas/bas-2.6-r1.ebuild
@@ -0,0 +1,47 @@
+# 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="
+ app-alternatives/lex
+ 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
+}