blob: d5f0d3dad99a519fe90bb632341fb5dcc93616d8 (
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
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: This ebuild is from Lua overlay; Bumped by mva; $
EAPI="5"
inherit base toolchain-funcs flag-o-matic eutils mercurial
DESCRIPTION="LuaJIT FFI bindings to net-dns/unbound"
HOMEPAGE="http://code.zash.se/luaunbound/"
EHG_REPO_URI="http://code.zash.se/luaunbound/"
LICENSE="MIT"
SLOT="0"
KEYWORDS=""
IUSE="prosody luajit"
RDEPEND="
!luajit? ( >=dev-lang/lua-5.1 )
luajit? ( dev-lang/luajit:2 )
net-dns/unbound
prosody? ( net-im/prosody )
"
DEPEND="
${RDEPEND}
dev-util/pkgconfig
"
DOCS=( "README.markdown" )
src_compile() {
# If we have LuaJIT in the system — we'd prefer FFI version
use luajit || emake
}
src_install() {
local lua=lua;
use luajit && lua=luajit;
if use luajit; then
insinto "$($(tc-getPKG_CONFIG) --variable INSTALL_LMOD ${lua})/util/"
newins util.lunbound.lua lunbound.lua
newins util.dns.lua dns.lua
# something else to be useful outside prosody?..
else
insinto "$($(tc-getPKG_CONFIG) --variable INSTALL_CMOD ${lua})/util/"
doins "lunbound.so"
insinto "$($(tc-getPKG_CONFIG) --variable INSTALL_LMOD ${lua})/util/"
newins util.dns.lua dns.lua
fi
# Actually, it is possible to patch prosody ebuild to remove dns utils if using it with lubound, just I'm not sure it is a best way.
if use prosody; then
./squish.sh > use_unbound.lua
insinto "/etc/jabber"
doins "use_unbound.lua"
fi
base_src_install_docs
}
pkg_postinst() {
if use prosody; then
einfo ""
einfo "Add following 3 lines to global section of your prosody.cfg.lua:"
echo 'RunScript "use_unbound.lua"'
echo 'resolvconf = "/etc/resolv.conf"'
echo 'hoststxt = "/etc/hosts"'
echo ''
einfo "Alternatively, you can customize resolv.conf and hosts files locations"
fi
}
|