diff options
author | James Le Cuirot <chewi@gentoo.org> | 2016-09-16 22:24:33 +0100 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2016-09-16 22:26:47 +0100 |
commit | c7c3e65f4e8bf5529ba68964106ec22cdba3eb2a (patch) | |
tree | e5a0635ff05867e52a3f1799ff29c371fdeef22b /app-crypt/rhash | |
parent | app-crypt/rhash: Add myself as co-maintainer (diff) | |
download | gentoo-c7c3e65f4e8bf5529ba68964106ec22cdba3eb2a.tar.gz gentoo-c7c3e65f4e8bf5529ba68964106ec22cdba3eb2a.tar.bz2 gentoo-c7c3e65f4e8bf5529ba68964106ec22cdba3eb2a.zip |
app-crypt/rhash: Install libs, respect flags, nls, openssl, tests
* Install the shared and (optionally) static libraries.
* Multilib support for the libraries.
* Respect CC, CFLAGS, LDFLAGS.
* gettext support via nls flag.
* Additional hash support via openssl.
* Passing test suite.
* Disable debug by default.
These changes were made with sbraz's blessing. Thanks to Raimonds
Cicans for the initial work behind this.
Package-Manager: portage-2.3.0
Diffstat (limited to 'app-crypt/rhash')
-rw-r--r-- | app-crypt/rhash/metadata.xml | 3 | ||||
-rw-r--r-- | app-crypt/rhash/rhash-1.3.3-r1.ebuild | 59 | ||||
-rw-r--r-- | app-crypt/rhash/rhash-1.3.3.ebuild | 19 |
3 files changed, 62 insertions, 19 deletions
diff --git a/app-crypt/rhash/metadata.xml b/app-crypt/rhash/metadata.xml index f9ec359d15b3..44a7a98b4208 100644 --- a/app-crypt/rhash/metadata.xml +++ b/app-crypt/rhash/metadata.xml @@ -18,6 +18,9 @@ <remote-id type="github">rhash/RHash</remote-id> <bugs-to>https://github.com/rhash/RHash/issues</bugs-to> </upstream> + <use> + <flag name='openssl'>Add support for hashes from dev-libs/openssl</flag> + </use> <longdescription lang="en"> RHash is a console utility for calculation and verification of magnet links and a wide range of hash sums like CRC32, MD4, MD5, SHA1, SHA256, SHA512, SHA3, AICH, ED2K, Tiger, DC++ TTH, BitTorrent BTIH, GOST R 34.11-94, RIPEMD-160, HAS-160, EDON-R, Whirlpool and Snefru. </longdescription> diff --git a/app-crypt/rhash/rhash-1.3.3-r1.ebuild b/app-crypt/rhash/rhash-1.3.3-r1.ebuild new file mode 100644 index 000000000000..585a54a7c3e2 --- /dev/null +++ b/app-crypt/rhash/rhash-1.3.3-r1.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit toolchain-funcs multilib-minimal + +DESCRIPTION="Console utility and library for computing and verifying file hash sums" +HOMEPAGE="http://rhash.anz.ru/" +SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug nls openssl static-libs" + +RDEPEND="openssl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] )" + +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext )" + +src_prepare() { + default + + # Exit on test failure or src_test will always succeed. + sed -i "s/return 1/exit 1/g" tests/test_rhash.sh || die + + multilib_copy_sources +} + +multilib_src_compile() { + local ADDCFLAGS=( + $(use debug || echo -DNDEBUG) + $(use nls && echo -DUSE_GETTEXT) + $(use openssl && echo -DOPENSSL_RUNTIME -rdynamic) + ) + + local ADDLDFLAGS=( + $(use openssl && echo -ldl) + ) + + emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)" \ + ADDCFLAGS="${ADDCFLAGS[*]}" ADDLDFLAGS="${ADDLDFLAGS[*]}" \ + $(multilib_is_native_abi && echo build-shared || echo lib-shared) \ + $(use static-libs && echo lib-static) +} + +multilib_src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr LIBDIR='$(PREFIX)'/$(get_libdir) \ + install-lib-shared $(multilib_is_native_abi && echo install-shared) \ + $(use static-libs && echo install-lib-static) \ + $(use nls && multilib_is_native_abi && echo install-gmo) +} + +multilib_src_test() { + cd tests || die + ./test_rhash.sh --full ../rhash_shared || die "tests failed" +} diff --git a/app-crypt/rhash/rhash-1.3.3.ebuild b/app-crypt/rhash/rhash-1.3.3.ebuild deleted file mode 100644 index b11f9cfe4e35..000000000000 --- a/app-crypt/rhash/rhash-1.3.3.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=6 - -DESCRIPTION="Console utility for computing and verifying hash sums of files" -HOMEPAGE="http://rhash.anz.ru/" -SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -src_install() { - emake DESTDIR="${D}" PREFIX=/usr install - einstalldocs -} |