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 D241615806E for ; Sat, 27 May 2023 22:02:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1BFA6E0805; Sat, 27 May 2023 22:02:52 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 050DAE0805 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 0C7E8335C5D 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 701F6A71 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: <1685224884.1febf678d8ed530256baf273d851a0227cc7db61.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libnsgif/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libnsgif/libnsgif-9999.ebuild X-VCS-Directories: media-libs/libnsgif/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 1febf678d8ed530256baf273d851a0227cc7db61 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: 44e48708-d222-441c-bd47-9519cae10f86 X-Archives-Hash: 1037f0ebac659d9d2cda60e18988746a commit: 1febf678d8ed530256baf273d851a0227cc7db61 Author: Michael Orlitzky gentoo org> AuthorDate: Sat May 27 18:27:18 2023 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Sat May 27 22:01:24 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1febf678 media-libs/libnsgif: add 9999 Signed-off-by: Michael Orlitzky gentoo.org> media-libs/libnsgif/libnsgif-9999.ebuild | 37 ++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/media-libs/libnsgif/libnsgif-9999.ebuild b/media-libs/libnsgif/libnsgif-9999.ebuild new file mode 100644 index 000000000000..53cb45fba3c3 --- /dev/null +++ b/media-libs/libnsgif/libnsgif-9999.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit git-r3 netsurf + +DESCRIPTION="decoding library for the GIF image file format, written in C" +HOMEPAGE="https://www.netsurf-browser.org/projects/libnsgif/" + +EGIT_REPO_URI="https://git.netsurf-browser.org/${PN}.git" +LICENSE="MIT" +SLOT="0" +KEYWORDS="" +IUSE="" + +BDEPEND=" + dev-util/netsurf-buildsystem + virtual/pkgconfig +" + +src_prepare() { + default +} + +_emake() { + netsurf_define_makeconf + emake "${NETSURF_MAKECONF[@]}" COMPONENT_TYPE=lib-shared $@ +} + +src_compile() { + _emake +} + +src_install() { + _emake DESTDIR="${D}" install +}