From b0b38821930a1a2c2b31f105af5a17f51f213d93 Mon Sep 17 00:00:00 2001 From: Andrey Utkin Date: Sat, 18 Aug 2018 20:50:25 +0100 Subject: net-im/dino: add new package Based on work by Anthony Parsons (flussence overlay). Package-Manager: Portage-2.3.40, Repoman-2.3.9 --- net-im/dino/dino-9999.ebuild | 80 ++++++++++++++++++++++++++++++++++++++++++++ net-im/dino/metadata.xml | 17 ++++++++++ 2 files changed, 97 insertions(+) create mode 100644 net-im/dino/dino-9999.ebuild create mode 100644 net-im/dino/metadata.xml (limited to 'net-im/dino') diff --git a/net-im/dino/dino-9999.ebuild b/net-im/dino/dino-9999.ebuild new file mode 100644 index 000000000000..9b578c608889 --- /dev/null +++ b/net-im/dino/dino-9999.ebuild @@ -0,0 +1,80 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +CMAKE_MAKEFILE_GENERATOR="ninja" +VALA_MIN_API_VERSION="0.34" +inherit cmake-utils gnome2-utils vala + +DESCRIPTION="Modern Jabber/XMPP Client using GTK+/Vala" +HOMEPAGE="https://dino.im" +LICENSE="GPL-3" +SLOT="0" +IUSE="+gnupg +http +omemo" + +MY_REPO_URI="https://github.com/dino/dino" +if [[ ${PV} == "9999" ]]; then + EGIT_REPO_URI="${MY_REPO_URI}.git" + inherit git-r3 +else + KEYWORDS="~amd64" + SRC_URI="${MY_REPO_URI}/archive/${PV}.tar.gz" +fi + +RDEPEND=" + dev-db/sqlite:3 + dev-libs/glib:2 + dev-libs/libgee:0.8 + net-libs/glib-networking + x11-libs/cairo + x11-libs/gdk-pixbuf:2 + x11-libs/gtk+:3 + x11-libs/pango + gnupg? ( app-crypt/gpgme:1 ) + http? ( net-libs/libsoup:2.4 ) + omemo? ( dev-libs/libgcrypt:0 ) +" +DEPEND=" + $(vala_depend) + ${RDEPEND} + sys-devel/gettext +" + +src_prepare() { + cmake-utils_src_prepare +} + +src_configure() { + local disabled_plugins=( + $(usex gnupg "" "openpgp") + $(usex omemo "" "omemo") + $(usex http "" "http-files") + ) + local mycmakeargs+=( + "-DDISABLED_PLUGINS=$(local IFS=";"; echo "${disabled_plugins[*]}")" + ) + + if has test ${FEATURES}; then + mycmakeargs+=("-DBUILD_TESTS=yes") + fi + + cmake-utils_src_configure +} + +src_test() { + "${BUILD_DIR}"/xmpp-vala-test || die +} + +update_caches() { + gnome2_icon_cache_update + xdg_desktop_database_update +} + +pkg_postinst() { + update_caches +} + +pkg_postrm() { + update_caches +} diff --git a/net-im/dino/metadata.xml b/net-im/dino/metadata.xml new file mode 100644 index 000000000000..c488bca606f2 --- /dev/null +++ b/net-im/dino/metadata.xml @@ -0,0 +1,17 @@ + + + + + andrey_utkin@gentoo.org + Andrey Utkin + + + https://github.com/dino/dino/issues + dino/dino + + + Enable OpenPGP encryption plugin + Enable HTTP file upload plugin + Enable OMEMO encryption plugin + + -- cgit v1.2.3-18-g5258