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 785401382C5 for ; Sun, 29 Apr 2018 13:07:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A11FCE0A59; Sun, 29 Apr 2018 13:07:03 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7F98BE0A52 for ; Sun, 29 Apr 2018 13:07:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8740A335CA0 for ; Sun, 29 Apr 2018 13:07:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C7A4D2AE for ; Sun, 29 Apr 2018 13:06:58 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1525007206.8418e3df8b0da21104cd3167535d92acb7dcb0ef.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-engines/qtads/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-engines/qtads/qtads-2.1.7-r1.ebuild X-VCS-Directories: games-engines/qtads/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 8418e3df8b0da21104cd3167535d92acb7dcb0ef X-VCS-Branch: master Date: Sun, 29 Apr 2018 13:06:58 +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: 6bcb699f-ecf8-4d0e-afb8-4ee5e4b19147 X-Archives-Hash: 324b7a5b3852418910a11ed961bf493c commit: 8418e3df8b0da21104cd3167535d92acb7dcb0ef Author: Pacho Ramos gentoo org> AuthorDate: Sun Apr 29 13:03:17 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Apr 29 13:06:46 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8418e3df games-engines/qtads: Stop using games.eclass Package-Manager: Portage-2.3.31, Repoman-2.3.9 games-engines/qtads/qtads-2.1.7-r1.ebuild | 47 +++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/games-engines/qtads/qtads-2.1.7-r1.ebuild b/games-engines/qtads/qtads-2.1.7-r1.ebuild new file mode 100644 index 00000000000..521b932662c --- /dev/null +++ b/games-engines/qtads/qtads-2.1.7-r1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit gnome2-utils qmake-utils xdg + +DESCRIPTION="Multimedia interpreter for TADS text adventures" +HOMEPAGE="http://qtads.sourceforge.net" +SRC_URI="mirror://sourceforge/qtads/${P}.tar.bz2" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="media-libs/libsdl[sound] + media-libs/sdl-mixer[midi,vorbis] + media-libs/sdl-sound[mp3] + dev-qt/qtcore:5 + dev-qt/qtgui:5" +RDEPEND="${DEPEND}" + +src_configure() { + eqmake5 qtads.pro -after CONFIG-=silent +} + +src_install() { + dobin qtads + dodoc AUTHORS HTML_TADS_LICENSE NEWS README + insinto /usr + doins -r share +} + +pkg_preinst() { + gnome2_icon_savelist + xdg_pkg_preinst +} + +pkg_postinst() { + gnome2_icon_cache_update + xdg_pkg_postinst +} + +pkg_postrm() { + gnome2_icon_cache_update + xdg_pkg_postrm +}