summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2018-03-16 21:38:31 +0100
committerPacho Ramos <pacho@gentoo.org>2018-03-16 21:42:42 +0100
commitfd20237fb71eeb4bfea530f53f32acf66695a27e (patch)
tree801e0f7d536e18b884cb8948a9e385ce4cd460aa /www-servers/pound/pound-2.6.ebuild
parentsci-libs/parmgridgen: Drop old (diff)
downloadgentoo-fd20237fb71eeb4bfea530f53f32acf66695a27e.tar.gz
gentoo-fd20237fb71eeb4bfea530f53f32acf66695a27e.tar.bz2
gentoo-fd20237fb71eeb4bfea530f53f32acf66695a27e.zip
www-servers/pound: Drop old
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'www-servers/pound/pound-2.6.ebuild')
-rw-r--r--www-servers/pound/pound-2.6.ebuild55
1 files changed, 0 insertions, 55 deletions
diff --git a/www-servers/pound/pound-2.6.ebuild b/www-servers/pound/pound-2.6.ebuild
deleted file mode 100644
index d7d176e63a5e..000000000000
--- a/www-servers/pound/pound-2.6.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=2
-inherit eutils
-
-MY_P=${P/p/P}
-DESCRIPTION="A http/https reverse-proxy and load-balancer"
-HOMEPAGE="http://www.apsis.ch/pound/"
-SRC_URI="http://www.apsis.ch/pound/${MY_P}.tgz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc x86"
-IUSE="dynscaler"
-
-DEPEND="dev-libs/libpcre
- dev-libs/openssl"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-src_configure() {
- econf \
- $(use_enable dynscaler)
-}
-
-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
-}