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 084C3138359 for ; Tue, 15 Sep 2020 08:37:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 56125E0946; Tue, 15 Sep 2020 08:37:33 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 242ECE0946 for ; Tue, 15 Sep 2020 08:37:33 +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 313B4340D74 for ; Tue, 15 Sep 2020 08:37:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9688C379 for ; Tue, 15 Sep 2020 08:37:29 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1600020340.87bb540be85e2257d0708d9732f8d3bbc959f05b.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: media-fonts/unscii/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-fonts/unscii/Manifest media-fonts/unscii/metadata.xml media-fonts/unscii/unscii-2.0.ebuild X-VCS-Directories: media-fonts/unscii/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 87bb540be85e2257d0708d9732f8d3bbc959f05b X-VCS-Branch: master Date: Tue, 15 Sep 2020 08:37:29 +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: a9e1e528-aa1d-41ed-b8fd-7c3fb7760a4e X-Archives-Hash: ac0163adf78e6bc1836efbb526bd6fea commit: 87bb540be85e2257d0708d9732f8d3bbc959f05b Author: Haelwenn (lanodan) Monnier hacktivis me> AuthorDate: Sun Sep 13 18:04:28 2020 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Sun Sep 13 18:05:40 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=87bb540b media-fonts/unscii: New Package Signed-off-by: Haelwenn (lanodan) Monnier hacktivis.me> media-fonts/unscii/Manifest | 1 + media-fonts/unscii/metadata.xml | 8 ++++++++ media-fonts/unscii/unscii-2.0.ebuild | 32 ++++++++++++++++++++++++++++++++ 3 files changed, 41 insertions(+) diff --git a/media-fonts/unscii/Manifest b/media-fonts/unscii/Manifest new file mode 100644 index 00000000..ffe80398 --- /dev/null +++ b/media-fonts/unscii/Manifest @@ -0,0 +1 @@ +DIST unscii-2.0-src.tar.gz 1672906 BLAKE2B c565b09333c10fafe1d4e75124ae8346119f772b72073cc65ba7c78979693a56e6a6535634897866b138747149b68b1a59469d2f98ba87dd0e62da5630ee1314 SHA512 f13cdf2fe32bb12ccc1cf2e1789b2dfb4c459ad85ca294736707c57a6acf47db187b1921fd9ce1e7df7e1d6a4a6b0613bd7cb78ff51c64b36ca6f9d43198ace7 diff --git a/media-fonts/unscii/metadata.xml b/media-fonts/unscii/metadata.xml new file mode 100644 index 00000000..c698af23 --- /dev/null +++ b/media-fonts/unscii/metadata.xml @@ -0,0 +1,8 @@ + + + + + contact@hacktivis.me + Haelwenn (lanodan) Monnier + + diff --git a/media-fonts/unscii/unscii-2.0.ebuild b/media-fonts/unscii/unscii-2.0.ebuild new file mode 100644 index 00000000..9e987368 --- /dev/null +++ b/media-fonts/unscii/unscii-2.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +FONT_SUFFIX="otf pcf ttf" +inherit toolchain-funcs font + +DESCRIPTION="Set of bitmapped Unicode fonts based on classic system fonts" +HOMEPAGE="http://pelulamu.net/${PN}/" +SRC_URI="${HOMEPAGE}${P}-src.tar.gz" + +LICENSE="OFL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="unicode" + +RDEPEND="media-libs/sdl-image" +DEPEND=" + ${RDEPEND} + dev-lang/perl + media-gfx/fontforge + x11-apps/bdftopcf + unicode? ( media-fonts/unifont[utils] ) +" +S="${WORKDIR}/${P}-src" +DOCS=( ${PN}.txt ) + +src_install() { + font_src_install + dobin bm2uns +}