diff options
author | bapt <bapt@FreeBSD.org> | 2014-12-25 22:38:09 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-12-25 22:38:09 +0800 |
commit | eda5cfd70bada7bcc30e9a1dee6e7c0dad688324 (patch) | |
tree | 7b3de069c3603ac95210b219deb40046518a1b61 /japanese | |
parent | cdcf7fff57acf173e482e07544fa9eff22849fdb (diff) | |
download | freebsd-ports-gnome-eda5cfd70bada7bcc30e9a1dee6e7c0dad688324.tar.gz freebsd-ports-gnome-eda5cfd70bada7bcc30e9a1dee6e7c0dad688324.tar.zst freebsd-ports-gnome-eda5cfd70bada7bcc30e9a1dee6e7c0dad688324.zip |
Remove abandonware blocking decomissioning imlib
Diffstat (limited to 'japanese')
-rw-r--r-- | japanese/Makefile | 1 | ||||
-rw-r--r-- | japanese/xjtext/Makefile | 32 | ||||
-rw-r--r-- | japanese/xjtext/distinfo | 2 | ||||
-rw-r--r-- | japanese/xjtext/files/patch-Makefile | 56 | ||||
-rw-r--r-- | japanese/xjtext/files/patch-lex.l | 22 | ||||
-rw-r--r-- | japanese/xjtext/files/patch-parser.y | 15 | ||||
-rw-r--r-- | japanese/xjtext/files/patch-parsing.h | 10 | ||||
-rw-r--r-- | japanese/xjtext/files/patch-xfont.c | 20 | ||||
-rw-r--r-- | japanese/xjtext/files/patch-xjtext_main.c | 18 | ||||
-rw-r--r-- | japanese/xjtext/files/patch-xwindow.h | 36 | ||||
-rw-r--r-- | japanese/xjtext/files/pkg-message.in | 4 | ||||
-rw-r--r-- | japanese/xjtext/pkg-descr | 4 |
12 files changed, 0 insertions, 220 deletions
diff --git a/japanese/Makefile b/japanese/Makefile index 2f56d3d38e87..4080b03e53f6 100644 --- a/japanese/Makefile +++ b/japanese/Makefile @@ -287,7 +287,6 @@ SUBDIR += wwasw-fpw SUBDIR += xdtp SUBDIR += xgate - SUBDIR += xjtext SUBDIR += xlockmore SUBDIR += xpdf SUBDIR += xshodou diff --git a/japanese/xjtext/Makefile b/japanese/xjtext/Makefile deleted file mode 100644 index c7eb47765787..000000000000 --- a/japanese/xjtext/Makefile +++ /dev/null @@ -1,32 +0,0 @@ -# Created by: sada -# $FreeBSD$ - -PORTNAME= xjtext -PORTVERSION= 1.3 -PORTREVISION= 13 -CATEGORIES= japanese -MASTER_SITES= http://plaza.harmonix.ne.jp/~onizuka/ -DISTNAME= XJTEXT-${PORTVERSION} - -MAINTAINER= ports@FreeBSD.org -COMMENT= Text viewer for Japanese vertical writings - -USES= bison -USE_GNOME= imlib - -SUB_FILES= pkg-message - -PORTDOCS= README.txt -PORTEXAMPLES= FSS README YAMA Ao.png Back2.png Brown.png Royal.png Royal2.png -PLIST_FILES= bin/xjtext - -OPTIONS_DEFINE= DOCS EXAMPLES - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/xjtext ${STAGEDIR}${PREFIX}/bin - @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} - @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} - ${INSTALL_DATA} ${PORTEXAMPLES:S|^|${WRKSRC}/|} ${STAGEDIR}${EXAMPLESDIR} - -.include <bsd.port.mk> diff --git a/japanese/xjtext/distinfo b/japanese/xjtext/distinfo deleted file mode 100644 index 981038cf5973..000000000000 --- a/japanese/xjtext/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (XJTEXT-1.3.tar.gz) = 87b7088107aa3f70c068ea080f5160d13556bae278ff46da9e9ddfaae85ce48f -SIZE (XJTEXT-1.3.tar.gz) = 56647 diff --git a/japanese/xjtext/files/patch-Makefile b/japanese/xjtext/files/patch-Makefile deleted file mode 100644 index d81230894bb1..000000000000 --- a/japanese/xjtext/files/patch-Makefile +++ /dev/null @@ -1,56 +0,0 @@ ---- Makefile.orig 1999-09-04 22:45:16.000000000 +0900 -+++ Makefile 2012-09-11 04:28:11.000000000 +0900 -@@ -1,27 +1,27 @@ - CC =g++ --CFLAGS =-c -g -O --INCDIRS =-I/usr/X11R6/include -I/usr/local/include -+CFLAGS =${CXXFLAGS} -c -+INCDIRS =-I${LOCALBASE}/include `imlib-config --cflags` - LIBS =-lX11 -lXext -lm -lfl --IMLIBS =-ljpeg -lpng -ltiff -lz -lgif -lImlib --LIBDIRS =-L/usr/X11R6/lib/ -L/usr/local/lib -+IMLIBS =`imlib-config --libs` -+LIBDIRS =-L${LOCALBASE}/lib - OBJS =xwindow.o xfont.o xtext.o xjtext.o lex.yy.o parser.tab.o xjtext-main.o - - all: xjtext - - xwindow.o: xwindow.h xwindow.c -- ${CC} ${CFLAGS} ${INCDIRS} xwindow.c -+ ${CXX} ${CFLAGS} ${INCDIRS} xwindow.c - - xfont.o: xwindow.h xfont.h xfont.c -- ${CC} ${CFLAGS} ${INCDIRS} xfont.c -+ ${CXX} ${CFLAGS} ${INCDIRS} xfont.c - - xtext.o: xwindow.h xfont.h xtext.h xtext.c -- ${CC} ${CFLAGS} ${INCDIRS} xtext.c -+ ${CXX} ${CFLAGS} ${INCDIRS} xtext.c - - xjtext.o: xwindow.h xfont.h xtext.h xjtext.h xjtext.c -- ${CC} ${CFLAGS} ${INCDIRS} xjtext.c -+ ${CXX} ${CFLAGS} ${INCDIRS} xjtext.c - - xjtext-main.o: xwindow.h xfont.h xtext.h xjtext.h xjtext-main.c -- ${CC} ${CFLAGS} ${INCDIRS} xjtext-main.c -+ ${CXX} ${CFLAGS} ${INCDIRS} xjtext-main.c - - parser.tab.c: xwindow.h xfont.h xtext.h xjtext.h parsing.h parser.y - bison -dv parser.y -@@ -33,13 +33,13 @@ - flex lex.l - - parser.tab.o: parser.tab.c -- ${CC} ${CFLAGS} ${INCDIRS} parser.tab.c -+ ${CXX} ${CFLAGS} ${INCDIRS} parser.tab.c - - lex.yy.o: xwindow.h xfont.h xtext.h xjtext.h parsing.h parser.tab.h lex.yy.c -- ${CC} ${CFLAGS} ${INCDIRS} lex.yy.c -+ ${CXX} ${CFLAGS} ${INCDIRS} lex.yy.c - - xjtext: ${OBJS} -- LD_RUN_PATH=/usr/X11R6/lib/ ${CC} ${OBJS} ${LIBDIRS} ${LIBS} ${IMLIBS}\ -+ LD_RUN_PATH=${LOCALBASE}/lib/ ${CXX} ${OBJS} ${LIBDIRS} ${LIBS} ${IMLIBS}\ - -o xjtext - - clean: diff --git a/japanese/xjtext/files/patch-lex.l b/japanese/xjtext/files/patch-lex.l deleted file mode 100644 index 3bddce729494..000000000000 --- a/japanese/xjtext/files/patch-lex.l +++ /dev/null @@ -1,22 +0,0 @@ ---- lex.l.orig Sat Sep 4 22:45:16 1999 -+++ lex.l Mon May 16 15:55:19 2005 -@@ -1,8 +1,8 @@ - %{ --#include <stdio.h> --#include <string.h> --#include <stream.h> --#include <ctype.h> -+#include <cstdio> -+#include <cstring> -+#include <iostream> -+#include <cctype> - #include "parsing.h" - #include "parser.tab.h" - int LineNumber= 0; -@@ -72,5 +72,5 @@ - %% - - int yyerror(char* Error) --{ cerr << form("%s:%d: %s.\n",FileName,LineNumber+1,Error); return 0;} -+{ cerr << "%s:%d: %s.\n",FileName,LineNumber+1,Error; return 0;} - diff --git a/japanese/xjtext/files/patch-parser.y b/japanese/xjtext/files/patch-parser.y deleted file mode 100644 index a607af2549c6..000000000000 --- a/japanese/xjtext/files/patch-parser.y +++ /dev/null @@ -1,15 +0,0 @@ ---- parser.y.orig Sat Sep 4 22:45:16 1999 -+++ parser.y Mon May 16 15:57:22 2005 -@@ -1,8 +1,8 @@ - %{ --#include <stdlib.h> --#include <stdio.h> --#include <stream.h> --#include <string.h> -+#include <cstdlib> -+#include <cstdio> -+#include <iostream> -+#include <cstring> - #include "parsing.h" - %} - diff --git a/japanese/xjtext/files/patch-parsing.h b/japanese/xjtext/files/patch-parsing.h deleted file mode 100644 index ccc6fdeb3c95..000000000000 --- a/japanese/xjtext/files/patch-parsing.h +++ /dev/null @@ -1,10 +0,0 @@ ---- parsing.h.orig Sat Sep 4 22:45:16 1999 -+++ parsing.h Mon May 16 16:07:09 2005 -@@ -1,6 +1,6 @@ - #ifndef _PARSING - #define _PARSING --#include <stdio.h> -+#include <cstdio> - #include "xjtext.h" - - #define YYSTYPE char* diff --git a/japanese/xjtext/files/patch-xfont.c b/japanese/xjtext/files/patch-xfont.c deleted file mode 100644 index 20c01fd61d41..000000000000 --- a/japanese/xjtext/files/patch-xfont.c +++ /dev/null @@ -1,20 +0,0 @@ ---- xfont.c.orig Sat Sep 4 22:45:16 1999 -+++ xfont.c Mon May 16 15:53:22 2005 -@@ -5,7 +5,7 @@ - if(NULL==TheDisplay)if(NULL==(TheDisplay=XOpenDisplay(""))) - { cerr << "Can't open display.\n";exit(1);} - if(NULL==(KFontStruct =XLoadQueryFont(TheDisplay,FontName))) -- { cerr << form("Can't load font \"%s\".",FontName);exit(1);} -+ { cerr << "Can't load font \"%s\".",FontName;exit(1);} - - XChar2b Utsu;Utsu.byte1=0x31;Utsu.byte2=0x35; - int CharDirection; XCharStruct CharOverAll; -@@ -152,7 +152,7 @@ - if(NULL==TheDisplay)if(NULL==(TheDisplay=XOpenDisplay(""))) - { cerr << "Can't open display.\n";exit(1);} - if(NULL==(AFontStruct =XLoadQueryFont(TheDisplay,FontName))) -- { cerr << form("Can't load font \"%s\".",FontName);exit(1);} -+ { cerr << "Can't load font \"%s\".",FontName;exit(1);} - int CharDirection; XCharStruct CharOverAll; - XTextExtents(AFontStruct,"W",1, - &CharDirection,&CharAscent,&CharDescent,&CharOverAll); diff --git a/japanese/xjtext/files/patch-xjtext_main.c b/japanese/xjtext/files/patch-xjtext_main.c deleted file mode 100644 index 3d0156e24b62..000000000000 --- a/japanese/xjtext/files/patch-xjtext_main.c +++ /dev/null @@ -1,18 +0,0 @@ ---- xjtext-main.c.orig 1999-09-04 22:45:16.000000000 +0900 -+++ xjtext-main.c 2012-09-11 04:23:11.000000000 +0900 -@@ -3,13 +3,13 @@ - xJTextWindow* XWin; - - char FileName[256]; --main (int ArgCnt,char** ArgVal) -+int main (int ArgCnt,char** ArgVal) - { - if(ArgCnt<2){ yyin=stdin;strcpy(FileName,"stdin");} - else - { - if(NULL==(yyin=fopen(ArgVal[1],"r"))) -- { cerr<<form("Can't open the file named \"%s\".\n",ArgVal[1]);exit(0);} -+ { cerr<<"Can't open the file named \"%s\".\n",ArgVal[1];exit(0);} - strcpy(FileName,ArgVal[1]); - } - XWin = new xJTextWindow diff --git a/japanese/xjtext/files/patch-xwindow.h b/japanese/xjtext/files/patch-xwindow.h deleted file mode 100644 index 3ce709d5f816..000000000000 --- a/japanese/xjtext/files/patch-xwindow.h +++ /dev/null @@ -1,36 +0,0 @@ ---- xwindow.h.orig Sat Sep 4 22:45:16 1999 -+++ xwindow.h Mon May 16 15:51:32 2005 -@@ -1,12 +1,14 @@ - #ifndef _XWINDOW - #define _XWINDOW --#include <stream.h> -+#include <iostream> - #include <X11/Xlib.h> - #include <X11/Xutil.h> - #include <X11/Xatom.h> - #include <X11/extensions/shape.h> - #include <Imlib.h> - -+using namespace std; -+ - extern Display* TheDisplay; - typedef unsigned long ulong; - typedef unsigned int uint; -@@ -35,7 +37,7 @@ - XColor Exact; XColor NewColor; - if(XAllocNamedColor(TheDisplay,CMap,ColorName,&Exact,&NewColor)==0) - { -- cerr<<form("Can't allocate the color specified by \"%s\".\n",ColorName); -+ cerr<<("Can't allocate the color specified by \"%s\".\n",ColorName); - return BlackPixel(TheDisplay,TheScreen); - } - else return NewColor.pixel; -@@ -60,7 +62,7 @@ - XSetLineAttributes(TheDisplay,TheGC,1,LineSolid,CapButt,JoinMiter); - XDrawLine(TheDisplay,TheWindow,TheGC,X1,Y1,X2,Y2); - } -- inline mapRaised(void) { XMapRaised(TheDisplay,TheWindow);} -+ inline void mapRaised(void) { XMapRaised(TheDisplay,TheWindow);} - }; - - #endif diff --git a/japanese/xjtext/files/pkg-message.in b/japanese/xjtext/files/pkg-message.in deleted file mode 100644 index 8649255b1e54..000000000000 --- a/japanese/xjtext/files/pkg-message.in +++ /dev/null @@ -1,4 +0,0 @@ -For a quick demonstration, issue the following commands: - -$ cd %%EXAMPLESDIR%% -$ xjtext README diff --git a/japanese/xjtext/pkg-descr b/japanese/xjtext/pkg-descr deleted file mode 100644 index 7dc240b5bfcb..000000000000 --- a/japanese/xjtext/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Xjtext displays Japanese text in vertical form. Special effects can be -created by inserting directives into the input text. - -WWW: http://plaza.harmonix.ne.jp/~onizuka/Software.html |