From 435dee0a6989b9c511bfea4d1900ae11c353ea8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Tue, 4 Dec 2018 18:05:29 +0100 Subject: www-client/dooble: Remove last-rited pkg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes: https://bugs.gentoo.org/565894 Signed-off-by: Michał Górny --- profiles/package.mask | 5 --- www-client/dooble/Manifest | 1 - www-client/dooble/dooble-1.56c.ebuild | 83 ----------------------------------- www-client/dooble/metadata.xml | 7 --- 4 files changed, 96 deletions(-) delete mode 100644 www-client/dooble/Manifest delete mode 100644 www-client/dooble/dooble-1.56c.ebuild delete mode 100644 www-client/dooble/metadata.xml diff --git a/profiles/package.mask b/profiles/package.mask index c5fd28b0e13c..fd29890fbb59 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -354,11 +354,6 @@ app-benchmarks/os-autoinst net-proxy/squidclamav net-proxy/c-icap -# Pacho Ramos (04 Nov 2018) -# Outdated, doesn't respect CC, installs files in /usr/local (#565894, -# #664370). Removal in a month. -www-client/dooble - # Andreas Sturmlechner (03 Nov 2018) # Breaks revdeps (GDir and GDirEntry split from gfile.h into new gdir.h) # See tracker: https://bugs.gentoo.org/670222 diff --git a/www-client/dooble/Manifest b/www-client/dooble/Manifest deleted file mode 100644 index 5723effc20bc..000000000000 --- a/www-client/dooble/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST dooble-1.56c.tar.gz 12218062 BLAKE2B 2f145c96f7ad994eeb47b2201aed6122d8cd45f21485a34a3d2438f78702805a91194fb54265cceb52eaf109e7dc64d3dcc9cff6a2f568b1ca9563de50917941 SHA512 6a42eed4320437b0e43020d661963ff385fd08dd225f96337d778bca13aec85df3a49eb6cb0f7bd9ae26a8822df62dd580b407ed27c6df58bd0720a50867aa42 diff --git a/www-client/dooble/dooble-1.56c.ebuild b/www-client/dooble/dooble-1.56c.ebuild deleted file mode 100644 index c97bffc1d077..000000000000 --- a/www-client/dooble/dooble-1.56c.ebuild +++ /dev/null @@ -1,83 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils qmake-utils fdo-mime -DESCRIPTION="A Secure and Open Source Web Browser" -HOMEPAGE="http://dooble.sourceforge.net/" - -SRC_URI="mirror://sourceforge/${PN}/Version%20${PV}/Dooble.d.tar.gz -> -${P}.tar.gz" - -# icon sets are GPL-3 LGPL-2.1 while the code is BSD -LICENSE="BSD GPL-3 LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -RDEPEND=" - dev-db/sqlite:3 - dev-libs/libgcrypt:0 - dev-libs/libgpg-error - dev-qt/qtconcurrent:5 - dev-qt/qtcore:5 - dev-qt/qtdeclarative:5 - dev-qt/qtgui:5 - dev-qt/qtprintsupport:5 - dev-qt/qtsql:5 - dev-qt/qtwebkit:5 - dev-qt/qtxml:5 -" -DEPEND="${RDEPEND} - dev-qt/linguist-tools:5 -" - -S="${WORKDIR}/dooble.d/Version 1.x/" - -src_prepare() { - # Adjust paths from FreeBSD locations to Gentoo locations - # XXX: Fix the build system to be more flexible and upstream fix - sed -i -e 's/\(dooble.path[[:space:]]*= \)\(.*\)$/\1\/usr\/bin/' \ - -e 's/\(dooble_sh.path[[:space:]]*= \)\(.*\)$/\1\/usr\/share\/dooble/' \ - -e 's/\(icons.path[[:space:]]*= \)\(.*\)$/\1\/usr\/share\/dooble/' \ - -e 's/\(images.path[[:space:]]*= \)\(.*\)$/\1\/usr\/share\/dooble/' \ - -e 's/\(spoton_install.path[[:space:]]*= \)\(.*\)$/\1\/usr\/lib/' \ - -e 's/\(pluginsdir.path[[:space:]]*= \)\(.*\)$/\1\/usr\/lib\/nsbrowser\/plugins/' \ - -e 's/\(plugspec.path[[:space:]]*= \)\(.*\)$/\1\/usr\/include\/dooble\/plugin-spec/' \ - -e 's/\(postinstall.path[[:space:]]*= \)\(.*\)$/\1\/usr\/share\/dooble/' \ - -e 's/\(tab.path[[:space:]]*= \)\(.*\)$/\1\/usr\/share\/dooble/' \ - dooble.pro dooble.qt5.pro - - sed -i -e "s:\"Icons:\"${EROOT}usr/share/dooble/Icons:" \ - ./Source/dsettings.cc - sed -i -e '/export/d' -e "s:/usr/local/dooble/Dooble:${EROOT}usr/bin/Dooble:g" \ - -e "s:cd /usr/local/dooble:cd /usr/share/dooble:" \ - -e "s:exec ./Dooble:exec ${EROOT}usr/bin/Dooble:" ./dooble.sh - sed -i -e "s:/usr/local:${EROOT}/usr/share:" -e 's:/text/xml:text/xml:' \ - ./dooble.desktop -} - -src_configure() { - eqmake5 dooble.qt5.pro -} - -src_install() { - dohtml Documentation/RELEASE-NOTES.html - dodoc Documentation/{THEMES,TO-DO} - dosym ../share/dooble/dooble.sh /usr/bin/dooble - dosym ../../lib/nsbrowser/plugins /usr/share/dooble/Plugins - dolib.so libSpotOn/libspoton.so - emake INSTALL_ROOT="${ED}" install - - # XXX: The build system installs the build path into INSTALL_ROOT. - # It should be fixed not to do this. - rm -r "${ED}/var" || die "Failed to remove build path from ${ED}" -} - -pkg_postinst() { - fdo-mime_desktop_database_update -} - -pkg_postrm() { - fdo-mime_desktop_database_update -} diff --git a/www-client/dooble/metadata.xml b/www-client/dooble/metadata.xml deleted file mode 100644 index e6d7b04e49a3..000000000000 --- a/www-client/dooble/metadata.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - dooble - - -- cgit v1.2.3