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 312FF138336 for ; Thu, 11 Apr 2019 15:48:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1FD95E0857; Thu, 11 Apr 2019 15:48:40 +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 EAD2CE0855 for ; Thu, 11 Apr 2019 15:48:39 +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 F1ABD340D58 for ; Thu, 11 Apr 2019 15:48:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 180F25A5 for ; Thu, 11 Apr 2019 15:48:36 +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: <1554997701.437277baea869281de79cba4936a15ff0388bb86.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-board/grhino/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-board/grhino/grhino-0.16.1-r2.ebuild X-VCS-Directories: games-board/grhino/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 437277baea869281de79cba4936a15ff0388bb86 X-VCS-Branch: master Date: Thu, 11 Apr 2019 15:48:36 +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: eb2593c8-7390-45a0-aa7f-c1c90595f721 X-Archives-Hash: 7b7e7784e7dbfffe8e012979cee0e83b commit: 437277baea869281de79cba4936a15ff0388bb86 Author: Pacho Ramos gentoo org> AuthorDate: Thu Apr 11 15:46:32 2019 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Thu Apr 11 15:48:21 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=437277ba games-board/grhino: Disable optional libgnome2 support Closes: https://bugs.gentoo.org/608432 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Pacho Ramos gentoo.org> games-board/grhino/grhino-0.16.1-r2.ebuild | 36 ++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/games-board/grhino/grhino-0.16.1-r2.ebuild b/games-board/grhino/grhino-0.16.1-r2.ebuild new file mode 100644 index 00000000000..004aa040e4f --- /dev/null +++ b/games-board/grhino/grhino-0.16.1-r2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit eutils + +DESCRIPTION="Reversi game for GNOME, supporting the Go/Game Text Protocol" +HOMEPAGE="http://rhino.sourceforge.net/" +SRC_URI="mirror://sourceforge/rhino/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="nls" + +RDEPEND=" + nls? ( virtual/libintl ) +" +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext ) +" + +src_prepare() { + default + + sed -i '/^(\|locale\|help\|omf\|icon\|)/s:@datadir@:/usr/share:' \ + Makefile.in || die +} + +src_configure() { + econf \ + --localedir=/usr/share/locale \ + --enable-gtp \ + --disable-gnome \ + $(use_enable nls) +}