forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
x11-libs/libXfont2: Version bump to 2.0.6
Signed-off-by: Matt Turner <[email protected]>
- Loading branch information
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST libXfont2-2.0.5.tar.bz2 524868 BLAKE2B 0b26d4c93452bcb3f5c740ac8984b9873a8241405d270e2d3fa5f440be820db417c9eff59c7a1a8c175513e40df70ada9c037d45c3a9ae2ccf62eb12f81c1d8f SHA512 64d0635d14676bb645d61932afb177eb3808a46525b26e7ee31abc975eca75207743e85523fdd82b08010ce124eb4802338b508ee7b126875d2a3c12f8ac4faa | ||
DIST libXfont2-2.0.6.tar.xz 446848 BLAKE2B 77e1fd0af5dae4f7d7cec5b9cbd20414df2c66699270ae46f81f6d21f6725b56bb0df9cea504a7a930084a4a759d7dcc3e204ab6c94dfcf0ff0006289f09a68d SHA512 24d6baeef8dc2ca2730925c6b790a97f4a3f46ea7b4d908555e7df29cee6e27b63d638b50c88dd30c853cecff7d9b079402cb617f4498f96410c5770b8815cbd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Copyright 1999-2022 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 ~sparc-solaris ~x64-solaris ~x86-solaris" | ||
IUSE="bzip2 truetype" | ||
|
||
RDEPEND="sys-libs/zlib | ||
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 | ||
} |