diff options
author | Thilo Bangert <bangert@gentoo.org> | 2008-02-11 19:39:41 +0000 |
---|---|---|
committer | Thilo Bangert <bangert@gentoo.org> | 2008-02-11 19:39:41 +0000 |
commit | c4834bb9085d58f8743fd2387f5edda451fa774c (patch) | |
tree | f15b30d927854d1eec99865c2a39120d7fac54af /www-servers/pound | |
parent | Fix linking with --as-needed by properly link to libxml2 when using it. Fixes... (diff) | |
download | gentoo-2-c4834bb9085d58f8743fd2387f5edda451fa774c.tar.gz gentoo-2-c4834bb9085d58f8743fd2387f5edda451fa774c.tar.bz2 gentoo-2-c4834bb9085d58f8743fd2387f5edda451fa774c.zip |
version bump
(Portage version: 2.1.3.19)
Diffstat (limited to 'www-servers/pound')
-rw-r--r-- | www-servers/pound/ChangeLog | 7 | ||||
-rw-r--r-- | www-servers/pound/pound-2.4.ebuild | 59 |
2 files changed, 65 insertions, 1 deletions
diff --git a/www-servers/pound/ChangeLog b/www-servers/pound/ChangeLog index 65db23f86ce7..623fcd0a791d 100644 --- a/www-servers/pound/ChangeLog +++ b/www-servers/pound/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for www-servers/pound # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/pound/ChangeLog,v 1.33 2008/01/30 21:54:12 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/pound/ChangeLog,v 1.34 2008/02/11 19:39:41 bangert Exp $ + +*pound-2.4 (11 Feb 2008) + + 11 Feb 2008; Thilo Bangert <bangert@gentoo.org> +pound-2.4.ebuild: + version bump 30 Jan 2008; Thilo Bangert <bangert@gentoo.org> -pound-2.0.5.ebuild, -pound-2.1.ebuild, -pound-2.2.ebuild, -pound-2.3.ebuild, diff --git a/www-servers/pound/pound-2.4.ebuild b/www-servers/pound/pound-2.4.ebuild new file mode 100644 index 000000000000..f79ac9c0118f --- /dev/null +++ b/www-servers/pound/pound-2.4.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-servers/pound/pound-2.4.ebuild,v 1.1 2008/02/11 19:39:41 bangert Exp $ + +inherit flag-o-matic + +MY_P="${P/p/P}" +DESCRIPTION="A http/https reverse-proxy and load-balancer." +SRC_URI="http://www.apsis.ch/pound/${MY_P}.tgz" +HOMEPAGE="http://www.apsis.ch/pound/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86" +IUSE="ssl dynscaler static" + +DEPEND="ssl? ( dev-libs/openssl )" + +S="${WORKDIR}/${MY_P}" + +src_compile() { + use static && append-ldflags -static + + econf \ + $(use_with ssl) \ + $(use_enable dynscaler) \ + || die "configure failed" + + emake || die "compile failed" +} + +src_install() { + dodir /usr/sbin + cp "${S}"/pound "${D}"/usr/sbin/ + cp "${S}"/poundctl "${D}"/usr/sbin/ + + doman pound.8 + doman poundctl.8 + dodoc README FAQ + + dodir /etc/init.d + newinitd "${FILESDIR}"/pound.init-1.9 pound + + insinto /etc + newins "${FILESDIR}"/pound-2.2.cfg pound.cfg +} + +pkg_postinst() { + elog "No demo-/sample-configfile is included in the distribution -" + elog "read the man-page for more info." + elog "A sample (localhost:8888 -> localhost:80) for gentoo is given in \"/etc/pound.cfg\"." + echo + ewarn "You will have to upgrade you configuration file, if you are" + ewarn "upgrading from a version <= 2.0." + echo + ewarn "The 'WebDAV' config statement is no longer supported!" + ewarn "Please adjust your configuration, if necessary." + echo +} |