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 C636E13877A for ; Sun, 17 Aug 2014 22:34:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 84046E090B; Sun, 17 Aug 2014 22:34:43 +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 E9821E090B for ; Sun, 17 Aug 2014 22:34:42 +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 195023401A3 for ; Sun, 17 Aug 2014 22:34:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 243CC1881B for ; Sun, 17 Aug 2014 22:34:40 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1408314384.873ca8f1e7585b5ef38d4d6c63c8c4c09b727cb8.sping@gentoo> Subject: [gentoo-commits] proj/betagarden:master commit in: app-emulation/wineloc/ X-VCS-Repository: proj/betagarden X-VCS-Files: app-emulation/wineloc/wineloc-0.41.ebuild X-VCS-Directories: app-emulation/wineloc/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 873ca8f1e7585b5ef38d4d6c63c8c4c09b727cb8 X-VCS-Branch: master Date: Sun, 17 Aug 2014 22:34:40 +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: 8b9e48b6-6d23-42cc-8e9a-967402d998ef X-Archives-Hash: 66395ee4f6276dcdd8df377fa1645451 Message-ID: <20140817223440.He8Ig1NzxukQK8BjKWJ4Dr2GGaYi1nvn65H5x7n_lmA@z> commit: 873ca8f1e7585b5ef38d4d6c63c8c4c09b727cb8 Author: Sebastian Pipping pipping org> AuthorDate: Sun Aug 17 21:13:58 2014 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Sun Aug 17 22:26:24 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=873ca8f1 app-emulation/wineloc: 0.41 --- app-emulation/wineloc/wineloc-0.41.ebuild | 42 +++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/app-emulation/wineloc/wineloc-0.41.ebuild b/app-emulation/wineloc/wineloc-0.41.ebuild new file mode 100644 index 0000000..713801a --- /dev/null +++ b/app-emulation/wineloc/wineloc-0.41.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="5" + +DESCRIPTION="CJK Launcher for Wine (cli)" +HOMEPAGE="https://bitbucket.org/dsobodash/winelocale" +SRC_URI="http://files.sobodash.com/software/winelocale/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="app-emulation/wine + media-fonts/VeraSansYuanTi" + +src_prepare() { + sed -i 's|WLOCSHARE=/usr/local/share/wineloc|WLOCSHARE=/usr/share/wineloc|' \ + share/wineloc || die +} + +src_install() { + insinto /usr/share/${PN} + doins -r share/patches || die + + dodoc CHANGELOG INSTALL || die + + dobin share/wineloc || die + + ewarn 'For Chinese, be sure to enable these locales in /etc/locale.gen:' + ewarn ' zh_CN.UTF-8 UTF-8' + ewarn ' zh_TW.UTF-8 UTF-8' + ewarn ' zh_CN GB2312' + ewarn ' zh_CN.GBK GBK' + ewarn ' zh_CN.GB18030 GB18030' + ewarn ' zh_TW BIG5' + ewarn '' + ewarn 'Do not forget to run "sudo locale-gen" to propagate changes.' +}