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