Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/xcpc/
Date: Sun, 25 Apr 2021 13:21:07
Message-Id: 1619356850.4bbae9322ea97f3db31b511accfc8ea243f2cbc2.soap@gentoo
1 commit: 4bbae9322ea97f3db31b511accfc8ea243f2cbc2
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 25 13:20:50 2021 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 25 13:20:50 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bbae932
7
8 app-emulation/xcpc: Bump to 0.36.0
9
10 * Now with GTK 3 support
11
12 Package-Manager: Portage-3.0.18, Repoman-3.0.3
13 Signed-off-by: David Seifert <soap <AT> gentoo.org>
14
15 app-emulation/xcpc/Manifest | 1 +
16 app-emulation/xcpc/xcpc-0.36.0.ebuild | 29 +++++++++++++++++++++++++++++
17 2 files changed, 30 insertions(+)
18
19 diff --git a/app-emulation/xcpc/Manifest b/app-emulation/xcpc/Manifest
20 index b4ebc547667..8a47bbf9ec4 100644
21 --- a/app-emulation/xcpc/Manifest
22 +++ b/app-emulation/xcpc/Manifest
23 @@ -1 +1,2 @@
24 DIST xcpc-0.35.0.tar.gz 1058202 BLAKE2B f5002fcc69a078cd05c05a981522edd15900295136419157f997effd81a89f7452cec335bbdba0be3b303bdc8f8537d4aac255ee7cf4e9ec53cc1143413ad1c1 SHA512 667db6db33f2cab85647960edb5b1c200037bfc464527a60eca85c31549360226893853a38d98e657bde111a28aca47d9741b16b13284759b66cb6213da27458
25 +DIST xcpc-0.36.0.tar.gz 1092363 BLAKE2B 4f799aefa417f6e2c04c0c3760c4d15b10b863f528e5051cfe90ea5a8ccb4c3f83fb592bbf510a351c02dc42a2a2a42f9fcb33b65a5e2dd997feeb5ea22f5342 SHA512 0cf6e718daf6b7db981aa607036e57eddb2ae18665393b0a691d8fd6978278ca077ae45a205eae93b6107b83d5d219702018f1afcda84ae7b83a7b6d68a68cba
26
27 diff --git a/app-emulation/xcpc/xcpc-0.36.0.ebuild b/app-emulation/xcpc/xcpc-0.36.0.ebuild
28 new file mode 100644
29 index 00000000000..add31369b9f
30 --- /dev/null
31 +++ b/app-emulation/xcpc/xcpc-0.36.0.ebuild
32 @@ -0,0 +1,29 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit xdg
39 +
40 +DESCRIPTION="XCPC is a portable Amstrad CPC 464/664/6128 emulator written in C."
41 +HOMEPAGE="http://www.xcpc-emulator.net/doku.php/index"
42 +SRC_URI="https://bitbucket.org/ponceto/xcpc/downloads/${P}.tar.gz"
43 +
44 +LICENSE="GPL-2"
45 +SLOT="0"
46 +KEYWORDS="~amd64"
47 +
48 +RDEPEND="
49 + app-arch/bzip2
50 + sys-libs/zlib
51 + x11-libs/gtk+:3
52 + x11-libs/libX11
53 + x11-libs/libXext"
54 +DEPEND="${RDEPEND}"
55 +
56 +src_configure() {
57 + econf \
58 + --disable-athena \
59 + --disable-motif2 \
60 + --with-x11-toolkit=gtk3
61 +}