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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 29B81158CBB for ; Mon, 8 May 2023 18:41:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 49548E08A6; Mon, 8 May 2023 18:41:53 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2CF70E08A5 for ; Mon, 8 May 2023 18:41:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 29E01340E92 for ; Mon, 8 May 2023 18:41:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 82C44A44 for ; Mon, 8 May 2023 18:41:50 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1683571203.4b2f72d8928dce445a04881cb68984b3a0bf461d.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-forensics/pasco/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-forensics/pasco/pasco-20040505_p1-r2.ebuild X-VCS-Directories: app-forensics/pasco/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 4b2f72d8928dce445a04881cb68984b3a0bf461d X-VCS-Branch: master Date: Mon, 8 May 2023 18:41:50 +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: c5f93e5b-b843-4541-8488-b4df7abca96b X-Archives-Hash: 3018d2a5e86922aa9fde3786c7813317 commit: 4b2f72d8928dce445a04881cb68984b3a0bf461d Author: Michael Mair-Keimberger levelnine at> AuthorDate: Sun May 7 15:04:18 2023 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Mon May 8 18:40:03 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b2f72d8 app-forensics/pasco: EAPI8 bump Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Conrad Kostecki gentoo.org> app-forensics/pasco/pasco-20040505_p1-r2.ebuild | 31 +++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/app-forensics/pasco/pasco-20040505_p1-r2.ebuild b/app-forensics/pasco/pasco-20040505_p1-r2.ebuild new file mode 100644 index 000000000000..b1e7a5ee7fd1 --- /dev/null +++ b/app-forensics/pasco/pasco-20040505_p1-r2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +MY_P="${PN}_${PV/_p/_}" + +DESCRIPTION="IE Activity Parser" +HOMEPAGE="https://sourceforge.net/projects/odessa/" +SRC_URI="mirror://sourceforge/odessa/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}/src" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +PATCHES=( + "${FILESDIR}"/${P}-fix-build-system.patch + "${FILESDIR}"/${P}-Wimplicit-function-declaration.patch +) + +src_configure() { + tc-export CC +} + +src_install() { + dobin ${PN} + dodoc ../{CHANGES,Readme.txt} +}