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 AA909138335 for ; Wed, 8 May 2019 22:56:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3DC5EE08C8; Wed, 8 May 2019 22:56:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 062C0E08CD for ; Wed, 8 May 2019 22:56:56 +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 5BFFD343D9C for ; Wed, 8 May 2019 22:56:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6BF6A5DF for ; Wed, 8 May 2019 22:56:53 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1557356172.3111c1f0ff244182fc5439fabba161b2b58c33b0.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libidmef/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libidmef/libidmef-1.0.3-r1.ebuild X-VCS-Directories: dev-libs/libidmef/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 3111c1f0ff244182fc5439fabba161b2b58c33b0 X-VCS-Branch: master Date: Wed, 8 May 2019 22:56:53 +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: 3bdb6f97-d9d1-40c6-9ce9-415bef7af39f X-Archives-Hash: f9b8e49a34b374a97455a199dbe2994b commit: 3111c1f0ff244182fc5439fabba161b2b58c33b0 Author: Michael Mair-Keimberger gmail com> AuthorDate: Mon May 6 18:32:29 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed May 8 22:56:12 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3111c1f0 dev-libs/libidmef: EAPI=7 update Closes: https://bugs.gentoo.org/685218 Signed-off-by: Michael Mair-Keimberger gmail.com> Closes: https://github.com/gentoo/gentoo/pull/11921 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/libidmef/libidmef-1.0.3-r1.ebuild | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/dev-libs/libidmef/libidmef-1.0.3-r1.ebuild b/dev-libs/libidmef/libidmef-1.0.3-r1.ebuild new file mode 100644 index 00000000000..e7cba52e4f7 --- /dev/null +++ b/dev-libs/libidmef/libidmef-1.0.3-r1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Implementation of the IDMEF XML draft" +HOMEPAGE="https://sourceforge.net/projects/libidmef/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug static-libs" + +DEPEND=">=dev-libs/libxml2-2.5.10" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${PN}" + +src_configure() { + econf \ + $(use_enable debug) \ + $(use_enable static-libs static) +}