diff options
author | Ionen Wolkens <sudinave@gmail.com> | 2021-04-14 03:50:06 -0400 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2021-04-15 09:38:51 +0300 |
commit | 8622d4208cf4720e72b7b725f88f8e311149b293 (patch) | |
tree | 7bd4e66b36e14a4f6d8b8230d09d6ff47a15604c /games-action | |
parent | app-office/magicpoint: fix build with -native-symlinks (diff) | |
download | gentoo-8622d4208cf4720e72b7b725f88f8e311149b293.tar.gz gentoo-8622d4208cf4720e72b7b725f88f8e311149b293.tar.bz2 gentoo-8622d4208cf4720e72b7b725f88f8e311149b293.zip |
games-action/xpilot: fix build with -native-symlinks
Closes: https://bugs.gentoo.org/730878
Signed-off-by: Ionen Wolkens <sudinave@gmail.com>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/xpilot/xpilot-4.5.5-r1.ebuild | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/games-action/xpilot/xpilot-4.5.5-r1.ebuild b/games-action/xpilot/xpilot-4.5.5-r1.ebuild index d2003e60dd12..c90d59c476c1 100644 --- a/games-action/xpilot/xpilot-4.5.5-r1.ebuild +++ b/games-action/xpilot/xpilot-4.5.5-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -20,7 +20,7 @@ DEPEND="${RDEPEND} app-text/rman x11-base/xorg-proto x11-misc/gccmakedep - x11-misc/imake" + >=x11-misc/imake-1.0.8-r1" src_prepare() { #default @@ -38,12 +38,18 @@ src_prepare() { src/client/textinterface.c || die } +src_configure() { + CC="$(tc-getBUILD_CC)" LD="$(tc-getLD)" \ + IMAKECPP="${IMAKECPP:-$(tc-getCPP)}" xmkmf -a || die +} + src_compile() { - xmkmf || die - emake Makefiles - emake includes - emake depend - emake CC="$(tc-getCC)" CDEBUGFLAGS="${CFLAGS} ${LDFLAGS}" + emake \ + AR="$(tc-getAR) cq" \ + CC="$(tc-getCC)" \ + RANLIB="$(tc-getRANLIB)" \ + CDEBUGFLAGS="${CFLAGS}" \ + LOCAL_LDFLAGS="${LDFLAGS}" } src_install() { |