diff options
author | Sam James <sam@gentoo.org> | 2021-04-03 20:05:16 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-04-03 20:15:09 +0000 |
commit | f392d4c0f3577d6df79d776d59f4c8a3ee956fc2 (patch) | |
tree | ef3bb11ea4f3cce329381862b55fb9dc4b257780 /games-util/vispatch | |
parent | media-sound/openmpt123: Bump to 0.5.7, drop old 0.5.5 (diff) | |
download | gentoo-f392d4c0f3577d6df79d776d59f4c8a3ee956fc2.tar.gz gentoo-f392d4c0f3577d6df79d776d59f4c8a3ee956fc2.tar.bz2 gentoo-f392d4c0f3577d6df79d776d59f4c8a3ee956fc2.zip |
games-util/vispatch: port to EAPI 7
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'games-util/vispatch')
-rw-r--r-- | games-util/vispatch/vispatch-1.4.6.ebuild | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/games-util/vispatch/vispatch-1.4.6.ebuild b/games-util/vispatch/vispatch-1.4.6.ebuild index 1bb5067893ac..5a157407fa23 100644 --- a/games-util/vispatch/vispatch-1.4.6.ebuild +++ b/games-util/vispatch/vispatch-1.4.6.ebuild @@ -1,25 +1,28 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 + inherit toolchain-funcs DESCRIPTION="WaterVIS utility for glquake" HOMEPAGE="http://vispatch.sourceforge.net/" SRC_URI="mirror://sourceforge/vispatch/${P}.tgz" +S="${WORKDIR}"/${P}/source + LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" - -S=${WORKDIR}/${P}/source src_prepare() { + default + sed -i \ -e '/^CFLAGS/d' \ -e '/^LDFLAGS/d' \ makefile || die + tc-export CC } |