summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrej Kacian <ticho@gentoo.org>2004-11-23 07:28:55 +0000
committerAndrej Kacian <ticho@gentoo.org>2004-11-23 07:28:55 +0000
commitdc12d073b53532582118ce188cf0a28b2a4d4ce6 (patch)
tree01ea2be3a1d5c7366df92c0a2962ec0e3d8e2ffe /net-mail
parent~alpha keyword. (diff)
downloadhistorical-dc12d073b53532582118ce188cf0a28b2a4d4ce6.tar.gz
historical-dc12d073b53532582118ce188cf0a28b2a4d4ce6.tar.bz2
historical-dc12d073b53532582118ce188cf0a28b2a4d4ce6.zip
Initial import. Closes #25245.
Diffstat (limited to 'net-mail')
-rw-r--r--net-mail/qprint/ChangeLog10
-rw-r--r--net-mail/qprint/Manifest14
-rw-r--r--net-mail/qprint/files/digest-qprint-1.01
-rw-r--r--net-mail/qprint/metadata.xml6
-rw-r--r--net-mail/qprint/qprint-1.0.ebuild26
5 files changed, 57 insertions, 0 deletions
diff --git a/net-mail/qprint/ChangeLog b/net-mail/qprint/ChangeLog
new file mode 100644
index 000000000000..3b36951fa705
--- /dev/null
+++ b/net-mail/qprint/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for net-mail/qprint
+# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-mail/qprint/ChangeLog,v 1.1 2004/11/23 07:28:55 ticho Exp $
+
+*qprint-1.0 (23 Nov 2004)
+
+ 23 Nov 2004; Andrej Kacian <ticho@gentoo.org> +metadata.xml,
+ +qprint-1.0.ebuild:
+ Initial import. Closes #25245, ebuild submitted by Ian Abbott <ian@abbott.org>.
+
diff --git a/net-mail/qprint/Manifest b/net-mail/qprint/Manifest
new file mode 100644
index 000000000000..33cd28fc27ae
--- /dev/null
+++ b/net-mail/qprint/Manifest
@@ -0,0 +1,14 @@
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+MD5 23d5e46e4ba3b79c75fa85e633b98b99 ChangeLog 397
+MD5 3af133fe578c377d7b01a6cf90651826 metadata.xml 326
+MD5 c169de38fa3e394705e09ef5c5e08502 qprint-1.0.ebuild 733
+MD5 aeea5e0c260d916996327d21f1f9c6a4 files/digest-qprint-1.0 62
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.2.6 (GNU/Linux)
+
+iD8DBQFBoubt10xuJSrg3/sRAo1TAJ9xUxKE6MBDRPXc491m7beM0JF6IwCeMUvG
+2q6poLF2LZAdcYHiRkjcmP0=
+=WtoI
+-----END PGP SIGNATURE-----
diff --git a/net-mail/qprint/files/digest-qprint-1.0 b/net-mail/qprint/files/digest-qprint-1.0
new file mode 100644
index 000000000000..6683d9e2d5f0
--- /dev/null
+++ b/net-mail/qprint/files/digest-qprint-1.0
@@ -0,0 +1 @@
+MD5 6dc7931376370d5be9223d0d43bec7d0 qprint-1.0.tar.gz 248872
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..da47329066ea
--- /dev/null
+++ b/net-mail/qprint/qprint-1.0.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-mail/qprint/qprint-1.0.ebuild,v 1.1 2004/11/23 07:28:55 ticho Exp $
+
+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="as-is"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+
+DEPEND="virtual/libc"
+
+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
+}