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 B12701382C5 for ; Thu, 26 Apr 2018 18:45:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B7FA0E0870; Thu, 26 Apr 2018 18:45:03 +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 98108E0870 for ; Thu, 26 Apr 2018 18:45:03 +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 197B6335C2E for ; Thu, 26 Apr 2018 18:45:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 764C82B4 for ; Thu, 26 Apr 2018 18:45:00 +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: <1524768289.de05aa9df628f997e6c81ff1f3d40ca66667f20b.johu@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-fonts/liberation-fonts/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-fonts/liberation-fonts/liberation-fonts-2.00.1-r3.ebuild X-VCS-Directories: media-fonts/liberation-fonts/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: de05aa9df628f997e6c81ff1f3d40ca66667f20b X-VCS-Branch: master Date: Thu, 26 Apr 2018 18:45:00 +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: 00ac147c-4041-4b43-87f8-0f315c14dd87 X-Archives-Hash: 72f4e4d1de5912114f0d14d1bebb2763 commit: de05aa9df628f997e6c81ff1f3d40ca66667f20b Author: Johannes Huber gentoo org> AuthorDate: Thu Apr 26 18:43:28 2018 +0000 Commit: Johannes Huber gentoo org> CommitDate: Thu Apr 26 18:44:49 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de05aa9d media-fonts/liberation-fonts: Revision bump 2.00.1-r3 EAPI 6. Package-Manager: Portage-2.3.31, Repoman-2.3.9 .../liberation-fonts-2.00.1-r3.ebuild | 41 ++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/media-fonts/liberation-fonts/liberation-fonts-2.00.1-r3.ebuild b/media-fonts/liberation-fonts/liberation-fonts-2.00.1-r3.ebuild new file mode 100644 index 00000000000..6038e947fe2 --- /dev/null +++ b/media-fonts/liberation-fonts/liberation-fonts-2.00.1-r3.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 ) + +inherit font python-any-r1 + +DESCRIPTION="A Helvetica/Times/Courier replacement TrueType font set, courtesy of Red Hat" +HOMEPAGE="https://pagure.io/liberation-fonts" +SRC_URI="!fontforge? ( https://releases.pagure.org/${PN}/${PN}-ttf-${PV}.tar.gz ) +fontforge? ( https://releases.pagure.org/${PN}/${P}.tar.gz )" + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~x64-solaris" +SLOT="0" +LICENSE="OFL-1.1" +IUSE="fontforge X" + +FONT_SUFFIX="ttf" + +FONT_CONF=( "${FILESDIR}/60-liberation.conf" ) + +DEPEND=" + fontforge? ( + ${PYTHON_DEPS} + media-gfx/fontforge + dev-python/fonttools + )" +RDEPEND="" + +pkg_setup() { + if use fontforge; then + FONT_S="${S}/${PN}-ttf-${PV}" + python-any-r1_pkg_setup + else + FONT_S="${WORKDIR}/${PN}-ttf-${PV}" + S="${FONT_S}" + fi + font_pkg_setup +}