diff options
author | 2022-03-20 14:08:27 +0000 | |
---|---|---|
committer | 2022-03-20 14:09:28 +0000 | |
commit | b618696220b05a45555c56b2ab7a3b7a23a96fa5 (patch) | |
tree | bb06da14253ac0e0b9d5e05c5e717f2f27b50027 /net-im/cawbird/cawbird-1.5.ebuild | |
parent | app-text/kjots: Drop 5.1.0-r1 (diff) | |
download | gentoo-b618696220b05a45555c56b2ab7a3b7a23a96fa5.tar.gz gentoo-b618696220b05a45555c56b2ab7a3b7a23a96fa5.tar.bz2 gentoo-b618696220b05a45555c56b2ab7a3b7a23a96fa5.zip |
net-im/cawbird: correct RDEPEND, update xdg caches
Closes: https://bugs.gentoo.org/835658
Signed-off-by: Matthew Smith <matthew@gentoo.org>
Diffstat (limited to 'net-im/cawbird/cawbird-1.5.ebuild')
-rw-r--r-- | net-im/cawbird/cawbird-1.5.ebuild | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/net-im/cawbird/cawbird-1.5.ebuild b/net-im/cawbird/cawbird-1.5.ebuild deleted file mode 100644 index 9d9fb0d01d35..000000000000 --- a/net-im/cawbird/cawbird-1.5.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit gnome2-utils meson vala xdg - -DESCRIPTION="Twitter client" -HOMEPAGE="https://ibboard.co.uk/cawbird/ https://github.com/IBBoard/cawbird" -SRC_URI="https://github.com/IBBoard/cawbird/archive/v${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}"/${P} - -LICENSE="CC-BY-3.0 GPL-3+" -SLOT="0" -KEYWORDS="~amd64" -IUSE="gstreamer spell" - -RDEPEND=" - dev-db/sqlite:3 - dev-libs/atk - dev-libs/glib:2 - dev-libs/json-glib - net-libs/liboauth - net-libs/libsoup:2.4 - net-libs/rest:0.7 - x11-libs/cairo - x11-libs/gdk-pixbuf:2 - x11-libs/gtk+:3 - x11-libs/libX11 - x11-libs/pango - gstreamer? ( media-libs/gstreamer:1.0 ) - spell? ( app-text/gspell:= ) -" -DEPEND="${RDEPEND}" -BDEPEND=" - $(vala_depend) - virtual/pkgconfig -" - -src_prepare() { - default - vala_setup -} - -src_configure() { - local emesonargs=( - # these keys are taken from the readme of cawbird - -Dconsumer_key_base64='VmY5dG9yRFcyWk93MzJEZmhVdEk5Y3NMOA==' - -Dconsumer_secret_base64='MThCRXIxbWRESDQ2Y0podzVtVU13SGUyVGlCRXhPb3BFRHhGYlB6ZkpybG5GdXZaSjI=' - -Dexamples=false - $(meson_use spell spellcheck) - $(meson_use gstreamer video) - -Dx11=true - ) - meson_src_configure -} - -pkg_postinst() { - gnome2_schemas_update -} - -pkg_postrm() { - gnome2_schemas_update -} |