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 B290915806E for ; Sat, 27 May 2023 22:02:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 80105E0878; Sat, 27 May 2023 22:02:52 +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 58D00E087A for ; Sat, 27 May 2023 22:02:52 +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 5173C335D6F for ; Sat, 27 May 2023 22:02:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AAF92A7B for ; Sat, 27 May 2023 22:02:49 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1685224885.5494d4f1a33ec80c13b6c53c8b17bff91dff19ac.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libnsutils/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libnsutils/libnsutils-9999.ebuild X-VCS-Directories: dev-libs/libnsutils/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 5494d4f1a33ec80c13b6c53c8b17bff91dff19ac X-VCS-Branch: master Date: Sat, 27 May 2023 22:02:49 +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: cb3d47bf-8e9f-4287-8375-0ca7d3e52ce9 X-Archives-Hash: cafb7cdbc2f02e4bf60bae54ad374922 commit: 5494d4f1a33ec80c13b6c53c8b17bff91dff19ac Author: Michael Orlitzky gentoo org> AuthorDate: Sat May 27 19:04:25 2023 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Sat May 27 22:01:25 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5494d4f1 dev-libs/libnsutils: add 9999 Signed-off-by: Michael Orlitzky gentoo.org> dev-libs/libnsutils/libnsutils-9999.ebuild | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/dev-libs/libnsutils/libnsutils-9999.ebuild b/dev-libs/libnsutils/libnsutils-9999.ebuild new file mode 100644 index 000000000000..648f7c466039 --- /dev/null +++ b/dev-libs/libnsutils/libnsutils-9999.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit git-r3 netsurf + +DESCRIPTION="C library for base64 and time" +HOMEPAGE="https://www.netsurf-browser.org/" + +EGIT_REPO_URI="https://git.netsurf-browser.org/${PN}.git" +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="" +IUSE="" + +BDEPEND="dev-util/netsurf-buildsystem" + +_emake() { + netsurf_define_makeconf + emake "${NETSURF_MAKECONF[@]}" COMPONENT_TYPE=lib-shared $@ +} + +src_compile() { + _emake +} + +src_install() { + _emake DESTDIR="${D}" install +}