Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libmaxminddb/
Date: Thu, 04 Apr 2019 10:12:36
Message-Id: 1554372748.5e96b3523a39ff7fd2c8470477c5dfb3ea442894.jer@gentoo
1 commit: 5e96b3523a39ff7fd2c8470477c5dfb3ea442894
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 4 10:11:17 2019 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 4 10:12:28 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e96b352
7
8 dev-libs/libmaxminddb: Add live ebuild
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
12
13 dev-libs/libmaxminddb/libmaxminddb-99999.ebuild | 31 +++++++++++++++++++++++++
14 1 file changed, 31 insertions(+)
15
16 diff --git a/dev-libs/libmaxminddb/libmaxminddb-99999.ebuild b/dev-libs/libmaxminddb/libmaxminddb-99999.ebuild
17 new file mode 100644
18 index 00000000000..22ef31d4093
19 --- /dev/null
20 +++ b/dev-libs/libmaxminddb/libmaxminddb-99999.ebuild
21 @@ -0,0 +1,31 @@
22 +# Copyright 1999-2019 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +inherit autotools git-r3
27 +
28 +DESCRIPTION="C library for the MaxMind DB file format"
29 +HOMEPAGE="https://github.com/maxmind/libmaxminddb"
30 +EGIT_REPO_URI="${HOMEPAGE}"
31 +
32 +LICENSE="Apache-2.0"
33 +SLOT="0/0.0.7"
34 +KEYWORDS=""
35 +IUSE="static-libs"
36 +
37 +DOCS=( Changes.md )
38 +
39 +src_prepare() {
40 + default
41 + eautoreconf
42 +}
43 +
44 +src_configure() {
45 + econf $(use_enable static-libs static)
46 +}
47 +
48 +src_install() {
49 + default
50 +
51 + find "${ED}" -name '*.la' -delete || die
52 +}