blob: ec740572c5a5a4d6962dbe1fe6288d2602bd4aa9 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
DESCRIPTION="secure mesh networking VPN"
HOMEPAGE="http://e-x-a.org/"
SRC_URI="http://e-x-a.org/releases/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="net-libs/gnutls"
DEPEND="${RDEPEND}
sys-devel/automake"
src_prepare() {
#incomplete, don't bother with it.
rm -r src/stunproxy
# eautoreconf doesn't work.
./autogen.sh || die
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
dodoc README || die "doc'ing README failed"
}
|