mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
Bug: https://bugs.gentoo.org/473598 Bug: https://bugs.gentoo.org/720224 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
29 lines
821 B
Bash
29 lines
821 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
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 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos ~x64-solaris"
|
|
|
|
RDEPEND="!<dev-libs/openssl-1.0.2d-r1:0"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_configure() {
|
|
sed \
|
|
-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 c_rehash
|
|
}
|