diff options
author | Azamat H. Hackimov <azamat.hackimov@gmail.com> | 2021-05-22 01:30:56 +0300 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-05-23 18:53:06 +0200 |
commit | e4eda48d2518cb0dcd80e0593801dad5fd0b0b0c (patch) | |
tree | 1adefa8b83171d80d2dff45e8b475027a65e5194 /dev-games | |
parent | net-misc/mikutter: version bump to 4.1.5 (diff) | |
download | gentoo-e4eda48d2518cb0dcd80e0593801dad5fd0b0b0c.tar.gz gentoo-e4eda48d2518cb0dcd80e0593801dad5fd0b0b0c.tar.bz2 gentoo-e4eda48d2518cb0dcd80e0593801dad5fd0b0b0c.zip |
dev-games/aseprite: fix building with USE=bundled-libs
Shared libloadpng comes with shared allegro[png]. USE=bundled-libs will
disable allegro dependency, which leads to building error.
Closes: https://bugs.gentoo.org/680060
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Azamat H. Hackimov <azamat.hackimov@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/20917
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-games')
-rw-r--r-- | dev-games/aseprite/aseprite-1.1.9.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-games/aseprite/aseprite-1.1.9.ebuild b/dev-games/aseprite/aseprite-1.1.9.ebuild index b3ab60f8d324..c96e7c87576d 100644 --- a/dev-games/aseprite/aseprite-1.1.9.ebuild +++ b/dev-games/aseprite/aseprite-1.1.9.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -74,7 +74,7 @@ src_configure() { -DUSE_SHARED_FREETYPE=ON -DUSE_SHARED_GIFLIB=ON -DUSE_SHARED_JPEGLIB=ON - -DUSE_SHARED_LIBLOADPNG=ON + -DUSE_SHARED_LIBLOADPNG=$(usex !bundled-libs) -DUSE_SHARED_LIBPNG=ON -DUSE_SHARED_PIXMAN=ON -DUSE_SHARED_TINYXML=ON |