summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThilo Bangert <bangert@gentoo.org>2007-05-21 07:14:09 +0000
committerThilo Bangert <bangert@gentoo.org>2007-05-21 07:14:09 +0000
commit216c6943f4f15a6e539fbcc62b7228bb20ca6b47 (patch)
treeb6699b157c89992fb46b49e6ffa5eb25005c027f /www-servers
parentstable x86, bug 179277 (diff)
downloadgentoo-2-216c6943f4f15a6e539fbcc62b7228bb20ca6b47.tar.gz
gentoo-2-216c6943f4f15a6e539fbcc62b7228bb20ca6b47.tar.bz2
gentoo-2-216c6943f4f15a6e539fbcc62b7228bb20ca6b47.zip
version bump
(Portage version: 2.1.2.7)
Diffstat (limited to 'www-servers')
-rw-r--r--www-servers/varnish/ChangeLog7
-rw-r--r--www-servers/varnish/files/digest-varnish-1.0.43
-rw-r--r--www-servers/varnish/varnish-1.0.4.ebuild33
3 files changed, 42 insertions, 1 deletions
diff --git a/www-servers/varnish/ChangeLog b/www-servers/varnish/ChangeLog
index bb1efe696d23..f7b62bff9c87 100644
--- a/www-servers/varnish/ChangeLog
+++ b/www-servers/varnish/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for www-servers/varnish
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v 1.7 2007/05/19 12:00:41 bangert Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v 1.8 2007/05/21 07:14:09 bangert Exp $
+
+*varnish-1.0.4 (21 May 2007)
+
+ 21 May 2007; Thilo Bangert <bangert@gentoo.org> +varnish-1.0.4.ebuild:
+ version bump
19 May 2007; Thilo Bangert <bangert@gentoo.org> files/varnishd.initd:
fix stop in init script
diff --git a/www-servers/varnish/files/digest-varnish-1.0.4 b/www-servers/varnish/files/digest-varnish-1.0.4
new file mode 100644
index 000000000000..af6ffd90507c
--- /dev/null
+++ b/www-servers/varnish/files/digest-varnish-1.0.4
@@ -0,0 +1,3 @@
+MD5 2a917e485700d44b28c0d0b626ea90d8 varnish-1.0.4.tar.gz 533057
+RMD160 e6613a585382735c00ffb64f9df57be282339da3 varnish-1.0.4.tar.gz 533057
+SHA256 f9f8f121cdea87133b7923b92ea08cac90ab08ffdc325166ccea22449114b2ea varnish-1.0.4.tar.gz 533057
diff --git a/www-servers/varnish/varnish-1.0.4.ebuild b/www-servers/varnish/varnish-1.0.4.ebuild
new file mode 100644
index 000000000000..6ff7b7887b28
--- /dev/null
+++ b/www-servers/varnish/varnish-1.0.4.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/varnish-1.0.4.ebuild,v 1.1 2007/05/21 07:14:09 bangert Exp $
+
+inherit eutils
+DESCRIPTION="Varnish is an HTTP accelerator"
+HOMEPAGE="http://varnish.linpro.no/"
+SRC_URI="mirror://sourceforge/varnish/${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+
+src_compile() {
+ econf || die "econf failed"
+ emake || die "emake failed"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed"
+ newinitd ${FILESDIR}/varnishd.initd varnishd || die
+ newconfd ${FILESDIR}/varnishd.confd varnishd || die
+}
+
+pkg_postinst () {
+ elog "No demo-/sample-configfile is included in the distribution -"
+ elog "please read the man-page for more info."
+ elog "A sample (localhost:8080 -> localhost:80) for gentoo is given in"
+ elog " /etc/conf.d/varnishd"
+ echo
+}
+