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 ECC8F1393EA for ; Mon, 4 Aug 2014 22:54:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 44458E094C; Mon, 4 Aug 2014 22:54:25 +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 88192E094B for ; Mon, 4 Aug 2014 22:54:24 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B7686340163 for ; Mon, 4 Aug 2014 22:54:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 6DDE81881E for ; Mon, 4 Aug 2014 22:54:21 +0000 (UTC) From: "Pavlos Ratis" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pavlos Ratis" Message-ID: <1205441652.0b089c22561e9c1496adc03507ad8668b98ed902.dastergon@gentoo> Subject: [gentoo-commits] proj/games:master commit in: eclass/ X-VCS-Repository: proj/games X-VCS-Files: eclass/games.eclass X-VCS-Directories: eclass/ X-VCS-Committer: dastergon X-VCS-Committer-Name: Pavlos Ratis X-VCS-Revision: 0b089c22561e9c1496adc03507ad8668b98ed902 X-VCS-Branch: master Date: Mon, 4 Aug 2014 22:54:21 +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: 9ad17b44-50d7-4c86-afa5-82f4f50da03a X-Archives-Hash: 428c426dc25cc549b985c32882705470 commit: 0b089c22561e9c1496adc03507ad8668b98ed902 Author: Chris Gianelloni gentoo org> AuthorDate: Thu Mar 13 20:54:12 2008 +0000 Commit: Pavlos Ratis gentoo org> CommitDate: Thu Mar 13 20:54:12 2008 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/games.git;a=commit;h=0b089c22 Change around the scores code a bit more. svn path=/; revision=6 --- eclass/games.eclass | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/eclass/games.eclass b/eclass/games.eclass index bb1c8ba..3d5b1ff 100644 --- a/eclass/games.eclass +++ b/eclass/games.eclass @@ -106,10 +106,12 @@ prepgamesdirs() { if [[ -n ${GAMES_SCORES_FILES} ]] then perms=4750 - for dir in "${GAMES_STATEDIR}" "${GAMES_BINDIR}" + for f in ${GAMES_SCORES_FILES} do - GAMES_GROUP=${GAMES_SCORES_GROUP} gamesowners -R "${D}/${dir}" + GAMES_GROUP=${GAMES_SCORES_GROUP} gamesowners "${D}/${f}" done + GAMES_GROUP=${GAMES_SCORES_GROUP} gamesowners -R \ + "${D}/${GAMES_BINDIR}"i/* fi find "${D}/${GAMES_BINDIR}" -maxdepth 1 -type f -exec chmod ${perms} '{}' \; }