diff options
author | pawel <pawel@FreeBSD.org> | 2012-11-01 03:05:00 +0800 |
---|---|---|
committer | pawel <pawel@FreeBSD.org> | 2012-11-01 03:05:00 +0800 |
commit | b7c318c2fefa14ac1bca0b299cea8b59af3a90a3 (patch) | |
tree | 3c3ea13a9f35badfae967de3a4154a77de8fe773 /textproc/qprint | |
parent | 91cb8f9ecc0c623df1b1ba96267fe981f553bc88 (diff) | |
download | freebsd-ports-gnome-b7c318c2fefa14ac1bca0b299cea8b59af3a90a3.tar.gz freebsd-ports-gnome-b7c318c2fefa14ac1bca0b299cea8b59af3a90a3.tar.zst freebsd-ports-gnome-b7c318c2fefa14ac1bca0b299cea8b59af3a90a3.zip |
The MIME (Multipurpose Internet Mail Extensions) specification
(RFC 1521 and successors) defines a mechanism for encoding text consisting
primarily of printable ASCII characters, but which may contain characters
(for example, accented letters in the ISO 8859 Latin-1 character set) which
cannot be encoded as 7-bit ASCII or are non-printable characters which may
confuse mail transfer agents.
WWW: http://www.fourmilab.ch/webtools/qprint/
PR: ports/172522
Submitted by: Takefu
Feature safe: yes
Diffstat (limited to 'textproc/qprint')
-rw-r--r-- | textproc/qprint/Makefile | 28 | ||||
-rw-r--r-- | textproc/qprint/distinfo | 2 | ||||
-rw-r--r-- | textproc/qprint/pkg-descr | 8 |
3 files changed, 38 insertions, 0 deletions
diff --git a/textproc/qprint/Makefile b/textproc/qprint/Makefile new file mode 100644 index 000000000000..18815dedf237 --- /dev/null +++ b/textproc/qprint/Makefile @@ -0,0 +1,28 @@ +# Created by: Takefu +# $FreeBSD$ + +PORTNAME= qprint +PORTVERSION= 1.0 +CATEGORIES= textproc +MASTER_SITES= http://www.fourmilab.ch/webtools/qprint/ + +MAINTAINER= takefu@airport.fm +COMMENT= Encode and decode Quoted-Printable files + +LICENSE= public +LICENSE_NAME= Public Domain +LICENSE_FILE= ${WRKSRC}/COPYING +LICENSE_PERMS= auto-accept + +GNU_CONFIGURE= yes +MAKE_JOBS_UNSAFE=yes + +PLIST_FILES= bin/qprint +MAN1= qprint.1 +ALL_TARGET= prog check wringer + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/qprint ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/qprint.1 ${PREFIX}/man/man1 + +.include <bsd.port.mk> diff --git a/textproc/qprint/distinfo b/textproc/qprint/distinfo new file mode 100644 index 000000000000..c508a96282ed --- /dev/null +++ b/textproc/qprint/distinfo @@ -0,0 +1,2 @@ +SHA256 (qprint-1.0.tar.gz) = a92f02f2b1c12e29895df7ce200bd8001ce6be9ef092ef14284f94918719bfa8 +SIZE (qprint-1.0.tar.gz) = 248872 diff --git a/textproc/qprint/pkg-descr b/textproc/qprint/pkg-descr new file mode 100644 index 000000000000..2e5c493658b8 --- /dev/null +++ b/textproc/qprint/pkg-descr @@ -0,0 +1,8 @@ +The MIME (Multipurpose Internet Mail Extensions) specification +(RFC 1521 and successors) defines a mechanism for encoding text consisting +primarily of printable ASCII characters, but which may contain characters +(for example, accented letters in the ISO 8859 Latin-1 character set) which +cannot be encoded as 7-bit ASCII or are non-printable characters which may +confuse mail transfer agents. + +WWW: http://www.fourmilab.ch/webtools/qprint/ |