mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
d745c64ab2
(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
29 lines
584 B
Makefile
29 lines
584 B
Makefile
# 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>
|