Gentoo Archives: gentoo-commits

From: "Alin Nastac (mrness)" <mrness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-proxy/haproxy: ChangeLog haproxy-1.3.15.ebuild haproxy-1.3.13.1.ebuild
Date: Sun, 20 Apr 2008 02:59:57
Message-Id: E1JnPmU-00087V-K7@stork.gentoo.org
1 mrness 08/04/20 02:59:54
2
3 Modified: ChangeLog
4 Added: haproxy-1.3.15.ebuild
5 Removed: haproxy-1.3.13.1.ebuild
6 Log:
7 Version bump (#213086 and #216010).
8 (Portage version: 2.1.4.4)
9
10 Revision Changes Path
11 1.12 net-proxy/haproxy/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-proxy/haproxy/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-proxy/haproxy/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-proxy/haproxy/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-proxy/haproxy/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 30 Dec 2007 11:41:28 -0000 1.11
24 +++ ChangeLog 20 Apr 2008 02:59:54 -0000 1.12
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-proxy/haproxy
27 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/haproxy/ChangeLog,v 1.11 2007/12/30 11:41:28 mrness Exp $
29 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-proxy/haproxy/ChangeLog,v 1.12 2008/04/20 02:59:54 mrness Exp $
31 +
32 +*haproxy-1.3.15 (20 Apr 2008)
33 +
34 + 20 Apr 2008; Alin Năstac <mrness@g.o> -haproxy-1.3.13.1.ebuild,
35 + +haproxy-1.3.15.ebuild:
36 + Version bump (#213086 and #216010).
37
38 *haproxy-1.3.14.1 (30 Dec 2007)
39
40
41
42
43 1.1 net-proxy/haproxy/haproxy-1.3.15.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-proxy/haproxy/haproxy-1.3.15.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-proxy/haproxy/haproxy-1.3.15.ebuild?rev=1.1&content-type=text/plain
47
48 Index: haproxy-1.3.15.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-proxy/haproxy/haproxy-1.3.15.ebuild,v 1.1 2008/04/20 02:59:54 mrness Exp $
53
54 inherit linux-info versionator
55
56 DESCRIPTION="A TCP/HTTP reverse proxy for high availability environments"
57 HOMEPAGE="http://haproxy.1wt.eu"
58 SRC_URI="http://haproxy.1wt.eu/download/$(get_version_component_range 1-2)/src/${P}.tar.gz"
59
60 LICENSE="GPL-2 LGPL-2.1"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86"
63 IUSE="pcre"
64
65 DEPEND="pcre? ( >=dev-libs/libpcre-6.3 )"
66 RDEPEND="${DEPEND}"
67
68 src_compile() {
69 local ARGS="TARGET=linux${KV_MAJOR}${KV_MINOR}"
70 use pcre && ARGS="${ARGS} REGEX=pcre"
71 emake ADDINC="${CFLAGS}" LDFLAGS="${LDFLAGS}" ${ARGS}
72 }
73
74 src_install() {
75 exeinto /usr/bin
76 doexe haproxy
77 newinitd "${FILESDIR}/haproxy.initd" haproxy
78
79 # Don't install useless files
80 rm examples/build.cfg doc/*gpl.txt
81
82 dodoc CHANGELOG ROADMAP TODO doc/*.txt
83 docinto examples
84 dodoc examples/*.cfg
85 }
86
87 pkg_postinst() {
88 if [[ ! -f "${ROOT}/etc/haproxy.cfg" ]] ; then
89 einfo "You need to create /etc/haproxy.cfg before you start haproxy service."
90 if [[ -d "${ROOT}/usr/share/doc/${P}" ]]; then
91 einfo "Please consult the installed documentation for learning the configuration file's syntax."
92 einfo "The documentation and sample configuration files are installed here:"
93 einfo " ${ROOT}usr/share/doc/${P}"
94 fi
95 fi
96 }
97
98
99
100 --
101 gentoo-commits@l.g.o mailing list