diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2024-12-29 22:35:41 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2024-12-31 10:07:45 +0100 |
commit | d0cf215939fbfaf4b12635d8cbfc82cc57704b3a (patch) | |
tree | 4d7b9075dcd775b43a9ee71e9be9902fba5d2f56 /media-gfx/ttfautohint | |
parent | dev-util/cppcheck: drop 2.14.2 (diff) | |
download | gentoo-d0cf215939fbfaf4b12635d8cbfc82cc57704b3a.tar.gz gentoo-d0cf215939fbfaf4b12635d8cbfc82cc57704b3a.tar.bz2 gentoo-d0cf215939fbfaf4b12635d8cbfc82cc57704b3a.zip |
media-gfx/ttfautohint: IUSE qt5 -> gui
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-gfx/ttfautohint')
-rw-r--r-- | media-gfx/ttfautohint/ttfautohint-1.8.4-r3.ebuild | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/media-gfx/ttfautohint/ttfautohint-1.8.4-r3.ebuild b/media-gfx/ttfautohint/ttfautohint-1.8.4-r3.ebuild index 899fa682a711..7fa443841d05 100644 --- a/media-gfx/ttfautohint/ttfautohint-1.8.4-r3.ebuild +++ b/media-gfx/ttfautohint/ttfautohint-1.8.4-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 2022 Gentoo Authors +# Copyright 2022-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -12,12 +12,12 @@ SRC_URI="https://download.savannah.gnu.org/releases/freetype/${P}.tar.gz" LICENSE="|| ( FTL GPL-2+ )" SLOT="0/1.0.3" KEYWORDS="amd64" -IUSE="qt5" +IUSE="gui" RDEPEND=" media-libs/freetype media-libs/harfbuzz:=[truetype] - qt5? ( + gui? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 @@ -46,9 +46,8 @@ src_prepare() { src_configure() { local myeconfargs=( - --disable-static --without-doc - --with-qt="$(usex qt5 $(qt5_get_bindir) no)" + --with-qt="$(usex gui $(qt5_get_bindir) no)" ) econf "${myeconfargs[@]}" @@ -58,7 +57,7 @@ src_install() { default doman frontend/ttfautohint.1 - use qt5 && doman frontend/ttfautohintGUI.1 + use gui && doman frontend/ttfautohintGUI.1 find "${ED}" -name '*.la' -delete || die } |