diff options
author | 2009-01-27 19:47:40 +0000 | |
---|---|---|
committer | 2009-01-27 19:47:40 +0000 | |
commit | 024b39e6a125f4e65424ea583a250a731c7d81ae (patch) | |
tree | 3b9e88a7f56eebf588929ebf8b452c772085d48b /www-servers | |
parent | version bump (diff) | |
download | gentoo-2-024b39e6a125f4e65424ea583a250a731c7d81ae.tar.gz gentoo-2-024b39e6a125f4e65424ea583a250a731c7d81ae.tar.bz2 gentoo-2-024b39e6a125f4e65424ea583a250a731c7d81ae.zip |
cleanup old versions
(Portage version: 2.2_rc20/cvs/Linux 2.6.28-gentoo i686)
Diffstat (limited to 'www-servers')
-rw-r--r-- | www-servers/pound/ChangeLog | 7 | ||||
-rw-r--r-- | www-servers/pound/files/pound-2.cfg | 56 | ||||
-rw-r--r-- | www-servers/pound/files/pound.cfg | 41 | ||||
-rw-r--r-- | www-servers/pound/pound-1.10.ebuild | 49 | ||||
-rw-r--r-- | www-servers/pound/pound-2.4.2.ebuild | 59 | ||||
-rw-r--r-- | www-servers/pound/pound-2.4.ebuild | 59 |
6 files changed, 6 insertions, 265 deletions
diff --git a/www-servers/pound/ChangeLog b/www-servers/pound/ChangeLog index b7f40478bef9..4edfb9c0aa5a 100644 --- a/www-servers/pound/ChangeLog +++ b/www-servers/pound/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for www-servers/pound # Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/pound/ChangeLog,v 1.39 2009/01/27 19:39:52 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/pound/ChangeLog,v 1.40 2009/01/27 19:47:40 bangert Exp $ + + 27 Jan 2009; Thilo Bangert <bangert@gentoo.org> -files/pound-2.cfg, + -files/pound.cfg, -pound-1.10.ebuild, -pound-2.4.ebuild, + -pound-2.4.2.ebuild: + cleanup old versions *pound-2.4.4 (27 Jan 2009) diff --git a/www-servers/pound/files/pound-2.cfg b/www-servers/pound/files/pound-2.cfg deleted file mode 100644 index 90bd5c27030a..000000000000 --- a/www-servers/pound/files/pound-2.cfg +++ /dev/null @@ -1,56 +0,0 @@ -## Minimal sample pound.cfg -## -## see pound(8) for details - - -###################################################################### -## global options: - -User "nobody" -Group "nobody" -#RootJail /chroot/pound - -## Logging: (goes to syslog by default) -## 0 no logging -## 1 normal -## 2 extended -## 3 Apache-style (common log format) -LogLevel 1 - -## check backend every X secs: -Alive 30 - -## use hardware-accelleration card supported by openssl(1): -#SSLEngine <hw> - - -###################################################################### -## listen, redirect and ... to: - -## redirect all requests on port 8888 ("ListenHTTP") to the local webserver see "UrlGroup" below): -ListenHTTP -Address 127.0.0.1 -Port 8888 - -## allow PUT and DELETE also (by default only GET, POST and HEAD)?: -xHTTP 0 - -WebDAV 0 - -Service -URL ".*" - -BackEnd -Address 127.0.0.1 -Port 80 -Priority 1 - -## End Backend -End - -## End Service -End - -## End listener -End - diff --git a/www-servers/pound/files/pound.cfg b/www-servers/pound/files/pound.cfg deleted file mode 100644 index 482be9b79162..000000000000 --- a/www-servers/pound/files/pound.cfg +++ /dev/null @@ -1,41 +0,0 @@ -## Minimal sample pound.cfg -## -## see pound(8) for details - - -###################################################################### -## global options: - -User nobody -Group nobody -#RootJail /chroot/pound - -## allow PUT and DELETE also (by default only GET, POST and HEAD)?: -ExtendedHTTP 0 - -WebDAV 0 - -## Logging: (goes to syslog by default) -## 0 no logging -## 1 normal -## 2 extended -## 3 Apache-style (common log format) -LogLevel 1 - -## check backend every X secs: -Alive 30 - -## use hardware-accelleration card supported by openssl(1): -#SSLEngine <hw> - - -###################################################################### -## listen, redirect and ... to: - -## redirect all requests on port 8888 ("ListenHTTP") to the local webserver see "UrlGroup" below): -ListenHTTP 127.0.0.1,8888 - -## -UrlGroup ".*" -BackEnd 127.0.0.1,80,1 -EndGroup diff --git a/www-servers/pound/pound-1.10.ebuild b/www-servers/pound/pound-1.10.ebuild deleted file mode 100644 index e27da853a390..000000000000 --- a/www-servers/pound/pound-1.10.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# 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-1.10.ebuild,v 1.5 2008/01/26 14:28:50 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="~x86 ~ppc ~sparc ~alpha ~mips ~hppa ~amd64" -IUSE="ssl msdav unsafe static" - -DEPEND="ssl? ( dev-libs/openssl )" - -S="${WORKDIR}/${MY_P}" - -src_compile() { - use static && append-ldflags -static - - econf \ - $(use_with ssl) \ - $(use_enable msdav) \ - $(use_enable unsafe) \ - || die "configure failed" - - emake || die "compile failed" -} - -src_install() { - dosbin pound - doman pound.8 - - dodoc README FAQ - - newinitd "${FILESDIR}"/${PN}.init-1.9 ${PN} - - insinto /etc - doins "${FILESDIR}"/pound.cfg -} - -pkg_postinst() { - elog "No demo-/sample-configfile is included in the distribution -- read the man-page" - elog "for more info." - elog "A sample (localhost:8888 -> localhost:80) for gentoo is given in \"/etc/pound.cfg\"." -} diff --git a/www-servers/pound/pound-2.4.2.ebuild b/www-servers/pound/pound-2.4.2.ebuild deleted file mode 100644 index a75c1856f67d..000000000000 --- a/www-servers/pound/pound-2.4.2.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# 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.2.ebuild,v 1.1 2008/04/24 20:51:43 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-3" -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 -} diff --git a/www-servers/pound/pound-2.4.ebuild b/www-servers/pound/pound-2.4.ebuild deleted file mode 100644 index b396e1f16abb..000000000000 --- a/www-servers/pound/pound-2.4.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# 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.2 2008/03/10 21:22:50 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-3" -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 -} |