blob: 58c18d81ec6b53eed01dffe955fc7564a49e95f4 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/isatapd/isatapd-0.9.7.ebuild,v 1.1 2013/09/28 11:18:07 pacho Exp $
EAPI=5
inherit linux-info systemd
DESCRIPTION="creates and maintains an ISATAP tunnel (rfc5214)"
HOMEPAGE="http://www.saschahlusiak.de/linux/isatap.htm"
SRC_URI="http://www.saschahlusiak.de/linux/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND=""
CONFIG_CHECK="~TUN"
ERROR_TUN="CONFIG_TUN is needed for isatapd to work"
src_prepare() {
sed -e '/^opts/s:opts:extra_started_commands:' \
-i openrc/isatapd.init.d || die
}
src_install() {
default
newinitd openrc/isatapd.init.d isatapd
newconfd openrc/isatapd.conf.d isatapd
systemd_dounit "${FILESDIR}"/${PN}.service
}
|