From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 948A5138334 for ; Wed, 23 Oct 2019 12:21:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 62AF2E09D0; Wed, 23 Oct 2019 12:21:24 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 48FB8E09D0 for ; Wed, 23 Oct 2019 12:21:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D586B34C24C for ; Wed, 23 Oct 2019 12:21:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9BCDB779 for ; Wed, 23 Oct 2019 12:21:19 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1571833278.330895c1f0ccc8131bf8eb4e0b93778052c990a1.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/libmd/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/libmd/libmd-99999.ebuild X-VCS-Directories: app-crypt/libmd/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 330895c1f0ccc8131bf8eb4e0b93778052c990a1 X-VCS-Branch: master Date: Wed, 23 Oct 2019 12:21:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 392ec1ab-0c1c-4057-bb8e-f659f5e0ea0e X-Archives-Hash: d7338ba3999ad3b9736b7a0ea5fb7e50 commit: 330895c1f0ccc8131bf8eb4e0b93778052c990a1 Author: Jeroen Roovers gentoo org> AuthorDate: Wed Oct 23 12:19:56 2019 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Wed Oct 23 12:21:18 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=330895c1 app-crypt/libmd: Add live ebuild Package-Manager: Portage-2.3.77, Repoman-2.3.17 Signed-off-by: Jeroen Roovers gentoo.org> app-crypt/libmd/libmd-99999.ebuild | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/app-crypt/libmd/libmd-99999.ebuild b/app-crypt/libmd/libmd-99999.ebuild new file mode 100644 index 00000000000..c0ad8d6375b --- /dev/null +++ b/app-crypt/libmd/libmd-99999.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit autotools git-r3 + +DESCRIPTION="Message Digest functions from BSD systems" +HOMEPAGE="https://www.hadrons.org/software/libmd/" +EGIT_REPO_URI="https://git.hadrons.org/git/libmd.git" + +LICENSE="|| ( BSD BSD-2 ISC BEER-WARE public-domain )" +SLOT="0" +KEYWORDS="" +IUSE="static-libs" + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf $(use_enable static-libs static) +} + +src_install() { + default + + find "${ED}" -name '*.la' -delete || die +}