diff options
author | vanilla <vanilla@FreeBSD.org> | 1997-12-04 09:56:17 +0800 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 1997-12-04 09:56:17 +0800 |
commit | a9886d42a0f4d661260a8ff89e043d8177df338d (patch) | |
tree | 748729f25ba3ad05583eb861e2e2eafd0a248cfa /chinese/rxvt/files | |
parent | 61ba7a5b416fc470724127a4890248a29b7ae871 (diff) | |
download | freebsd-ports-gnome-a9886d42a0f4d661260a8ff89e043d8177df338d.tar.gz freebsd-ports-gnome-a9886d42a0f4d661260a8ff89e043d8177df338d.tar.zst freebsd-ports-gnome-a9886d42a0f4d661260a8ff89e043d8177df338d.zip |
zh-rxvt enable the BIG5 support of rxvt-2.4.4,
Extra patchs have been applied to add support for XCIN
PR: ports/5066
Submitted by: Frankch Chen Hsiung Chan <frankch@waru.life.nthu.edu.tw>
Diffstat (limited to 'chinese/rxvt/files')
-rw-r--r-- | chinese/rxvt/files/patch-aa | 60 | ||||
-rw-r--r-- | chinese/rxvt/files/patch-ab | 39 |
2 files changed, 99 insertions, 0 deletions
diff --git a/chinese/rxvt/files/patch-aa b/chinese/rxvt/files/patch-aa new file mode 100644 index 000000000000..d57c9ba82fed --- /dev/null +++ b/chinese/rxvt/files/patch-aa @@ -0,0 +1,60 @@ +--- Makefile.in.orig Mon Nov 3 02:00:52 1997 ++++ Makefile.in Sat Nov 29 00:58:47 1997 +@@ -7,7 +7,7 @@ + first_rule: all + dummy: + +-subdirs = src doc rclock src/graphics ++subdirs = src doc src/graphics + + DIST = INSTALL configure Makefile Makefile.in + +--- configure.orig Mon Nov 3 02:00:52 1997 ++++ configure Sat Nov 29 00:58:47 1997 +@@ -26,6 +26,8 @@ + ac_help="$ac_help + --enable-big5 enable big5 support" + ac_help="$ac_help ++ --enable-xcin enable Chinese XCIN input support" ++ac_help="$ac_help + --enable-greek enable greek keyboard support" + ac_help="$ac_help + --with-term=NAME set the terminal to NAME (default "xterm")" +@@ -651,6 +653,17 @@ + if test x$enableval = xyes; then + cat >> confdefs.h <<\EOF + #define BIG5 1 ++EOF ++ ++ fi ++fi ++ ++# Check whether --enable-xcin or --disable-xcin was given. ++if test "${enable_xcin+set}" = set; then ++ enableval="$enable_xcin" ++ if test x$enableval = xyes; then ++ cat >> confdefs.h <<\EOF ++#define XCIN 1 + EOF + + fi +--- doc/Makefile.in.orig Mon Nov 3 02:00:52 1997 ++++ doc/Makefile.in Sat Nov 29 01:02:43 1997 +@@ -53,7 +53,7 @@ + + tags allbin: + +-alldoc: lsm rxvt.1 ++alldoc: rxvt.1 + + clean: + $(RMF) $(VERNAME).lsm rxvt.1 *~ +@@ -66,7 +66,7 @@ + (cd $(srcdir); $(RMF) Makefile) + + install: alldoc +- $(INSTALL_DATA) rxvt.1 $(DESTDIR)$(mandir)/$(manprefix)rxvt.$(manext) ++ $(INSTALL_DATA) rxvt.1 $(DESTDIR)$(mandir)/$(manprefix)crxvt.$(manext) + + uninstall: + -cd $(mandir); $(RMF) $(manprefix)rxvt.$(manext) diff --git a/chinese/rxvt/files/patch-ab b/chinese/rxvt/files/patch-ab new file mode 100644 index 000000000000..74d3ce3d5637 --- /dev/null +++ b/chinese/rxvt/files/patch-ab @@ -0,0 +1,39 @@ +--- autoconf/acconfig.h.orig Mon Nov 3 02:00:52 1997 ++++ autoconf/acconfig.h Sat Nov 29 00:58:47 1997 +@@ -13,6 +13,9 @@ + /* after compilation, rename executable as `crxvt' */ + #undef BIG5 + ++/* Define if you want XCIN Chinese Input support */ ++#undef XCIN ++ + /* Define if Xlocale support doesn't work */ + #undef NO_XLOCALE + +--- autoconf/config.h.in.orig Mon Nov 3 02:00:52 1997 ++++ autoconf/config.h.in Sat Nov 29 00:58:47 1997 +@@ -58,6 +58,9 @@ + /* after compilation, rename executable as `crxvt' */ + #undef BIG5 + ++/* Define if you want XCIN Chinese Input support */ ++#undef XCIN ++ + /* Define if Xlocale support doesn't work */ + #undef NO_XLOCALE + +--- autoconf/configure.in.orig Mon Nov 3 02:00:52 1997 ++++ autoconf/configure.in Sat Nov 29 00:58:47 1997 +@@ -63,6 +63,12 @@ + AC_DEFINE(BIG5) + fi]) + ++AC_ARG_ENABLE(xcin, ++[ --enable-xcin enable XCIN support], ++[if test x$enableval = xyes; then ++ AC_DEFINE(XCIN) ++fi]) ++ + AC_ARG_ENABLE(greek, + [ --enable-greek enable greek keyboard support], + [if test x$enableval = xyes; then |