summaryrefslogtreecommitdiff
path: root/net-misc/toxvpn/toxvpn-9999.ebuild
blob: e87a4ab483001e9ed6f1cba4d7d6188d1b413332 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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
}