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 C58D0138222 for ; Tue, 3 May 2016 19:18:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C926521C028; Tue, 3 May 2016 19:17:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0CE4B21C02E for ; Tue, 3 May 2016 19:17:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D4130340C1C for ; Tue, 3 May 2016 19:17:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F476964 for ; Tue, 3 May 2016 19:17:45 +0000 (UTC) From: "Austin English" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Austin English" Message-ID: <1462303021.37ff52d54efbf93e0bd792b8d7541c24bc810b61.wizardedit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-proxy/ziproxy/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-proxy/ziproxy/ziproxy-3.3.1.ebuild X-VCS-Directories: net-proxy/ziproxy/ X-VCS-Committer: wizardedit X-VCS-Committer-Name: Austin English X-VCS-Revision: 37ff52d54efbf93e0bd792b8d7541c24bc810b61 X-VCS-Branch: master Date: Tue, 3 May 2016 19:17:45 +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: 9a955842-a9c6-4c6e-97e0-c3c8d4c74f09 X-Archives-Hash: db6a129852734acb0812a8c5d0bec49a commit: 37ff52d54efbf93e0bd792b8d7541c24bc810b61 Author: Austin English gentoo org> AuthorDate: Tue May 3 19:15:19 2016 +0000 Commit: Austin English gentoo org> CommitDate: Tue May 3 19:17:01 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37ff52d5 net-proxy/ziproxy: remove old version Package-Manager: portage-2.2.26 net-proxy/ziproxy/ziproxy-3.3.1.ebuild | 84 ---------------------------------- 1 file changed, 84 deletions(-) diff --git a/net-proxy/ziproxy/ziproxy-3.3.1.ebuild b/net-proxy/ziproxy/ziproxy-3.3.1.ebuild deleted file mode 100644 index 56c5c78..0000000 --- a/net-proxy/ziproxy/ziproxy-3.3.1.ebuild +++ /dev/null @@ -1,84 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -inherit user - -DESCRIPTION="A forwarding, non-caching, compressing web proxy server" -HOMEPAGE="http://ziproxy.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc ~x86" -IUSE="jpeg2k sasl xinetd" - -RDEPEND=" - media-libs/giflib - media-libs/libpng:0= - virtual/jpeg - sys-libs/zlib - jpeg2k? ( media-libs/jasper ) - sasl? ( dev-libs/cyrus-sasl ) - xinetd? ( virtual/inetd ) -" -DEPEND="${RDEPEND} - app-arch/xz-utils -" - -pkg_setup() { - enewgroup ziproxy - enewuser ziproxy -1 -1 -1 ziproxy -} - -src_prepare() { - # fix sample config file - sed -i \ - -e "s:/var/ziproxy/:/var/lib/ziproxy/:g" \ - -e "s:%j-%Y.log:/var/log/ziproxy/%j-%Y.log:g" \ - etc/ziproxy/ziproxy.conf || die - - # fix sample xinetd config - sed -i \ - -e "s:/usr/bin/:/usr/sbin/:g" \ - -e "s:\(.*port.*\):\1\n\ttype\t\t\t= UNLISTED:g" \ - -e "s:root:ziproxy:g" \ - etc/xinetd.d/ziproxy || die -} - -src_configure() { - econf \ - $(use_with jpeg2k jasper) \ - $(use_with sasl sasl2) \ - --with-cfgfile=/etc/ziproxy/ziproxy.conf -} - -src_install() { - emake DESTDIR="${D}" install - - dodir /usr/sbin - mv -vf "${D}"usr/{,s}bin/ziproxy || die - - dobin src/tools/ziproxy_genhtml_stats.sh - - newinitd "${FILESDIR}"/${PN}.initd-r1 ${PN} - newconfd "${FILESDIR}"/${PN}.confd ${PN} - - dodoc ChangeLog CREDITS README README.tools - use jpeg2k && dodoc JPEG2000.txt - - insinto /etc - doins -r etc/ziproxy - - insinto /var/lib/ziproxy/error - doins var/ziproxy/error/*.html - - if use xinetd; then - insinto /etc/xinetd.d - doins etc/xinetd.d/ziproxy - fi - - diropts -m0750 -o ziproxy -g ziproxy - keepdir /var/log/ziproxy -}