diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-01-30 21:22:58 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-01-30 23:29:24 +0100 |
commit | 2a8c2fd107a31d0cb58c8f2bd7c1dca9316add74 (patch) | |
tree | b5cfd10634cf92c9bd853eb776912c47c23e43b3 /net-misc/hotot/hotot-9999.ebuild | |
parent | app-office/libreoffice: Bump to libreoffice-6.2.0.3-patchset-02 (diff) | |
download | gentoo-2a8c2fd107a31d0cb58c8f2bd7c1dca9316add74.tar.gz gentoo-2a8c2fd107a31d0cb58c8f2bd7c1dca9316add74.tar.bz2 gentoo-2a8c2fd107a31d0cb58c8f2bd7c1dca9316add74.zip |
net-misc/hotot: Remove last-rited
Closes: https://bugs.gentoo.org/463928
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'net-misc/hotot/hotot-9999.ebuild')
-rw-r--r-- | net-misc/hotot/hotot-9999.ebuild | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/net-misc/hotot/hotot-9999.ebuild b/net-misc/hotot/hotot-9999.ebuild deleted file mode 100644 index 777e7d1e2bcd..000000000000 --- a/net-misc/hotot/hotot-9999.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python2_7 ) - -inherit cmake-utils git-r3 python-single-r1 vcs-snapshot - -DESCRIPTION="lightweight & open source microblogging client" -HOMEPAGE="http://hotot.org" -EGIT_REPO_URI="https://github.com/lyricat/Hotot.git" - -LICENSE="LGPL-3" -SLOT="0" -KEYWORDS="" -IUSE="chrome kde qt5" - -REQUIRED_USE="|| ( chrome qt5 ) ${PYTHON_REQUIRED_USE}" - -RDEPEND="${PYTHON_DEPS} - dev-python/dbus-python[${PYTHON_USEDEP}] - qt5? ( - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - dev-qt/qtwebkit:5 - dev-qt/qtwidgets:5 - )" -DEPEND="${RDEPEND} - sys-devel/gettext" - -src_configure() { - mycmakeargs=( - ${mycmakeargs} - -DWITH_CHROME=$(usex chrome) - -DWITH_KDE=$(usex kde) - -DWITH_QT5=$(usex qt5) - -DPYTHON_EXECUTABLE=${PYTHON} ) - - cmake-utils_src_configure -} - -src_install() { - cmake-utils_src_install - - find "${D}" -name "*.pyc" -delete -} - -pkg_postinst() { - if use chrome; then - elog "TO install hotot for chrome, open chromium/google-chrome," - elog "vist chrome://chrome/extensions/ and load /usr/share/hotot" - elog "as unpacked extension." - fi -} |