blob: 56184275703f81d872ab82350b3bce3bc6a8cb00 (
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
|
EAPI=6
DESCRIPTION="Multiple configuration system"
HOMEPAGE="https://git.cynerd.cz/multiconfig/"
SRC_URI="https://git.cynerd.cz/multiconfig/snapshot/${P}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3.0+"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="bridge firewall openvpn"
DEPEND="bridge? ( net-misc/dhcp )
firewall? ( net-firewall/iptables )
openvpn? ( net-vpn/openvpn )
"
RDEPEND="${DEPEND}"
src_install() {
dodir /usr/sbin
exeinto /usr/sbin
doexe "${S}/multiconfig.sh"
dodir /usr/lib/multiconfig
touch "${D}"/usr/lib/multiconfig/.keep
# TODO cron
if use bridge; then
doinitd "${S}/bridge/init/bridge"
doinitd "${S}/bridge/init/bridge-dhcp"
dodir /etc/dhcp
insinto /etc/dhcp
newins "${S}/bridge/dhcpd.conf" "bridge_dhcpd.conf"
dodir /etc/sysctl.d
insinto /etc/sysctl.d
newins "${S}/bridge/sysctl.conf" "bridge.conf"
fi
if use firewall; then
cp "${S}/firewall/multiconfig.sh" "${D}/usr/lib/multiconfig/firewall"
fi
if use openvpn; then
cp "${S}/openvpn/multiconfig.sh" "${D}/usr/lib/multiconfig/openvpn"
# TODO
fi
}
pkg_postinst() {
# TODO run multiconfig
# TODO check if they are not activated
use bridge && einfo "Don't forget to activate bridge and bridge-dhcp services"
use firewall && einfo "Don't forget to activate iptables and ip6tables services"
use openvpn && einfo "Don't forget to activate myvpn service"
}
|