public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "David Seifert" <soap@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/nestopia/
Date: Thu,  5 Jan 2017 13:30:25 +0000 (UTC)	[thread overview]
Message-ID: <1483623003.7ef4424f16e54d7c4b72d88b8c7bbc27d1394005.soap@gentoo> (raw)

commit:     7ef4424f16e54d7c4b72d88b8c7bbc27d1394005
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Thu Jan  5 13:09:45 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Jan  5 13:30:03 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ef4424f

games-emulation/nestopia: Add new snapshot

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 games-emulation/nestopia/Manifest                  |  1 +
 games-emulation/nestopia/metadata.xml              |  5 +-
 .../nestopia/nestopia-1.47_p20170105.ebuild        | 54 ++++++++++++++++++++++
 3 files changed, 59 insertions(+), 1 deletion(-)

diff --git a/games-emulation/nestopia/Manifest b/games-emulation/nestopia/Manifest
index a13c7e2..bd71c59 100644
--- a/games-emulation/nestopia/Manifest
+++ b/games-emulation/nestopia/Manifest
@@ -1,2 +1,3 @@
 DIST nestopia-1.46.2.tgz 1223407 SHA256 4a5065726ad9e7a120a2c6aa39b9c0904090119998a4d690d4deb5e374118fc0 SHA512 3aa87e98aa24b71e5feac5ffe8229e97d407fc0b14567b0ddbe7cc1eaca08a08f435a6fe294fbbd7066054befdfd27602db7c3c0577246b0e8addfe296404a23 WHIRLPOOL 25c43194797e5edca3abc5cb75dba126d9d246e9ab12270521e7fe6c13427b371ba9f92a71ed557271f159711411286b5ac5ab3fe06144760320531c33bf0c02
 DIST nestopia-1.47.tgz 1306183 SHA256 84624d30ab05d609db2734db0065616b268f79d4aa35f1cd90cb35ee8d96be0c SHA512 27155a82ca9631623c4800110371ec374de2c3d649d3274c9495b58ddede36bfb4a6f52e39552d55e0e90795cd779c3331c488c557aba6b738998e19f1d3bf72 WHIRLPOOL 4f30b66e1eb229419fa4862db2b3828cb983dcba9f0cac531f84e45a885db2bfdbb24cc33a87729f524922c42aa761d0294e53c5ffa00540dd20765a79e08c41
+DIST nestopia-1.47_p20170105.tar.gz 1283456 SHA256 621b5f686d98b81ce9a720be40083b80a76d2ebae0089556cf5dc7df2b26d4f4 SHA512 58d1a932a6b90589c66503b2013b1a8162072e77e0416851a1430fa146e7fd85ff7363b70292c69d4c4513e3750aa53436a312c0240a843e42fbb89b554e7a70 WHIRLPOOL 14b3bc921f0f57a8049a02b863d3a25f017f31668875f02ec4472f877d248fdfd9c1325930b5138e17bf24adc92c76fdf399abcb9deab4d1155572c5f774e942

diff --git a/games-emulation/nestopia/metadata.xml b/games-emulation/nestopia/metadata.xml
index d64dbba..6c6cefd 100644
--- a/games-emulation/nestopia/metadata.xml
+++ b/games-emulation/nestopia/metadata.xml
@@ -6,6 +6,9 @@
 		<name>Gentoo Games Project</name>
 	</maintainer>
 	<upstream>
-		<remote-id type="sourceforge">nestopiaue</remote-id>
+		<remote-id type="github">rdanbrook/nestopia</remote-id>
 	</upstream>
+	<use>
+		<flag name="gui">Enable GUI</flag>
+	</use>
 </pkgmetadata>

diff --git a/games-emulation/nestopia/nestopia-1.47_p20170105.ebuild b/games-emulation/nestopia/nestopia-1.47_p20170105.ebuild
new file mode 100644
index 00000000..9e91e2b
--- /dev/null
+++ b/games-emulation/nestopia/nestopia-1.47_p20170105.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit cmake-utils gnome2-utils
+
+DESCRIPTION="A portable Nintendo Entertainment System emulator written in C++"
+HOMEPAGE="http://0ldsk00l.ca/nestopia/"
+
+if [[ ${PV} == *9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/rdanbrook/nestopia.git"
+else
+	inherit vcs-snapshot
+	SRC_URI="https://github.com/rdanbrook/${PN}/archive/d7fae2aff1a93eac997d2b480652a1d068a2b6cf.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-2+"
+SLOT="0"
+IUSE="doc gui"
+
+RDEPEND="
+	app-arch/libarchive:=
+	media-libs/libao
+	media-libs/libepoxy
+	media-libs/libsdl2[sound,joystick,video]
+	sys-libs/zlib
+	gui? ( x11-libs/gtk+:3 )"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig"
+
+src_configure() {
+	local mycmakeargs=(
+		-DENABLE_GTK=$(usex gui)
+		-DENABLE_DOC=$(usex doc)
+		-DCMAKE_INSTALL_DOCDIR=share/doc/${PF}
+	)
+	cmake-utils_src_configure
+}
+
+pkg_preinst() {
+	gnome2_icon_savelist
+}
+
+pkg_postinst() {
+	gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+	gnome2_icon_cache_update
+}


             reply	other threads:[~2017-01-05 13:30 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-01-05 13:30 David Seifert [this message]
  -- strict thread matches above, loose matches on Subject: below --
2017-01-05 13:30 [gentoo-commits] repo/gentoo:master commit in: games-emulation/nestopia/ David Seifert
2017-10-05 12:23 Michael Palimaka
2017-10-05 12:23 Michael Palimaka
2020-01-12 11:14 David Seifert
2021-02-20 22:30 David Seifert
2021-02-20 22:30 David Seifert
2021-02-20 22:30 David Seifert
2022-02-09 18:54 Ionen Wolkens
2022-02-09 18:54 Ionen Wolkens
2022-02-09 18:54 Ionen Wolkens
2022-02-09 19:16 David Seifert
2022-02-16  6:58 Ionen Wolkens
2023-01-11 11:26 Ionen Wolkens
2023-01-11 11:26 Ionen Wolkens
2023-01-20 22:48 Ionen Wolkens
2023-01-20 22:48 Ionen Wolkens
2023-01-20 22:48 Ionen Wolkens
2024-05-05 23:44 Ionen Wolkens
2024-05-12 20:25 Ionen Wolkens
2024-12-24  7:48 Ionen Wolkens

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1483623003.7ef4424f16e54d7c4b72d88b8c7bbc27d1394005.soap@gentoo \
    --to=soap@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox