mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
b215d940f4
Submitted by: Keith Jang <jtjang@gcn.net.tw> Update xcin to xcin-2.5.1 after repo copied. Old xcin will be dropped out after few months. xcin is a Chinese INput application in X, well support in both Traditional Chinese(Big5) and Simplified Chinese(GB) charsets. New version of xcin support standard XIM too. You can activate one xcin-XIM server, meanwhile, use different locale configuration to input Big5/GB words at the different sessions. This port is current version of xcin, code rewritten by Tung-Han Hsieh <thhsieh@linux.org.tw>. WWW: http://xcin.linux.org.tw/ Porting to FreeBSD by Yung-Jen Hung <winard@ms11.url.com.tw> & Keith Jang <jtjang@gcn.net.tw>.
14 lines
561 B
Plaintext
14 lines
561 B
Plaintext
--- src/util/cin2tab/Makefile.in.orig Sun Aug 15 00:03:26 1999
|
|
+++ src/util/cin2tab/Makefile.in Sun Aug 15 00:13:01 1999
|
|
@@ -58,7 +58,8 @@
|
|
distclean: clean
|
|
rm -f Makefile .depend
|
|
install: $(BIN)
|
|
- if [ -f $(xcin_binp)/$(BIN) ]; then mv $(xcin_binp)/$(BIN) $(xcin_binp)/$(BIN).old; fi
|
|
- $(INSTALL_PROGRAM) $(BIN) $(xcin_binp)
|
|
+ if [ ! -d $(xcin_libp)/bin ]; then mkdir -p $(xcin_libp)/bin; fi
|
|
+ if [ -f $(xcin_libp)/bin/$(BIN) ]; then mv $(xcin_libp)/bin/$(BIN) $(xcin_libp)/bin/$(BIN).old; fi
|
|
+ $(INSTALL_PROGRAM) $(BIN) $(xcin_libp)/bin
|
|
|
|
include .depend
|