summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-mail/qprint')
-rw-r--r--net-mail/qprint/Manifest1
-rw-r--r--net-mail/qprint/metadata.xml6
-rw-r--r--net-mail/qprint/qprint-1.0.ebuild26
3 files changed, 33 insertions, 0 deletions
diff --git a/net-mail/qprint/Manifest b/net-mail/qprint/Manifest
new file mode 100644
index 000000000000..060b0148c9a7
--- /dev/null
+++ b/net-mail/qprint/Manifest
@@ -0,0 +1 @@
+DIST qprint-1.0.tar.gz 248872 SHA256 a92f02f2b1c12e29895df7ce200bd8001ce6be9ef092ef14284f94918719bfa8 SHA512 2cba2e4c986e51485f26988173d16bfdbecbc9e84aeb7abbf3e77fba8f9d5ad442c0d61a8d17f4b715c0ec0b3ec25b948438fa5c88a0777d7aff7b6d99c40a31 WHIRLPOOL 09a51ae9579ed2b21d4c1d2bfef0711a1be775768bb4dd41a44e3f201f2d07309f1210cac046f9cd34c0070a2c42276039ae28391d676c7b915ecd2fe6c570e4
diff --git a/net-mail/qprint/metadata.xml b/net-mail/qprint/metadata.xml
new file mode 100644
index 000000000000..31aa828f5534
--- /dev/null
+++ b/net-mail/qprint/metadata.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>net-mail</herd>
+<longdescription>qprint is a command-line filter for decoding or encoding a block of text in MIME Quoted-Printable format, as defined in RFC 1521.</longdescription>
+</pkgmetadata>
diff --git a/net-mail/qprint/qprint-1.0.ebuild b/net-mail/qprint/qprint-1.0.ebuild
new file mode 100644
index 000000000000..1f7f365f75ca
--- /dev/null
+++ b/net-mail/qprint/qprint-1.0.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+DESCRIPTION="MIME quoted-printable data encoding and decoding utility"
+HOMEPAGE="http://www.fourmilab.ch/webtools/qprint/"
+SRC_URI="http://www.fourmilab.ch/webtools/${PN}/${P}.tar.gz"
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="amd64 ppc x86 ~ppc-macos"
+IUSE=""
+
+DEPEND=""
+
+src_compile() {
+ econf || die "econf failed"
+ emake || die "emake failed"
+}
+
+src_install() {
+ dodir /usr/bin
+ dodir /usr/share/man/man1
+ make DESTDIR=${D} install || die "make install failed"
+ dodoc COPYING INSTALL README *.html qprint.pdf qprint.w logo.gif
+}