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 AE71E1382C5 for ; Thu, 26 Apr 2018 20:57:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DEEC7E0948; Thu, 26 Apr 2018 20:57:42 +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 BC70CE0948 for ; Thu, 26 Apr 2018 20:57:42 +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 C3AC9335C77 for ; Thu, 26 Apr 2018 20:57:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C83EF243 for ; Thu, 26 Apr 2018 20:57:39 +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: <1524776252.c4cc3c207a0b3c9ca26ca54ee7901873bc28c62d.johu@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-fonts/montecarlo/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-fonts/montecarlo/montecarlo-0-r1.ebuild X-VCS-Directories: media-fonts/montecarlo/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: c4cc3c207a0b3c9ca26ca54ee7901873bc28c62d X-VCS-Branch: master Date: Thu, 26 Apr 2018 20:57:39 +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: c525ffe3-fadd-4385-a2d9-2fe4c1611a76 X-Archives-Hash: 0e2ffded221dcd622a108c26a2e57e88 commit: c4cc3c207a0b3c9ca26ca54ee7901873bc28c62d Author: Johannes Huber gentoo org> AuthorDate: Thu Apr 26 20:53:07 2018 +0000 Commit: Johannes Huber gentoo org> CommitDate: Thu Apr 26 20:57:32 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4cc3c20 media-fonts/montecarlo: Revision bump 0-r1 EAPI 6 Package-Manager: Portage-2.3.31, Repoman-2.3.9 media-fonts/montecarlo/montecarlo-0-r1.ebuild | 29 +++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/media-fonts/montecarlo/montecarlo-0-r1.ebuild b/media-fonts/montecarlo/montecarlo-0-r1.ebuild new file mode 100644 index 00000000000..7f66d5da210 --- /dev/null +++ b/media-fonts/montecarlo/montecarlo-0-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit font + +MY_PN="MonteCarlo" +DESCRIPTION="monospace font, created by programmers, for programmers" +HOMEPAGE="http://www.bok.net/MonteCarlo/" +SRC_URI="http://www.bok.net/${MY_PN}/downloads/${MY_PN}-PCF.tgz + bdf? ( http://www.bok.net/${MY_PN}/downloads/${MY_PN}-BDF.tgz )" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="bdf" + +DEPEND="" +RDEPEND="" + +S="${WORKDIR}" + +src_install() { + insinto /usr/share/fonts/${PN}/ + doins "${MY_PN}"-PCF/* + use bdf && doins "${MY_PN}"-BDF/* + font_xfont_config +}