From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 0D9A113888F for ; Mon, 12 Oct 2015 01:17:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 873DAE0818; Mon, 12 Oct 2015 01:17:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2EA33E0818 for ; Mon, 12 Oct 2015 01:17:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F16E033D3CE for ; Mon, 12 Oct 2015 01:17:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 04497DF5 for ; Mon, 12 Oct 2015 01:17:25 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1444612984.3acb5e0a5f7852dbf2ca957efce4581d945ba5e4.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-servers/pound/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-servers/pound/pound-2.7f-r1.ebuild X-VCS-Directories: www-servers/pound/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 3acb5e0a5f7852dbf2ca957efce4581d945ba5e4 X-VCS-Branch: master Date: Mon, 12 Oct 2015 01:17:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 2423bd21-7593-49f1-bb66-54e9bcae56db X-Archives-Hash: 7864a9aefabc3780f18d2f0540d13ff8 commit: 3acb5e0a5f7852dbf2ca957efce4581d945ba5e4 Author: Anthony G. Basile gentoo org> AuthorDate: Mon Oct 12 01:23:04 2015 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Mon Oct 12 01:23:04 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3acb5e0a www-servers/pound: add libressl support Package-Manager: portage-2.2.20.1 www-servers/pound/pound-2.7f-r1.ebuild | 52 ++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/www-servers/pound/pound-2.7f-r1.ebuild b/www-servers/pound/pound-2.7f-r1.ebuild new file mode 100644 index 0000000..4efc7af --- /dev/null +++ b/www-servers/pound/pound-2.7f-r1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +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="libressl" + +DEPEND="dev-libs/libpcre + !libressl? ( dev-libs/openssl:0 ) + libressl? ( dev-libs/libressl )" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${MY_P} + +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 +}