From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RBBvP-00064w-ON for garchives@archives.gentoo.org; Tue, 04 Oct 2011 20:49:16 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9FBFE21C064; Tue, 4 Oct 2011 20:49:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 7425821C064 for ; Tue, 4 Oct 2011 20:49:07 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A12F41B4027 for ; Tue, 4 Oct 2011 20:49:06 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id AB64180042 for ; Tue, 4 Oct 2011 20:49:05 +0000 (UTC) From: "Azamat H. Hackimov" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Azamat H. Hackimov" Message-ID: <6f2e1fd8ba3d61eda714c2a6cd289b795f4bb90a.winterheart@gentoo> Subject: [gentoo-commits] proj/gamerlay:master commit in: games-engines/residual/ X-VCS-Repository: proj/gamerlay X-VCS-Files: games-engines/residual/metadata.xml games-engines/residual/residual-9999.ebuild X-VCS-Directories: games-engines/residual/ X-VCS-Committer: winterheart X-VCS-Committer-Name: Azamat H. Hackimov X-VCS-Revision: 6f2e1fd8ba3d61eda714c2a6cd289b795f4bb90a Date: Tue, 4 Oct 2011 20:49:05 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 49a79036ec842fc1abc71271c4a46f59 commit: 6f2e1fd8ba3d61eda714c2a6cd289b795f4bb90a Author: Azamat H. Hackimov gmail com> AuthorDate: Tue Oct 4 20:48:55 2011 +0000 Commit: Azamat H. Hackimov gentoo ru> CommitDate: Tue Oct 4 20:48:55 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gamerlay.git;= a=3Dcommit;h=3D6f2e1fd8 [games-engines/residual] Refreshing Residual (yay, it's now playable!!) (Portage version: 2.1.10.11/git/Linux x86_64, RepoMan options: --force, u= nsigned Manifest commit) --- games-engines/residual/metadata.xml | 3 +++ games-engines/residual/residual-9999.ebuild | 12 ++++++++---- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/games-engines/residual/metadata.xml b/games-engines/residual= /metadata.xml index 58ad5c4..7c8fa2f 100644 --- a/games-engines/residual/metadata.xml +++ b/games-engines/residual/metadata.xml @@ -9,5 +9,8 @@ A cross-platform 3D game interpreter for play LucasArts' LUA-based 3D ad= ventures + + Enable mpeg2 codec for cutscenes + =20 diff --git a/games-engines/residual/residual-9999.ebuild b/games-engines/= residual/residual-9999.ebuild index eb6a6fa..76545d6 100644 --- a/games-engines/residual/residual-9999.ebuild +++ b/games-engines/residual/residual-9999.ebuild @@ -4,20 +4,21 @@ =20 EAPI=3D3 =20 -inherit games subversion +inherit games git-2 =20 DESCRIPTION=3D"A cross-platform 3D game interpreter for play LucasArts' = LUA-based 3D adventures" HOMEPAGE=3D"http://residual.sourceforge.net/" #SRC_URI=3D"" -ESVN_REPO_URI=3D"http://residual.svn.sourceforge.net/svnroot/residual/re= sidual/trunk/" +EGIT_REPO_URI=3D"https://github.com/residual/residual.git" =20 LICENSE=3D"GPL-2 LGPL-2.1" SLOT=3D"0" KEYWORDS=3D"" -IUSE=3D"flac mad vorbis" +IUSE=3D"flac mad mpeg2 vorbis" =20 DEPEND=3D"flac? ( media-libs/flac ) mad? ( media-libs/libmad ) + mpeg2? ( media-libs/libmpeg2 ) vorbis? ( media-libs/libvorbis ) media-libs/libsdl sys-libs/zlib @@ -26,11 +27,14 @@ RDEPEND=3D"${DEPEND}" =20 src_configure() { # econf can't work here, configure script not have some options - ./configure --backend=3Dsdl --enable-release --disable-tremor --disable= -fluidsynth \ + ./configure \ + --backend=3Dsdl --enable-release --disable-tremor --disable-fluidsynth= \ + --disable-libunity \ --prefix=3D"${GAMES_PREFIX}" \ --datadir=3D"${GAMES_DATADIR}" \ $(use_enable flac) \ $(use_enable mad) \ + $(use_enable mpeg2) \ $(use_enable vorbis) \ || die "configure failed" }