summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--converters/Makefile3
-rw-r--r--converters/fondu/DESCR8
-rw-r--r--converters/fondu/Makefile30
-rw-r--r--converters/fondu/PLIST13
-rw-r--r--converters/fondu/distinfo4
-rw-r--r--doc/CHANGES3
6 files changed, 59 insertions, 2 deletions
diff --git a/converters/Makefile b/converters/Makefile
index fe448b880ea..af784d7f8df 100644
--- a/converters/Makefile
+++ b/converters/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.58 2003/07/21 16:36:11 martti Exp $
+# $NetBSD: Makefile,v 1.59 2003/09/10 21:22:29 manu Exp $
#
COMMENT= Document format and character code converters
@@ -14,6 +14,7 @@ SUBDIR+= cn2jp
SUBDIR+= code2html
SUBDIR+= doc2html
SUBDIR+= dvi2tty
+SUBDIR+= fondu
SUBDIR+= hztty
SUBDIR+= ish
SUBDIR+= ja-dvi2tty
diff --git a/converters/fondu/DESCR b/converters/fondu/DESCR
new file mode 100644
index 00000000000..b94ec33a2f0
--- /dev/null
+++ b/converters/fondu/DESCR
@@ -0,0 +1,8 @@
+A set of programs to interconvert between mac font formats
+and pfb, ttf, otf and bdf files on unix.
+
+Dealing with mac fonts is hard on other operating systems because
+mac fonts are stored in the resource fork, and other operating
+systems do not support this concept. Fondu will extract the resource
+fork from either a macbinary file or a binhex file. Ufond will
+create a resource fork inside a macbinary file.
diff --git a/converters/fondu/Makefile b/converters/fondu/Makefile
new file mode 100644
index 00000000000..a5c644ad680
--- /dev/null
+++ b/converters/fondu/Makefile
@@ -0,0 +1,30 @@
+# $NetBSD: Makefile,v 1.1.1.1 2003/09/10 21:21:30 manu Exp $
+#
+
+DISTNAME= fondu_src-030428
+CATEGORIES= converters print
+MASTER_SITES= http://fondu.sourceforge.net/
+EXTRACT_SUFX= .tgz
+
+MAINTAINER= manu@netbsd.org
+HOMEPAGE= http://fondu.sourceforge.net
+COMMENT= Utility to convert between Mac fonts and UNIX fonts
+
+WRKSRC= ${WRKDIR}/fondu
+HAS_CONFIGURE= YES
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/fondu ${PREFIX}/bin
+ ${INSTALL_PROGRAM} ${WRKSRC}/dfont2res ${PREFIX}/bin
+ ${INSTALL_PROGRAM} ${WRKSRC}/frombin ${PREFIX}/bin
+ ${INSTALL_PROGRAM} ${WRKSRC}/tobin ${PREFIX}/bin
+ ${INSTALL_PROGRAM} ${WRKSRC}/showfond ${PREFIX}/bin
+ ${INSTALL_PROGRAM} ${WRKSRC}/ufond ${PREFIX}/bin
+ ${INSTALL_MAN} ${WRKSRC}/fondu.1 ${PREFIX}/man/man1
+ ${INSTALL_MAN} ${WRKSRC}/dfont2res.1 ${PREFIX}/man/man1
+ ${INSTALL_MAN} ${WRKSRC}/frombin.1 ${PREFIX}/bin
+ ${INSTALL_MAN} ${WRKSRC}/tobin.1 ${PREFIX}/bin
+ ${INSTALL_MAN} ${WRKSRC}/showfond.1 ${PREFIX}/man/man1
+ ${INSTALL_MAN} ${WRKSRC}/ufond.1 ${PREFIX}/man/man1
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/converters/fondu/PLIST b/converters/fondu/PLIST
new file mode 100644
index 00000000000..85c81b6a1d8
--- /dev/null
+++ b/converters/fondu/PLIST
@@ -0,0 +1,13 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2003/09/10 21:21:30 manu Exp $
+bin/fondu
+bin/ufond
+bin/showfond
+bin/dfont2res
+bin/tobin
+bin/frombin
+man/man1/fondu.1
+man/man1/ufond.1
+man/man1/showfond.1
+man/man1/dfont2res.1
+man/man1/tobin.1
+man/man1/frombin.1
diff --git a/converters/fondu/distinfo b/converters/fondu/distinfo
new file mode 100644
index 00000000000..11856bbfb01
--- /dev/null
+++ b/converters/fondu/distinfo
@@ -0,0 +1,4 @@
+$NetBSD: distinfo,v 1.1.1.1 2003/09/10 21:21:30 manu Exp $
+
+SHA1 (fondu_src-030428.tgz) = 1a8875ba4876c514c925c4f8b44efe3249f30448
+Size (fondu_src-030428.tgz) = 90596 bytes
diff --git a/doc/CHANGES b/doc/CHANGES
index 4fd7fdd45a5..7b0f28e37cf 100644
--- a/doc/CHANGES
+++ b/doc/CHANGES
@@ -1,4 +1,4 @@
-$NetBSD: CHANGES,v 1.3316 2003/09/10 19:14:26 jmmv Exp $
+$NetBSD: CHANGES,v 1.3317 2003/09/10 21:24:16 manu Exp $
Changes to the packages collection and infrastructure in 2003:
@@ -3615,3 +3615,4 @@ Changes to the packages collection and infrastructure in 2003:
Added ruby-DBD-mysql-0.0.21 [taca 2003-09-10]
Updated xpkgwedge to 1.8 [gavan 2003-09-10]
Updated pkg_chk to 1.40 [jmmv 2003-09-10]
+ Added fondu-030428 [manu 2003-01-10]