From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 4CDB559CA2 for ; Sat, 13 Feb 2016 23:45:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EE0D6E07DF; Sat, 13 Feb 2016 23:45:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 91F57E07DF for ; Sat, 13 Feb 2016 23:45:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 605523406DD for ; Sat, 13 Feb 2016 23:45:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 441F98E4 for ; Sat, 13 Feb 2016 23:45:35 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1455407016.f4fa70d1f02127b5e2a4921633a89f5768e0bb53.monsieurp@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-r2.ebuild X-VCS-Directories: media-fonts/liberation-fonts/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: f4fa70d1f02127b5e2a4921633a89f5768e0bb53 X-VCS-Branch: master Date: Sat, 13 Feb 2016 23:45:35 +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: b17003d2-932e-4ecc-b190-065b240c3418 X-Archives-Hash: f0393e97d33df07a28b6e0f9fce5d55f commit: f4fa70d1f02127b5e2a4921633a89f5768e0bb53 Author: Patrice Clement gentoo org> AuthorDate: Sat Feb 13 23:43:12 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sat Feb 13 23:43:36 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4fa70d1 media-fonts/liberation-fonts: EAPI 5 bump. Package-Manager: portage-2.2.26 .../liberation-fonts-2.00.1-r2.ebuild | 48 ++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/media-fonts/liberation-fonts/liberation-fonts-2.00.1-r2.ebuild b/media-fonts/liberation-fonts/liberation-fonts-2.00.1-r2.ebuild new file mode 100644 index 0000000..df4df5e --- /dev/null +++ b/media-fonts/liberation-fonts/liberation-fonts-2.00.1-r2.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) + +inherit font python-any-r1 + +DESCRIPTION="A Helvetica/Times/Courier replacement TrueType font set, courtesy of Red Hat" +HOMEPAGE="https://fedorahosted.org/liberation-fonts" +SRC_URI=" + !fontforge? ( + https://fedorahosted.org/releases/l/i/${PN}/${PN}-ttf-${PV}.tar.gz + ) + fontforge? ( + https://fedorahosted.org/releases/l/i/${PN}/${P}.tar.gz + ) +" + +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~x86 ~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 +}