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 43574138DA1 for ; Tue, 25 Oct 2016 03:52:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6846CE0A72; Tue, 25 Oct 2016 03:52:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4E59DE0A72 for ; Tue, 25 Oct 2016 03:52:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ECED73416D0 for ; Tue, 25 Oct 2016 03:52:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 95B967E1 for ; Tue, 25 Oct 2016 03:52:34 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1477367538.f2cfed7a4bc36e58ebcf5a4edff9aa2facf5be43.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libXfont2/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/libXfont2/libXfont2-9999.ebuild X-VCS-Directories: x11-libs/libXfont2/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: f2cfed7a4bc36e58ebcf5a4edff9aa2facf5be43 X-VCS-Branch: master Date: Tue, 25 Oct 2016 03:52:34 +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: 29e672f7-99bd-4d3d-b824-278d20f2694b X-Archives-Hash: ccc8fd1ea9c6f2693e3aeec2876447e9 commit: f2cfed7a4bc36e58ebcf5a4edff9aa2facf5be43 Author: Matt Turner gentoo org> AuthorDate: Tue Oct 25 03:49:26 2016 +0000 Commit: Matt Turner gentoo org> CommitDate: Tue Oct 25 03:52:18 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2cfed7a x11-libs/libXfont2: Add 9999 ebuild. Bug: https://bugs.gentoo.org/594296 x11-libs/libXfont2/libXfont2-9999.ebuild | 34 ++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/x11-libs/libXfont2/libXfont2-9999.ebuild b/x11-libs/libXfont2/libXfont2-9999.ebuild new file mode 100644 index 00000000..d2124d1 --- /dev/null +++ b/x11-libs/libXfont2/libXfont2-9999.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +XORG_DOC=doc +EGIT_REPO_URI="git://anongit.freedesktop.org/xorg/lib/libXfont" +inherit xorg-2 + +DESCRIPTION="X.Org Xfont library" + +KEYWORDS="" +IUSE="bzip2 ipv6 truetype" + +RDEPEND="x11-libs/xtrans + x11-libs/libfontenc + truetype? ( >=media-libs/freetype-2 ) + bzip2? ( app-arch/bzip2 ) + x11-proto/xproto + >=x11-proto/fontsproto-2.1.3" +DEPEND="${RDEPEND}" + +src_configure() { + XORG_CONFIGURE_OPTIONS=( + $(use_enable ipv6) + $(use_enable doc devel-docs) + $(use_with doc xmlto) + $(use_with bzip2) + $(use_enable truetype freetype) + --without-fop + ) + xorg-2_src_configure +}