Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/isatapd: isatapd-0.9.7-r1.ebuild ChangeLog
Date: Sun, 30 Mar 2014 10:09:21
Message-Id: 20140330100914.6B8DB2005C@flycatcher.gentoo.org
1 pacho 14/03/30 10:09:14
2
3 Modified: ChangeLog
4 Added: isatapd-0.9.7-r1.ebuild
5 Log:
6 Fix systemd support (#482690 by Yichao Zhou)
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.3 net-misc/isatapd/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/isatapd/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/isatapd/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/isatapd/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-misc/isatapd/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 28 Sep 2013 11:18:07 -0000 1.2
24 +++ ChangeLog 30 Mar 2014 10:09:14 -0000 1.3
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-misc/isatapd
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-misc/isatapd/ChangeLog,v 1.2 2013/09/28 11:18:07 pacho Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-misc/isatapd/ChangeLog,v 1.3 2014/03/30 10:09:14 pacho Exp $
31 +
32 +*isatapd-0.9.7-r1 (30 Mar 2014)
33 +
34 + 30 Mar 2014; Pacho Ramos <pacho@g.o> +files/isatapd.service-r1,
35 + +files/isatapd.service.conf, +isatapd-0.9.7-r1.ebuild:
36 + Fix systemd support (#482690 by Yichao Zhou)
37
38 *isatapd-0.9.7 (28 Sep 2013)
39
40
41
42
43 1.1 net-misc/isatapd/isatapd-0.9.7-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/isatapd/isatapd-0.9.7-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/isatapd/isatapd-0.9.7-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: isatapd-0.9.7-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-misc/isatapd/isatapd-0.9.7-r1.ebuild,v 1.1 2014/03/30 10:09:14 pacho Exp $
53
54 EAPI=5
55 inherit linux-info systemd
56
57 DESCRIPTION="creates and maintains an ISATAP tunnel (rfc5214)"
58 HOMEPAGE="http://www.saschahlusiak.de/linux/isatap.htm"
59 SRC_URI="http://www.saschahlusiak.de/linux/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE=""
65
66 DEPEND=""
67 RDEPEND=""
68
69 CONFIG_CHECK="~TUN"
70 ERROR_TUN="CONFIG_TUN is needed for isatapd to work"
71
72 src_prepare() {
73 sed -e '/^opts/s:opts:extra_started_commands:' \
74 -i openrc/isatapd.init.d || die
75 }
76
77 src_install() {
78 default
79
80 newinitd openrc/isatapd.init.d isatapd
81 newconfd openrc/isatapd.conf.d isatapd
82 systemd_newunit "${FILESDIR}"/${PN}.service-r1 ${PN}.service
83 systemd_install_serviced "${FILESDIR}"/${PN}.service.conf
84 }