summaryrefslogtreecommitdiff
path: root/gentoo-linux/net-misc/anytun/anytun-0.3.3.ebuild
blob: e1fb9b7101d45b68482ea9815970aee45bcb5ae7 (plain) (blame)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit eutils

DESCRIPTION="VPN daemon using Secure Anycast Tunneling"
HOMEPAGE="http://anytun.org/"
SRC_URI="http://anytun.org/download/${P}.tar.gz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="examples gcrypt"

RDEPEND=">=dev-libs/boost-1.35
	gcrypt? ( dev-libs/libgcrypt )
	!gcrypt? ( dev-libs/openssl )"
DEPEND="${RDEPEND}
	app-text/asciidoc"

S=${S}/src

src_compile() {
	local myconf
	use gcrypt || myconf="--use-ssl-crypto"
	use examples\
		&& myconf="${myconf} --examplesdir=/usr/share/doc/${PF}/examples/etc" \
		|| myconf="${myconf} --no-examples"
	econf --ebuild-compat ${myconf}

	einfo "Building executables"
	emake || die "make failed"

	einfo "Building manpages"
	emake manpage || die "failed building manpages"
}

src_install() {
	emake DESTDIR="${D}" install || die "make install failed"
	rm -Rf "${D}"/etc/init.d
	#as long as README just contains path to examples, only install it with examples
	use examples || rm -f "${D}"/etc/${PN}/README
	keepdir /var/run/anytun || die "failed to mkdir"
	keepdir /var/run/anytun-controld || die "failed to mkdir"

	newinitd "${FILESDIR}/${PN}-0.3.3.init" ${PN} || die "failed to copy/install initrd script"

	cd ../
	dodoc AUTHORS ChangeLog README || die "failed to install docs"

	#forgotten in current upstream package
	#insinto /usr/share/${P}/wireshark-lua/
	#doins wireshark-lua/satp.lua || die "failed to install wireshark-lua contrib script"
}

pkg_config() {
	[ ! -d "${ROOT}"/usr/share/doc/${PF}/examples/etc/${PN} ] && \
		die "can't copy example configs since examples were not installed (reemerge with USE='examples')"
	for example in autostart server client1 client2 client3 p2p-a p2p-b; do
		[ -e "${ROOT}"/etc/${PN}/${example} ] && die "${ROOT}/etc/${PN}/${example} already present, rm -R it first"
	done
	cp -rv "${ROOT}"/usr/share/doc/${PF}/examples/etc/${PN} "${ROOT}"/etc/ || die "failed to copy examples"
}

pkg_postinst() {
	enewgroup anytun
	enewuser anytun -1 -1 /var/run/anytun anytun
	elog "Please refer to the README file regarding the syntax of the /etc/${PN}/"
	elog "configuration files or see examples provided with the package"
	elog "You can use gentoo-style ${PN}.{VPN} initrd scripts to start "
	elog "VPNs separately. Just symlink to the initscript, e.g.:"
	elog "# ln -s /etc/init.d/${PN} /etc/init.d/${PN}.client1"
	elog
	elog "You can disect anytun traffic using wireshark by plugging the script"
	elog "satp.lua into wireshark. Get it here:"
	elog " http://svn.anytun.org/anytun-common/trunk/wireshark-lua/satp.lua"
	#elog " /usr/share/${P}/wireshark-lua/satp.lua into wireshark"
}