diff options
author | Torsten Veller <tove@gentoo.org> | 2011-01-23 15:32:24 +0000 |
---|---|---|
committer | Torsten Veller <tove@gentoo.org> | 2011-01-23 15:32:24 +0000 |
commit | c98f7b57b35bc86b2288002c91393eef4a1b1877 (patch) | |
tree | d78804af305b5d0e72c0ecee5ae6e6c41d570f3e /dev-perl/Perlbal | |
parent | Version bump. Cleanup (diff) | |
download | historical-c98f7b57b35bc86b2288002c91393eef4a1b1877.tar.gz historical-c98f7b57b35bc86b2288002c91393eef4a1b1877.tar.bz2 historical-c98f7b57b35bc86b2288002c91393eef4a1b1877.zip |
Version bump
Package-Manager: portage-2.2.0_alpha19/cvs/Linux x86_64
Diffstat (limited to 'dev-perl/Perlbal')
-rw-r--r-- | dev-perl/Perlbal/ChangeLog | 7 | ||||
-rw-r--r-- | dev-perl/Perlbal/Perlbal-1.780.ebuild | 44 |
2 files changed, 50 insertions, 1 deletions
diff --git a/dev-perl/Perlbal/ChangeLog b/dev-perl/Perlbal/ChangeLog index be020733d5b8..a35b461b986d 100644 --- a/dev-perl/Perlbal/ChangeLog +++ b/dev-perl/Perlbal/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-perl/Perlbal # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/Perlbal/ChangeLog,v 1.17 2011/01/17 12:43:53 tove Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/Perlbal/ChangeLog,v 1.18 2011/01/23 15:29:51 tove Exp $ + +*Perlbal-1.780 (23 Jan 2011) + + 23 Jan 2011; Torsten Veller <tove@gentoo.org> +Perlbal-1.780.ebuild: + Version bump *Perlbal-1.770 (17 Jan 2011) diff --git a/dev-perl/Perlbal/Perlbal-1.780.ebuild b/dev-perl/Perlbal/Perlbal-1.780.ebuild new file mode 100644 index 000000000000..8bd43bb93ca7 --- /dev/null +++ b/dev-perl/Perlbal/Perlbal-1.780.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/Perlbal/Perlbal-1.780.ebuild,v 1.1 2011/01/23 15:29:51 tove Exp $ + +EAPI=3 + +MODULE_AUTHOR=DORMANDO +MODULE_VERSION=1.78 +inherit perl-module + +DESCRIPTION="Reverse-proxy load balancer and webserver" +HOMEPAGE="http://www.danga.com/perlbal/" + +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND="dev-perl/libwww-perl + >=dev-perl/Danga-Socket-1.57 + dev-perl/Sys-Syscall + dev-perl/BSD-Resource + dev-perl/IO-AIO" +DEPEND="${RDEPEND}" +#SRC_TEST="do" # testing not available on Perlbal yet ;-) + +PATCHES=( "${FILESDIR}/${PN}-1.58-Use-saner-name-in-process-listing.patch" ) + +src_install() { + perl-module_src_install || die "perl-module_src_install failed" + cd "${S}" + dodoc doc/*.txt + docinto hacking + dodoc doc/hacking/*.txt + docinto conf + dodoc conf/*.{dat,conf} + keepdir /etc/perlbal + newinitd "${FILESDIR}"/perlbal_init.d_1.58 perlbal + newconfd "${FILESDIR}"/perlbal_conf.d_1.58 perlbal +} + +pkg_postinst() { + einfo "Please see the example configuration files located" + einfo "within /usr/share/doc/${PF}/conf/" +} |