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 BD9BF1382C5 for ; Wed, 17 Jun 2020 13:38:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70F96E0B33; Wed, 17 Jun 2020 13:38:47 +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 5870FE0B33 for ; Wed, 17 Jun 2020 13:38:47 +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 3F62134F314 for ; Wed, 17 Jun 2020 13:38:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7B79E2B0 for ; Wed, 17 Jun 2020 13:38:42 +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: <1592401103.84d9dafca0c8092c1d07bee36410e1f5a950db07.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-0.2.1-r2.ebuild X-VCS-Directories: media-libs/libnsgif/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 84d9dafca0c8092c1d07bee36410e1f5a950db07 X-VCS-Branch: master Date: Wed, 17 Jun 2020 13:38:42 +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: 4c7cc861-4db2-45db-85b4-3a52b74e70a1 X-Archives-Hash: 37fd7671ef6c7ef8a818205ccd723131 commit: 84d9dafca0c8092c1d07bee36410e1f5a950db07 Author: Michael Orlitzky gentoo org> AuthorDate: Wed Jun 17 12:58:43 2020 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Wed Jun 17 13:38:23 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84d9dafc media-libs/libnsgif: new revision to fix $D/$ED mixup at install-time. Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Michael Orlitzky gentoo.org> media-libs/libnsgif/libnsgif-0.2.1-r2.ebuild | 40 ++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/media-libs/libnsgif/libnsgif-0.2.1-r2.ebuild b/media-libs/libnsgif/libnsgif-0.2.1-r2.ebuild new file mode 100644 index 00000000000..a2572cad5ac --- /dev/null +++ b/media-libs/libnsgif/libnsgif-0.2.1-r2.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="decoding library for the GIF image file format, written in C" +HOMEPAGE="https://www.netsurf-browser.org/projects/libnsgif/" +SRC_URI="https://download.netsurf-browser.org/libs/releases/${P}-src.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~m68k-mint" +IUSE="" + +BDEPEND=" + >=dev-util/netsurf-buildsystem-1.7-r1 + virtual/pkgconfig +" + +src_prepare() { + default + sed -e '1i#pragma GCC diagnostic ignored "-Wimplicit-fallthrough"' \ + -i src/lzw.c || die +} + +_emake() { + source /usr/share/netsurf-buildsystem/gentoo-helpers.sh + netsurf_define_makeconf + emake "${NETSURF_MAKECONF[@]}" COMPONENT_TYPE=lib-shared $@ +} + +src_compile() { + _emake +} + +src_install() { + _emake DESTDIR="${D}" install +}