diff options
author | 2018-11-21 22:31:35 +0000 | |
---|---|---|
committer | 2018-11-21 22:34:06 +0000 | |
commit | e300267f31ed1a4fee2f6904b567ee686577b6c7 (patch) | |
tree | d159c16bec47ddbacfd3ba09962f07d1ef9287b4 /sys-devel/autogen/autogen-5.18.16.ebuild | |
parent | sys-devel/autogen: avoid running autoreconf (diff) | |
download | gentoo-e300267f31ed1a4fee2f6904b567ee686577b6c7.tar.gz gentoo-e300267f31ed1a4fee2f6904b567ee686577b6c7.tar.bz2 gentoo-e300267f31ed1a4fee2f6904b567ee686577b6c7.zip |
sys-devel/autogen: add missing verify.h, bug #671616
install phase packages verify.h from bundled gnulib.
Unfortunally it did not made to final tarball. Pull
it in manually from gnulib git tree.
Reported-by: Lars Wendler (Polynomial-C)
Reported-by: Seong-ho Cho
Closes: https://bugs.gentoo.org/671616
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'sys-devel/autogen/autogen-5.18.16.ebuild')
-rw-r--r-- | sys-devel/autogen/autogen-5.18.16.ebuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys-devel/autogen/autogen-5.18.16.ebuild b/sys-devel/autogen/autogen-5.18.16.ebuild index c3f3fedf69a6..43a6da4e9fac 100644 --- a/sys-devel/autogen/autogen-5.18.16.ebuild +++ b/sys-devel/autogen/autogen-5.18.16.ebuild @@ -7,7 +7,8 @@ inherit toolchain-funcs DESCRIPTION="Program and text file generation" HOMEPAGE="https://www.gnu.org/software/autogen/" -SRC_URI="mirror://gnu/${PN}/rel${PV}/${P}.tar.xz" +SRC_URI="mirror://gnu/${PN}/rel${PV}/${P}.tar.xz + https://git.savannah.gnu.org/gitweb/?p=gnulib.git;a=blob_plain;f=lib/verify.h;h=3b57ddee0acffd23cc51bc8910a15cf879f90619;hb=537a5511ab0b1326e69b32f87593a50aedb8a589 -> ${P}-gnulib-3b57ddee0acffd23cc51bc8910a15cf879f90619-lib-verify.h" LICENSE="GPL-2" SLOT="0" @@ -32,6 +33,9 @@ src_prepare() { touch -r orig.configure.ac configure.ac || die touch -r orig.configure configure || die + + # missing tarball file + cp "${DISTDIR}"/${P}-gnulib-3b57ddee0acffd23cc51bc8910a15cf879f90619-lib-verify.h autoopts/verify.h || die } src_configure() { |