Gentoo Archives: gentoo-commits

From: "JosA MarAa Alonso (nimiux)" <nimiux@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/free42: free42-1.5.5.ebuild ChangeLog
Date: Thu, 27 Nov 2014 10:13:51
Message-Id: 20141127101348.9910CB033@oystercatcher.gentoo.org
1 nimiux 14/11/27 10:13:48
2
3 Modified: ChangeLog
4 Added: free42-1.5.5.ebuild
5 Log:
6 Version Bump
7
8 (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key F253DB15)
9
10 Revision Changes Path
11 1.27 app-emulation/free42/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/free42/ChangeLog?rev=1.27&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/free42/ChangeLog?rev=1.27&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/free42/ChangeLog?r1=1.26&r2=1.27
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-emulation/free42/ChangeLog,v
20 retrieving revision 1.26
21 retrieving revision 1.27
22 diff -u -r1.26 -r1.27
23 --- ChangeLog 30 Oct 2014 09:57:57 -0000 1.26
24 +++ ChangeLog 27 Nov 2014 10:13:48 -0000 1.27
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-emulation/free42
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/free42/ChangeLog,v 1.26 2014/10/30 09:57:57 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/free42/ChangeLog,v 1.27 2014/11/27 10:13:48 nimiux Exp $
30 +
31 +*free42-1.5.5 (27 Nov 2014)
32 +
33 + 27 Nov 2014; Chema Alonso <nimiux@g.o> +free42-1.5.5.ebuild,
34 + +files/free42-1.5.5-fix-makefile.patch:
35 + Version Bump
36
37 30 Oct 2014; Agostino Sarubbo <ago@g.o> free42-1.5.4.ebuild:
38 Stable for x86, wrt bug #526764
39
40
41
42 1.1 app-emulation/free42/free42-1.5.5.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/free42/free42-1.5.5.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/free42/free42-1.5.5.ebuild?rev=1.1&content-type=text/plain
46
47 Index: free42-1.5.5.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-emulation/free42/free42-1.5.5.ebuild,v 1.1 2014/11/27 10:13:48 nimiux Exp $
52
53 EAPI=5
54
55 inherit eutils toolchain-funcs
56
57 DESCRIPTION="An HP-42S Calculator Simulator"
58 HOMEPAGE="http://thomasokken.com/free42/"
59 SRC_URI="mirror://gentoo/${P}.tgz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="alsa"
65
66 DEPEND="dev-libs/atk
67 x11-libs/cairo
68 x11-libs/gdk-pixbuf
69 x11-libs/gtk+:2
70 x11-libs/pango
71 alsa? ( media-libs/alsa-lib )"
72
73 RDEPEND="${DEPEND}
74 x11-libs/libX11
75 x11-libs/libXmu"
76
77 S="${WORKDIR}/${PN}-nologo-${PV}"
78
79 src_prepare() {
80 sed -i -e 's/print_gif_name\[FILENAMELEN\]/print_gif_name\[1000\]/' \
81 "${S}/gtk/shell_main.cc" || die
82 epatch "${FILESDIR}"/${P}-fix-makefile.patch
83 }
84
85 src_compile() {
86 local myconf
87 use alsa && myconf="AUDIO_ALSA=yes"
88 emake CXX="$(tc-getCXX)" BCD_MATH=1 ${myconf} -C "${S}/gtk"
89 }
90
91 src_install() {
92 dodoc CREDITS HISTORY README TODO
93 dobin gtk/free42dec
94 }