Gentoo Archives: gentoo-commits

From: "Michael Weber (xmw)" <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/aiccu: aiccu-2007.01.15-r3.ebuild ChangeLog aiccu-2007.01.15-r1.ebuild
Date: Fri, 24 May 2013 07:09:13
Message-Id: 20130524070906.4BE2A2171E@flycatcher.gentoo.org
1 xmw 13/05/24 07:09:06
2
3 Modified: ChangeLog
4 Added: aiccu-2007.01.15-r3.ebuild
5 Removed: aiccu-2007.01.15-r1.ebuild
6 Log:
7 Add systemd support (thanks Łukasz Stelmach, bug 444692)
8
9 (Portage version: 2.2.0_alpha175/cvs/Linux x86_64, signed Manifest commit with key 62EEF090)
10
11 Revision Changes Path
12 1.42 net-misc/aiccu/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/aiccu/ChangeLog?rev=1.42&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/aiccu/ChangeLog?rev=1.42&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/aiccu/ChangeLog?r1=1.41&r2=1.42
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-misc/aiccu/ChangeLog,v
21 retrieving revision 1.41
22 retrieving revision 1.42
23 diff -u -r1.41 -r1.42
24 --- ChangeLog 28 Feb 2013 14:34:57 -0000 1.41
25 +++ ChangeLog 24 May 2013 07:09:06 -0000 1.42
26 @@ -1,6 +1,12 @@
27 # ChangeLog for net-misc/aiccu
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-misc/aiccu/ChangeLog,v 1.41 2013/02/28 14:34:57 jer Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-misc/aiccu/ChangeLog,v 1.42 2013/05/24 07:09:06 xmw Exp $
31 +
32 +*aiccu-2007.01.15-r3 (24 May 2013)
33 +
34 + 24 May 2013; Michael Weber <xmw@g.o> +aiccu-2007.01.15-r3.ebuild,
35 + +files/aiccu-2007.01.15-systemd.patch, -aiccu-2007.01.15-r1.ebuild:
36 + Add systemd support (thanks Łukasz Stelmach, bug 444692)
37
38 28 Feb 2013; Jeroen Roovers <jer@g.o> aiccu-2007.01.15-r2.ebuild:
39 Stable for HPPA (bug #457440).
40
41
42
43 1.1 net-misc/aiccu/aiccu-2007.01.15-r3.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/aiccu/aiccu-2007.01.15-r3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/aiccu/aiccu-2007.01.15-r3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: aiccu-2007.01.15-r3.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-misc/aiccu/aiccu-2007.01.15-r3.ebuild,v 1.1 2013/05/24 07:09:06 xmw Exp $
53
54 EAPI=5
55
56 inherit eutils linux-info systemd toolchain-funcs
57
58 DESCRIPTION="AICCU Client to configure an IPv6 tunnel to SixXS"
59 HOMEPAGE="http://www.sixxs.net/tools/aiccu"
60 SRC_URI="http://www.sixxs.net/archive/sixxs/aiccu/unix/${PN}_${PV//\./}.tar.gz"
61
62 LICENSE="SixXS"
63 SLOT="0"
64 KEYWORDS="~amd64 ~arm ~hppa ~ppc ~sparc ~x86"
65 IUSE="systemd"
66
67 RDEPEND="net-libs/gnutls
68 sys-apps/iproute2
69 systemd? ( sys-apps/systemd )"
70 DEPEND="${RDEPEND}"
71
72 S=${WORKDIR}/${PN}
73
74 CONFIG_CHECK="~TUN"
75
76 src_prepare() {
77 epatch \
78 "${FILESDIR}"/${P}-r2-init.gentoo.patch \
79 "${FILESDIR}"/${P}-Makefile.patch \
80 "${FILESDIR}"/${P}-setupscript.patch \
81 "${FILESDIR}"/${P}-uclibc.patch \
82 "${FILESDIR}"/${P}-systemd.patch
83 }
84
85 src_compile() {
86 # Don't use main Makefile since it requires additional
87 # dependencies which are useless for us.
88 emake CC=$(tc-getCC) STRIP= -C unix-console \
89 HAVE_SYSTEMD=$(usex systemd 1 0)
90 }
91
92 src_install() {
93 dosbin unix-console/${PN}
94
95 insopts -m 600
96 insinto /etc
97 doins doc/${PN}.conf
98 newinitd doc/${PN}.init.gentoo ${PN}
99
100 use systemd && systemd_dounit doc/${PN}.service
101
102 dodoc doc/{HOWTO,README,changelog}
103 }