diff options
author | James Le Cuirot <chewi@gentoo.org> | 2022-04-16 22:01:17 +0100 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2022-04-16 22:01:17 +0100 |
commit | b84e82ed10075b598f31400a83fd2fc4ae05d602 (patch) | |
tree | 59a42d0890884ef6c34e12d056b4357c7025f29f /app-emulation/aranym | |
parent | app-emulation/aranym: Export the build environment for configure (diff) | |
download | gentoo-b84e82ed10075b598f31400a83fd2fc4ae05d602.tar.gz gentoo-b84e82ed10075b598f31400a83fd2fc4ae05d602.tar.bz2 gentoo-b84e82ed10075b598f31400a83fd2fc4ae05d602.zip |
app-emulation/aranym: Respect the AR environment variable
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'app-emulation/aranym')
-rw-r--r-- | app-emulation/aranym/aranym-1.1.0.ebuild | 1 | ||||
-rw-r--r-- | app-emulation/aranym/files/aranym-1.1.0-ar.patch | 24 |
2 files changed, 25 insertions, 0 deletions
diff --git a/app-emulation/aranym/aranym-1.1.0.ebuild b/app-emulation/aranym/aranym-1.1.0.ebuild index ac7ca441637a..291f5a97220e 100644 --- a/app-emulation/aranym/aranym-1.1.0.ebuild +++ b/app-emulation/aranym/aranym-1.1.0.ebuild @@ -39,6 +39,7 @@ BDEPEND="virtual/pkgconfig" PATCHES=( "${FILESDIR}"/${PN}-1.1.0-conditional-installs.patch "${FILESDIR}"/${PN}-1.1.0-libcwrap.patch + "${FILESDIR}"/${PN}-1.1.0-ar.patch ) ECONF_SOURCE="${S}" diff --git a/app-emulation/aranym/files/aranym-1.1.0-ar.patch b/app-emulation/aranym/files/aranym-1.1.0-ar.patch new file mode 100644 index 000000000000..55026a626334 --- /dev/null +++ b/app-emulation/aranym/files/aranym-1.1.0-ar.patch @@ -0,0 +1,24 @@ +From 9d8586fe8b0f210b2a2d3f5e6f710993015945aa Mon Sep 17 00:00:00 2001 +From: James Le Cuirot <chewi@gentoo.org> +Date: Sat, 16 Apr 2022 21:51:04 +0100 +Subject: [PATCH] Respect the AR environment variable when building + +--- + configure.ac | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/configure.ac b/configure.ac +index 14eedb5f..8d425dee 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -371,6 +371,7 @@ AC_PROG_MAKE_SET + AC_PROG_INSTALL + AC_PROG_MKDIR_P + AC_PROG_RANLIB ++AM_PROG_AR + AC_PATH_PROG(PERL, perl) + AC_CHECK_TOOLS(WINDRES, [windres], :) + PKG_PROG_PKG_CONFIG +-- +2.34.1 + |