diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-08-01 04:29:44 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-08-01 04:29:44 +0000 |
commit | 2e6cabfa170ebe3c08ebd4c3f2fc7e23ba2f0f18 (patch) | |
tree | 8e6c4f2cceeabf768a42f84d0f1914bd45cb93f4 /converters | |
parent | a9b270272208e547b68d58c91c57682977be8a1a (diff) | |
download | ports-2e6cabfa170ebe3c08ebd4c3f2fc7e23ba2f0f18.tar.gz ports-2e6cabfa170ebe3c08ebd4c3f2fc7e23ba2f0f18.zip |
Notes
Diffstat (limited to 'converters')
-rw-r--r-- | converters/Makefile | 2 | ||||
-rw-r--r-- | converters/siconv/Makefile | 30 | ||||
-rw-r--r-- | converters/siconv/distinfo | 2 | ||||
-rw-r--r-- | converters/siconv/files/patch-siconv.c | 20 | ||||
-rw-r--r-- | converters/siconv/pkg-descr | 3 | ||||
-rw-r--r-- | converters/utf8conv/Makefile | 30 | ||||
-rw-r--r-- | converters/utf8conv/distinfo | 2 | ||||
-rw-r--r-- | converters/utf8conv/pkg-descr | 1 | ||||
-rw-r--r-- | converters/utf8conv/pkg-plist | 3 |
9 files changed, 0 insertions, 93 deletions
diff --git a/converters/Makefile b/converters/Makefile index 9d23d1f23c53..6bff140454e6 100644 --- a/converters/Makefile +++ b/converters/Makefile @@ -138,13 +138,11 @@ SUBDIR += ruby-lv SUBDIR += shftool SUBDIR += showkey - SUBDIR += siconv SUBDIR += ta2as SUBDIR += tnef SUBDIR += trans SUBDIR += tuc SUBDIR += unix2dos - SUBDIR += utf8conv SUBDIR += uudeview SUBDIR += uudx SUBDIR += uulib diff --git a/converters/siconv/Makefile b/converters/siconv/Makefile deleted file mode 100644 index 974eedeaf85f..000000000000 --- a/converters/siconv/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -# ex:ts=8 -# New ports collection makefile for: siconv -# Date created: Mar 27, 2001 -# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= siconv -PORTVERSION= 0.2 -PORTREVISION= 1 -CATEGORIES= converters -MASTER_SITES= http://www.technocage.com/~caskey/siconv/download/ - -MAINTAINER= ports@FreeBSD.org -COMMENT= Convert data from one character set to another - -DEPRECATED= Looks like an abandonware, no more public distfiles -EXPIRATION_DATE= 2011-08-01 - -USE_ICONV= yes -PLIST_FILES= bin/siconv - -do-build: - ${CC} ${CFLAGS} -I${LOCALBASE}/include -L${LOCALBASE}/lib -o ${WRKSRC}/siconv ${WRKSRC}/siconv.c -liconv - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/siconv ${PREFIX}/bin - -.include <bsd.port.mk> diff --git a/converters/siconv/distinfo b/converters/siconv/distinfo deleted file mode 100644 index 92b0420b1303..000000000000 --- a/converters/siconv/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (siconv-0.2.tar.gz) = 06ad3dcb4ea98dcc79cb64771d68656dee0c179c1bfc2509c7bf3e8b2de0b522 -SIZE (siconv-0.2.tar.gz) = 16690 diff --git a/converters/siconv/files/patch-siconv.c b/converters/siconv/files/patch-siconv.c deleted file mode 100644 index f810311e510e..000000000000 --- a/converters/siconv/files/patch-siconv.c +++ /dev/null @@ -1,20 +0,0 @@ ---- siconv.c.orig Tue Mar 27 00:55:22 2001 -+++ siconv.c Tue Mar 27 01:02:20 2001 -@@ -139,7 +139,7 @@ - void usage(void) { - printf("usage:\n"); - printf("\n"); -- printf(" convert stdin from iso-8859-1 to utf8 on stdout\n"); -+ printf(" convert stdin from iso-8859-1 to utf-8 on stdout\n"); - printf(" $ siconv\n"); - printf(" convert stdin from charset-A to charset-B on stdout\n"); - printf(" $ siconv charset-A charset-B\n"); -@@ -149,7 +149,7 @@ - - int main(int argc, char *argv[]) { - char *from = "iso-8859-1"; -- char *to = "unicode"; -+ char *to = "utf-8"; - - if ( argc == 3 ) { - from = argv[1]; diff --git a/converters/siconv/pkg-descr b/converters/siconv/pkg-descr deleted file mode 100644 index a0040daef677..000000000000 --- a/converters/siconv/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Convert data from one character set to another - -WWW: http://www.technocage.com/~caskey/siconv/ diff --git a/converters/utf8conv/Makefile b/converters/utf8conv/Makefile deleted file mode 100644 index 33bb96d12af3..000000000000 --- a/converters/utf8conv/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -# ex:ts=8 -# New ports collection makefile for: utf8conv -# Date created: Jul 30, 2001 -# Whom: ijliao -# -# $FreeBSD$ -# - -PORTNAME= utf8conv -PORTVERSION= 1.1 -CATEGORIES= converters -MASTER_SITES= http://mikebabcock.ca/code/ - -MAINTAINER= ports@FreeBSD.org -COMMENT= Convert hexadecimal Unicode character values to UTF-8 - -DEPRECATED= Looks like an abandonware, no more public distfile -EXPIRATION_DATE= 2011-08-01 - -MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" -ALL_TARGET= ${PORTNAME} - -do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/utf8conv ${PREFIX}/bin -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - @${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} -.endif - -.include <bsd.port.mk> diff --git a/converters/utf8conv/distinfo b/converters/utf8conv/distinfo deleted file mode 100644 index b637eccd9639..000000000000 --- a/converters/utf8conv/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (utf8conv-1.1.tar.gz) = b082da6590e8a4406edc093b7e4c9f6e70f85889441b516b61ab307603898371 -SIZE (utf8conv-1.1.tar.gz) = 112685 diff --git a/converters/utf8conv/pkg-descr b/converters/utf8conv/pkg-descr deleted file mode 100644 index 9d7230382852..000000000000 --- a/converters/utf8conv/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -Convert hexadecimal Unicode character values to UTF-8 diff --git a/converters/utf8conv/pkg-plist b/converters/utf8conv/pkg-plist deleted file mode 100644 index b3c562fd432d..000000000000 --- a/converters/utf8conv/pkg-plist +++ /dev/null @@ -1,3 +0,0 @@ -bin/utf8conv -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%@dirrm %%DOCSDIR%% |