diff options
author | BlackNoxis <steven.darklight@gmail.com> | 2014-10-27 18:38:05 +0200 |
---|---|---|
committer | BlackNoxis <steven.darklight@gmail.com> | 2014-10-27 18:38:05 +0200 |
commit | 24934e623441310f644e5f72855b0f2bf9f3cd1a (patch) | |
tree | a453939bf58199bc2c3ff27bcf0accf2b221c6c4 /net-im/venom/venom-9999.ebuild | |
parent | 687f45092b4f4ccf33765cee7427f054bae22344 (diff) |
Incoming! Moving Rogento.git to kogaion-desktop. Finally
Diffstat (limited to 'net-im/venom/venom-9999.ebuild')
-rw-r--r-- | net-im/venom/venom-9999.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/net-im/venom/venom-9999.ebuild b/net-im/venom/venom-9999.ebuild new file mode 100644 index 00000000..6ce26803 --- /dev/null +++ b/net-im/venom/venom-9999.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit cmake-utils git-r3 vala + +DESCRIPTION="Vala/Gtk+ graphical user interface for Tox" + +HOMEPAGE="http://wiki.tox.im/Venom" +EGIT_REPO_URI="https://github.com/naxuroqa/Venom.git" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="" +IUSE="+libnotify qrcode" + +DEPEND="dev-libs/json-glib + dev-db/sqlite:3 + net-libs/tox + media-libs/gstreamer + >=x11-libs/gtk+-3.4:3 + $(vala_depend) + libnotify? ( x11-libs/libnotify ) + qrcode? ( >=media-gfx/qrencode-3.3.1 )" +RDEPEND="${DEPEND} + sys-devel/gettext" + +src_prepare() { + epatch_user +} + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_enable qrcode QR_ENCODE ) + $(cmake-utils_use_enable libnotify LIBNOTIFY ) + ) + + cmake-utils_src_configure +} + +pkg_postinst() { + elog "Ebuild tracks master branch of Venom, which currently" + elog "does not contain A/V support." +} |