commit: 436525dad8e0fb1acd08213cc3c22d1c9f19e969 Author: Pascal Jäger <pascal.jaeger <AT> leimstift <DOT> de> AuthorDate: Thu Nov 10 23:06:42 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Nov 15 02:24:25 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=436525da
net-libs/libotr: fix clang16 configure Closes: https://bugs.gentoo.org/879733 Signed-off-by: Pascal Jäger <pascal.jaeger <AT> leimstift.de> Signed-off-by: Sam James <sam <AT> gentoo.org> net-libs/libotr/libotr-4.1.1.ebuild | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/net-libs/libotr/libotr-4.1.1.ebuild b/net-libs/libotr/libotr-4.1.1.ebuild index bc5fc8199758..9dae661b4ebb 100644 --- a/net-libs/libotr/libotr-4.1.1.ebuild +++ b/net-libs/libotr/libotr-4.1.1.ebuild @@ -3,6 +3,8 @@ EAPI=8 +inherit autotools + DESCRIPTION="(OTR) Messaging allows you to have private conversations over instant messaging" HOMEPAGE="https://otr.cypherpunks.ca" SRC_URI="https://otr.cypherpunks.ca/${P}.tar.gz" @@ -20,6 +22,11 @@ PATCHES=( "${FILESDIR}/${PN}-4.1.1-fix-build-with-libgcrypt-1.10.patch" ) +src_prepare() { + default + eautoreconf +} + src_install() { default dodoc UPGRADING
