summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrej Kacian <ticho@gentoo.org>2005-01-05 19:24:27 +0000
committerAndrej Kacian <ticho@gentoo.org>2005-01-05 19:24:27 +0000
commita45ca41939883c45f2d346878cd12b8664c52a9c (patch)
tree944d5008f76e2a191100e9c8014227b33d443c42 /net-mail/pfqueue
parentAdd patch from upstream to make arguements more flexible #71076 by FieldySnut... (diff)
downloadgentoo-2-a45ca41939883c45f2d346878cd12b8664c52a9c.tar.gz
gentoo-2-a45ca41939883c45f2d346878cd12b8664c52a9c.tar.bz2
gentoo-2-a45ca41939883c45f2d346878cd12b8664c52a9c.zip
Initial import. Closes #75173.
Diffstat (limited to 'net-mail/pfqueue')
-rw-r--r--net-mail/pfqueue/ChangeLog10
-rw-r--r--net-mail/pfqueue/Manifest2
-rw-r--r--net-mail/pfqueue/files/digest-pfqueue-0.2.01
-rw-r--r--net-mail/pfqueue/metadata.xml11
-rw-r--r--net-mail/pfqueue/pfqueue-0.2.0.ebuild27
5 files changed, 51 insertions, 0 deletions
diff --git a/net-mail/pfqueue/ChangeLog b/net-mail/pfqueue/ChangeLog
new file mode 100644
index 000000000000..5819c64ec667
--- /dev/null
+++ b/net-mail/pfqueue/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for net-mail/pfqueue
+# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-mail/pfqueue/ChangeLog,v 1.1 2005/01/05 19:24:27 ticho Exp $
+
+*pfqueue-0.2.0 (05 Jan 2005)
+
+ 05 Jan 2005; Andrej Kacian <ticho@gentoo.org> +metadata.xml,
+ +pfqueue-0.2.0.ebuild:
+ Initial import, ebuild submitted by eGore <egore@gmx.de>. Closes #75173.
+
diff --git a/net-mail/pfqueue/Manifest b/net-mail/pfqueue/Manifest
new file mode 100644
index 000000000000..0493c1cb811f
--- /dev/null
+++ b/net-mail/pfqueue/Manifest
@@ -0,0 +1,2 @@
+MD5 c37cde6497aab1b129aa188a28786a19 pfqueue-0.2.0.ebuild 649
+MD5 cf94d6a3c0cbe0951c32087b21b34795 files/digest-pfqueue-0.2.0 65
diff --git a/net-mail/pfqueue/files/digest-pfqueue-0.2.0 b/net-mail/pfqueue/files/digest-pfqueue-0.2.0
new file mode 100644
index 000000000000..8c6f4ef37b4d
--- /dev/null
+++ b/net-mail/pfqueue/files/digest-pfqueue-0.2.0
@@ -0,0 +1 @@
+MD5 55e3d488eaa51ffb85fa5117fe56185b pfqueue-0.2.0.tar.gz 104029
diff --git a/net-mail/pfqueue/metadata.xml b/net-mail/pfqueue/metadata.xml
new file mode 100644
index 000000000000..96d0462f06e0
--- /dev/null
+++ b/net-mail/pfqueue/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>net-mail</herd>
+ <maintainer>
+ <email>ticho@gentoo.org</email>
+ <name>Andrej Kacian</name>
+ </maintainer>
+ <longdescription>A console-based tool for handling postfix
+ queues</longdescription>
+</pkgmetadata>
diff --git a/net-mail/pfqueue/pfqueue-0.2.0.ebuild b/net-mail/pfqueue/pfqueue-0.2.0.ebuild
new file mode 100644
index 000000000000..4b93cce375b8
--- /dev/null
+++ b/net-mail/pfqueue/pfqueue-0.2.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-mail/pfqueue/pfqueue-0.2.0.ebuild,v 1.1 2005/01/05 19:24:27 ticho Exp $
+
+inherit eutils
+DESCRIPTION="pfqueue is an ncurses console-based tool for managing Postfix
+queued messages"
+HOMEPAGE="http://pfqueue.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+DEPEND="virtual/libc"
+RDEPEND="mail-mta/postfix"
+
+src_install() {
+ dobin pfqueue
+ dodoc README ChangeLog
+}
+
+pkg_postinst() {
+ einfo "Start this program (as root) with pfqueue"
+ einfo ""
+ einfo "To delete messages from the queue press 'd' and then 'y'"
+ einfo "To quit type 'q'"
+}