You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
1.9 KiB
82 lines
1.9 KiB
5 years ago
|
# Copyright 1999-2020 Gentoo Authors
|
||
5 years ago
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=7
|
||
|
|
||
|
inherit toolchain-funcs multilib-minimal
|
||
|
|
||
|
DESCRIPTION="Console utility and library for computing and verifying file hash sums"
|
||
|
HOMEPAGE="http://rhash.sourceforge.net/"
|
||
|
SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.gz"
|
||
|
|
||
|
LICENSE="MIT"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
|
||
|
IUSE="debug nls libressl ssl static-libs"
|
||
|
|
||
|
RDEPEND="
|
||
|
ssl? (
|
||
|
!libressl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] )
|
||
|
libressl? ( dev-libs/libressl:0=[${MULTILIB_USEDEP}] )
|
||
|
)"
|
||
|
|
||
|
DEPEND="
|
||
|
${RDEPEND}
|
||
|
"
|
||
|
|
||
|
BDEPEND="
|
||
|
nls? ( sys-devel/gettext )
|
||
|
"
|
||
|
|
||
|
S="${WORKDIR}/RHash-${PV}"
|
||
|
|
||
|
PATCHES=(
|
||
|
"${FILESDIR}"/${P}-nls.patch
|
||
5 years ago
|
# Fixes for https://github.com/rhash/RHash/issues/104
|
||
|
# and https://github.com/rhash/RHash/issues/106
|
||
5 years ago
|
"${FILESDIR}"/${P}-rc-segfault.patch
|
||
5 years ago
|
)
|
||
|
|
||
|
src_prepare() {
|
||
|
default
|
||
|
multilib_copy_sources
|
||
|
}
|
||
|
|
||
|
multilib_src_configure() {
|
||
|
set -- \
|
||
|
./configure \
|
||
|
--target="${CHOST}" \
|
||
|
--cc="$(tc-getCC)" \
|
||
|
--ar="$(tc-getAR)" \
|
||
|
--extra-cflags="${CFLAGS}" \
|
||
|
--extra-ldflags="${LDFLAGS}" \
|
||
|
--prefix="${EPREFIX}"/usr \
|
||
|
--libdir="${EPREFIX}"/usr/$(get_libdir) \
|
||
|
--sysconfdir="${EPREFIX}"/etc \
|
||
|
--disable-openssl-runtime \
|
||
|
--disable-static \
|
||
|
--enable-lib-shared \
|
||
|
$(use_enable debug) \
|
||
|
$(use_enable nls gettext) \
|
||
|
$(use_enable ssl openssl) \
|
||
|
$(use_enable static-libs lib-static)
|
||
|
|
||
|
echo "${@}"
|
||
|
"${@}" || die "configure failed"
|
||
|
}
|
||
|
|
||
|
# We would add compile-gmo to the build targets but install-gmo always
|
||
|
# recompiles unconditionally. :(
|
||
|
|
||
|
multilib_src_install() {
|
||
|
# -j1 needed due to race condition.
|
||
|
emake DESTDIR="${D}" -j1 \
|
||
5 years ago
|
install{,-lib-headers,-pkg-config} \
|
||
|
$(use nls && echo install-gmo) \
|
||
|
$(use kernel_Winnt || echo install-lib-so-link)
|
||
5 years ago
|
}
|
||
|
|
||
|
multilib_src_test() {
|
||
|
emake test
|
||
|
}
|