summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThilo Bangert <bangert@gentoo.org>2007-08-21 06:40:13 +0000
committerThilo Bangert <bangert@gentoo.org>2007-08-21 06:40:13 +0000
commit1ad1b5fbb7cbfa36fa0d344ceeed0a68fbee31c3 (patch)
tree3daae1b4747c89780ccf843c8fa73b167d234796 /www-servers
parentStable for HPPA (bug #189497). (diff)
downloadgentoo-2-1ad1b5fbb7cbfa36fa0d344ceeed0a68fbee31c3.tar.gz
gentoo-2-1ad1b5fbb7cbfa36fa0d344ceeed0a68fbee31c3.tar.bz2
gentoo-2-1ad1b5fbb7cbfa36fa0d344ceeed0a68fbee31c3.zip
version bump to varnish-1.1.1
(Portage version: 2.1.2.11)
Diffstat (limited to 'www-servers')
-rw-r--r--www-servers/varnish/ChangeLog7
-rw-r--r--www-servers/varnish/files/digest-varnish-1.1.13
-rw-r--r--www-servers/varnish/varnish-1.1.1.ebuild32
3 files changed, 41 insertions, 1 deletions
diff --git a/www-servers/varnish/ChangeLog b/www-servers/varnish/ChangeLog
index e58c4e8b2561..4cd85155e70d 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.10 2007/08/02 23:42:54 bangert Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v 1.11 2007/08/21 06:40:13 bangert Exp $
+
+*varnish-1.1.1 (21 Aug 2007)
+
+ 21 Aug 2007; Thilo Bangert <bangert@gentoo.org> +varnish-1.1.1.ebuild:
+ version bump
*varnish-1.1 (02 Aug 2007)
diff --git a/www-servers/varnish/files/digest-varnish-1.1.1 b/www-servers/varnish/files/digest-varnish-1.1.1
new file mode 100644
index 000000000000..53a16e6c718a
--- /dev/null
+++ b/www-servers/varnish/files/digest-varnish-1.1.1
@@ -0,0 +1,3 @@
+MD5 fb4159a46a32b8c5bceca88f22e999a5 varnish-1.1.1.tar.gz 569143
+RMD160 a5f54606f9259d61e992dcc37bd05a95f6ce73aa varnish-1.1.1.tar.gz 569143
+SHA256 a7fadf7e109c22bd6bf750e2ed98af4423f801ad183e8241668311dea57e2c19 varnish-1.1.1.tar.gz 569143
diff --git a/www-servers/varnish/varnish-1.1.1.ebuild b/www-servers/varnish/varnish-1.1.1.ebuild
new file mode 100644
index 000000000000..15954163b0f5
--- /dev/null
+++ b/www-servers/varnish/varnish-1.1.1.ebuild
@@ -0,0 +1,32 @@
+# 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.1.1.ebuild,v 1.1 2007/08/21 06:40:13 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
+}