blob: d8f9b28a89e2b98fa67d227172ab8090ca93c0aa (
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
|
# Copyright 1999-2009 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
}
|