summaryrefslogtreecommitdiff
path: root/cad/findhier
diff options
context:
space:
mode:
Diffstat (limited to 'cad/findhier')
-rw-r--r--cad/findhier/Makefile24
-rw-r--r--cad/findhier/distinfo2
-rw-r--r--cad/findhier/files/patch-Makefile28
-rw-r--r--cad/findhier/files/patch-findhier.h42
-rw-r--r--cad/findhier/files/patch-fnames.c21
-rw-r--r--cad/findhier/files/patch-magic.c38
-rw-r--r--cad/findhier/files/patch-menu.c29
-rw-r--r--cad/findhier/files/patch-names.c11
-rw-r--r--cad/findhier/files/patch-reverse.c11
-rw-r--r--cad/findhier/pkg-descr3
10 files changed, 0 insertions, 209 deletions
diff --git a/cad/findhier/Makefile b/cad/findhier/Makefile
deleted file mode 100644
index 986b526d341f..000000000000
--- a/cad/findhier/Makefile
+++ /dev/null
@@ -1,24 +0,0 @@
-# Created by: Hiroki Sato <hrs@FreeBSD.org>
-# $FreeBSD$
-
-PORTNAME= findhier
-PORTVERSION= 1.14
-CATEGORIES= cad
-MASTER_SITES= http://www.iclab.snu.ac.kr/~chilly/Work/CAD/
-DISTNAME= fh${PORTVERSION}
-
-MAINTAINER= hrs@FreeBSD.org
-COMMENT= Hierarchy Viewer for magic/CIF/GDSII/PCSTR/GED/TeX
-
-BROKEN= Unfetchable
-DEPRECATED= Broken for more than 6 months
-EXPIRATION_DATE= 2015-11-26
-
-NO_WRKSUBDIR= yes
-PLIST_FILES= bin/fh man/man1/fh.1.gz
-
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/fh ${STAGEDIR}${PREFIX}/bin
- ${INSTALL_MAN} ${WRKSRC}/fh.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
-
-.include <bsd.port.mk>
diff --git a/cad/findhier/distinfo b/cad/findhier/distinfo
deleted file mode 100644
index 5b4743c7acc7..000000000000
--- a/cad/findhier/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (fh1.14.tar.gz) = d6cb574d7aa62335682ce963a84a906f7b1c5d05d4546b458ea33ecb0a20cdea
-SIZE (fh1.14.tar.gz) = 43155
diff --git a/cad/findhier/files/patch-Makefile b/cad/findhier/files/patch-Makefile
deleted file mode 100644
index eb1d14e0902a..000000000000
--- a/cad/findhier/files/patch-Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
---- Makefile.orig Mon Oct 16 00:58:34 1995
-+++ Makefile Sun Apr 29 00:58:54 2007
-@@ -9,7 +9,7 @@
-
- #CFLAG = -pg
- #CFLAG = -g
--CFLAG = -O4
-+CFLAG = -O ${CFLAGS}
- LFLAG =
-
- # Sparc with SunOS4.x
-@@ -51,13 +51,13 @@
- OBJS = ${SRCS:c=o}
- HEADERS = str.h findhier.h fstruct.h
-
--.c.o: Makefile findhier.h fhstruct.h
-+.c.o: Makefile findhier.h fstruct.h
- ${CC} -c ${CFLAG} $<
-
-+all: fh
-+
- fh: ${OBJS}
- ${CC} -o $@ ${CFLAG} ${OBJS} ${LFLAG}
-- #strip fh
-- #mv fh ${HOME}/bin
-
- lint:
- ${LINT} ${SRCS} | more
diff --git a/cad/findhier/files/patch-findhier.h b/cad/findhier/files/patch-findhier.h
deleted file mode 100644
index d2249fd84f11..000000000000
--- a/cad/findhier/files/patch-findhier.h
+++ /dev/null
@@ -1,42 +0,0 @@
---- findhier.h.orig Sun Apr 29 00:47:16 2007
-+++ findhier.h Sun Apr 29 00:49:02 2007
-@@ -6,6 +6,7 @@
- *
- */
- #include <stdio.h>
-+#include <stdlib.h>
- #include <string.h>
- #include "fstruct.h"
-
-@@ -31,7 +32,7 @@
-
- #ifndef isalpha
- #define isalpha(X) ( X>='A' && X<='Z' || X>='a' && X<='z' )
--#endif isalpha
-+#endif /* isalpha */
-
- typedef enum formats { CIF, GDSII, MAGIC, PCSTR, VALID, TeX } FORMAT;
-
-@@ -111,19 +112,21 @@
- void exit();
- char *getenv();
-
-+/*
- #ifdef SYSV
- void *malloc();
- void free();
- #else
- char *malloc();
- #endif SYSV
-+*/
- #ifdef _UNIX_
- # define OPENMODE "r"
- # define DIRDEL '/'
- #else
- #define OPENMODE "rb"
- #define DIRDEL '\\'
--#endif _UNIX_
-+#endif /* _UNIX_ */
- /*
- char *getenv();
- */
diff --git a/cad/findhier/files/patch-fnames.c b/cad/findhier/files/patch-fnames.c
deleted file mode 100644
index f94c099d6ceb..000000000000
--- a/cad/findhier/files/patch-fnames.c
+++ /dev/null
@@ -1,21 +0,0 @@
---- fnames.c.orig Sun Apr 29 00:51:29 2007
-+++ fnames.c Sun Apr 29 00:53:16 2007
-@@ -6,15 +6,14 @@
- *
- */
- #include <stdio.h>
-+#include <string.h>
- #ifndef DIRDEL
- #ifdef _UNIX_
- #define DIRDEL '/'
- #else
- #define DIRDEL '\\'
--#endif _UNIX_
--#endif DIRDEL
--
--int strlen();
-+#endif /* _UNIX_ */
-+#endif /* DIRDEL */
-
- char *basename(argv)
- char *argv;
diff --git a/cad/findhier/files/patch-magic.c b/cad/findhier/files/patch-magic.c
deleted file mode 100644
index c83d4f614dbc..000000000000
--- a/cad/findhier/files/patch-magic.c
+++ /dev/null
@@ -1,38 +0,0 @@
---- magic.c.orig Sun Apr 29 00:53:23 2007
-+++ magic.c Sun Apr 29 00:53:59 2007
-@@ -16,7 +16,7 @@
- #ifdef _UNIX_
- #include <pwd.h>
- uid_t getuid();
--#endif _UNIX_
-+#endif /* _UNIX_ */
-
- #define ENVIRON ".magic"
-
-@@ -84,7 +84,7 @@
- while((tmp=getpath(env))!=NULL) add_path(tmp);
- (void)fclose(env);
- }
--#endif _UNIX_
-+#endif /* _UNIX_ */
-
- void myenviron()
- {
-@@ -92,7 +92,7 @@
- char buf[BUFSIZE];
- struct passwd *cad;
- uid_t uid;
--#endif _UNIX_
-+#endif /* _UNIX_ */
-
- add_path(".");
- #ifdef _UNIX_
-@@ -110,7 +110,7 @@
- proc(ENVIRON);
-
- path_reversal();
--#endif _UNIX_
-+#endif /* _UNIX_ */
- }
-
- /* magic.c */
diff --git a/cad/findhier/files/patch-menu.c b/cad/findhier/files/patch-menu.c
deleted file mode 100644
index 62309e50b085..000000000000
--- a/cad/findhier/files/patch-menu.c
+++ /dev/null
@@ -1,29 +0,0 @@
---- menu.c.orig Sun Apr 29 00:54:06 2007
-+++ menu.c Sun Apr 29 00:54:30 2007
-@@ -9,7 +9,7 @@
- #include <errno.h>
- #ifndef _UNIX_
- #include <process.h>
--#endif _UNIX_
-+#endif /* _UNIX_ */
-
- #define PROMPT "FindHier>"
- /*
-@@ -102,7 +102,7 @@
- (void)sprintf(tmpfname,"/tmp/FindHier_%d",getpid());
- #else
- (void)sprintf(tmpfname,".\\findhier.%3x",getpid() & 0xfff);
--#endif _UNIX_
-+#endif /* _UNIX_ */
- pager=getenv("PAGER");
- if (pager==NULL) {
- pager=(char *)myalloc(sizeof("more"),"menu");
-@@ -112,7 +112,7 @@
- (void)sprintf(pagercmd,"%s %s",pager,tmpfname);
- #else
- (void)sprintf(pagercmd,"%s < %s",pager,tmpfname);
--#endif _UNIX_
-+#endif /* _UNIX_ */
-
- for(;;) {
-
diff --git a/cad/findhier/files/patch-names.c b/cad/findhier/files/patch-names.c
deleted file mode 100644
index 8524838c8958..000000000000
--- a/cad/findhier/files/patch-names.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- names.c.orig Sun Apr 29 00:54:55 2007
-+++ names.c Sun Apr 29 00:55:01 2007
-@@ -116,7 +116,7 @@
- }
- #ifndef _UNIX_
- strlwr(dp);
--#endif _UNIX_
-+#endif /* _UNIX_ */
- /* extension() will corrupt dp on purpose */
- if (!strcmp(extension(dp),EXT+1)) create(dp);
- }
diff --git a/cad/findhier/files/patch-reverse.c b/cad/findhier/files/patch-reverse.c
deleted file mode 100644
index 1391da9059f9..000000000000
--- a/cad/findhier/files/patch-reverse.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- reverse.c.orig Sun Apr 29 00:54:40 2007
-+++ reverse.c Sun Apr 29 00:54:49 2007
-@@ -85,7 +85,7 @@
- warning("Cell |%s| not found.\n",mytop);
- exit(-1);
- }
--#endif __OLD__
-+#endif /* __OLD__ */
- warning("Cell |%s| not found.\n",mytop);
- return((struct branch *)NULL);
- }
diff --git a/cad/findhier/pkg-descr b/cad/findhier/pkg-descr
deleted file mode 100644
index d2d11ce2d518..000000000000
--- a/cad/findhier/pkg-descr
+++ /dev/null
@@ -1,3 +0,0 @@
-This is a road-map generator for Magic/CIF/gdsII/PCSTR/GED/TeX.
-
-WWW: http://www.iclab.snu.ac.kr/~chilly/Work/CAD/findhier.html