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 29A2413933E for ; Mon, 12 Jul 2021 20:47:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BDCB6E0DBD; Mon, 12 Jul 2021 20:47:16 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 A6B6AE0DBD for ; Mon, 12 Jul 2021 20:47:16 +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 84ACB342CC1 for ; Mon, 12 Jul 2021 20:47:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1651C7D9 for ; Mon, 12 Jul 2021 20:47:13 +0000 (UTC) From: "Azamat H. Hackimov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Azamat H. Hackimov" Message-ID: <1626122759.56caa2e6839ea65d7ccb01c3caf7590a8a4da3fb.winterheart@gentoo> Subject: [gentoo-commits] proj/gamerlay:master commit in: games-engines/ags/ X-VCS-Repository: proj/gamerlay X-VCS-Files: games-engines/ags/ags-3.3.5.7.ebuild X-VCS-Directories: games-engines/ags/ X-VCS-Committer: winterheart X-VCS-Committer-Name: Azamat H. Hackimov X-VCS-Revision: 56caa2e6839ea65d7ccb01c3caf7590a8a4da3fb X-VCS-Branch: master Date: Mon, 12 Jul 2021 20:47:13 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c593f1d3-a983-4a3e-a1ad-dbe5cf3bedfa X-Archives-Hash: 5b027c47e5414c3f78eb5d95ef1353e2 commit: 56caa2e6839ea65d7ccb01c3caf7590a8a4da3fb Author: Azamat H. Hackimov gmail com> AuthorDate: Mon Jul 12 18:42:52 2021 +0000 Commit: Azamat H. Hackimov gentoo ru> CommitDate: Mon Jul 12 20:45:59 2021 +0000 URL: https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=56caa2e6 games-engines/ags: remove old Package-Manager: Portage-3.0.20, Repoman-3.0.2 Signed-off-by: Azamat H. Hackimov gmail.com> games-engines/ags/ags-3.3.5.7.ebuild | 44 ------------------------------------ 1 file changed, 44 deletions(-) diff --git a/games-engines/ags/ags-3.3.5.7.ebuild b/games-engines/ags/ags-3.3.5.7.ebuild deleted file mode 100644 index 256a765..0000000 --- a/games-engines/ags/ags-3.3.5.7.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="A game/runtime interpreter for the Adventure Game Studio engine" -HOMEPAGE="http://www.adventuregamestudio.co.uk/" -SRC_URI="https://github.com/adventuregamestudio/ags/releases/download/v.${PV}/${PN}_linux_v.${PV}.tar.xz" - -LICENSE="Artistic-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -DEPEND=" - media-libs/dumb[allegro] - media-libs/freetype:2 - media-libs/libogg - media-libs/libtheora - media-libs/libvorbis" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${PN}_linux_v.${PV}" - -src_prepare() { - eapply_user - sed -i -e "s:-O2 -g -fsigned-char::" Engine/Makefile-defs.linux \ - || die -} - -src_compile() { - emake --directory=Engine -} - -src_install() { - dobin Engine/ags - dodoc README.md -} - -pkg_postinst() { - ewarn "In order to play AGS games run command:" - ewarn " ${PN} /path/to/gamedir" - ewarn "or" - ewarn " ${PN} /path/to/game.exe" -}