blob: e86df95ee2a91a31040ad9d54670df39367e6e7c (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
RESTRICT="mirror"
inherit systemd
DESCRIPTION="Initialize iptables and net-related sysctl variables"
HOMEPAGE="https://github.com/vaeth/firewall-mv/"
SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="!<sys-apps/openrc-0.13
app-shells/push"
DEPEND=""
src_prepare() {
if use prefix
then sed -i \
-e "s!/etc/!${EPREFIX}/etc/!g" \
-e "s!/usr/!${EPREFIX}/usr/!g" \
-- sbin/* etc/* systemd/* || die
else sed -i \
-e '1s"^#!/usr/bin/env sh$"#!'"${EPREFIX}/bin/sh"'"' \
-- sbin/* || die
fi
eapply_user
}
src_install() {
into /
dosbin sbin/*
insinto /etc
doins -r etc/*
insinto /usr/lib/modules-load.d
doins modules-load.d/*
insinto /usr/share/zsh/site-functions
doins zsh/*
doconfd openrc/conf.d/*
doinitd openrc/init.d/*
dodoc README
systemd_dounit systemd/*
}
|