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 A7EF51382C5 for ; Thu, 19 Apr 2018 19:30:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 96A23E0AB6; Thu, 19 Apr 2018 19:29:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 7821FE0AB6 for ; Thu, 19 Apr 2018 19:29: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 8D411335C75 for ; Thu, 19 Apr 2018 19:29:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4DE69243 for ; Thu, 19 Apr 2018 19:29:32 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <1524166168.216dbfddcac2923e5bec4f0e4b7bb744216bba33.johu@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-fonts/droid/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-fonts/droid/droid-113-r5.ebuild X-VCS-Directories: media-fonts/droid/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: 216dbfddcac2923e5bec4f0e4b7bb744216bba33 X-VCS-Branch: master Date: Thu, 19 Apr 2018 19:29:32 +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: bea846e4-d72b-4cd8-aea3-f110d5583ff2 X-Archives-Hash: 3d8831f7f1bc082931e3ab89518346a8 commit: 216dbfddcac2923e5bec4f0e4b7bb744216bba33 Author: Johannes Huber gentoo org> AuthorDate: Thu Apr 19 19:29:12 2018 +0000 Commit: Johannes Huber gentoo org> CommitDate: Thu Apr 19 19:29:28 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=216dbfdd media-fonts/droid: Revision bump 113-r5 EAPI 6 Package-Manager: Portage-2.3.30, Repoman-2.3.9 media-fonts/droid/droid-113-r5.ebuild | 39 +++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/media-fonts/droid/droid-113-r5.ebuild b/media-fonts/droid/droid-113-r5.ebuild new file mode 100644 index 00000000000..f38574c7cf8 --- /dev/null +++ b/media-fonts/droid/droid-113-r5.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit font + +MY_PN="${PN/d/D}" + +# $PV is a build number, use fontforge to find it out. 113 was taken from: +# https://android.git.kernel.org/?p=platform/frameworks/base.git;a=tree;f=data/fonts;hb=HEAD +DESCRIPTION="Font family from Google's Android project" +HOMEPAGE="https://code.google.com/android/RELEASENOTES.html http://www.cosmix.org/software/" +SRC_URI="mirror://gentoo/${P}-r1.tar.bz2 + mirror://gentoo/${MY_PN}SansMonoSlashed-112_p1.ttf.bz2 + mirror://gentoo/${MY_PN}SansMonoDotted-112_p1.ttf.bz2" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +IUSE="" + +S="${WORKDIR}/${PN}" +FONT_S="${S}" +FONT_SUFFIX="ttf" +FONT_CONF=( + "${FILESDIR}/59-google-droid-sans-mono.conf" + "${FILESDIR}/59-google-droid-sans.conf" + "${FILESDIR}/59-google-droid-serif.conf" +) + +src_prepare() { + default + mv "${WORKDIR}/${MY_PN}SansMonoSlashed-112_p1.ttf" \ + "${S}/${MY_PN}SansMonoSlashed.ttf" || die + mv "${WORKDIR}/${MY_PN}SansMonoDotted-112_p1.ttf" \ + "${S}/${MY_PN}SansMonoDotted.ttf" || die + rm Ahem.ttf || die # bug 530158 +}