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 457A6138334 for ; Thu, 4 Apr 2019 10:12:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0CCB6E0882; Thu, 4 Apr 2019 10:12:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 D30A8E0882 for ; Thu, 4 Apr 2019 10:12:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 2AA5E335CED for ; Thu, 4 Apr 2019 10:12:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 53C06326 for ; Thu, 4 Apr 2019 10:12:31 +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: <1554372748.5e96b3523a39ff7fd2c8470477c5dfb3ea442894.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libmaxminddb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libmaxminddb/libmaxminddb-99999.ebuild X-VCS-Directories: dev-libs/libmaxminddb/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 5e96b3523a39ff7fd2c8470477c5dfb3ea442894 X-VCS-Branch: master Date: Thu, 4 Apr 2019 10:12:31 +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: 5313f3d5-3599-44d3-8b65-56a9b4b7b566 X-Archives-Hash: f618da4a980cfb3b85ada5b69712d15a commit: 5e96b3523a39ff7fd2c8470477c5dfb3ea442894 Author: Jeroen Roovers gentoo org> AuthorDate: Thu Apr 4 10:11:17 2019 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Thu Apr 4 10:12:28 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e96b352 dev-libs/libmaxminddb: Add live ebuild Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Jeroen Roovers gentoo.org> dev-libs/libmaxminddb/libmaxminddb-99999.ebuild | 31 +++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/dev-libs/libmaxminddb/libmaxminddb-99999.ebuild b/dev-libs/libmaxminddb/libmaxminddb-99999.ebuild new file mode 100644 index 00000000000..22ef31d4093 --- /dev/null +++ b/dev-libs/libmaxminddb/libmaxminddb-99999.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit autotools git-r3 + +DESCRIPTION="C library for the MaxMind DB file format" +HOMEPAGE="https://github.com/maxmind/libmaxminddb" +EGIT_REPO_URI="${HOMEPAGE}" + +LICENSE="Apache-2.0" +SLOT="0/0.0.7" +KEYWORDS="" +IUSE="static-libs" + +DOCS=( Changes.md ) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf $(use_enable static-libs static) +} + +src_install() { + default + + find "${ED}" -name '*.la' -delete || die +}