diff options
author | NHOrus <jy6x2b32pie9@yahoo.com> | 2024-05-12 16:08:10 +0400 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2024-05-13 00:34:53 +0200 |
commit | a63ca21efdd5a67c58bbfa9b0ae2013dc471ba1d (patch) | |
tree | fa8b4efb207ad38ac626930af0c79cdd3fd84523 /app-emulation | |
parent | www-servers/caddy: Copy deps and docs tarballs to dev space (diff) | |
download | gentoo-a63ca21efdd5a67c58bbfa9b0ae2013dc471ba1d.tar.gz gentoo-a63ca21efdd5a67c58bbfa9b0ae2013dc471ba1d.tar.bz2 gentoo-a63ca21efdd5a67c58bbfa9b0ae2013dc471ba1d.zip |
app-emulation/x48: Enable feature-macro locked libc extensions
Closes: https://bugs.gentoo.org/871468
Signed-off-by: NHOrus <jy6x2b32pie9@yahoo.com>
Closes: https://github.com/gentoo/gentoo/pull/36653
Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/x48/files/x48-0.6.4-configure.patch | 11 | ||||
-rw-r--r-- | app-emulation/x48/x48-0.6.4-r3.ebuild | 70 |
2 files changed, 81 insertions, 0 deletions
diff --git a/app-emulation/x48/files/x48-0.6.4-configure.patch b/app-emulation/x48/files/x48-0.6.4-configure.patch new file mode 100644 index 000000000000..ea3a883991a8 --- /dev/null +++ b/app-emulation/x48/files/x48-0.6.4-configure.patch @@ -0,0 +1,11 @@ +--- a/configure.ac 2024-05-12 12:01:50.591368113 -0000 ++++ b/configure.ac 2024-05-12 12:05:39.116023749 -0000 +@@ -10,6 +10,8 @@ + AC_CONFIG_SRCDIR([config.h.in]) + AC_CONFIG_HEADER([config.h]) + ++ ++AC_USE_SYSTEM_EXTENSIONS + # Checks for programs. + AC_PROG_CC + AC_PROG_INSTALL diff --git a/app-emulation/x48/x48-0.6.4-r3.ebuild b/app-emulation/x48/x48-0.6.4-r3.ebuild new file mode 100644 index 000000000000..c584c99e820a --- /dev/null +++ b/app-emulation/x48/x48-0.6.4-r3.ebuild @@ -0,0 +1,70 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="HP48 Calculator Emulator" +HOMEPAGE="https://sourceforge.net/projects/x48.berlios/" +SRC_URI="https://downloads.sourceforge.net/x48.berlios/${P}.tar.bz2" +S=${WORKDIR} + +LICENSE="GPL-3" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="readline" + +RDEPEND=" + x11-libs/libX11 + x11-libs/libXext + readline? ( sys-libs/readline:0= )" +DEPEND="${RDEPEND} + virtual/pkgconfig + x11-libs/libXt" + +PATCHES=( + "${FILESDIR}"/${P}-static.patch + "${FILESDIR}"/${P}-void_return.patch + "${FILESDIR}"/${P}-configure.patch + ) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf $(use_enable readline) +} + +src_install() { + default + + insinto /usr/share/"${PN}"/romdump + doins -r romdump/{README,ROMDump*} +} + +pkg_postinst() { + elog "The X48 emulator requires an HP48 ROM image to run." + elog + elog "If you own an HP-48 calculator, you can use the ROMDump utility" + elog "included with this package to obtain it from your calculator." + elog "The instructions of how to do this are included in the package." + elog + elog "Alternatively, HP has provided the ROM images for non-commercial" + elog "use only." + elog + elog "Due to confusion over the legal status of these ROMs you must" + elog "manually download one from http://www.hpcalc.org/hp48/pc/emulators/" + elog + elog "If you do not know which one to use, try 'HP 48GX Revision R ROM.'" + elog + elog "Once you have a ROM, you will need to install it by running:" + elog + elog "x48 -rom gxrom-r" + elog + elog "You will only have to do this the first time you run X48. The" + elog "ROM will be stored in ~/.hp48/rom for future runs." +} |