diff options
Diffstat (limited to 'x11-misc/qlipper')
-rw-r--r-- | x11-misc/qlipper/Manifest | 1 | ||||
-rw-r--r-- | x11-misc/qlipper/qlipper-5.1.2.ebuild | 34 |
2 files changed, 35 insertions, 0 deletions
diff --git a/x11-misc/qlipper/Manifest b/x11-misc/qlipper/Manifest index af29bab6dc0d..b79245def69e 100644 --- a/x11-misc/qlipper/Manifest +++ b/x11-misc/qlipper/Manifest @@ -1 +1,2 @@ DIST qlipper-5.0.0.tar.gz 94281 BLAKE2B 04834165a70d71fad2ee945c0b8389ffefef110554d234e0b1f25f02f7b33a0c8cf809cafd7f7a74a2845f949d35a6ad8045d23981efdd9e6c091c5e61ac9367 SHA512 d2bd834f33531a175201244bdd6e9436da16c6f77e1fdc79616c8c3faef531ae50d4cc3b072074fd5efa494cc7be30ffe617912cf54494a66a72420095b0c642 +DIST qlipper-5.1.2.tar.gz 104652 BLAKE2B 841b984d4720dfe7d69424a79beee8d84f5d66109ac1afb75c39cf16ff27da309d929f91eab2222e43a547d4d010809f31d59adb321c9f9f0ae19fb580cff0a2 SHA512 1ad49424855abf5f446026856178291b6ed8c1152338013f2228bbe5a923bc2e989754fe41e8b03f069f815c3850073eb1063842b5f40462005693a9029b187b diff --git a/x11-misc/qlipper/qlipper-5.1.2.ebuild b/x11-misc/qlipper/qlipper-5.1.2.ebuild new file mode 100644 index 000000000000..412e6dbec0e2 --- /dev/null +++ b/x11-misc/qlipper/qlipper-5.1.2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake-utils xdg-utils + +DESCRIPTION="Lightweight and cross-platform clipboard history applet" +HOMEPAGE="https://github.com/pvanek/qlipper" +SRC_URI="https://github.com/pvanek/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +# bundles x11-libs/libqxt but no qt5 system version is available yet +RDEPEND=" + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + x11-libs/libX11 +" +DEPEND="${RDEPEND} + dev-qt/linguist-tools:5 +" + +pkg_postinst() { + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_icon_cache_update +} |