diff options
author | Thilo Bangert <bangert@gentoo.org> | 2009-02-12 13:04:07 +0000 |
---|---|---|
committer | Thilo Bangert <bangert@gentoo.org> | 2009-02-12 13:04:07 +0000 |
commit | b6601770142e25e7729ac049480f898e54485c2b (patch) | |
tree | 79c1ac2cef8d49b93db06050ed8ba42b8cb387ca /www-servers | |
parent | Version bump (diff) | |
download | gentoo-2-b6601770142e25e7729ac049480f898e54485c2b.tar.gz gentoo-2-b6601770142e25e7729ac049480f898e54485c2b.tar.bz2 gentoo-2-b6601770142e25e7729ac049480f898e54485c2b.zip |
version bump
(Portage version: 2.2_rc20/cvs/Linux 2.6.28-gentoo i686)
Diffstat (limited to 'www-servers')
-rw-r--r-- | www-servers/varnish/ChangeLog | 7 | ||||
-rw-r--r-- | www-servers/varnish/varnish-2.0.3.ebuild | 28 |
2 files changed, 34 insertions, 1 deletions
diff --git a/www-servers/varnish/ChangeLog b/www-servers/varnish/ChangeLog index e394136e941a..faa1a6af0154 100644 --- a/www-servers/varnish/ChangeLog +++ b/www-servers/varnish/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for www-servers/varnish # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v 1.19 2009/01/27 19:52:24 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/ChangeLog,v 1.20 2009/02/12 13:04:07 bangert Exp $ + +*varnish-2.0.3 (12 Feb 2009) + + 12 Feb 2009; Thilo Bangert <bangert@gentoo.org> +varnish-2.0.3.ebuild: + version bump 27 Jan 2009; Thilo Bangert <bangert@gentoo.org> -files/varnish-2.0.1-fix-ESI-coredump.diff, -varnish-1.1.2.ebuild, diff --git a/www-servers/varnish/varnish-2.0.3.ebuild b/www-servers/varnish/varnish-2.0.3.ebuild new file mode 100644 index 000000000000..2bda066238ce --- /dev/null +++ b/www-servers/varnish/varnish-2.0.3.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/varnish-2.0.3.ebuild,v 1.1 2009/02/12 13:04:07 bangert Exp $ + +DESCRIPTION="Varnish is a state-of-the-art, high-performance HTTP accelerator." +HOMEPAGE="http://varnish.projects.linpro.no/" +SRC_URI="mirror://sourceforge/varnish/${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +#varnish compiles stuff at run time +RDEPEND="sys-devel/gcc" + +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 +} |