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 5B760139087 for ; Thu, 5 Jan 2017 13:30:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 082322241A3; Thu, 5 Jan 2017 13:30:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C1F072241A0 for ; Thu, 5 Jan 2017 13:30:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0C496341375 for ; Thu, 5 Jan 2017 13:30:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C21EF261C for ; Thu, 5 Jan 2017 13:30:25 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1483623006.982741c1a313feab0d5d03b46fb84467c089afdc.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/nestopia/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-emulation/nestopia/nestopia-9999.ebuild X-VCS-Directories: games-emulation/nestopia/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 982741c1a313feab0d5d03b46fb84467c089afdc X-VCS-Branch: master Date: Thu, 5 Jan 2017 13:30:25 +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: 27bbfb6a-25f3-4670-9ad4-7d47b6476141 X-Archives-Hash: d1cf1d4da3bf7201742e311fd3296671 commit: 982741c1a313feab0d5d03b46fb84467c089afdc Author: David Seifert gentoo org> AuthorDate: Thu Jan 5 13:21:13 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Thu Jan 5 13:30:06 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=982741c1 games-emulation/nestopia: Add live ebuild Package-Manager: Portage-2.3.3, Repoman-2.3.1 games-emulation/nestopia/nestopia-9999.ebuild | 54 +++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/games-emulation/nestopia/nestopia-9999.ebuild b/games-emulation/nestopia/nestopia-9999.ebuild new file mode 100644 index 00000000..9e91e2b --- /dev/null +++ b/games-emulation/nestopia/nestopia-9999.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 +}