Gentoo Archives: gentoo-commits

From: "Tiziano Mueller (dev-zero)" <dev-zero@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/ucarp: ucarp-1.5.2-r4.ebuild ChangeLog ucarp-1.5.2.ebuild ucarp-1.5.2-r1.ebuild
Date: Fri, 28 Nov 2014 15:54:59
Message-Id: 20141128155455.E858DB187@oystercatcher.gentoo.org
1 dev-zero 14/11/28 15:54:55
2
3 Modified: ChangeLog
4 Added: ucarp-1.5.2-r4.ebuild
5 Removed: ucarp-1.5.2.ebuild ucarp-1.5.2-r1.ebuild
6 Log:
7 fix path to ip (bug #486688), drop old
8
9 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x1A5D023975B0583D!)
10
11 Revision Changes Path
12 1.25 net-misc/ucarp/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ucarp/ChangeLog?rev=1.25&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ucarp/ChangeLog?rev=1.25&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ucarp/ChangeLog?r1=1.24&r2=1.25
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-misc/ucarp/ChangeLog,v
21 retrieving revision 1.24
22 retrieving revision 1.25
23 diff -u -r1.24 -r1.25
24 --- ChangeLog 10 Aug 2014 20:48:37 -0000 1.24
25 +++ ChangeLog 28 Nov 2014 15:54:55 -0000 1.25
26 @@ -1,6 +1,13 @@
27 # ChangeLog for net-misc/ucarp
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-misc/ucarp/ChangeLog,v 1.24 2014/08/10 20:48:37 slyfox Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-misc/ucarp/ChangeLog,v 1.25 2014/11/28 15:54:55 dev-zero Exp $
31 +
32 +*ucarp-1.5.2-r4 (28 Nov 2014)
33 +
34 + 28 Nov 2014; Tiziano Müller <dev-zero@g.o>
35 + +files/vip-down-default.sh-r1, +files/vip-up-default.sh-r1,
36 + +ucarp-1.5.2-r4.ebuild, -ucarp-1.5.2-r1.ebuild, -ucarp-1.5.2.ebuild:
37 + fix path to ip (bug #486688), drop old
38
39 10 Aug 2014; Sergei Trofimovich <slyfox@g.o> ucarp-1.3.ebuild,
40 ucarp-1.5.2-r1.ebuild, ucarp-1.5.2-r3.ebuild, ucarp-1.5.2.ebuild:
41
42
43
44 1.1 net-misc/ucarp/ucarp-1.5.2-r4.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ucarp/ucarp-1.5.2-r4.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/ucarp/ucarp-1.5.2-r4.ebuild?rev=1.1&content-type=text/plain
48
49 Index: ucarp-1.5.2-r4.ebuild
50 ===================================================================
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/net-misc/ucarp/ucarp-1.5.2-r4.ebuild,v 1.1 2014/11/28 15:54:55 dev-zero Exp $
54
55 EAPI="5"
56
57 DESCRIPTION="Portable userland implementation of Common Address Redundancy Protocol (CARP)"
58 HOMEPAGE="http://www.ucarp.org"
59 SRC_URI="ftp://ftp.ucarp.org/pub/ucarp/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~x86"
64 IUSE="nls"
65
66 RDEPEND="net-libs/libpcap"
67 DEPEND="${RDEPEND}
68 nls? ( sys-devel/gettext )"
69
70 src_configure() {
71 econf $(use_enable nls)
72 }
73
74 src_install() {
75 default
76
77 doman "${FILESDIR}"/ucarp.8
78
79 exeinto /usr/libexec/ucarp
80 newexe "${FILESDIR}"/vip-up-default.sh-r1 vip-up-default.sh
81 newexe "${FILESDIR}"/vip-down-default.sh-r1 vip-down-default.sh
82
83 keepdir /etc/ucarp
84
85 newinitd "${FILESDIR}"/ucarp.initd-r1 ucarp
86 newconfd "${FILESDIR}"/ucarp.confd ucarp
87 }
88
89 pkg_postinst() {
90 elog "The provided init script needs to be configured first."
91 elog "Edit /etc/conf.d/ucarp to suite your environment."
92 elog "You will also have to set a shared password within /etc/ucarp/ucarp.pass"
93 elog "or whatever file you have set \$UCARP_PASSFILE to."
94
95 elog "If you need more than one instance of ucarp running, simply symlink"
96 elog "the init script and create a copy of the init script configuration"
97 elog "which corresponds to the name of the init script."
98 }