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 5E9DB138827 for ; Sat, 3 Oct 2015 12:25:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A333621C027; Sat, 3 Oct 2015 12:25:41 +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 3A73B21C027 for ; Sat, 3 Oct 2015 12:25:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2B86B34016B for ; Sat, 3 Oct 2015 12:25:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 042163EF for ; Sat, 3 Oct 2015 12:25:38 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1443875131.232f30a1baf056b35402ca343ad130b50e196173.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-filter/postfwd/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-filter/postfwd/postfwd-1.35-r2.ebuild X-VCS-Directories: mail-filter/postfwd/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 232f30a1baf056b35402ca343ad130b50e196173 X-VCS-Branch: master Date: Sat, 3 Oct 2015 12:25:38 +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: eaa9972f-70ed-4485-88ba-0f145c5a00ba X-Archives-Hash: f8ec4aa9d1833576278e0ab7bcf7d6e3 commit: 232f30a1baf056b35402ca343ad130b50e196173 Author: Pacho Ramos gentoo org> AuthorDate: Sat Oct 3 12:25:12 2015 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sat Oct 3 12:25:31 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=232f30a1 mail-filter/postfwd: Drop old Package-Manager: portage-2.2.22 mail-filter/postfwd/postfwd-1.35-r2.ebuild | 87 ------------------------------ 1 file changed, 87 deletions(-) diff --git a/mail-filter/postfwd/postfwd-1.35-r2.ebuild b/mail-filter/postfwd/postfwd-1.35-r2.ebuild deleted file mode 100644 index 2886529..0000000 --- a/mail-filter/postfwd/postfwd-1.35-r2.ebuild +++ /dev/null @@ -1,87 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit eutils user - -DESCRIPTION="Versatile Postfix policy server with a flexible ruleset based configuration" -HOMEPAGE="http://www.postfwd.org/" -SRC_URI="http://www.postfwd.org/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+tools" - -DEPEND="" -RDEPEND=">=dev-lang/perl-5.16.3 - virtual/perl-Sys-Syslog - dev-perl/Net-DNS - dev-perl/net-server -" - -pkg_setup() { - enewgroup postfwd - enewuser postfwd -1 -1 -1 postfwd -} - -src_install() { - local BIN="postfwd2" - # programs and tools - dosbin "${S}"/sbin/${BIN} - - # man pages and documentation - doman "${S}"/man/man8/${BIN}.8 - dodoc "${S}"/doc/{${BIN}.CHANGELOG,${BIN}.txt} - - # example configuration(s) - insinto /usr/share/doc/${PF}/examples - newins "${S}"/etc/${PN}.cf.sample ${PN}.cf.dist - - # plugins - dodoc -r "${S}"/plugins - - # tools - if use tools; then - dodoc -r "${S}"/tools - fi - - # init script and respective configuration file - newinitd "${FILESDIR}"/${PN}.init ${PN} - newconfd "${FILESDIR}"/${PN}.conf ${PN} -} - -pkg_postinst() { - einfo - einfo "${PN} has no default configuration for safety reasons. Every" - einfo "mail system is different, so you should craft a set of rules" - einfo "that is suitable for your environment and save it to:" - einfo " /etc/postfix/postfwd.cf" - einfo "You can find example configurations in:" - einfo " /usr/share/doc/${PF}/examples" - einfo - einfo "If you want ${PN} to start on system boot, you have to add it your" - einfo "default run level:" - einfo " # rc-update add postfwd default" - einfo "Also remember to edit /etc/conf.d/${PN} to your liking." - einfo - einfo "A plugins sampe folder has been placed under:" - einfo - einfo " /usr/share/doc/${PF}/plugins" - - if use tools; then - einfo - einfo "You can find additional tools for testing ${PN} in:" - einfo " /usr/share/doc/${PF}/tools" - fi - - ewarn - ewarn "Please read the documentation carefully and properly test new" - ewarn "rulesets before putting them into production use. Otherwise you" - ewarn "risk accidental mail loss or worse." - ewarn - ewarn "Visit http://www.postfwd.org/ for more information." - ewarn -}