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 588D359CA3 for ; Tue, 15 Mar 2016 17:46:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DC0A7E0825; Tue, 15 Mar 2016 17:46:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6D9D5E0848 for ; Tue, 15 Mar 2016 17:46:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4808D340D1F for ; Tue, 15 Mar 2016 17:46:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 20AC6854 for ; Tue, 15 Mar 2016 17:46:51 +0000 (UTC) From: "Denis Dupeyron" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Denis Dupeyron" Message-ID: <1458064002.8368a04dfc52a70f5ff924c6d389d4437f6b10fc.calchan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/tagainijisho/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/tagainijisho/tagainijisho-1.0.2.ebuild X-VCS-Directories: app-i18n/tagainijisho/ X-VCS-Committer: calchan X-VCS-Committer-Name: Denis Dupeyron X-VCS-Revision: 8368a04dfc52a70f5ff924c6d389d4437f6b10fc X-VCS-Branch: master Date: Tue, 15 Mar 2016 17:46:51 +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: 13ff63ca-b922-4673-bb71-02d9573e6f75 X-Archives-Hash: 7178b9b6f57a7bf9d0ec073fa6718700 commit: 8368a04dfc52a70f5ff924c6d389d4437f6b10fc Author: Denis Dupeyron gentoo org> AuthorDate: Tue Mar 15 17:24:44 2016 +0000 Commit: Denis Dupeyron gentoo org> CommitDate: Tue Mar 15 17:46:42 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8368a04d app-i18n/tagainijisho: remove 1.0.2 app-i18n/tagainijisho/tagainijisho-1.0.2.ebuild | 59 ------------------------- 1 file changed, 59 deletions(-) diff --git a/app-i18n/tagainijisho/tagainijisho-1.0.2.ebuild b/app-i18n/tagainijisho/tagainijisho-1.0.2.ebuild deleted file mode 100644 index a9684f7..0000000 --- a/app-i18n/tagainijisho/tagainijisho-1.0.2.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit cmake-utils gnome2-utils - -DESCRIPTION="Open-source Japanese dictionary and kanji lookup tool" -HOMEPAGE="http://www.tagaini.net/" -SRC_URI="https://github.com/Gnurou/tagainijisho/releases/download/${PV}/${P}.tar.gz" -LICENSE="GPL-3+ public-domain" - -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" -DEPEND="dev-qt/qtcore:4 - dev-qt/qtgui:4 - dev-db/sqlite:3" -RDEPEND="${DEPEND}" - -pkg_linguas=( ar cs de es fi_FI fr it nb nl pt ru sv th tr vi ) -IUSE+=" ${pkg_linguas[@]/#/linguas_}" - -src_configure() { - # GUI linguas - # en is not optional, and build fails if none other then en is set, so adding ja as non-optional too - # linguas undeclared in IUSE will trigger an error, which is a handy check - for lingua in $(ls -1 i18n/*.ts | sed -e 's/.*tagainijisho_\(.*\)\.ts/\1/' | grep -v en | grep -v ja); do - if ! use linguas_${lingua}; then - rm i18n/tagainijisho_${lingua}.ts || die - fi - done - - # Dictionary linguas - # en is not optional here either, but nothing special needs to be done - # here too, linguas undeclared in IUSE will trigger an error - local cmake_linguas - for lingua in $(sed -e 's/;/ /g' -ne '/set(DICT_LANG ".*")/s/.*"\(.*\)".*/\1/p' CMakeLists.txt); do - if use linguas_${lingua}; then - cmake_linguas+=";${lingua}" - fi - done - mycmakeargs=( -DDICT_LANG="${cmake_linguas};" ) - - cmake-utils_src_configure -} - -pkg_preinst() { - gnome2_icon_savelist -} - -pkg_postinst() { - gnome2_icon_cache_update -} - -pkg_postrm() { - gnome2_icon_cache_update -}