diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2019-11-17 11:06:37 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2019-11-17 11:06:37 +0000 |
commit | c756efe696c83a26ebc2b529d3c11ae35ea00e4f (patch) | |
tree | cd33b0bfee9352db814977778810c1069ab1b8bc /sys-boot/grub/grub-2.02-r1337.ebuild | |
parent | 470837dd98bee980e3053484c7e348fa56e432d5 (diff) |
sys-boot/grub : backport 7e23437df3ad7572756102f3ab1063f284b57983 build Use pkg-config to find FreeType
Diffstat (limited to 'sys-boot/grub/grub-2.02-r1337.ebuild')
-rw-r--r-- | sys-boot/grub/grub-2.02-r1337.ebuild | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sys-boot/grub/grub-2.02-r1337.ebuild b/sys-boot/grub/grub-2.02-r1337.ebuild index 7752a693..927538f0 100644 --- a/sys-boot/grub/grub-2.02-r1337.ebuild +++ b/sys-boot/grub/grub-2.02-r1337.ebuild @@ -40,6 +40,7 @@ PATCHES=( "${FILESDIR}"/05-gfxpayload.patch "${FILESDIR}"/06-KERNEL_GLOBS.patch "${FILESDIR}"/07-Allow_GRUB_to_mount_ext234_filesystems_that_have_the_encryption_feature.patch + "${FILESDIR}"/08-find-freetype.patch ) DEJAVU=dejavu-sans-ttf-2.37 @@ -88,7 +89,10 @@ DEPEND="${RDEPEND} sys-apps/help2man sys-apps/texinfo sys-boot/grub-config-redcore - fonts? ( media-libs/freetype:2 ) + fonts? ( + media-libs/freetype:2 + virtual/pkgconfig + ) grub_platforms_xen? ( app-emulation/xen-tools:= ) grub_platforms_xen-32? ( app-emulation/xen-tools:= ) static? ( @@ -97,6 +101,7 @@ DEPEND="${RDEPEND} app-arch/bzip2[static-libs(+)] media-libs/freetype[static-libs(+)] sys-libs/zlib[static-libs(+)] + virtual/pkgconfig ) ) test? ( @@ -196,6 +201,8 @@ grub_configure() { esac local myeconfargs=( + FREETYPE="pkg-config freetype2" + BUILD_FREETYPE="pkg-config freetype2" --disable-werror --program-prefix= --libdir="${EPREFIX}"/usr/lib |