diff options
author | David Michael <fedora.dm0@gmail.com> | 2021-03-26 20:48:10 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-03-26 20:48:10 +0100 |
commit | 5e3bef0cc369d7eed26769ea6bc3419046220037 (patch) | |
tree | 0e45b16f0558fd8697ea04e396957110d6185ac2 /app-misc/c_rehash | |
parent | dev-lang/rakudo: drop old version (diff) | |
download | gentoo-5e3bef0cc369d7eed26769ea6bc3419046220037.tar.gz gentoo-5e3bef0cc369d7eed26769ea6bc3419046220037.tar.bz2 gentoo-5e3bef0cc369d7eed26769ea6bc3419046220037.zip |
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@gmail.com>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-misc/c_rehash')
-rw-r--r-- | app-misc/c_rehash/c_rehash-1.7-r1.ebuild | 13 |
1 files 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 4f631bdca8e1..5ad7624ea5b6 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 } |