diff options
author | 2021-04-21 07:26:23 +0100 | |
---|---|---|
committer | 2021-04-21 19:49:26 +0100 | |
commit | b54bab2d4da7e5d631ea743ac996c880553cd01d (patch) | |
tree | f8bba1cf0407728fb756b9140e45d23b85ee3e91 /games-util/gslist/gslist-0.8.11a-r1.ebuild | |
parent | games-util/uglygs: update EAPI 6 -> 7, respect CC (diff) | |
download | gentoo-b54bab2d4da7e5d631ea743ac996c880553cd01d.tar.gz gentoo-b54bab2d4da7e5d631ea743ac996c880553cd01d.tar.bz2 gentoo-b54bab2d4da7e5d631ea743ac996c880553cd01d.zip |
games-util/gslist: update EAPI 6 -> 7, respect CC
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'games-util/gslist/gslist-0.8.11a-r1.ebuild')
-rw-r--r-- | games-util/gslist/gslist-0.8.11a-r1.ebuild | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/games-util/gslist/gslist-0.8.11a-r1.ebuild b/games-util/gslist/gslist-0.8.11a-r1.ebuild index cbe916e10a66..07bacb2fdebd 100644 --- a/games-util/gslist/gslist-0.8.11a-r1.ebuild +++ b/games-util/gslist/gslist-0.8.11a-r1.ebuild @@ -1,11 +1,14 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 + +inherit toolchain-funcs DESCRIPTION="A GameSpy server browser" HOMEPAGE="http://aluigi.altervista.org/papers.htm#gslist" SRC_URI="mirror://gentoo/${P}.zip" +S="${WORKDIR}" LICENSE="GPL-2" SLOT="0" @@ -13,10 +16,8 @@ KEYWORDS="~amd64 ~hppa ~x86" IUSE="web" RDEPEND="dev-libs/geoip" -DEPEND="${RDEPEND} - app-arch/unzip" - -S="${WORKDIR}" +DEPEND="${RDEPEND}" +BDEPEND="app-arch/unzip" PATCHES=( "${FILESDIR}"/${P}-build.patch @@ -28,7 +29,11 @@ src_prepare() { } src_compile() { - emake SQL=0 $(use web || echo GSWEB=0) + tc-export CC + + emake \ + SQL=0 \ + $(use web || echo GSWEB=0) } src_install() { |