diff options
author | 2018-06-25 15:23:31 +0200 | |
---|---|---|
committer | 2018-06-25 15:23:45 +0200 | |
commit | 3f8084c90b78f2a067ab50bc7d922994f2597b3c (patch) | |
tree | 7923c6db796e487306691c78d12f3b2a2f4b71c4 /dev-games/clanlib/clanlib-4.0.0.ebuild | |
parent | sys-block/fio: bump to v3.7 (diff) | |
download | gentoo-3f8084c90b78f2a067ab50bc7d922994f2597b3c.tar.gz gentoo-3f8084c90b78f2a067ab50bc7d922994f2597b3c.tar.bz2 gentoo-3f8084c90b78f2a067ab50bc7d922994f2597b3c.zip |
dev-games/clanlib: Replaced freetype-config with pkg-config
Bug: https://bugs.gentoo.org/658424
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'dev-games/clanlib/clanlib-4.0.0.ebuild')
-rw-r--r-- | dev-games/clanlib/clanlib-4.0.0.ebuild | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/dev-games/clanlib/clanlib-4.0.0.ebuild b/dev-games/clanlib/clanlib-4.0.0.ebuild index 310134a70f44..cc7115a38348 100644 --- a/dev-games/clanlib/clanlib-4.0.0.ebuild +++ b/dev-games/clanlib/clanlib-4.0.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -37,10 +37,11 @@ DEPEND="${RDEPEND} media-gfx/graphviz )" -S=${WORKDIR}/${MY_PN}-${PV} +S="${WORKDIR}/${MY_PN}-${PV}" PATCHES=( "${FILESDIR}"/${PN}-4.0.0-fix-build-system.patch + "${FILESDIR}"/${PN}-4.0.0-freetype_pkgconfig.patch #658424 ) src_prepare() { @@ -49,15 +50,17 @@ src_prepare() { } src_configure() { - econf \ - $(use_enable doc docs) \ - $(use_enable cpu_flags_x86_sse2 sse2) \ - $(use_enable opengl clanGL) \ - $(use_enable opengl clanUI) \ - $(use_enable X clanDisplay) \ - $(use_enable sound clanSound) \ - $(use_enable ipv6 getaddr) \ + local myeconfargs=( + $(use_enable doc docs) + $(use_enable cpu_flags_x86_sse2 sse2) + $(use_enable opengl clanGL) + $(use_enable opengl clanUI) + $(use_enable X clanDisplay) + $(use_enable sound clanSound) + $(use_enable ipv6 getaddr) $(use_enable static-libs static) + ) + econf "${myeconfargs[@]}" } src_compile() { @@ -72,5 +75,5 @@ src_install() { use examples && dodoc -r Examples Resources # package provides .pc files - find "${D}" -name '*.la' -delete || die + find "${ED}" -name '*.la' -delete || die } |