Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/libmd/
Date: Wed, 24 Oct 2018 05:40:23
Message-Id: 1540359594.ade95aff9f80ab44772817f6a997d8e57b06dca1.jer@gentoo
1 commit: ade95aff9f80ab44772817f6a997d8e57b06dca1
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 24 05:37:38 2018 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 24 05:39:54 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ade95aff
7
8 app-crypt/libmd: Version 1.0.1
9
10 Package-Manager: Portage-2.3.51, Repoman-2.3.11
11 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
12
13 app-crypt/libmd/Manifest | 1 +
14 app-crypt/libmd/libmd-1.0.1.ebuild | 26 ++++++++++++++++++++++++++
15 2 files changed, 27 insertions(+)
16
17 diff --git a/app-crypt/libmd/Manifest b/app-crypt/libmd/Manifest
18 index 2144e6d299f..cbd59f348c4 100644
19 --- a/app-crypt/libmd/Manifest
20 +++ b/app-crypt/libmd/Manifest
21 @@ -1 +1,2 @@
22 DIST libmd-1.0.0.tar.xz 254852 BLAKE2B af0d3c645a18262965e708d678cb30c7ed168af8055885b08084fafd7299e9aaea95efb8437ffa756e43c5bb75fac99af067c6a560f3bb2b8b93ee889d5e664b SHA512 54c3cae1308f7686a1f642d25ae5d8cfb0fce2b98b33cf5e2891682893715c7de7e9700c70a6bd7e4ab4cf7f54c87643b259319e09e03f529b70d273477fc8be
23 +DIST libmd-1.0.1.tar.xz 257372 BLAKE2B e954ab6b1247952abcf6964d8d714c2a47a644e206a455db547a0159a97ebbc323cf1258a24c744cea3106f267f1a319a689fe545b672580f4e134d96cc7cb3d SHA512 6f343101f9ad8f927d862e6bae948d35ba596ecfd375c255fefb86efc621cf6e9de3597770ad66e0a48e8f4ea018df78debb571ea6746a7457d8900fec87069b
24
25 diff --git a/app-crypt/libmd/libmd-1.0.1.ebuild b/app-crypt/libmd/libmd-1.0.1.ebuild
26 new file mode 100644
27 index 00000000000..fb6a517f9fb
28 --- /dev/null
29 +++ b/app-crypt/libmd/libmd-1.0.1.ebuild
30 @@ -0,0 +1,26 @@
31 +# Copyright 1999-2018 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +inherit multilib
36 +
37 +DESCRIPTION="Message Digest functions from BSD systems"
38 +HOMEPAGE="https://www.hadrons.org/software/libmd/"
39 +SRC_URI="https://archive.hadrons.org/software/libmd/${P}.tar.xz"
40 +
41 +LICENSE="|| ( BSD BSD-2 ISC BEER-WARE public-domain )"
42 +SLOT="0"
43 +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
44 +IUSE="static-libs"
45 +
46 +src_configure() {
47 + econf $(use_enable static-libs static)
48 +}
49 +
50 +src_install() {
51 + default
52 +
53 + if ! use static-libs; then
54 + rm "${D}"/usr/$(get_libdir)/libmd.la || die
55 + fi
56 +}