commit: 5e3bef0cc369d7eed26769ea6bc3419046220037 Author: David Michael <fedora.dm0 <AT> gmail <DOT> com> AuthorDate: Fri Mar 26 19:48:10 2021 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Fri Mar 26 19:48:10 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e3bef0c
app-misc/c_rehash: EAPI 7 Closes: https://bugs.gentoo.org/757555 Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: David Michael <fedora.dm0 <AT> gmail.com> Signed-off-by: David Seifert <soap <AT> gentoo.org> app-misc/c_rehash/c_rehash-1.7-r1.ebuild | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/app-misc/c_rehash/c_rehash-1.7-r1.ebuild b/app-misc/c_rehash/c_rehash-1.7-r1.ebuild index 4f631bdca8e..5ad7624ea5b 100644 --- a/app-misc/c_rehash/c_rehash-1.7-r1.ebuild +++ b/app-misc/c_rehash/c_rehash-1.7-r1.ebuild @@ -1,31 +1,28 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 DESCRIPTION="c_rehash script from OpenSSL" HOMEPAGE="https://www.openssl.org/ https://github.com/pld-linux/openssl/" SRC_URI="https://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/openssl/openssl-c_rehash.sh?rev=${PV} -> openssl-c_rehash.sh.${PV}" +S="${WORKDIR}" LICENSE="openssl" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt" -IUSE="" RDEPEND="!<dev-libs/openssl-1.0.2d-r1:0" DEPEND="${RDEPEND}" -S=${WORKDIR} - -src_prepare() { - SSL_CNF_DIR="/etc/ssl" +src_configure() { sed \ - -e "/^DIR=/s:=.*:=${EPREFIX}${SSL_CNF_DIR}:" \ + -e "/^DIR=/s:=.*:=${EPREFIX}/etc/ssl:" \ -e "s:SSL_CMD=/usr:SSL_CMD=${EPREFIX}/usr:" \ "${DISTDIR}"/openssl-c_rehash.sh.${PV} \ > "${WORKDIR}"/c_rehash || die #416717 } src_install() { - dobin "${WORKDIR}"/c_rehash + dobin c_rehash }
