diff options
author | Thilo Bangert <bangert@gentoo.org> | 2007-02-20 16:37:03 +0000 |
---|---|---|
committer | Thilo Bangert <bangert@gentoo.org> | 2007-02-20 16:37:03 +0000 |
commit | 7558e7adde673c387e063d82003703ab223ca2a2 (patch) | |
tree | 675399fcf8273d5ea67d955c85158575c289b054 /www-servers/varnish | |
parent | I used the wrong order to create the patch, the as-needed one is applied befo... (diff) | |
download | gentoo-2-7558e7adde673c387e063d82003703ab223ca2a2.tar.gz gentoo-2-7558e7adde673c387e063d82003703ab223ca2a2.tar.bz2 gentoo-2-7558e7adde673c387e063d82003703ab223ca2a2.zip |
version bump
(Portage version: 2.1.1-r2)
Diffstat (limited to 'www-servers/varnish')
-rw-r--r-- | www-servers/varnish/ChangeLog | 9 | ||||
-rw-r--r-- | www-servers/varnish/files/digest-varnish-1.0.3 | 3 | ||||
-rw-r--r-- | www-servers/varnish/varnish-1.0.3.ebuild | 33 |
3 files changed, 43 insertions, 2 deletions
diff --git a/www-servers/varnish/ChangeLog b/www-servers/varnish/ChangeLog index 66ee0378990f..21d858d434a9 100644 --- a/www-servers/varnish/ChangeLog +++ b/www-servers/varnish/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for www-servers/varnish -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v 1.2 2006/12/10 09:46:45 beu Exp $ +# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v 1.3 2007/02/20 16:37:03 bangert Exp $ + +*varnish-1.0.3 (20 Feb 2007) + + 20 Feb 2007; Thilo Bangert <bangert@gentoo.org> +varnish-1.0.3.ebuild: + version bump 10 Dec 2006; Elfyn McBratney <beu@gentoo.org> varnish-1.0.1.ebuild: Kill redundant *DEPEND on sys-libs/ncurses. diff --git a/www-servers/varnish/files/digest-varnish-1.0.3 b/www-servers/varnish/files/digest-varnish-1.0.3 new file mode 100644 index 000000000000..b7fcc18145fd --- /dev/null +++ b/www-servers/varnish/files/digest-varnish-1.0.3 @@ -0,0 +1,3 @@ +MD5 f942bfa029be8a9af9692a43bd04158c varnish-1.0.3.tar.gz 541822 +RMD160 f7c827a497c50a2d3e51915b4e007e16c9cad5d6 varnish-1.0.3.tar.gz 541822 +SHA256 15c2efdb3e70b3eccc17145f5b24c315d6301e169a5008de8987ab9d437f75e5 varnish-1.0.3.tar.gz 541822 diff --git a/www-servers/varnish/varnish-1.0.3.ebuild b/www-servers/varnish/varnish-1.0.3.ebuild new file mode 100644 index 000000000000..fc817b23171e --- /dev/null +++ b/www-servers/varnish/varnish-1.0.3.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.3.ebuild,v 1.1 2007/02/20 16:37:03 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 () { + einfo "No demo-/sample-configfile is included in the distribution -" + einfo "please read the man-page for more info." + einfo "A sample (localhost:8080 -> localhost:80) for gentoo is given in" + einfo " /etc/conf.d/varnishd" + echo +} + |