diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2020-07-28 16:04:36 +0200 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2020-08-17 23:06:39 +0100 |
commit | a8612b1e30fa8e44fb72b990ff6b24b576584700 (patch) | |
tree | c812fa63f85e305ef42468dd3c2e3d9d188268a4 /games-util/atlas | |
parent | games-sports/xmoto: Drop old 0.6.1 (diff) | |
download | gentoo-a8612b1e30fa8e44fb72b990ff6b24b576584700.tar.gz gentoo-a8612b1e30fa8e44fb72b990ff6b24b576584700.tar.bz2 gentoo-a8612b1e30fa8e44fb72b990ff6b24b576584700.zip |
games-util/atlas: EAPI7, minor improvements, fix LICENSE
Package-Manager: Portage-3.0.0, Repoman-2.3.23
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/16880
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'games-util/atlas')
-rw-r--r-- | games-util/atlas/atlas-0.5.1_beta_pre20160907.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/games-util/atlas/atlas-0.5.1_beta_pre20160907.ebuild b/games-util/atlas/atlas-0.5.1_beta_pre20160907.ebuild index 4fed6a08e4a1..6ddeb4506b56 100644 --- a/games-util/atlas/atlas-0.5.1_beta_pre20160907.ebuild +++ b/games-util/atlas/atlas-0.5.1_beta_pre20160907.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 inherit autotools @@ -13,10 +13,9 @@ DESCRIPTION="Chart Program to use with Flightgear Flight Simulator" HOMEPAGE="http://atlas.sourceforge.net/" SRC_URI="https://dev.gentoo.org/~reavertm/${MY_P}.zip" -LICENSE="GPL-2" +LICENSE="GPL-2+" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" COMMON_DEPEND=" media-libs/freeglut @@ -35,6 +34,7 @@ DEPEND="${COMMON_DEPEND} RDEPEND="${COMMON_DEPEND} >=games-simulation/flightgear-3.0.0 " +BDEPEND="app-arch/unzip" S=${WORKDIR}/${MY_P} @@ -47,7 +47,7 @@ src_prepare() { default # -Wnarrowing failure, #612986 - sed -i -e 's:0x:(char)0x:g' src/tiles.h || die + sed -i -e 's|0x|(char)0x|g' src/tiles.h || die eautoreconf } |