diff options
author | Andrew Ammerlaan <andrewammerlaan@gentoo.org> | 2023-12-05 13:34:52 +0100 |
---|---|---|
committer | Andrew Ammerlaan <andrewammerlaan@gentoo.org> | 2023-12-05 13:34:52 +0100 |
commit | bafa065a07a2b9eaee0623b7283a262fccb709f2 (patch) | |
tree | 6b436dab1862ffb9a52fb877637887ecac9356b0 /net-im | |
parent | sci-physics/geant4_vmc: drop C++ standard USE flags in dependencies (diff) | |
download | gentoo-bafa065a07a2b9eaee0623b7283a262fccb709f2.tar.gz gentoo-bafa065a07a2b9eaee0623b7283a262fccb709f2.tar.bz2 gentoo-bafa065a07a2b9eaee0623b7283a262fccb709f2.zip |
net-im/whatsie: add 4.14.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/whatsie/Manifest | 1 | ||||
-rw-r--r-- | net-im/whatsie/whatsie-4.14.2.ebuild | 39 |
2 files changed, 40 insertions, 0 deletions
diff --git a/net-im/whatsie/Manifest b/net-im/whatsie/Manifest index 3584749c18bc..401bbca4341a 100644 --- a/net-im/whatsie/Manifest +++ b/net-im/whatsie/Manifest @@ -1,2 +1,3 @@ DIST whatsie-4.13.0.tar.gz 21145212 BLAKE2B f53549fe4975da0c5fad140568b228cb3cbdf93308cba0ddcd5aa3370ed40a84d4463e589edd1d587659b67fceb6885370b826d1746d0f31f292df1d891b3c04 SHA512 ac2b89d14c64b17a1715510754fac5b0f02528250b78fbd5dcfb782d7243ccea43d01e1dcc8507bf3056b94b3d283d9f6359451a80525c58f7889f34cc77805a DIST whatsie-4.14.1.tar.gz 21146781 BLAKE2B ca5d479f29356c92a64d62fa37d90dd328f19ccd774356d275bf1bbd9230ad1ea3773dd3b1fe345b50350bc1f17dba0cf263a85f78f20b3a4a87684ff0c301e9 SHA512 f425c87174ac14376be3d1f364e09e45a33e22ebe4595b78f9e5bf0943cac2ba296e23cca6e4b768f4949adfb5a0eeb5f93e824e4182ff980e3c6dfa66a5dc6f +DIST whatsie-4.14.2.tar.gz 21146777 BLAKE2B 3d923b9d4b109cbc894481fed9723fe84d992663ea953218cd4b128317aebe2fb8a60608d351cc9f4cfc5a976713ce2a3a642a122276068ed63a96e6cf656603 SHA512 b0b6ab0fab30723ee64b723f79776b6953229502e22f4c5e9fb809aa198e369ee05398abca218680adeea1acfcafd0026e13e424458fedad2c0260c2d956fffb diff --git a/net-im/whatsie/whatsie-4.14.2.ebuild b/net-im/whatsie/whatsie-4.14.2.ebuild new file mode 100644 index 000000000000..cecf52d1bc2d --- /dev/null +++ b/net-im/whatsie/whatsie-4.14.2.ebuild @@ -0,0 +1,39 @@ +# Copyright 2019-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qmake-utils xdg + +DESCRIPTION="Qt Based WhatsApp Client" +HOMEPAGE="https://github.com/keshavbhatt/whatsie" +SRC_URI="https://github.com/keshavbhatt/whatsie/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${P}/src" + +KEYWORDS="~amd64" +LICENSE="MIT" +SLOT="0" + +QT_MIN="5.15" + +DEPEND=" + x11-libs/libX11 + x11-libs/libxcb:= + >=dev-qt/qtcore-${QT_MIN}:5 + >=dev-qt/qtgui-${QT_MIN}:5 + >=dev-qt/qtnetwork-${QT_MIN}:5 + >=dev-qt/qtpositioning-${QT_MIN}:5 + >=dev-qt/qtwebengine-${QT_MIN}:5[widgets] + >=dev-qt/qtwidgets-${QT_MIN}:5 +" + +RDEPEND="${DEPEND}" + +src_configure() { + eqmake5 +} + +src_install() { + einstalldocs + INSTALL_ROOT="${ED}" emake install +} |