diff options
Diffstat (limited to 'japanese/kpcal')
-rw-r--r-- | japanese/kpcal/Makefile | 31 | ||||
-rw-r--r-- | japanese/kpcal/distinfo | 4 | ||||
-rw-r--r-- | japanese/kpcal/files/patch-Makefile | 10 | ||||
-rw-r--r-- | japanese/kpcal/files/patch-conv.c | 8 | ||||
-rw-r--r-- | japanese/kpcal/files/patch-kpcal.c | 55 | ||||
-rw-r--r-- | japanese/kpcal/pkg-descr | 3 |
6 files changed, 0 insertions, 111 deletions
diff --git a/japanese/kpcal/Makefile b/japanese/kpcal/Makefile deleted file mode 100644 index d40ef863a48b..000000000000 --- a/japanese/kpcal/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# Created by: Yoichi NAKAYAMA <yoichi@eken.phys.nagoya-u.ac.jp> -# $FreeBSD$ - -PORTNAME= kpcal -PORTVERSION= 2.0 -PORTREVISION= 2 -CATEGORIES= japanese -MASTER_SITES= LOCAL/cy - -PATCH_SITES= http://www.tamaru.kuee.kyoto-u.ac.jp/~tsuchiya/misc/kpcal/ -PATCHFILES= ${PORTNAME}-${PORTVERSION}-20040518.patch -PATCH_DIST_STRIP= -p1 - -MAINTAINER= ports@FreeBSD.org -COMMENT= Make Calendar in Postscript format - -BROKEN= unfetchable -DEPRECATED= Unfetchable, unmaintained -EXPIRATION_DATE= 2019-10-16 - -ALL_TARGET= kpcal - -PLIST_FILES= bin/kpcal man/man1/kpcal.1.gz - -do-install: - (cd ${WRKSRC} && ${INSTALL_PROGRAM} kpcal \ - ${STAGEDIR}${PREFIX}/bin) - (cd ${WRKSRC} && ${INSTALL_MAN} kpcal.1 \ - ${STAGEDIR}${MANPREFIX}/man/man1) - -.include <bsd.port.mk> diff --git a/japanese/kpcal/distinfo b/japanese/kpcal/distinfo deleted file mode 100644 index 1941ace1c2dc..000000000000 --- a/japanese/kpcal/distinfo +++ /dev/null @@ -1,4 +0,0 @@ -SHA256 (kpcal-2.0.tar.gz) = 7338808c5e3835f7e7e2fe97729904fcd1bf83f4f837e6ad44728aaea384a706 -SIZE (kpcal-2.0.tar.gz) = 8420 -SHA256 (kpcal-2.0-20040518.patch) = 72058d5b408b40eadd80f9cdea979550a67b010a938acb7a5d07767d273573d2 -SIZE (kpcal-2.0-20040518.patch) = 5647 diff --git a/japanese/kpcal/files/patch-Makefile b/japanese/kpcal/files/patch-Makefile deleted file mode 100644 index ee4c11b850ad..000000000000 --- a/japanese/kpcal/files/patch-Makefile +++ /dev/null @@ -1,10 +0,0 @@ ---- Makefile.orig Sun Oct 19 02:57:42 2003 -+++ Makefile Sun Oct 19 02:57:49 2003 -@@ -1,5 +1,5 @@ --CC = cc --CFLAGS = -O -+CC ?= cc -+CFLAGS ?= -O -pipe - OBJS = kpcal.o conv.o - - kpcal: $(OBJS) diff --git a/japanese/kpcal/files/patch-conv.c b/japanese/kpcal/files/patch-conv.c deleted file mode 100644 index 97e81e77f195..000000000000 --- a/japanese/kpcal/files/patch-conv.c +++ /dev/null @@ -1,8 +0,0 @@ ---- conv.c.orig -+++ conv.c -@@ -1,4 +1,5 @@ - #include <stdio.h> -+#include <stdlib.h> - - #define TRUE (1) - #define FALSE (0) diff --git a/japanese/kpcal/files/patch-kpcal.c b/japanese/kpcal/files/patch-kpcal.c deleted file mode 100644 index f4778b525e08..000000000000 --- a/japanese/kpcal/files/patch-kpcal.c +++ /dev/null @@ -1,55 +0,0 @@ ---- kpcal.c.orig -+++ kpcal.c -@@ -5,6 +5,8 @@ - */ - - #include <stdio.h> -+#include <stdlib.h> -+#include <unistd.h> - #include <ctype.h> - #include <time.h> - #include <string.h> -@@ -28,6 +30,7 @@ - static char daynum_font[64] = DAYNUM_DEFAULT_FONT; - - extern void ConvertString(); -+extern void pmonth(); - - FILE *cfp = NULL; - int year; -@@ -35,7 +38,7 @@ - - char *getenv(); - --main(argc, argv) -+int main(argc, argv) - int argc; - char **argv; - { -@@ -46,7 +49,7 @@ - register char *cp; - char *cfile = NULL; - char cbuf[80]; -- long t, time(); -+ time_t t, time(); - int errflg = 0; - int nocal = 0; - int m; -@@ -86,7 +89,7 @@ - exit(1); - } - -- t = time((long *)0); -+ t = time((time_t *)0); - lt = localtime(&t); - - /* -@@ -150,7 +153,7 @@ - /* - * pmonth - do calendar for month "m" - */ --pmonth(m) -+void pmonth(m) - int m; - { - register char **s; diff --git a/japanese/kpcal/pkg-descr b/japanese/kpcal/pkg-descr deleted file mode 100644 index 345180ce17bc..000000000000 --- a/japanese/kpcal/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -kpcal makes Calendar in Postscript format. -You can insert schedules from calendar file, -see calendar(1). It supports Japanese language. |