diff options
author | jfitz <jfitz@FreeBSD.org> | 1996-11-04 05:11:09 +0800 |
---|---|---|
committer | jfitz <jfitz@FreeBSD.org> | 1996-11-04 05:11:09 +0800 |
commit | 9ff23b8ab8b52d26e16947bc986a935fe578f7b0 (patch) | |
tree | 0f3bd7044abc2ec501404a83cb6bce3a9ef8301f /games/xshisen/files | |
parent | 24feca3b4583a0986e6e42dee4b7c7955b4cf15b (diff) | |
download | freebsd-ports-gnome-9ff23b8ab8b52d26e16947bc986a935fe578f7b0.tar.gz freebsd-ports-gnome-9ff23b8ab8b52d26e16947bc986a935fe578f7b0.tar.zst freebsd-ports-gnome-9ff23b8ab8b52d26e16947bc986a935fe578f7b0.zip |
Import of Shisen-sho puzzle game for X11
Reviewed by: jfitz@FreeBSD.ORG
Submitted by: Nakai@Mlab.t.u-tokyo.ac.jp
Diffstat (limited to 'games/xshisen/files')
-rw-r--r-- | games/xshisen/files/patch-aa | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/games/xshisen/files/patch-aa b/games/xshisen/files/patch-aa new file mode 100644 index 000000000000..7f456c0cecf8 --- /dev/null +++ b/games/xshisen/files/patch-aa @@ -0,0 +1,51 @@ +*** Makefile.in.orig Tue Jan 23 08:35:21 1996 +--- Makefile.in Fri Oct 11 08:19:53 1996 +*************** +*** 39,52 **** + SCF = xshisen-scores + + LIBS = @LIBS@ +! CODECONV = ./$(exec_name) -KCONV jis + + all: $(PROGS) + + $(exec_name): $(OBJS) + $(CXX) $(LDFLAGS) $(OBJS) $(LIBS) -o $(exec_name) + +! install: $(PROGS) $(AD) $(ADJ) + @echo "XShisen executable directory is " $(bindir) + @$(MKDIR) $(bindir) + @chmod 755 $(bindir) +--- 39,52 ---- + SCF = xshisen-scores + + LIBS = @LIBS@ +! CODECONV = ./$(exec_name) -KCONV euc + + all: $(PROGS) + + $(exec_name): $(OBJS) + $(CXX) $(LDFLAGS) $(OBJS) $(LIBS) -o $(exec_name) + +! install: $(PROGS) $(AD) $(ADJ) install.man + @echo "XShisen executable directory is " $(bindir) + @$(MKDIR) $(bindir) + @chmod 755 $(bindir) +*************** +*** 63,73 **** +--- 63,77 ---- + for file in pixmaps/*.xpm; do \ + $(INSTALLD) $$file $(XSHISENLIB)/`basename $$file`; \ + done ++ @$(MKDIR) $(XAD_DIR)/$(class_name) ++ @$(MKDIR) $(JXAD_DIR)/$(class_name) + $(INSTALLD) $(AD) $(XAD_DIR)/$(class_name) + $(INSTALLD) $(ADJ) $(JXAD_DIR)/$(class_name) + + install.man: $(exec_name).jman $(exec_name).man ++ mkdir -p $(MANDIR)/man6 + $(INSTALLD) $(exec_name).man $(MANDIR)/man6/$(exec_name).6 ++ mkdir -p $(MANDIR)/$(JAPANESE)/man6 + $(INSTALLD) $(exec_name).jman $(MANDIR)/$(JAPANESE)/man6/$(exec_name).6 + + clean: |