From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4AAD0138334 for ; Sat, 13 Oct 2018 10:53:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 26F28E08AD; Sat, 13 Oct 2018 10:53:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EF77AE08AD for ; Sat, 13 Oct 2018 10:53:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7D992335C63 for ; Sat, 13 Oct 2018 10:53:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B18823FB for ; Sat, 13 Oct 2018 10:53:09 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1539427984.d5f0d7527c3f7c3ca651148fb7e2885cd3228ad7.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/x48/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/x48/x48-0.6.4.ebuild X-VCS-Directories: app-emulation/x48/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: d5f0d7527c3f7c3ca651148fb7e2885cd3228ad7 X-VCS-Branch: master Date: Sat, 13 Oct 2018 10:53:09 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 4009b251-7ca2-49ba-9140-dd3c6ff34edd X-Archives-Hash: ceb460b3cd727a7e03ebf3824e4e7017 commit: d5f0d7527c3f7c3ca651148fb7e2885cd3228ad7 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Oct 13 10:52:46 2018 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Sat Oct 13 10:53:04 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5f0d752 app-emulation/x48: Drop old Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.49, Repoman-2.3.11 app-emulation/x48/x48-0.6.4.ebuild | 66 -------------------------------------- 1 file changed, 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 cc84f6518da..00000000000 --- 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." -}