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 1F50E138334 for ; Mon, 30 Sep 2019 07:18:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 577C5E08EF; Mon, 30 Sep 2019 07:18:56 +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 39111E08EF for ; Mon, 30 Sep 2019 07:18:56 +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 26D8D34B6F6 for ; Mon, 30 Sep 2019 07:18:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5815B7F8 for ; Mon, 30 Sep 2019 07:18:52 +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: <1569827930.30cadf328c285f1d333c03269f326a0dd610233d.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libnet/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libnet/libnet-1.2.9999.ebuild X-VCS-Directories: net-libs/libnet/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 30cadf328c285f1d333c03269f326a0dd610233d X-VCS-Branch: master Date: Mon, 30 Sep 2019 07:18:52 +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: edf6d164-4382-4add-b4d8-8b73ce5faea1 X-Archives-Hash: 9258e9cc5e9ddcf6d463f8fdabe3a92c commit: 30cadf328c285f1d333c03269f326a0dd610233d Author: Jeroen Roovers gentoo org> AuthorDate: Mon Sep 30 07:18:08 2019 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Mon Sep 30 07:18:50 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30cadf32 net-libs/libnet: Add live ebuild Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Jeroen Roovers gentoo.org> net-libs/libnet/libnet-1.2.9999.ebuild | 46 ++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/net-libs/libnet/libnet-1.2.9999.ebuild b/net-libs/libnet/libnet-1.2.9999.ebuild new file mode 100644 index 00000000000..1059f3a86ce --- /dev/null +++ b/net-libs/libnet/libnet-1.2.9999.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit autotools git-r3 + +DESCRIPTION="library providing an API for commonly used low-level network functions" +HOMEPAGE="http://libnet-dev.sourceforge.net/ https://github.com/sam-github/libnet" +EGIT_REPO_URI="https://github.com/sam-github/libnet" + +LICENSE="BSD BSD-2 HPND" +SLOT="1.1" +KEYWORDS="" +IUSE="doc static-libs" + +DOCS=( + README.md doc/{CHANGELOG,CONTRIB,DESIGN_NOTES,MIGRATION} + doc/{PACKET_BUILDING,PORTED,RAWSOCKET_NON_SEQUITUR,TODO} +) +S=${WORKDIR}/${P/_/-} +PATCHES=( + "${FILESDIR}"/${PN}-1.2-socklen_t.patch +) + +src_prepare() { + default + + eautoreconf +} + +src_configure() { + econf $(use_enable static-libs static) +} + +src_install() { + default + + if use doc ; then + docinto html + dodoc -r doc/html/* + docinto sample + dodoc sample/*.[ch] + fi + + find "${D}" -name '*.la' -delete || die +}