diff options
author | 2018-05-04 11:46:06 -0400 | |
---|---|---|
committer | 2018-05-04 11:50:03 -0400 | |
commit | b6db5c287b3e0a43f2254376e32ea6ffe8a45dcf (patch) | |
tree | 2dda729fca31668e52a610edad6d402312c64829 /sys-boot/grub/grub-9999.ebuild | |
parent | dev-python/nose-1.3.7-r3: arm64 stable (bug #653502) (diff) | |
download | gentoo-b6db5c287b3e0a43f2254376e32ea6ffe8a45dcf.tar.gz gentoo-b6db5c287b3e0a43f2254376e32ea6ffe8a45dcf.tar.bz2 gentoo-b6db5c287b3e0a43f2254376e32ea6ffe8a45dcf.zip |
sys-boot/grub: use pkg-config to find freetype2
Bug: https://bugs.gentoo.org/654788
Package-Manager: Portage-2.3.31_p60, Repoman-2.3.9_p116
Diffstat (limited to 'sys-boot/grub/grub-9999.ebuild')
-rw-r--r-- | sys-boot/grub/grub-9999.ebuild | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/sys-boot/grub/grub-9999.ebuild b/sys-boot/grub/grub-9999.ebuild index cc6db989c6e8..d5bfc5ad9ac6 100644 --- a/sys-boot/grub/grub-9999.ebuild +++ b/sys-boot/grub/grub-9999.ebuild @@ -1,16 +1,21 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 if [[ ${PV} == 9999 ]]; then GRUB_AUTOGEN=1 + GRUB_AUTORECONF=1 fi if [[ -n ${GRUB_AUTOGEN} ]]; then PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} ) + inherit python-any-r1 +fi + +if [[ -n ${GRUB_AUTORECONF} ]]; then WANT_LIBTOOL=none - inherit autotools python-any-r1 + inherit autotools fi inherit autotools bash-completion-r1 flag-o-matic multibuild pax-utils toolchain-funcs versionator @@ -153,6 +158,9 @@ src_prepare() { if [[ -n ${GRUB_AUTOGEN} ]]; then python_setup bash autogen.sh || die + fi + + if [[ -n ${GRUB_AUTORECONF} ]]; then autopoint() { :; } eautoreconf fi |