diff options
author | David Seifert <soap@gentoo.org> | 2020-07-04 15:54:38 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2020-07-04 15:54:38 +0200 |
commit | c896cdb1dbde73a0a5a8bc939973d434c01a62da (patch) | |
tree | c20abbef7cb507abad2dfed057b85bc4203e7c98 /x11-misc/imwheel/imwheel-1.0.0_pre13_p20100827.ebuild | |
parent | x11-misc/imake: Pass CPP explicitly (diff) | |
download | gentoo-c896cdb1dbde73a0a5a8bc939973d434c01a62da.tar.gz gentoo-c896cdb1dbde73a0a5a8bc939973d434c01a62da.tar.bz2 gentoo-c896cdb1dbde73a0a5a8bc939973d434c01a62da.zip |
x11-misc/imwheel: Call AM_PROG_AR
Closes: https://bugs.gentoo.org/726140
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'x11-misc/imwheel/imwheel-1.0.0_pre13_p20100827.ebuild')
-rw-r--r-- | x11-misc/imwheel/imwheel-1.0.0_pre13_p20100827.ebuild | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/x11-misc/imwheel/imwheel-1.0.0_pre13_p20100827.ebuild b/x11-misc/imwheel/imwheel-1.0.0_pre13_p20100827.ebuild index 0898ec96384e..b2028583345f 100644 --- a/x11-misc/imwheel/imwheel-1.0.0_pre13_p20100827.ebuild +++ b/x11-misc/imwheel/imwheel-1.0.0_pre13_p20100827.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 inherit autotools @@ -12,21 +12,23 @@ SRC_URI="mirror://gentoo/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha amd64 ppc x86" -IUSE="" -RDEPEND="x11-libs/libXtst +RDEPEND=" + x11-libs/libXtst x11-libs/libX11 x11-libs/libXmu x11-libs/libXt x11-libs/libXext" - DEPEND="${RDEPEND} - x11-base/xorg-proto - >=sys-apps/sed-4" + x11-base/xorg-proto" + +PATCHES=( + "${FILESDIR}"/${P}-autotools.patch # bug 726140 +) src_prepare() { default - sed -i -e "s:/etc:${D}/etc:g" Makefile.am || die + mv configure.{in,ac} || die eautoreconf } |