Gentoo Archives: gentoo-commits

From: Michael Weber <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/aiccu/
Date: Tue, 22 Sep 2015 07:22:11
Message-Id: 1442906435.1586694db3e6d545abe883e5e10f9aa6550b8d43.xmw@gentoo
1 commit: 1586694db3e6d545abe883e5e10f9aa6550b8d43
2 Author: Michael Weber <xmw <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 22 07:20:35 2015 +0000
4 Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 22 07:20:35 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1586694d
7
8 net-misc/aiccu: Drop old revision (bug 549014).
9
10 Package-Manager: portage-2.2.20.1
11
12 net-misc/aiccu/aiccu-2007.01.15-r4.ebuild | 57 -------------------------------
13 1 file changed, 57 deletions(-)
14
15 diff --git a/net-misc/aiccu/aiccu-2007.01.15-r4.ebuild b/net-misc/aiccu/aiccu-2007.01.15-r4.ebuild
16 deleted file mode 100644
17 index d04136e..0000000
18 --- a/net-misc/aiccu/aiccu-2007.01.15-r4.ebuild
19 +++ /dev/null
20 @@ -1,57 +0,0 @@
21 -# Copyright 1999-2014 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=5
26 -
27 -inherit eutils linux-info systemd toolchain-funcs
28 -
29 -DESCRIPTION="AICCU Client to configure an IPv6 tunnel to SixXS"
30 -HOMEPAGE="http://www.sixxs.net/tools/aiccu"
31 -SRC_URI="http://www.sixxs.net/archive/sixxs/aiccu/unix/${PN}_${PV//\./}.tar.gz"
32 -
33 -LICENSE="SixXS"
34 -SLOT="0"
35 -KEYWORDS="amd64 arm hppa ppc sparc x86"
36 -IUSE="systemd"
37 -
38 -RDEPEND="<net-libs/gnutls-3.4
39 - sys-apps/iproute2
40 - systemd? ( sys-apps/systemd )
41 -"
42 -DEPEND="${RDEPEND}
43 - virtual/pkgconfig
44 -"
45 -
46 -S=${WORKDIR}/${PN}
47 -
48 -CONFIG_CHECK="~TUN"
49 -
50 -src_prepare() {
51 - epatch \
52 - "${FILESDIR}"/${P}-r2-init.gentoo.patch \
53 - "${FILESDIR}"/${P}-Makefile.patch \
54 - "${FILESDIR}"/${P}-setupscript.patch \
55 - "${FILESDIR}"/${P}-uclibc.patch \
56 - "${FILESDIR}"/${P}-systemd.patch
57 -}
58 -
59 -src_compile() {
60 - # Don't use main Makefile since it requires additional
61 - # dependencies which are useless for us.
62 - emake CC=$(tc-getCC) STRIP= -C unix-console \
63 - HAVE_SYSTEMD=$(usex systemd 1 0)
64 -}
65 -
66 -src_install() {
67 - dosbin unix-console/${PN}
68 -
69 - insopts -m 600
70 - insinto /etc
71 - doins doc/${PN}.conf
72 - newinitd doc/${PN}.init.gentoo ${PN}
73 -
74 - use systemd && systemd_dounit doc/${PN}.service
75 -
76 - dodoc doc/{HOWTO,README,changelog}
77 -}