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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 62E6B158013 for ; Sun, 10 Dec 2023 18:43:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8FD632BC016; Sun, 10 Dec 2023 18:43:49 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 638912BC016 for ; Sun, 10 Dec 2023 18:43:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3EAD333E3A9 for ; Sun, 10 Dec 2023 18:43:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 92BA79F9 for ; Sun, 10 Dec 2023 18:43:46 +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: <1702233739.1eb8553602d35c161fa78e972df5be39aa1ec73a.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-2.0.6-r1.ebuild X-VCS-Directories: x11-libs/libXfont2/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 1eb8553602d35c161fa78e972df5be39aa1ec73a X-VCS-Branch: master Date: Sun, 10 Dec 2023 18:43:46 +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: 0fb6c665-3264-40b0-9d82-69b555fb864b X-Archives-Hash: 6d299e5cb28a50d7d15eda0d4905e43b commit: 1eb8553602d35c161fa78e972df5be39aa1ec73a Author: Holger Hoffstätte applied-asynchrony com> AuthorDate: Tue Sep 12 10:18:09 2023 +0000 Commit: Matt Turner gentoo org> CommitDate: Sun Dec 10 18:42:19 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1eb85536 x11-libs/libXfont2: only depend on libbsd when necessary With glibc >=2.38 we no longer need to unconditionally depend on libbsd. This brings libXfont2 in line with other X libs. Signed-off-by: Holger Hoffstätte applied-asynchrony.com> Closes: https://github.com/gentoo/gentoo/pull/32736 Signed-off-by: Matt Turner gentoo.org> x11-libs/libXfont2/libXfont2-2.0.6-r1.ebuild | 35 ++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/x11-libs/libXfont2/libXfont2-2.0.6-r1.ebuild b/x11-libs/libXfont2/libXfont2-2.0.6-r1.ebuild new file mode 100644 index 000000000000..c20b014b99f8 --- /dev/null +++ b/x11-libs/libXfont2/libXfont2-2.0.6-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +XORG_DOC=doc +XORG_PACKAGE_NAME=libxfont +XORG_TARBALL_SUFFIX="xz" +inherit xorg-3 + +DESCRIPTION="X.Org Xfont library" + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" +IUSE="bzip2 truetype" + +RDEPEND="sys-libs/zlib + elibc_glibc? ( || ( >=sys-libs/glibc-2.38 dev-libs/libbsd ) ) + x11-libs/libfontenc + bzip2? ( app-arch/bzip2 ) + truetype? ( >=media-libs/freetype-2 )" +DEPEND="${RDEPEND} + x11-base/xorg-proto + x11-libs/xtrans" + +src_configure() { + local XORG_CONFIGURE_OPTIONS=( + --enable-ipv6 + $(use_enable doc devel-docs) + $(use_with doc xmlto) + $(use_with bzip2) + $(use_enable truetype freetype) + --without-fop + ) + xorg-3_src_configure +}