diff options
author | 2023-05-14 09:26:29 +0200 | |
---|---|---|
committer | 2023-05-14 12:27:50 +0200 | |
commit | 5fee594780d317727e1c17292a41bff5cd5035af (patch) | |
tree | 5cd84107d8a9d60e9c1458614d3407316a4a32cd /x11-misc/copyq/copyq-5.0.0.ebuild | |
parent | sci-visualization/gle: drop 4.2.5-r4 (diff) | |
download | gentoo-5fee594780d317727e1c17292a41bff5cd5035af.tar.gz gentoo-5fee594780d317727e1c17292a41bff5cd5035af.tar.bz2 gentoo-5fee594780d317727e1c17292a41bff5cd5035af.zip |
x11-misc/copyq: drop 5.0.0
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'x11-misc/copyq/copyq-5.0.0.ebuild')
-rw-r--r-- | x11-misc/copyq/copyq-5.0.0.ebuild | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/x11-misc/copyq/copyq-5.0.0.ebuild b/x11-misc/copyq/copyq-5.0.0.ebuild deleted file mode 100644 index a8356570fecc..000000000000 --- a/x11-misc/copyq/copyq-5.0.0.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake xdg-utils - -DESCRIPTION="Clipboard manager with advanced features" -HOMEPAGE="https://github.com/hluk/CopyQ" -SRC_URI="https://github.com/hluk/CopyQ/archive/v${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/CopyQ-${PV}" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="test" - -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-libs/wayland - dev-qt/qtcore:5 - dev-qt/qtdeclarative:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - dev-qt/qtsvg:5 - dev-qt/qtwayland:5 - dev-qt/qtwidgets:5 - dev-qt/qtx11extras:5 - kde-frameworks/knotifications:5 - x11-libs/libX11 - x11-libs/libXtst -" -DEPEND="${RDEPEND} - test? ( dev-qt/qttest:5 )" -BDEPEND=" - dev-qt/linguist-tools:5 -" - -src_configure() { - local mycmakeargs=( - -DCMAKE_BUILD_TYPE=Release - -DPLUGIN_INSTALL_PREFIX="/usr/$(get_libdir)/${PN}/plugins" - -DWITH_TESTS=$(usex test) - ) - cmake_src_configure -} - -pkg_postinst() { - xdg_desktop_database_update - xdg_icon_cache_update -} - -pkg_postrm() { - xdg_desktop_database_update - xdg_icon_cache_update -} |