diff options
author | Michał Górny <mgorny@gentoo.org> | 2018-05-06 22:35:13 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-05-07 09:42:00 +0200 |
commit | 04ca7d468553460ea77abd3ffb4247ac4901d4ff (patch) | |
tree | 75962197e17eff05b496ab2c08ed327a33edc4c2 /dev-games/newton | |
parent | games-rpg/soltys: Remove unnecessary use of unpacker (diff) | |
download | gentoo-04ca7d468553460ea77abd3ffb4247ac4901d4ff.tar.gz gentoo-04ca7d468553460ea77abd3ffb4247ac4901d4ff.tar.bz2 gentoo-04ca7d468553460ea77abd3ffb4247ac4901d4ff.zip |
dev-games/newton: Remove unnecessary use of unpacker
Replace the unnecessary use of unpacker.eclass with built-in EAPI
unpacking.
Closes: https://github.com/gentoo/gentoo/pull/8290
Diffstat (limited to 'dev-games/newton')
-rw-r--r-- | dev-games/newton/newton-3.13.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev-games/newton/newton-3.13.ebuild b/dev-games/newton/newton-3.13.ebuild index 8d1e3466db5f..83b67791e5ce 100644 --- a/dev-games/newton/newton-3.13.ebuild +++ b/dev-games/newton/newton-3.13.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 -inherit eutils toolchain-funcs cmake-utils unpacker +inherit eutils toolchain-funcs cmake-utils MY_P="${PN}-dynamics-${P}" DESCRIPTION="an integrated solution for real time simulation of physics environments" @@ -15,7 +15,7 @@ KEYWORDS="amd64 x86" IUSE="" RDEPEND="" -DEPEND="$(unpacker_src_uri_depends)" +DEPEND="app-arch/unzip" S=${WORKDIR}/${MY_P} |