diff --git a/dev-python/oursql/Manifest b/dev-python/oursql/Manifest
deleted file mode 100644
index 616556cc2..000000000
--- a/dev-python/oursql/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST oursql-0.9.3.1.zip 175789 SHA256 a6d8044591b2ecb859b8bf72a1c535d0b33bd249f7fecdbe63d2173855b568b7
diff --git a/dev-python/oursql/metadata.xml b/dev-python/oursql/metadata.xml
deleted file mode 100644
index 465837564..000000000
--- a/dev-python/oursql/metadata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
- lxnay@gentoo.org
-
-
- skullbocks@sabayon.org
-
-
diff --git a/dev-python/oursql/oursql-0.9.3.1.ebuild b/dev-python/oursql/oursql-0.9.3.1.ebuild
deleted file mode 100644
index 49a4a999c..000000000
--- a/dev-python/oursql/oursql-0.9.3.1.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-DESCRIPTION="a set of MySQL bindings for Python with a focus on wrapping the MYSQL_STMT API"
-HOMEPAGE="https://launchpad.net/oursql"
-SRC_URI="https://launchpad.net/oursql/trunk/${PV}/+download/${P}.zip"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE=""
-
-RDEPEND=">=virtual/mysql-4.1"
-DEPEND="${RDEPEND}"
diff --git a/dev-python/pylons/Manifest b/dev-python/pylons/Manifest
deleted file mode 100644
index 681f5d2b5..000000000
--- a/dev-python/pylons/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST Pylons-1.0.1.tar.gz 2299257 SHA256 7c22579516d92e6fcab3f9555b33fe7a259cc2e16d2fe414816c0138c91e8c0d SHA512 1b34541c912c914636fc7b0d358439a6705e5161a306a4bfa6a08cbc1ee4741cb3882afc9cae9a22d208f89f9648a4b7559304842339c8d6d75472f058a91ceb WHIRLPOOL 58019b223a0fc52f5cf7582a03ae7f5b25c29b88d3faff42c03ed5602f3fb2bc4bc9a4cce48d761109c2c7a4edc0b05ffcb100bf1bab70cf572f93c6da38d2c8
diff --git a/dev-python/pylons/files/pylons-1.0.1-new-webob-support-2.patch b/dev-python/pylons/files/pylons-1.0.1-new-webob-support-2.patch
deleted file mode 100644
index 30e1dd7f4..000000000
--- a/dev-python/pylons/files/pylons-1.0.1-new-webob-support-2.patch
+++ /dev/null
@@ -1,42 +0,0 @@
---- a/pylons/controllers/util.py
-+++ b/pylons/controllers/util.py
-@@ -174,7 +174,7 @@ def etag_cache(key=None):
- response.headers.pop('Content-Type', None)
- response.headers.pop('Cache-Control', None)
- response.headers.pop('Pragma', None)
-- raise status_map[304]().exception
-+ raise status_map[304]()
- else:
- log.debug("ETag didn't match, returning response object")
-
-@@ -207,7 +207,7 @@ def abort(status_code=None, detail="", h
- comment=comment)
- log.debug("Aborting request, status: %s, detail: %r, headers: %r, "
- "comment: %r", status_code, detail, headers, comment)
-- raise exc.exception
-+ raise exc
-
-
- def redirect(url, code=302):
-@@ -221,4 +221,4 @@ def redirect(url, code=302):
- """
- log.debug("Generating %s redirect" % code)
- exc = status_map[code]
-- raise exc(location=url).exception
-+ raise exc(location=url)
---- a/tests/test_units/test_controller.py
-+++ b/tests/test_units/test_controller.py
-@@ -36,11 +36,11 @@ class BasicWSGIController(WSGIController
- def use_redirect(self):
- pylons.response.set_cookie('message', 'Hello World')
- exc = status_map[301]
-- raise exc('/elsewhere').exception
-+ raise exc('/elsewhere')
-
- def use_customnotfound(self):
- exc = status_map[404]
-- raise exc('Custom not found').exception
-+ raise exc('Custom not found')
-
- def header_check(self):
- pylons.response.headers['Content-Type'] = 'text/plain'
diff --git a/dev-python/pylons/files/pylons-1.0.1-new-webob-support.patch b/dev-python/pylons/files/pylons-1.0.1-new-webob-support.patch
deleted file mode 100644
index caf1a5b73..000000000
--- a/dev-python/pylons/files/pylons-1.0.1-new-webob-support.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Nurp Pylons-1.0.1.orig/pylons/controllers/util.py Pylons-1.0.1/pylons/controllers/util.py
---- Pylons-1.0.1.orig/pylons/controllers/util.py 2011-12-13 22:40:32.000000000 +0000
-+++ Pylons-1.0.1/pylons/controllers/util.py 2013-03-18 19:49:53.774373984 +0000
-@@ -56,7 +56,7 @@ class Request(WebObRequest):
- def languages(self):
- # And we now have the old best_matches code that webob ditched!
- al = self.accept_language
-- items = [i for i, q in sorted(al._parsed, key=lambda iq: -iq[1])]
-+ items = [i for i, q in sorted(getattr(al, '_parsed', []), key=lambda iq: -iq[1])]
- for index, item in enumerate(items):
- if al._match(item, self.language):
- items[index:] = [self.language]
diff --git a/dev-python/pylons/metadata.xml b/dev-python/pylons/metadata.xml
deleted file mode 100644
index 10c66b0d7..000000000
--- a/dev-python/pylons/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
- python
-
-
- Pylons
-
-
diff --git a/dev-python/pylons/pylons-1.0.1-r3.ebuild b/dev-python/pylons/pylons-1.0.1-r3.ebuild
deleted file mode 100644
index 4f582db15..000000000
--- a/dev-python/pylons/pylons-1.0.1-r3.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-MY_PN="Pylons"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Pylons Web Framework"
-HOMEPAGE="http://pylonshq.com/ http://pypi.python.org/pypi/Pylons"
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="genshi jinja test"
-
-RDEPEND=">=dev-python/beaker-1.3[${PYTHON_USEDEP}]
- >=dev-python/decorator-2.3.2[${PYTHON_USEDEP}]
- >=dev-python/formencode-1.2.1[${PYTHON_USEDEP}]
- >=dev-python/mako-0.2.4[${PYTHON_USEDEP}]
- >=dev-python/nose-0.10.4[${PYTHON_USEDEP}]
- >=dev-python/paste-1.7.2[${PYTHON_USEDEP}]
- >=dev-python/pastedeploy-1.3.3[${PYTHON_USEDEP}]
- >=dev-python/pastescript-1.7.3[${PYTHON_USEDEP}]
- >=dev-python/repoze-lru-0.3[${PYTHON_USEDEP}]
- >=dev-python/routes-1.12[${PYTHON_USEDEP}]
- >=dev-python/simplejson-2.0.8[${PYTHON_USEDEP}]
- >=dev-python/tempita-0.2[${PYTHON_USEDEP}]
- >=dev-python/weberror-0.10.1[${PYTHON_USEDEP}]
- >=dev-python/webhelpers-0.6.4[${PYTHON_USEDEP}]
- >=dev-python/webob-0.9.6.1[${PYTHON_USEDEP}]
- >=dev-python/webtest-1.1[${PYTHON_USEDEP}]
- genshi? ( >=dev-python/genshi-0.4.4[${PYTHON_USEDEP}] )
- jinja? ( >=dev-python/jinja-2[${PYTHON_USEDEP}] )"
-# Dependency on >=dev-python/coverage-2.85 and dev-python/genshi is not with Jython.
-DEPEND="${RDEPEND}
- dev-python/setuptools[${PYTHON_USEDEP}]
- test? (
- >=dev-python/coverage-2.85[${PYTHON_USEDEP}]
- dev-python/genshi[${PYTHON_USEDEP}]
- >=dev-python/jinja-2.2.1[${PYTHON_USEDEP}]
- )"
-
-S="${WORKDIR}/${MY_P}"
-
-PATCHES=(
- "${FILESDIR}/${P}-new-webob-support.patch"
- "${FILESDIR}/${P}-new-webob-support-2.patch"
-)
-
-python_test() {
- nosetests || die "Tests fail with ${EPYTHON}"
-}
diff --git a/games-rpg/unix-runescape-client/Manifest b/games-rpg/unix-runescape-client/Manifest
deleted file mode 100644
index d9a53e518..000000000
--- a/games-rpg/unix-runescape-client/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST unix-runescape-client-4.3.5.tar.gz 2568236 BLAKE2B 82cdad5ff65848c1a8b0e6a33b67e4d62e714e7d3609d95b237f9bdf8638a2d940320cdb10b11aca53c75e2bffe58434f8599672803d9d0c76b5ddd5c9cee978 SHA512 14576cefba6c35f5c3d151e62936457d74ab2fa063cfd2d5551f0d40f55d54988d8d4263c02bd93f2a9a4147e622dad48b0cc59d03ff155f9500ff513dff3d4c
diff --git a/games-rpg/unix-runescape-client/unix-runescape-client-4.3.5.ebuild b/games-rpg/unix-runescape-client/unix-runescape-client-4.3.5.ebuild
deleted file mode 100644
index db17469b2..000000000
--- a/games-rpg/unix-runescape-client/unix-runescape-client-4.3.5.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit games
-
-MY_PN="rsu-client"
-MY_P="${MY_PN}-${PV}"
-S=${WORKDIR}/${MY_P}
-DESCRIPTION="RuneScape client for Linux and Unix"
-HOMEPAGE="https://github.com/HikariKnight/rsu-client"
-SRC_URI="https://github.com/HikariKnight/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-RESTRICT="mirror"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="alsa-oss cario-nogl p7zip pulseaudio wine"
-
-DEPEND="virtual/jre
- dev-lang/perl
- dev-perl/Archive-Extract
- dev-perl/Config-IniFiles
- dev-perl/IO-stringy
- dev-perl/Wx
- net-misc/wget
- media-libs/libpng-compat:1.2
- alsa-oss? ( media-libs/alsa-oss )
- cario-nogl? ( x11-libs/cairo[-opengl] )
- p7zip? ( app-arch/p7zip )
- pulseaudio? ( media-sound/pulseaudio )
- wine? ( app-emulation/wine )"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- use alsa-oss && sed -i -e "s/forcealsa=false/forcealsa=true/" "${S}/runescape/share/configs/settings.conf"
- use cario-nogl && rm -rf "${S}/runescape/rsu/3rdParty/linux/cairo-nogl"
- use pulseaudio && sed -i -e "s/forcepulseaudio=false/forcepulseaudio=true/" "${S}/runescape/share/configs/settings.conf"
- use wine && sed -i -e "s/compabilitymode=false/compabilitymode=true/" "${S}/runescape/share/configs/settings.conf"
-
- # Set java path to system-java
- sed -i -e "s/preferredjava=default-java/preferredjava=\/etc\/java-config-2\/current-system-vm\/bin\/java/" \
- "${S}/runescape/share/configs/settings.conf" || die "sed failed"
- sed -i -e "s/preferredjava=default-java/preferredjava=\/etc\/java-config-2\/current-system-vm\/bin\/java/" \
- "${S}/runescape/share/configs/settings.conf.example" || die "sed failed"
-}
-
-src_install() {
- cd "runescape"
-
- games_make_wrapper runescape "${GAMES_PREFIX_OPT}/runescape/runescape"
- games_make_wrapper update-runescape-client "${GAMES_PREFIX_OPT}/runescape/updater"
-
- insinto "${GAMES_PREFIX_OPT}/runescape"
- doins -r * || die "doins failed"
-
- exeinto "${GAMES_PREFIX_OPT}/runescape"
- doexe runescape
- doexe updater
- doexe rsu-settings
-
- exeinto "${GAMES_PREFIX_OPT}/runescape/rsu"
- doexe rsu/rsu-query
-
- exeinto "${GAMES_PREFIX_OPT}/runescape/rsu/bin"
- doexe rsu/bin/*
-
- make_desktop_entry runescape "RuneScape Unix Client" \
- "${GAMES_PREFIX_OPT}/runescape/share/runescape.png" || die "make_desktop_entry failed"
-
- dodoc AUTHORS COPYING changelog.txt bin/README.md || die "dodoc failed"
-
- prepgamesdirs
-}
diff --git a/net-libs/libturpial/Manifest b/net-libs/libturpial/Manifest
deleted file mode 100644
index 8eab9abcd..000000000
--- a/net-libs/libturpial/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST libturpial-1.7.0.tar.gz 220920 SHA256 f104667920576248c663ebcad905bfc23172ce02d06e1b31181221ca97e80f79 SHA512 9cc970338b8bcabb04971f3773056ea7cc86694ea9ad0a458916735e5469b7e7600d559b07a796e83e83d0d2730c250a55d3f0b0a359f4c52ab46047618ccbab WHIRLPOOL f2563565f52cb7ad817f71666b04188026975e405a4a664b0ee8cc8a0efc2b4b12770ee330dc0af3be9e28850ac9277b45698537caf1cae7482afb298e9d22c8
diff --git a/net-libs/libturpial/files/1.7.0-test.patch b/net-libs/libturpial/files/1.7.0-test.patch
deleted file mode 100644
index d0ec54126..000000000
--- a/net-libs/libturpial/files/1.7.0-test.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- setup.py 2016-01-13 16:26:13.930230992 +0100
-+++ setup.py 2016-01-13 16:27:55.040056245 +0100
-@@ -45,7 +45,7 @@ setup(name="libturpial",
- "Topic :: Software Development :: Libraries :: Python Modules"
- ],
- include_package_data=True,
-- packages=find_packages(),
-+ packages=find_packages(exclude=['tests']),
- package_data={
- 'libturpial': ['certs/*']
- },
-
diff --git a/net-libs/libturpial/files/docs.patch b/net-libs/libturpial/files/docs.patch
deleted file mode 100644
index 053b986e4..000000000
--- a/net-libs/libturpial/files/docs.patch
+++ /dev/null
@@ -1,9 +0,0 @@
---- setup.py.old 2016-01-13 16:26:13.930230992 +0100
-+++ setup.py 2016-01-13 16:32:42.814015235 +0100
-@@ -56,5 +56,4 @@ setup(name="libturpial",
- 'simplejson',
- 'requests',
- ],
-- data_files=data_files,
- )
-
diff --git a/net-libs/libturpial/libturpial-1.7.0.ebuild b/net-libs/libturpial/libturpial-1.7.0.ebuild
deleted file mode 100644
index dd3cecf4d..000000000
--- a/net-libs/libturpial/libturpial-1.7.0.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id: $
-
-EAPI=5
-
-MY_AUTHOR="satanas"
-PYTHON_COMPAT=( python{2_6,2_7} )
-
-inherit distutils-r1
-
-DESCRIPTION="A powerful microblogging library written in Python"
-HOMEPAGE="http://turpial.org.ve/"
-if [[ ${PV} == "9999" ]] ; then
- inherit git-r3
- SRC_URI=""
- EGIT_REPO_URI="https://github.com/${MY_AUTHOR}/${PN}.git"
- KEYWORDS=""
-else
- SRC_URI="https://github.com/${MY_AUTHOR}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-fi
-
-SLOT="0"
-LICENSE="GPL-3"
-IUSE=""
-
-RDEPEND="
- dev-python/oauth[${PYTHON_USEDEP}]
- dev-python/requests[${PYTHON_USEDEP}]
- dev-python/simplejson[${PYTHON_USEDEP}]
- dev-python/setuptools[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- epatch "${FILESDIR}/docs.patch"
- epatch "${FILESDIR}/${PV}-test.patch"
-}
-
-python_test() {
- nosetest || die
-}
-
-src_install() {
- distutils-r1_src_install
- dodoc ChangeLog AUTHORS
-}
diff --git a/net-libs/libturpial/libturpial-9999.ebuild b/net-libs/libturpial/libturpial-9999.ebuild
deleted file mode 100644
index fe0a226d2..000000000
--- a/net-libs/libturpial/libturpial-9999.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id: $
-
-EAPI=5
-
-MY_AUTHOR="satanas"
-PYTHON_COMPAT=( python{2_6,2_7} )
-
-inherit distutils-r1
-
-DESCRIPTION="A powerful microblogging library written in Python"
-HOMEPAGE="http://turpial.org.ve/"
-if [[ ${PV} == "9999" ]] ; then
- inherit git-r3
- SRC_URI=""
- EGIT_REPO_URI="https://github.com/${MY_AUTHOR}/${PN}.git"
- KEYWORDS=""
-else
- SRC_URI="https://github.com/${MY_AUTHOR}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-fi
-
-SLOT="0"
-LICENSE="GPL-3"
-IUSE=""
-
-RDEPEND="
- dev-python/oauth[${PYTHON_USEDEP}]
- dev-python/requests[${PYTHON_USEDEP}]
- dev-python/simplejson[${PYTHON_USEDEP}]
- dev-python/setuptools[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- epatch "${FILESDIR}/docs.patch"
-}
-
-python_test() {
- nosetest || die
-}
-
-src_install() {
- distutils-r1_src_install
- dodoc ChangeLog AUTHORS
-}
diff --git a/net-libs/libturpial/metadata.xml b/net-libs/libturpial/metadata.xml
deleted file mode 100644
index 9b412b5ac..000000000
--- a/net-libs/libturpial/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
- skullbocks@sabayon.org
- Francesco Ferro
-
-
diff --git a/sci-physics/phun/Manifest b/sci-physics/phun/Manifest
deleted file mode 100644
index 9f422eef5..000000000
--- a/sci-physics/phun/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST Phun_beta_4_22_linux32.tar.bz2 3200487 SHA256 f1ba65c204785f10b0d27dd7ba37f1918bdcc896bcc23edb03782bbb457e524e
-DIST Phun_beta_4_22_linux64.tar.bz2 3135653 SHA256 51743c134c667beedef3aa1602b01656fa0972a8f152f3b27ef049e93078462e
diff --git a/sci-physics/phun/Reasons b/sci-physics/phun/Reasons
deleted file mode 100644
index fa4bc6bfb..000000000
--- a/sci-physics/phun/Reasons
+++ /dev/null
@@ -1,6 +0,0 @@
-17/11/2009
-
-Ian Whyman
-
-Add as part of Request #997
-Remove if added to Mainline
diff --git a/sci-physics/phun/phun-4.22.ebuild b/sci-physics/phun/phun-4.22.ebuild
deleted file mode 100644
index 1e7e94756..000000000
--- a/sci-physics/phun/phun-4.22.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit versionator eutils
-
-MY_P="Phun_beta_$(get_major_version)_$(get_after_major_version)_linux"
-DESCRIPTION="Physics sandbox and simulator for gravity, friction"
-HOMEPAGE="http://www.phunland.com/"
-SRC_URI="x86? ( http://www.phunland.com/download/${MY_P}32.tar.bz2 )
- amd64? ( http://www.phunland.com/download/${MY_P}64.tar.bz2 )"
-
-LICENSE="free-noncomm"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-RDEPEND="virtual/opengl
- media-libs/sdl-image
- dev-libs/boost
- >=media-libs/glew-1.5"
-DEPEND=""
-RESTRICT="strip mirror"
-
-S="${WORKDIR}"
-
-src_install() {
- rm -rf Phun/lib
- insinto /opt
- doins -r Phun/ || die
- exeinto /opt/Phun
- doexe Phun/phun.bin || die
- make_desktop_entry phun "Phun physics sandbox" /opt/Phun/icon.png
- make_wrapper phun /opt/Phun/phun.bin /opt/Phun .
-}
diff --git a/x11-misc/gxneur/Manifest b/x11-misc/gxneur/Manifest
deleted file mode 100644
index fc23228ef..000000000
--- a/x11-misc/gxneur/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST gxneur_0.20.0.orig.tar.gz 779975 BLAKE2B d92515c34dfb79b0f9ca1ffb806b2b74c498976e446583b7ca2bfaec5e509fde941f86f9cb2c7a1a0cbc79beee1b4e9475657aba89befe398b1763cfaa69cce0 SHA512 7245697be7d53402b3b0a84cb0c25c59e482ca09533dbc00bc349c0d3096a36af1653ed633203e224d12f80a838abe9cc19e5e6fcaa7c93f0f2d569a1ac9de07
diff --git a/x11-misc/gxneur/gxneur-0.20.0.ebuild b/x11-misc/gxneur/gxneur-0.20.0.ebuild
deleted file mode 100644
index 5910c1d5c..000000000
--- a/x11-misc/gxneur/gxneur-0.20.0.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools eutils gnome2-utils versionator
-
-DESCRIPTION="GTK+ based GUI for xneur"
-HOMEPAGE="http://www.xneur.ru/"
-SRC_URI="https://launchpad.net/~andrew-crew-kuznetsov/+archive/xneur-stable/+files/${PN}_${PV}.orig.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="appindicator +gconf nls"
-
-COMMON_DEPEND="gnome-base/libglade:2.0
- >=sys-devel/gettext-0.16.1
- >=x11-libs/gtk+-2.18:2
- >=x11-misc/xneur-$(get_version_component_range 1-2)
- appindicator? ( dev-libs/libappindicator:2 )
- gconf? ( gnome-base/gconf:2 )
- !x11-misc/xneur[gtk3]"
-RDEPEND="${COMMON_DEPEND}
- nls? ( virtual/libintl )"
-DEPEND="${COMMON_DEPEND}
- dev-util/intltool
- virtual/pkgconfig
- nls? ( sys-devel/gettext )"
-
-src_prepare() {
- default
-
- rm -f m4/{lt~obsolete,ltoptions,ltsugar,ltversion,libtool}.m4 \
- ltmain.sh aclocal.m4 || die
- sed -i "s/-Werror -g0//" configure.ac || die
- sed -i -e '/Encoding/d' -e '/Categories/s/$/;/' ${PN}.desktop.in || die
- eautoreconf
-}
-
-src_configure() {
- econf \
- $(use_enable nls) \
- $(use_with appindicator) \
- $(use_with gconf)
-}
-
-src_install() {
- default
- doicon pixmaps/gxneur.png
-}
-
-pkg_preinst() {
- gnome2_icon_savelist
-}
-
-pkg_postinst() {
- gnome2_icon_cache_update
-}
-
-pkg_postrm() {
- gnome2_icon_cache_update
-}
diff --git a/x11-misc/gxneur/metadata.xml b/x11-misc/gxneur/metadata.xml
deleted file mode 100644
index 3e1b15d67..000000000
--- a/x11-misc/gxneur/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
diff --git a/x11-misc/xneur/Manifest b/x11-misc/xneur/Manifest
deleted file mode 100644
index 1c2bf1b83..000000000
--- a/x11-misc/xneur/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST xneur_0.20.0.orig.tar.gz 1683789 BLAKE2B 06bced1be509027f7940609b516a8cfb3c43858d49404672e65444d578a4419b588ce4a32eead5956a190e4c473755b25f18ea516fd425ea105e90a7ed57b10f SHA512 96ca9b61d15a0072fc846becf3a842981598417b3295720bd67ac7b08660836e2814622eaef963d45389e88ca2fe1bffce476541ac23f569115a3b223e3827ee
diff --git a/x11-misc/xneur/metadata.xml b/x11-misc/xneur/metadata.xml
deleted file mode 100644
index a1100e5ef..000000000
--- a/x11-misc/xneur/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
diff --git a/x11-misc/xneur/xneur-0.20.0.ebuild b/x11-misc/xneur/xneur-0.20.0.ebuild
deleted file mode 100644
index 0f7e6e5d8..000000000
--- a/x11-misc/xneur/xneur-0.20.0.ebuild
+++ /dev/null
@@ -1,103 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="In-place conversion of text typed in with a wrong keyboard layout"
-HOMEPAGE="http://www.xneur.ru/"
-SRC_URI="https://launchpad.net/~andrew-crew-kuznetsov/+archive/${PN}-stable/+files/${PN}_${PV}.orig.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="aplay debug gstreamer gtk gtk3 keylogger libnotify nls openal xosd +spell"
-
-COMMON_DEPEND=">=dev-libs/libpcre-5.0
- sys-libs/zlib
- >=x11-libs/libX11-1.1
- x11-libs/libXi
- x11-libs/libXtst
- gstreamer? ( media-libs/gstreamer:1.0 )
- !gstreamer? (
- openal? ( >=media-libs/freealut-1.0.1 )
- !openal? (
- aplay? ( >=media-sound/alsa-utils-1.0.17 ) ) )
- libnotify? (
- gtk? (
- gtk3? ( x11-libs/gtk+:3 )
- !gtk3? ( x11-libs/gtk+:2 ) )
- >=x11-libs/libnotify-0.4.0 )
- spell? ( app-text/enchant )
- xosd? ( x11-libs/xosd )"
-RDEPEND="${COMMON_DEPEND}
- gstreamer? ( media-libs/gst-plugins-good
- media-plugins/gst-plugins-alsa )
- nls? ( virtual/libintl )
- gtk3? ( !x11-misc/gxneur )"
-DEPEND="${COMMON_DEPEND}
- dev-util/intltool
- virtual/pkgconfig
- nls? ( sys-devel/gettext )"
-
-REQUIRED_USE="libnotify? ( gtk )"
-
-src_prepare() {
- default
-
- rm -f m4/{lt~obsolete,ltoptions,ltsugar,ltversion,libtool}.m4 \
- ltmain.sh aclocal.m4 || die
-
- sed -i -e "s/-Werror -g0//" configure.ac || die
- sed -i -e 's/@LDFLAGS@ //' xnconfig.pc.in || die
- eautoreconf
-}
-
-src_configure() {
- local myconf
-
- if use gstreamer; then
- elog "Using gstreamer for sound output."
- myconf="--with-sound=gstreamer"
- elif use openal; then
- elog "Using openal for sound output."
- myconf="--with-sound=openal"
- elif use aplay; then
- elog "Using aplay for sound output."
- myconf="--with-sound=aplay"
- else
- elog "Sound support disabled."
- myconf="--with-sound=no"
- fi
-
- if use gtk; then
- if use gtk3; then
- myconf="${myconf} --with-gtk=gtk3"
- else
- myconf="${myconf} --with-gtk=gtk2"
- fi
- else
- myconf="${myconf} --without-gtk"
- fi
-
- econf ${myconf} \
- $(use_with debug) \
- $(use_enable nls) \
- $(use_with spell) \
- $(use_with xosd) \
- $(use_with libnotify) \
- $(use_with keylogger)
-}
-
-pkg_postinst() {
- elog "This is command line tool. If you are looking for GUI frontend just"
- elog "emerge gxneur, which uses xneur transparently as backend."
-
- elog
- elog "It is recommended to install dictionary for your language"
- elog "(myspell or aspell), for example app-dicts/aspell-ru."
-
- ewarn
- ewarn "Note: if xneur became slow, try to comment out AddBind options in config file."
-}
diff --git a/x11-plugins/pidgin-gfire/Manifest b/x11-plugins/pidgin-gfire/Manifest
deleted file mode 100644
index 179f496a8..000000000
--- a/x11-plugins/pidgin-gfire/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pidgin-gfire-0.9.4.tar.bz2 499352 SHA256 f69d713b68f18d4037c1f37a7b1a459e048ee7c626f262b80480f60e78ebde71
diff --git a/x11-plugins/pidgin-gfire/files/pidgin-gfire-0.9.4-disabled-nls-fix.patch b/x11-plugins/pidgin-gfire/files/pidgin-gfire-0.9.4-disabled-nls-fix.patch
deleted file mode 100644
index 84bd0ba9d..000000000
--- a/x11-plugins/pidgin-gfire/files/pidgin-gfire-0.9.4-disabled-nls-fix.patch
+++ /dev/null
@@ -1,24 +0,0 @@
---- src/gf_games.c
-+++ src/gf_games.c
-@@ -1530,7 +1530,9 @@ void gfire_game_manager_show(PurplePluginAction *p_action)
- return;
- }
-
-+#ifdef ENABLE_NLS
- gtk_builder_set_translation_domain(gfire_gtk_builder, GETTEXT_PACKAGE);
-+#endif // ENABLE_NLS
-
- gchar *builder_file = g_build_filename(DATADIR, "purple", "gfire", "games.glade", NULL);
- gtk_builder_add_from_file(gfire_gtk_builder, builder_file, NULL);
---- src/gf_server_browser.c
-+++ src/gf_server_browser.c
-@@ -772,7 +772,9 @@ void gfire_server_browser_show(gfire_server_browser *p_browser)
- return;
- }
-
-+#ifdef ENABLE_NLS
- gtk_builder_set_translation_domain(p_browser->builder, GETTEXT_PACKAGE);
-+#endif // ENABLE_NLS
-
- gchar *builder_file = g_build_filename(DATADIR, "purple", "gfire", "servers.glade", NULL);
- gtk_builder_add_from_file(p_browser->builder, builder_file, NULL);
diff --git a/x11-plugins/pidgin-gfire/files/pidgin-gfire-0.9.4-libnotify-0.7-support.patch b/x11-plugins/pidgin-gfire/files/pidgin-gfire-0.9.4-libnotify-0.7-support.patch
deleted file mode 100644
index 5181443ec..000000000
--- a/x11-plugins/pidgin-gfire/files/pidgin-gfire-0.9.4-libnotify-0.7-support.patch
+++ /dev/null
@@ -1,28 +0,0 @@
---- src/gf_util.c.orig
-+++ src/gf_util.c
-@@ -612,7 +612,13 @@
- if(!gfire_notify_init() || !p_title)
- return;
-
-+ /* the fourth argument was removed in libnotify 0.7.0 */
-+#if !defined(NOTIFY_VERSION_MINOR) || (NOTIFY_VERSION_MAJOR == 0 && NOTIFY_VERSION_MINOR < 7)
- NotifyNotification *notification = notify_notification_new(p_title, p_msg, NULL, NULL);
-+#else
-+ NotifyNotification *notification = notify_notification_new (p_title, p_msg, NULL);
-+#endif
-+
- notify_notification_set_urgency(notification, NOTIFY_URGENCY_NORMAL);
- notify_notification_set_timeout(notification, NOTIFY_EXPIRES_DEFAULT);
- g_signal_connect(notification, "closed", G_CALLBACK(gfire_notify_closed_cb), NULL);
-@@ -637,7 +643,11 @@
- return;
- }
-
-+#if !defined(NOTIFY_VERSION_MINOR) || (NOTIFY_VERSION_MAJOR == 0 && NOTIFY_VERSION_MINOR < 7)
- notification = notify_notification_new(p_title, p_msg, NULL, NULL);
-+#else
-+ notification = notify_notification_new (p_title, p_msg, NULL);
-+#endif
-
- // Get Buddy Icon
- PurpleBuddyIcon *icon = purple_buddy_get_icon(p_buddy);
diff --git a/x11-plugins/pidgin-gfire/metadata.xml b/x11-plugins/pidgin-gfire/metadata.xml
deleted file mode 100644
index 8f6b13190..000000000
--- a/x11-plugins/pidgin-gfire/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-maintainer-wanted@gentoo.org
-
-
diff --git a/x11-plugins/pidgin-gfire/pidgin-gfire-0.9.4.ebuild b/x11-plugins/pidgin-gfire/pidgin-gfire-0.9.4.ebuild
deleted file mode 100644
index 4b226720a..000000000
--- a/x11-plugins/pidgin-gfire/pidgin-gfire-0.9.4.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils
-
-DESCRIPTION="Pidgin plugin for adding Xfire accounts and connecting to the Xfire network"
-HOMEPAGE="http://gfireproject.org/"
-SRC_URI="mirror://sourceforge/gfire/${P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug kmess-status libnotify nls"
-
-RDEPEND="
- net-im/pidgin[gtk]
- x11-libs/gtk+:2
- kmess-status? ( dev-libs/dbus-glib )
- libnotify? ( x11-libs/libnotify )"
-
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- nls? ( sys-devel/gettext )"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-libnotify-0.7-support.patch
- epatch "${FILESDIR}"/${P}-disabled-nls-fix.patch
-}
-
-src_configure() {
- # Note: --enable-dbus-status is hard-coded to only publish
- # your status to net-im/kmess via dbus; it does nothing else.
- econf \
- --enable-gtk \
- --disable-update-notify \
- $(use_enable kmess-status dbus-status) \
- $(use_enable libnotify) \
- $(use_enable debug) \
- $(use_enable nls)
-}
-
-src_install() {
- emake install DESTDIR="${D}"
- dodoc AUTHORS README ChangeLog
-
- find "${ED}" -name '*.la' -exec rm -f '{}' +
-}
-
-pkg_postinst() {
- elog "Please note that unlike other Pidgin plugins, the Gfire plugin"
- elog "needs Pidgin to be restarted before it is activated."
-}
diff --git a/x11-plugins/pidgin-tlen/Manifest b/x11-plugins/pidgin-tlen/Manifest
deleted file mode 100644
index 4e8df3ba0..000000000
--- a/x11-plugins/pidgin-tlen/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pidgin-tlen-20101112.tar.gz 38829 SHA256 89b5f52e44ab8cc66cde36725e54b64b2cd5e7e251d84497650b0781e31e3924
diff --git a/x11-plugins/pidgin-tlen/pidgin-tlen-20101112.ebuild b/x11-plugins/pidgin-tlen/pidgin-tlen-20101112.ebuild
deleted file mode 100644
index 45061bc59..000000000
--- a/x11-plugins/pidgin-tlen/pidgin-tlen-20101112.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=3
-inherit multilib
-
-DESCRIPTION="Pidgin plugin for adding Tlen.pl support"
-HOMEPAGE="http://nic.com.pl/~alek/pidgin-tlen/"
-SRC_URI="http://nic.com.pl/~alek/pidgin-tlen/${P}.tar.gz"
-
-LICENSE="as-is"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE=""
-
-DEPEND=">=net-im/pidgin-2.6.5"
-RDEPEND="${DEPEND}"
-
-src_compile() {
- emake || die "emake failed"
-}
-
-src_install() {
- exeinto "/usr/$(get_libdir)/purple-2"
- doexe libtlen.so || die "doexe failed"
-
- dodoc README || die "dodoc failed"
-
- local mydir
- for mydir in 16 22 48; do
- insinto "/usr/share/pixmaps/pidgin/protocols/${mydir}"
- newins tlen_${mydir}.png tlen.png \
- || die "doins for ${mydir} failed"
- done
-}