dev-util/netsurf-buildsystem: build with empty WARNINGFLAGS
authorVirgil Dupras <vdupras@gentoo.org>
Mon, 4 Feb 2019 21:20:40 +0000 (16:20 -0500)
committerVirgil Dupras <vdupras@gentoo.org>
Mon, 4 Feb 2019 21:20:40 +0000 (16:20 -0500)
Closes: https://bugs.gentoo.org/642164
Signed-off-by: Virgil Dupras <vdupras@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

dev-util/netsurf-buildsystem/files/gentoo-helpers-r1.sh [new file with mode: 0644]
dev-util/netsurf-buildsystem/netsurf-buildsystem-1.7-r1.ebuild [new file with mode: 0644]

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 (file)
index 0000000..9ac4354
--- /dev/null
@@ -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 (file)
index 0000000..3cae740
--- /dev/null
@@ -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
+}