commit:     07c478522a0b5be995eb0cd74a95f74f48872068
Author:     Virgil Dupras <vdupras <AT> gentoo <DOT> org>
AuthorDate: Mon Feb  4 21:20:40 2019 +0000
Commit:     Virgil Dupras <vdupras <AT> gentoo <DOT> org>
CommitDate: Mon Feb  4 21:20:40 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07c47852

dev-util/netsurf-buildsystem: build with empty WARNINGFLAGS

Closes: https://bugs.gentoo.org/642164
Signed-off-by: Virgil Dupras <vdupras <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 .../netsurf-buildsystem/files/gentoo-helpers-r1.sh | 19 ++++++++++++++++
 .../netsurf-buildsystem-1.7-r1.ebuild              | 26 ++++++++++++++++++++++
 2 files changed, 45 insertions(+)

diff --git a/dev-util/netsurf-buildsystem/files/gentoo-helpers-r1.sh 
b/dev-util/netsurf-buildsystem/files/gentoo-helpers-r1.sh
new file mode 100644
index 00000000000..9ac4354e386
--- /dev/null
+++ b/dev-util/netsurf-buildsystem/files/gentoo-helpers-r1.sh
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+netsurf_define_makeconf() {
+       NETSURF_MAKECONF=(
+               NSSHARED="${EROOT}"/usr/share/netsurf-buildsystem
+               LIBDIR="$(get_libdir)"
+               PREFIX="${EROOT}/usr"
+               Q=
+               CC="$(tc-getCC)"
+               LD="$(tc-getLD)"
+               HOST_CC="\$(CC)"
+               CCOPT=
+               CCNOOPT=
+               CCDBG=
+               LDDBG=
+               AR="$(tc-getAR)"
+               WARNFLAGS=
+       )
+}

diff --git a/dev-util/netsurf-buildsystem/netsurf-buildsystem-1.7-r1.ebuild 
b/dev-util/netsurf-buildsystem/netsurf-buildsystem-1.7-r1.ebuild
new file mode 100644
index 00000000000..3cae740cce6
--- /dev/null
+++ b/dev-util/netsurf-buildsystem/netsurf-buildsystem-1.7-r1.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_P="buildsystem-${PV}"
+DESCRIPTION="Build system used for netsurf and its libs"
+HOMEPAGE="https://www.netsurf-browser.org";
+SRC_URI="https://download.netsurf-browser.org/libs/releases/${MY_P}.tar.gz";
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~m68k-mint"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+       default
+       sed -e 's:/bin/which:which:' -i "makefiles/Makefile.tools" || die
+}
+
+src_install() {
+       emake DESTDIR="${ED}" PREFIX=/usr install
+       insinto /usr/share/netsurf-buildsystem
+       newins "${FILESDIR}/gentoo-helpers-r1.sh" gentoo-helpers.sh
+}

Reply via email to