Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-servers/pound: pound-2.7f.ebuild ChangeLog
Date: Tue, 30 Dec 2014 04:54:41
Message-Id: 20141230045438.53F61E785@oystercatcher.gentoo.org
1 patrick 14/12/30 04:54:38
2
3 Modified: ChangeLog
4 Added: pound-2.7f.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.15/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.55 www-servers/pound/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/pound/ChangeLog?rev=1.55&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/pound/ChangeLog?rev=1.55&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/pound/ChangeLog?r1=1.54&r2=1.55
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/www-servers/pound/ChangeLog,v
20 retrieving revision 1.54
21 retrieving revision 1.55
22 diff -u -r1.54 -r1.55
23 --- ChangeLog 25 Oct 2014 03:42:11 -0000 1.54
24 +++ ChangeLog 30 Dec 2014 04:54:38 -0000 1.55
25 @@ -1,6 +1,11 @@
26 # ChangeLog for www-servers/pound
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/www-servers/pound/ChangeLog,v 1.54 2014/10/25 03:42:11 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/www-servers/pound/ChangeLog,v 1.55 2014/12/30 04:54:38 patrick Exp $
30 +
31 +*pound-2.7f (30 Dec 2014)
32 +
33 + 30 Dec 2014; Patrick Lauer <patrick@g.o> +pound-2.7f.ebuild:
34 + Bump
35
36 *pound-2.7d (25 Oct 2014)
37
38
39
40
41 1.1 www-servers/pound/pound-2.7f.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/pound/pound-2.7f.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/pound/pound-2.7f.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pound-2.7f.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/www-servers/pound/pound-2.7f.ebuild,v 1.1 2014/12/30 04:54:38 patrick Exp $
51
52 EAPI=5
53 inherit eutils
54
55 MY_P=${P/p/P}
56 DESCRIPTION="A http/https reverse-proxy and load-balancer"
57 HOMEPAGE="http://www.apsis.ch/pound/"
58 SRC_URI="http://www.apsis.ch/pound/${MY_P}.tgz"
59
60 LICENSE="GPL-3"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86"
63 IUSE=""
64
65 DEPEND="dev-libs/libpcre
66 dev-libs/openssl"
67 RDEPEND="${DEPEND}"
68
69 S=${WORKDIR}/${MY_P}
70
71 src_install() {
72 dodir /usr/sbin
73 cp "${S}"/pound "${D}"/usr/sbin/
74 cp "${S}"/poundctl "${D}"/usr/sbin/
75
76 doman pound.8
77 doman poundctl.8
78 dodoc README FAQ
79
80 dodir /etc/init.d
81 newinitd "${FILESDIR}"/pound.init-1.9 pound
82
83 insinto /etc
84 newins "${FILESDIR}"/pound-2.2.cfg pound.cfg
85 }
86
87 pkg_postinst() {
88 elog "No demo-/sample-configfile is included in the distribution -"
89 elog "read the man-page for more info."
90 elog "A sample (localhost:8888 -> localhost:80) for gentoo is given in \"/etc/pound.cfg\"."
91 echo
92 ewarn "You will have to upgrade you configuration file, if you are"
93 ewarn "upgrading from a version <= 2.0."
94 echo
95 ewarn "The 'WebDAV' config statement is no longer supported!"
96 ewarn "Please adjust your configuration, if necessary."
97 echo
98 }