Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/x48/
Date: Sat, 13 Oct 2018 10:53:15
Message-Id: 1539427984.d5f0d7527c3f7c3ca651148fb7e2885cd3228ad7.zlogene@gentoo
1 commit: d5f0d7527c3f7c3ca651148fb7e2885cd3228ad7
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 13 10:52:46 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 13 10:53:04 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5f0d752
7
8 app-emulation/x48: Drop old
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11 Package-Manager: Portage-2.3.49, Repoman-2.3.11
12
13 app-emulation/x48/x48-0.6.4.ebuild | 66 --------------------------------------
14 1 file changed, 66 deletions(-)
15
16 diff --git a/app-emulation/x48/x48-0.6.4.ebuild b/app-emulation/x48/x48-0.6.4.ebuild
17 deleted file mode 100644
18 index cc84f6518da..00000000000
19 --- a/app-emulation/x48/x48-0.6.4.ebuild
20 +++ /dev/null
21 @@ -1,66 +0,0 @@
22 -# Copyright 1999-2012 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=4
26 -
27 -inherit autotools
28 -
29 -DESCRIPTION="HP48 Calculator Emulator"
30 -HOMEPAGE="http://x48.berlios.de/"
31 -SRC_URI="mirror://sourceforge/x48.berlios/${P}.tar.bz2"
32 -LICENSE="GPL-3"
33 -
34 -SLOT="0"
35 -KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
36 -IUSE="readline"
37 -
38 -RDEPEND="x11-libs/libX11
39 - x11-libs/libXext
40 - readline? ( sys-libs/readline )"
41 -DEPEND="${RDEPEND}
42 - virtual/pkgconfig
43 - x11-libs/libXt"
44 -
45 -src_unpack() {
46 - mkdir -p "${S}"
47 - cd "${S}"
48 - unpack ${A}
49 -}
50 -
51 -src_prepare() {
52 - eautoreconf
53 -}
54 -
55 -src_configure() {
56 - econf $(use_enable readline)
57 -}
58 -
59 -src_install() {
60 - emake DESTDIR="${D}" install
61 - insinto /usr/share/"${PN}"/romdump
62 - doins -r romdump/{README,ROMDump*}
63 - dodoc AUTHORS README ChangeLog
64 -}
65 -
66 -pkg_postinst() {
67 - elog "The X48 emulator requires an HP48 ROM image to run."
68 - elog
69 - elog "If you own an HP-48 calculator, you can use the ROMDump utility"
70 - elog "included with this package to obtain it from your calculator."
71 - elog "The instructions of how to do this are included in the package."
72 - elog
73 - elog "Alternatively, HP has provided the ROM images for non-commercial"
74 - elog "use only."
75 - elog
76 - elog "Due to confusion over the legal status of these ROMs you must"
77 - elog "manually download one from http://www.hpcalc.org/hp48/pc/emulators/"
78 - elog
79 - elog "If you do not know which one to use, try 'HP 48GX Revision R ROM.'"
80 - elog
81 - elog "Once you have a ROM, you will need to install it by running:"
82 - elog
83 - elog "x48 -rom gxrom-r"
84 - elog
85 - elog "You will only have to do this the first time you run X48. The"
86 - elog "ROM will be stored in ~/.hp48/rom for future runs."
87 -}