From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 40E5113888F for ; Wed, 7 Oct 2015 08:50:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AE892E07DB; Wed, 7 Oct 2015 08:50:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 43097E07DB for ; Wed, 7 Oct 2015 08:50:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0C1BF3406BF for ; Wed, 7 Oct 2015 08:50:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A10D0B22 for ; Wed, 7 Oct 2015 08:50:31 +0000 (UTC) From: "Vadim A. Misbakh-Soloviov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Vadim A. Misbakh-Soloviov" Message-ID: <1444207810.98ecbcedd896705d83c589e8615f8ed88804c83f.mva@gentoo> Subject: [gentoo-commits] proj/lua:master commit in: games-engines/love/ X-VCS-Repository: proj/lua X-VCS-Files: games-engines/love/love-0.9.2.ebuild games-engines/love/love-9999.ebuild X-VCS-Directories: games-engines/love/ X-VCS-Committer: mva X-VCS-Committer-Name: Vadim A. Misbakh-Soloviov X-VCS-Revision: 98ecbcedd896705d83c589e8615f8ed88804c83f X-VCS-Branch: master Date: Wed, 7 Oct 2015 08:50:31 +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: e1cea074-4e1b-42f7-b855-191456fa1a4a X-Archives-Hash: 7aba9545d2c51fc4d94240187b0d69b2 commit: 98ecbcedd896705d83c589e8615f8ed88804c83f Author: Vadim A. Misbakh-Soloviov mva name> AuthorDate: Wed Oct 7 08:50:10 2015 +0000 Commit: Vadim A. Misbakh-Soloviov mva name> CommitDate: Wed Oct 7 08:50:10 2015 +0000 URL: https://gitweb.gentoo.org/proj/lua.git/commit/?id=98ecbced love: minor fixes Signed-off-by: Vadim A. Misbakh-Soloviov mva.name> games-engines/love/love-0.9.2.ebuild | 8 +++----- games-engines/love/love-9999.ebuild | 7 +++---- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/games-engines/love/love-0.9.2.ebuild b/games-engines/love/love-0.9.2.ebuild index 2b5b855..0e52c6e 100644 --- a/games-engines/love/love-0.9.2.ebuild +++ b/games-engines/love/love-0.9.2.ebuild @@ -13,11 +13,11 @@ SRC_URI="http://bitbucket.org/rude/love/downloads/${P}-linux-src.tar.gz" LICENSE="ZLIB" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="luajit" +IUSE="" RDEPEND=" dev-games/physfs - virtual/lua[luajit=] + virtual/lua[luajit] media-libs/devil[mng,tiff] media-libs/freetype media-libs/libmodplug @@ -33,6 +33,4 @@ DEPEND=" media-libs/tiff " -S=${WORKDIR}/${PN}-HEAD - -DOCS=( "readme.txt" "changes.txt" ) +DOCS=( readme.md changes.txt ) diff --git a/games-engines/love/love-9999.ebuild b/games-engines/love/love-9999.ebuild index 5987b4d..d058cc6 100644 --- a/games-engines/love/love-9999.ebuild +++ b/games-engines/love/love-9999.ebuild @@ -20,7 +20,7 @@ inherit games eutils autotools ${SCM_ECLASS} LICENSE="ZLIB" SLOT="0" -IUSE="luajit" +IUSE="" RDEPEND=" dev-games/physfs @@ -31,7 +31,7 @@ RDEPEND=" media-libs/libvorbis media-libs/openal media-sound/mpg123 - virtual/lua[luajit=] + virtual/lua[luajit] virtual/opengl " DEPEND=" @@ -40,7 +40,7 @@ DEPEND=" media-libs/tiff " -DOCS=( "readme.md" "changes.txt" ) +DOCS=( readme.md changes.txt ) src_prepare() { sh platform/unix/automagic || die @@ -49,7 +49,6 @@ src_prepare() { src_configure() { OPTS=() - use luajit && OPTS+=" --with-luajit" OPTS+=" --disable-dependency-tracking --disable-option-checking" econf ${OPTS} }