diff options
author | Mikle Kolyada <zlogene@gentoo.org> | 2018-10-13 13:52:46 +0300 |
---|---|---|
committer | Mikle Kolyada <zlogene@gentoo.org> | 2018-10-13 13:53:04 +0300 |
commit | d5f0d7527c3f7c3ca651148fb7e2885cd3228ad7 (patch) | |
tree | 36f0825edbec41414df2d771666d462157ef71fd /app-emulation/x48 | |
parent | app-crypt/ssdeep: cleanup old (diff) | |
download | gentoo-d5f0d7527c3f7c3ca651148fb7e2885cd3228ad7.tar.gz gentoo-d5f0d7527c3f7c3ca651148fb7e2885cd3228ad7.tar.bz2 gentoo-d5f0d7527c3f7c3ca651148fb7e2885cd3228ad7.zip |
app-emulation/x48: Drop old
Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11
Diffstat (limited to 'app-emulation/x48')
-rw-r--r-- | app-emulation/x48/x48-0.6.4.ebuild | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/app-emulation/x48/x48-0.6.4.ebuild b/app-emulation/x48/x48-0.6.4.ebuild deleted file mode 100644 index cc84f6518da5..000000000000 --- a/app-emulation/x48/x48-0.6.4.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit autotools - -DESCRIPTION="HP48 Calculator Emulator" -HOMEPAGE="http://x48.berlios.de/" -SRC_URI="mirror://sourceforge/x48.berlios/${P}.tar.bz2" -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 )" -DEPEND="${RDEPEND} - virtual/pkgconfig - x11-libs/libXt" - -src_unpack() { - mkdir -p "${S}" - cd "${S}" - unpack ${A} -} - -src_prepare() { - eautoreconf -} - -src_configure() { - econf $(use_enable readline) -} - -src_install() { - emake DESTDIR="${D}" install - insinto /usr/share/"${PN}"/romdump - doins -r romdump/{README,ROMDump*} - dodoc AUTHORS README ChangeLog -} - -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." -} |