From fa34ccb36a44ec507603d077850f3755f2ceae5a Mon Sep 17 00:00:00 2001 From: will Date: Sun, 29 Oct 2000 05:08:36 +0000 Subject: Add base64 0.1, a simple program to convert binary files to base64. --- converters/Makefile | 1 + converters/base64/Makefile | 22 ++++++++++++++++++++++ converters/base64/distinfo | 1 + converters/base64/pkg-comment | 1 + converters/base64/pkg-descr | 4 ++++ converters/base64/pkg-plist | 1 + 6 files changed, 30 insertions(+) create mode 100644 converters/base64/Makefile create mode 100644 converters/base64/distinfo create mode 100644 converters/base64/pkg-comment create mode 100644 converters/base64/pkg-descr create mode 100644 converters/base64/pkg-plist (limited to 'converters') diff --git a/converters/Makefile b/converters/Makefile index 71e4c335c06..a04eab6439a 100644 --- a/converters/Makefile +++ b/converters/Makefile @@ -2,6 +2,7 @@ # SUBDIR += aish + SUBDIR += base64 SUBDIR += btoa SUBDIR += dumpasn1 SUBDIR += fconv diff --git a/converters/base64/Makefile b/converters/base64/Makefile new file mode 100644 index 00000000000..6059696a29f --- /dev/null +++ b/converters/base64/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: groach +# Date created: 29 Oct 2000 +# Whom: will +# +# $FreeBSD$ +# + +PORTNAME= base64 +PORTVERSION= 0.1 +CATEGORIES= converters +MASTER_SITES= http://www.codecenter.com/base64/ +DISTNAME= b64 + +MAINTAINER= ports@FreeBSD.org + +ALL_TARGET= clean all +WRKSRC= ${WRKDIR}/${PORTNAME} + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/base64 ${PREFIX}/bin + +.include diff --git a/converters/base64/distinfo b/converters/base64/distinfo new file mode 100644 index 00000000000..5263c202bc1 --- /dev/null +++ b/converters/base64/distinfo @@ -0,0 +1 @@ +MD5 (b64.tar.gz) = 4d4f054d14b11da6be33f953b3123f51 diff --git a/converters/base64/pkg-comment b/converters/base64/pkg-comment new file mode 100644 index 00000000000..1a552eb95b0 --- /dev/null +++ b/converters/base64/pkg-comment @@ -0,0 +1 @@ +Simple program to convert binary files to base64 diff --git a/converters/base64/pkg-descr b/converters/base64/pkg-descr new file mode 100644 index 00000000000..3f09a299cc8 --- /dev/null +++ b/converters/base64/pkg-descr @@ -0,0 +1,4 @@ +Base64 is a simple program to convert binary files to base64 for use +with MIME attachments and such. + +--will diff --git a/converters/base64/pkg-plist b/converters/base64/pkg-plist new file mode 100644 index 00000000000..7823340ee65 --- /dev/null +++ b/converters/base64/pkg-plist @@ -0,0 +1 @@ +bin/base64 -- cgit