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 47DE2138359 for ; Sun, 23 Aug 2020 13:37:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 420F1E07F2; Sun, 23 Aug 2020 13:37:04 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 2CB77E07F2 for ; Sun, 23 Aug 2020 13:37:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 2891A340B65 for ; Sun, 23 Aug 2020 13:37:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6CDEE31C for ; Sun, 23 Aug 2020 13:37:01 +0000 (UTC) From: "Akinori Hattori" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Akinori Hattori" Message-ID: <1598189808.d05f94ef97f0fcddfb81c041e993d52b37a05de7.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/canfep/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/canfep/canfep-1.0.ebuild X-VCS-Directories: app-i18n/canfep/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: d05f94ef97f0fcddfb81c041e993d52b37a05de7 X-VCS-Branch: master Date: Sun, 23 Aug 2020 13:37:01 +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: 0730373f-7fae-4053-9bb4-0d7be4d363e8 X-Archives-Hash: 17fd687b0b5b84983572e3efdb0202a4 commit: d05f94ef97f0fcddfb81c041e993d52b37a05de7 Author: Akinori Hattori gentoo org> AuthorDate: Sun Aug 23 13:36:48 2020 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Sun Aug 23 13:36:48 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d05f94ef app-i18n/canfep: drop old Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Akinori Hattori gentoo.org> app-i18n/canfep/canfep-1.0.ebuild | 41 --------------------------------------- 1 file changed, 41 deletions(-) diff --git a/app-i18n/canfep/canfep-1.0.ebuild b/app-i18n/canfep/canfep-1.0.ebuild deleted file mode 100644 index b2f558da064..00000000000 --- a/app-i18n/canfep/canfep-1.0.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -inherit toolchain-funcs - -DESCRIPTION="Canna Japanese kana-kanji frontend processor on console" -#HOMEPAGE="http://www.geocities.co.jp/SiliconValley-Bay/7584/canfep/" -HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" -SRC_URI="mirror://gentoo/${P}.tar.gz - unicode? ( http://hp.vector.co.jp/authors/VA020411/patches/${PN}_utf8.diff )" - -LICENSE="canfep" -SLOT="0" -KEYWORDS="-alpha ~amd64 ppc ~sparc x86" -IUSE="unicode" - -RDEPEND="app-i18n/canna - sys-libs/ncurses:=" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -src_prepare() { - use unicode && eapply "${DISTDIR}"/${PN}_utf8.diff - sed -i 's/$(CFLAGS)/$(CFLAGS) $(LDFLAGS)/' Makefile - - default -} - -src_compile() { - emake \ - CC="$(tc-getCXX)" \ - CFLAGS="${CXXFLAGS}" \ - LIBS="-lcanna $($(tc-getPKG_CONFIG) --libs ncurses)" -} - -src_install() { - dobin ${PN} - dodoc 00{changes,readme} -}