diff options
author | 2023-03-04 05:51:48 +0000 | |
---|---|---|
committer | 2023-03-04 05:54:29 +0000 | |
commit | ec65883ba7e22af63ab2b4e02765d06e7c3269de (patch) | |
tree | 5d6b3e1727d68a46ea1260ff08cfa625f625ad96 /media-libs/harfbuzz/harfbuzz-9999.ebuild | |
parent | app-misc/tmux: Stabilize 3.3a-r1 arm, #899272 (diff) | |
download | gentoo-ec65883ba7e22af63ab2b4e02765d06e7c3269de.tar.gz gentoo-ec65883ba7e22af63ab2b4e02765d06e7c3269de.tar.bz2 gentoo-ec65883ba7e22af63ab2b4e02765d06e7c3269de.zip |
media-libs/harfbuzz: add 7.1.0
It's easier to add Cairo as multilib given I'm not really convinced Harfbuzz
is something you can properly split up & I don't think you can easily regulate
what multilib consumers are actually using, given the history of the APIs
Harfbuzz consumers tend to use (i.e. everything, even the experimental stuff).
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-libs/harfbuzz/harfbuzz-9999.ebuild')
-rw-r--r-- | media-libs/harfbuzz/harfbuzz-9999.ebuild | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/media-libs/harfbuzz/harfbuzz-9999.ebuild b/media-libs/harfbuzz/harfbuzz-9999.ebuild index bf572ed0f6ee..9019f3ca2e97 100644 --- a/media-libs/harfbuzz/harfbuzz-9999.ebuild +++ b/media-libs/harfbuzz/harfbuzz-9999.ebuild @@ -29,7 +29,7 @@ RESTRICT="!test? ( test )" REQUIRED_USE="introspection? ( glib )" RDEPEND=" - cairo? ( x11-libs/cairo:= ) + cairo? ( x11-libs/cairo:=[${MULTILIB_USEDEP}] ) glib? ( >=dev-libs/glib-2.38:2[${MULTILIB_USEDEP}] ) graphite? ( >=media-gfx/graphite2-1.2.1:=[${MULTILIB_USEDEP}] ) icu? ( >=dev-libs/icu-51.2-r1:=[${MULTILIB_USEDEP}] ) @@ -46,13 +46,6 @@ BDEPEND=" introspection? ( dev-util/glib-utils ) " -pkg_setup() { - python-any-r1_pkg_setup - if ! use debug ; then - append-cppflags -DHB_NDEBUG - fi -} - src_prepare() { default @@ -67,6 +60,10 @@ src_prepare() { # bug #790359 filter-flags -fexceptions -fthreadsafe-statics + if ! use debug ; then + append-cppflags -DHB_NDEBUG + fi + # bug #762415 local pyscript for pyscript in $(find -type f -name "*.py") ; do @@ -80,6 +77,7 @@ multilib_src_configure() { -Dcoretext="disabled" -Dchafa="disabled" + $(meson_feature cairo) $(meson_feature glib) $(meson_feature graphite graphite2) $(meson_feature icu) @@ -87,7 +85,6 @@ multilib_src_configure() { $(meson_feature test tests) $(meson_feature truetype freetype) - $(meson_native_use_feature cairo) $(meson_native_use_feature doc docs) $(meson_native_use_feature introspection) |