diff options
author | BlackNoxis <steven.darklight@gmail.com> | 2015-08-24 20:45:13 +0300 |
---|---|---|
committer | BlackNoxis <steven.darklight@gmail.com> | 2015-08-24 20:45:13 +0300 |
commit | 3a33f2966f834d3520b03df59018e3d0295fcc69 (patch) | |
tree | 3659aaf14090f23f793a297acc1df879c4cacc4a /net-misc/toxvpn/toxvpn-9999.ebuild | |
parent | 7fcb54b4b7928c799f45b3c7800443d39b9f2ce7 (diff) |
[toxcore] adaugat toxcore
Diffstat (limited to 'net-misc/toxvpn/toxvpn-9999.ebuild')
-rw-r--r-- | net-misc/toxvpn/toxvpn-9999.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/net-misc/toxvpn/toxvpn-9999.ebuild b/net-misc/toxvpn/toxvpn-9999.ebuild new file mode 100644 index 00000000..e87a4ab4 --- /dev/null +++ b/net-misc/toxvpn/toxvpn-9999.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit cmake-utils eutils git-2 + +DESCRIPTION="toxvpn allows one to make tunneled point to point connections over Tox" +HOMEPAGE="https://github.com/cleverca22/toxvpn" +SRC_URI="" +EGIT_REPO_URI="git://github.com/cleverca22/toxvpn.git" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="" +IUSE="" + +RDEPEND="dev-libs/jsoncpp + net-libs/tox" +DEPEND="${RDEPEND}" + +src_prepare() { + epatch_user +} + +src_configure() { + cmake-utils_src_configure +} + +src_compile() { + cmake-utils_src_compile +} + +src_install() { + dobin "${WORKDIR}/${P}_build"/toxvpn +} |