commit:     7ed0ae464e3dcf8d031ef2dad13878498ad3b610
Author:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 17 11:44:50 2020 +0000
Commit:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Wed Jun 17 13:38:19 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ed0ae46

dev-libs/libparserutils: new revision to fix D/ED confusion.

The "install" targets should be using $D with the latest version of
netsurf-buildsystem, but were using $ED. This new revision changes
it. There's no risk of breakage with older netsurf-buildsystem,
because it never worked to begin with.

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>

 .../libparserutils/libparserutils-0.2.4-r2.ebuild  | 44 ++++++++++++++++++++++
 1 file changed, 44 insertions(+)

diff --git a/dev-libs/libparserutils/libparserutils-0.2.4-r2.ebuild 
b/dev-libs/libparserutils/libparserutils-0.2.4-r2.ebuild
new file mode 100644
index 00000000000..da1c2cd28a7
--- /dev/null
+++ b/dev-libs/libparserutils/libparserutils-0.2.4-r2.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic toolchain-funcs
+
+DESCRIPTION="C library for building efficient parsers"
+HOMEPAGE="http://www.netsurf-browser.org/projects/libparserutils/";
+SRC_URI="https://download.netsurf-browser.org/libs/releases/${P}-src.tar.gz";
+
+LICENSE="MIT"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~m68k-mint"
+IUSE="iconv test"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+       >=dev-util/netsurf-buildsystem-1.7-r1
+       test? ( dev-lang/perl )"
+
+DOCS=( README docs/Todo )
+
+src_configure() {
+       append-cflags "-D$(usex iconv WITH WITHOUT)_ICONV_FILTER"
+}
+
+_emake() {
+       source /usr/share/netsurf-buildsystem/gentoo-helpers.sh
+       netsurf_define_makeconf
+       emake "${NETSURF_MAKECONF[@]}" COMPONENT_TYPE=lib-shared $@
+}
+
+src_compile() {
+       _emake
+}
+
+src_test() {
+       _emake test
+}
+
+src_install() {
+       _emake DESTDIR="${D}" install
+}

Reply via email to