Gentoo Archives: gentoo-commits

From: "José María Alonso" <nimiux@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/free42/
Date: Thu, 10 May 2018 21:02:50
Message-Id: 1525986150.22d6146a378b5fc8d0a30dcee81762f8011653ac.nimiux@gentoo
1 commit: 22d6146a378b5fc8d0a30dcee81762f8011653ac
2 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 10 21:02:30 2018 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Thu May 10 21:02:30 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22d6146a
7
8 app-emulation/free42: Drop old version 2.0.10
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 app-emulation/free42/Manifest | 1 -
13 app-emulation/free42/free42-2.0.10.ebuild | 49 -------------------------------
14 2 files changed, 50 deletions(-)
15
16 diff --git a/app-emulation/free42/Manifest b/app-emulation/free42/Manifest
17 index e71f35a310a..1be841a3283 100644
18 --- a/app-emulation/free42/Manifest
19 +++ b/app-emulation/free42/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST free42-nologo-2.0.10.tgz 7389429 BLAKE2B a633a78ed5974e327aafa9d783c04bdcaa895940580c595c9c67ab0181ec7000efaa92021a485199268341f15f4c4bafe3964d4118c068e8abbfa2f358045b5a SHA512 4f03b9b206ef17e71295f0baac96ca26f34a00844cee6cad254f8ab798d3d0c724788200f3f207a3301f62eb0960707a23e6bcbb2ac924a78b0f0e1c78e70e6d
22 DIST free42-nologo-2.0.17.tgz 7389996 BLAKE2B cc7c7bbe43eafc190fe0ce8921e032c2042290fe54a3153ba7568dae315de1356a9ee7f8ded4528788c677537138a5bd5556ad79dbd67ab8e41dd881a258312e SHA512 f73bfb2984fa4301c04d905fde6723583a57a1f663e012f965037067a7259961c0134fecb456118ec4b45956f7c8ccc16f0ec1db62e4cc705dc74ea563225872
23 DIST free42-nologo-2.0.20.tgz 7390214 BLAKE2B 306f3378bcbb44fa7982c5d9c29bfbea62e915ca50ca5e5216f46fbf483f110a1288d4800991a74622a042517496ff8dd94c3fa3249e8bb4181957e6b23d5ea3 SHA512 9b540fbc50df2f94b135b5e778354f330df77a54ef2ad99b257b5b91d1e3e8d1241e8a834522fc46fe33571ea2695ad8889b427dbcf653870672e89cd56d60f5
24
25 diff --git a/app-emulation/free42/free42-2.0.10.ebuild b/app-emulation/free42/free42-2.0.10.ebuild
26 deleted file mode 100644
27 index 5d440a08b23..00000000000
28 --- a/app-emulation/free42/free42-2.0.10.ebuild
29 +++ /dev/null
30 @@ -1,49 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit eutils toolchain-funcs
37 -
38 -MY_PV="${PN}-nologo-${PV}"
39 -
40 -DESCRIPTION="An HP-42S Calculator Simulator"
41 -HOMEPAGE="http://thomasokken.com/free42/"
42 -SRC_URI="http://thomasokken.com/free42/upstream/${MY_PV}.tgz"
43 -
44 -LICENSE="GPL-2"
45 -SLOT="0"
46 -KEYWORDS="amd64 x86"
47 -IUSE="alsa"
48 -
49 -DEPEND="dev-libs/atk
50 - x11-libs/cairo
51 - x11-libs/gdk-pixbuf
52 - x11-libs/gtk+:2
53 - x11-libs/pango
54 - alsa? ( media-libs/alsa-lib )"
55 -
56 -RDEPEND="${DEPEND}
57 - x11-libs/libX11
58 - x11-libs/libXmu"
59 -
60 -S="${WORKDIR}/${MY_PV}"
61 -
62 -src_prepare() {
63 - sed -i -e 's/print_gif_name\[FILENAMELEN\]/print_gif_name\[1000\]/' \
64 - "${S}/gtk/shell_main.cc" || die
65 - epatch "${FILESDIR}/${PN}-2.0.10-fix-makefile.patch"
66 - epatch "${FILESDIR}/${PN}-2.0.10-fix-build-intel-lib.patch"
67 - eapply_user
68 -}
69 -
70 -src_compile() {
71 - local myconf
72 - use alsa && myconf="AUDIO_ALSA=yes"
73 - emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" BCD_MATH=1 ${myconf} -C "${S}/gtk"
74 -}
75 -
76 -src_install() {
77 - dodoc CREDITS HISTORY README
78 - dobin gtk/free42dec
79 -}