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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4F051158086 for ; Wed, 24 Nov 2021 14:25:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 45FACE086E; Wed, 24 Nov 2021 14:25:56 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2A0F1E086E for ; Wed, 24 Nov 2021 14:25:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0EFC7342CD7 for ; Wed, 24 Nov 2021 14:25:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8A49F8E for ; Wed, 24 Nov 2021 14:25:53 +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: <1637763948.361e0e69e74ccaf89ad0f1462e9aac5fa783d2ad.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-fonts/mplus-fonts/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-fonts/mplus-fonts/mplus-fonts-2.2.4-r1.ebuild X-VCS-Directories: media-fonts/mplus-fonts/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: 361e0e69e74ccaf89ad0f1462e9aac5fa783d2ad X-VCS-Branch: master Date: Wed, 24 Nov 2021 14:25:53 +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: c225b323-5104-487f-8432-36e975abdafe X-Archives-Hash: e5cf88f01dd5e332bcf7fc78285b4ca3 commit: 361e0e69e74ccaf89ad0f1462e9aac5fa783d2ad Author: Akinori Hattori gentoo org> AuthorDate: Wed Nov 24 14:23:34 2021 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Wed Nov 24 14:25:48 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=361e0e69 media-fonts/mplus-fonts: tidy Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Akinori Hattori gentoo.org> .../mplus-fonts/mplus-fonts-2.2.4-r1.ebuild | 25 ++++++++++------------ 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/media-fonts/mplus-fonts/mplus-fonts-2.2.4-r1.ebuild b/media-fonts/mplus-fonts/mplus-fonts-2.2.4-r1.ebuild index 7df74fe1160e..09a9326afaa8 100644 --- a/media-fonts/mplus-fonts/mplus-fonts-2.2.4-r1.ebuild +++ b/media-fonts/mplus-fonts/mplus-fonts-2.2.4-r1.ebuild @@ -1,31 +1,28 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI="7" +FONT_PN=${PN%-*} -FONT_PN=mplus -MY_P="mplus_bitmap_fonts-${PV}" inherit font +MY_P="${P/-/_bitmap_}" + DESCRIPTION="M+ Japanese bitmap fonts" HOMEPAGE="https://mplus-fonts.osdn.jp/about-en.html" SRC_URI="mirror://sourceforge.jp/${PN}/5030/${MY_P}.tar.gz" -S="${WORKDIR}/${MY_P}" LICENSE="mplus-fonts" SLOT="0" KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86" -IUSE="X" +IUSE="" +RESTRICT="binchecks strip" -# Only installs fonts -RESTRICT="strip binchecks" - -BDEPEND=" - x11-apps/bdftopcf - >=x11-apps/mkfontscale-1.2.0 -" +BDEPEND="x11-apps/bdftopcf + x11-apps/mkfontscale" +S="${WORKDIR}/${MY_P}" src_install() { - DESTDIR="${D}${FONTDIR}" ./install_mplus_fonts || die - dodoc README* INSTALL* + DESTDIR="${ED}"${FONTDIR} ./install_${PN/-/_} || die + einstalldocs }