blob: 3a516b04950219ace36d722dfbdfe22494ca35fa (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="secure mesh networking VPN"
HOMEPAGE="http://exa.czweb.org/"
SRC_URI="http://exa.czweb.org/releases/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-libs/openssl"
DEPEND="dev-util/scons
${RDEPEND}"
src_compile () {
# dont pass make's -l option, as scons uses it differently.
scons ${MAKEOPTS/-l[0-9]} || die "compilation failed"
}
src_install () {
dobin cloudvpn extras/initscripts/cloudctl || die
doman extras/man/cloudvpn.1 || die
}
|