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