| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/www-servers/varnish/varnish-2.0.4-r1.ebuild,v 1.6 2012/05/21 19:31:30 xarthisius Exp $
|
| 4 |
|
| 5 |
EAPI="2"
|
| 6 |
|
| 7 |
inherit autotools eutils
|
| 8 |
|
| 9 |
DESCRIPTION="Varnish is a state-of-the-art, high-performance HTTP accelerator."
|
| 10 |
HOMEPAGE="http://varnish.projects.linpro.no/"
|
| 11 |
SRC_URI="mirror://sourceforge/varnish/${P}.tar.gz"
|
| 12 |
|
| 13 |
LICENSE="BSD-2 GPL-2"
|
| 14 |
SLOT="0"
|
| 15 |
KEYWORDS="amd64 x86"
|
| 16 |
IUSE=""
|
| 17 |
#varnish compiles stuff at run time
|
| 18 |
RDEPEND="sys-devel/gcc"
|
| 19 |
|
| 20 |
RESTRICT="test" #315725
|
| 21 |
HTTP_HDR_MAX_VAL=${HTTP_HDR_MAX_VAL:-32}
|
| 22 |
|
| 23 |
src_prepare() {
|
| 24 |
epatch "${FILESDIR}"/${P}-link-order.patch
|
| 25 |
epatch "${FILESDIR}"/${P}-virtual-ncsa.patch
|
| 26 |
sed -e "s/#define HTTP_HDR_MAX_VAL .*/#define HTTP_HDR_MAX_VAL ${HTTP_HDR_MAX_VAL}/" \
|
| 27 |
-i bin/varnishd/cache.h
|
| 28 |
eautoreconf
|
| 29 |
}
|
| 30 |
|
| 31 |
src_install() {
|
| 32 |
emake DESTDIR="${D}" install || die "emake install failed"
|
| 33 |
newinitd "${FILESDIR}"/varnishd.initd varnishd || die
|
| 34 |
newconfd "${FILESDIR}"/varnishd.confd varnishd || die
|
| 35 |
|
| 36 |
insinto /etc/logrotate.d
|
| 37 |
newins "${FILESDIR}/varnishd.logrotate" varnishd
|
| 38 |
|
| 39 |
dodir /var/log/varnish
|
| 40 |
}
|
| 41 |
|
| 42 |
pkg_postinst () {
|
| 43 |
elog "No demo-/sample-configfile is included in the distribution -"
|
| 44 |
elog "please read the man-page for more info."
|
| 45 |
elog "A sample (localhost:8080 -> localhost:80) for gentoo is given in"
|
| 46 |
elog " /etc/conf.d/varnishd"
|
| 47 |
echo
|
| 48 |
}
|