diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2020-08-14 21:04:38 -0400 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2020-08-15 07:58:30 -0400 |
commit | b6950dbb4023a794944c216138caaeaa7bd115fc (patch) | |
tree | 97a87402d18d1912c3d1024b3796efc576a901a1 /net-libs | |
parent | net-libs/libdom: remove old "unused" ebuilds. (diff) | |
download | gentoo-b6950dbb4023a794944c216138caaeaa7bd115fc.tar.gz gentoo-b6950dbb4023a794944c216138caaeaa7bd115fc.tar.bz2 gentoo-b6950dbb4023a794944c216138caaeaa7bd115fc.zip |
net-libs/libhubbub: remove old "unused" version.
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/libhubbub/libhubbub-0.3.6-r1.ebuild | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/net-libs/libhubbub/libhubbub-0.3.6-r1.ebuild b/net-libs/libhubbub/libhubbub-0.3.6-r1.ebuild deleted file mode 100644 index e0afef19c3f2..000000000000 --- a/net-libs/libhubbub/libhubbub-0.3.6-r1.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs flag-o-matic - -DESCRIPTION="HTML5 compliant parsing library, written in C" -HOMEPAGE="https://www.netsurf-browser.org/projects/hubbub/" -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="doc test" - -BDEPEND=" - dev-util/netsurf-buildsystem - virtual/pkgconfig - doc? ( app-doc/doxygen ) - test? ( dev-lang/perl ) -" -RDEPEND="dev-libs/libparserutils:=" -DEPEND="${RDEPEND} - test? ( dev-libs/json-c )" -RESTRICT="!test? ( test )" - -DOCS=( README docs/{Architecture,Macros,Todo,Treebuilder,Updated} ) -PATCHES=( "${FILESDIR}/libhubbub-0.3.6-json-c.patch" ) - -src_prepare() { - default - sed -e '1i#pragma GCC diagnostic ignored "-Wimplicit-fallthrough"' \ - -i test/tree2.c || die -} - -_emake() { - source /usr/share/netsurf-buildsystem/gentoo-helpers.sh - netsurf_define_makeconf - append-cflags -Wno-error - emake "${NETSURF_MAKECONF[@]}" COMPONENT_TYPE=lib-shared $@ -} - -src_compile() { - _emake - use doc && _emake docs -} - -src_test() { - _emake test -} - -src_install() { - _emake DESTDIR="${D}" install - use doc && HTML_DOCS=( docs/html/. ) - einstalldocs -} |