Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/ucarp/
Date: Thu, 07 Jan 2021 10:14:07
Message-Id: 1610014437.55ffcf7b22f17262c9723b7761a02d80950c6e9f.soap@gentoo
1 commit: 55ffcf7b22f17262c9723b7761a02d80950c6e9f
2 Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
3 AuthorDate: Thu Jan 7 10:13:57 2021 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 7 10:13:57 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55ffcf7b
7
8 net-misc/ucarp: Remove old
9
10 Closes: https://github.com/gentoo/gentoo/pull/18971
11 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
12 Signed-off-by: David Seifert <soap <AT> gentoo.org>
13
14 net-misc/ucarp/ucarp-1.5.2-r3.ebuild | 47 ------------------------------------
15 1 file changed, 47 deletions(-)
16
17 diff --git a/net-misc/ucarp/ucarp-1.5.2-r3.ebuild b/net-misc/ucarp/ucarp-1.5.2-r3.ebuild
18 deleted file mode 100644
19 index 7a09ba18faf..00000000000
20 --- a/net-misc/ucarp/ucarp-1.5.2-r3.ebuild
21 +++ /dev/null
22 @@ -1,47 +0,0 @@
23 -# Copyright 1999-2014 Gentoo Foundation
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI="5"
27 -
28 -DESCRIPTION="Portable userland implementation of Common Address Redundancy Protocol (CARP)"
29 -HOMEPAGE="http://www.ucarp.org"
30 -SRC_URI="ftp://ftp.ucarp.org/pub/ucarp/${P}.tar.gz"
31 -
32 -LICENSE="GPL-2"
33 -SLOT="0"
34 -KEYWORDS="~amd64 ~ppc x86"
35 -IUSE="nls"
36 -
37 -RDEPEND="net-libs/libpcap"
38 -DEPEND="${RDEPEND}
39 - nls? ( sys-devel/gettext )"
40 -
41 -src_configure() {
42 - econf $(use_enable nls)
43 -}
44 -
45 -src_install() {
46 - default
47 -
48 - doman "${FILESDIR}"/ucarp.8
49 -
50 - exeinto /usr/libexec/ucarp
51 - doexe "${FILESDIR}"/vip-up-default.sh
52 - doexe "${FILESDIR}"/vip-down-default.sh
53 -
54 - keepdir /etc/ucarp
55 -
56 - newinitd "${FILESDIR}"/ucarp.initd-r1 ucarp
57 - newconfd "${FILESDIR}"/ucarp.confd ucarp
58 -}
59 -
60 -pkg_postinst() {
61 - elog "The provided init script needs to be configured first."
62 - elog "Edit /etc/conf.d/ucarp to suite your environment."
63 - elog "You will also have to set a shared password within /etc/ucarp/ucarp.pass"
64 - elog "or whatever file you have set \$UCARP_PASSFILE to."
65 -
66 - elog "If you need more than one instance of ucarp running, simply symlink"
67 - elog "the init script and create a copy of the init script configuration"
68 - elog "which corresponds to the name of the init script."
69 -}