commit: b0b38821930a1a2c2b31f105af5a17f51f213d93 Author: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org> AuthorDate: Sat Aug 18 19:50:25 2018 +0000 Commit: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org> CommitDate: Sat Aug 18 19:53:21 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0b38821
net-im/dino: add new package Based on work by Anthony Parsons <ant <AT> flussence.eu> (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(+) diff --git a/net-im/dino/dino-9999.ebuild b/net-im/dino/dino-9999.ebuild new file mode 100644 index 00000000000..9b578c60888 --- /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 00000000000..c488bca606f --- /dev/null +++ b/net-im/dino/metadata.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>andrey_ut...@gentoo.org</email> + <name>Andrey Utkin</name> + </maintainer> + <upstream> + <bugs-to>https://github.com/dino/dino/issues</bugs-to> + <remote-id type="github">dino/dino</remote-id> + </upstream> + <use> + <flag name="gnupg">Enable OpenPGP encryption plugin</flag> + <flag name="http">Enable HTTP file upload plugin</flag> + <flag name="omemo">Enable OMEMO encryption plugin</flag> + </use> +</pkgmetadata>