summaryrefslogtreecommitdiff
blob: 2efea3e1f5a89ba0ced9838274b6e401c40a31d0 (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
# Copyright 2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

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="old-openrc"
RDEPEND="!<sys-apps/openrc-0.13
	!old-openrc? ( !<sys-apps/openrc-0.21.7 )
	old-openrc? ( !>=sys-apps/openrc-0.21.7 )
	>=app-shells/push-2.0-r2"
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/fire*
	! use old-openrc || doconfd openrc/conf.d/modules
	doinitd openrc/init.d/*
	dodoc README
	systemd_dounit systemd/*
}