diff options
author | will <will@FreeBSD.org> | 2000-10-29 13:08:36 +0800 |
---|---|---|
committer | will <will@FreeBSD.org> | 2000-10-29 13:08:36 +0800 |
commit | fa34ccb36a44ec507603d077850f3755f2ceae5a (patch) | |
tree | 8a18fd40b552ab8a445d8164e76f8a0a96c78f84 /converters | |
parent | bbaa6504b30189b9b240fb462f5733340cbef7d7 (diff) | |
download | freebsd-ports-graphics-fa34ccb36a44ec507603d077850f3755f2ceae5a.tar.gz freebsd-ports-graphics-fa34ccb36a44ec507603d077850f3755f2ceae5a.tar.zst freebsd-ports-graphics-fa34ccb36a44ec507603d077850f3755f2ceae5a.zip |
Add base64 0.1, a simple program to convert binary files to base64.
Diffstat (limited to 'converters')
-rw-r--r-- | converters/Makefile | 1 | ||||
-rw-r--r-- | converters/base64/Makefile | 22 | ||||
-rw-r--r-- | converters/base64/distinfo | 1 | ||||
-rw-r--r-- | converters/base64/pkg-comment | 1 | ||||
-rw-r--r-- | converters/base64/pkg-descr | 4 | ||||
-rw-r--r-- | converters/base64/pkg-plist | 1 |
6 files changed, 30 insertions, 0 deletions
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 <bsd.port.mk> 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 |