Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-servers/varnish: ChangeLog varnish-3.0.1.ebuild
Date: Fri, 02 Sep 2011 04:11:31
Message-Id: 20110902041119.424B72004C@flycatcher.gentoo.org
1 radhermit 11/09/02 04:11:19
2
3 Modified: ChangeLog
4 Added: varnish-3.0.1.ebuild
5 Log:
6 Version bump. Add static-libs USE flag.
7
8 (Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.37 www-servers/varnish/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/varnish/ChangeLog?rev=1.37&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/varnish/ChangeLog?rev=1.37&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/varnish/ChangeLog?r1=1.36&r2=1.37
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v
20 retrieving revision 1.36
21 retrieving revision 1.37
22 diff -u -r1.36 -r1.37
23 --- ChangeLog 30 Jul 2011 22:27:28 -0000 1.36
24 +++ ChangeLog 2 Sep 2011 04:11:19 -0000 1.37
25 @@ -1,6 +1,11 @@
26 # ChangeLog for www-servers/varnish
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v 1.36 2011/07/30 22:27:28 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v 1.37 2011/09/02 04:11:19 radhermit Exp $
30 +
31 +*varnish-3.0.1 (02 Sep 2011)
32 +
33 + 02 Sep 2011; Tim Harder <radhermit@g.o> +varnish-3.0.1.ebuild:
34 + Version bump. Add static-libs USE flag.
35
36 *varnish-3.0.0 (30 Jul 2011)
37
38
39
40
41 1.1 www-servers/varnish/varnish-3.0.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/varnish/varnish-3.0.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/varnish/varnish-3.0.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: varnish-3.0.1.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/varnish-3.0.1.ebuild,v 1.1 2011/09/02 04:11:19 radhermit Exp $
51
52 EAPI="4"
53
54 DESCRIPTION="Varnish is a state-of-the-art, high-performance HTTP accelerator."
55 HOMEPAGE="http://www.varnish-cache.org/"
56 SRC_URI="http://repo.varnish-cache.org/source/${P}.tar.gz"
57
58 LICENSE="BSD-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~x86"
61 IUSE="doc static-libs"
62
63 #varnish compiles stuff at run time
64 RDEPEND="sys-devel/gcc"
65 DEPEND="dev-python/docutils"
66
67 RESTRICT="test" #315725
68
69 src_configure() {
70 econf \
71 $(use_enable static-libs static)
72 }
73
74 src_install() {
75 emake DESTDIR="${D}" install
76 newinitd "${FILESDIR}"/varnishd.initd varnishd
77 newconfd "${FILESDIR}"/varnishd.confd varnishd
78
79 insinto /etc/logrotate.d
80 newins "${FILESDIR}/varnishd.logrotate" varnishd
81
82 dodir /var/log/varnish
83
84 use doc && dohtml -r "doc/sphinx/=build/html/"
85 }
86
87 pkg_postinst () {
88 elog "No demo-/sample-configfile is included in the distribution -"
89 elog "please read the man-page for more info."
90 elog "A sample (localhost:8080 -> localhost:80) for gentoo is given in"
91 elog " /etc/conf.d/varnishd"
92 }