mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-29 21:39:24 +00:00
6542dd2222
extra careful with $i; remove unnecessary WRKSRC. PR: 19925 Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
--- Imakefile.orig Sun May 5 04:10:27 1996
|
|
+++ Imakefile Tue Jul 11 21:14:48 2000
|
|
@@ -3,7 +3,7 @@
|
|
# * Copyleft (c) 1994-1996 Software Research Academy *
|
|
# **************************************************************
|
|
#
|
|
-SAMEDIR = /usr/local/games/sxsame
|
|
+SAMEDIR = $(LIBDIR)/sxsame
|
|
|
|
#BINDIR = /usr/local/bin
|
|
#MANDIR = /usr/local/man/man1
|
|
@@ -11,6 +11,7 @@
|
|
#XPMLIB = -L/usr/local/lib/X11 -lXpm
|
|
#EXTRA_DEFINES = -DLOCAL_XPM_H -I/usr/local/include/X11
|
|
|
|
+INSTPGMFLAGS=-s -o ${BINOWN} -g ${BINGRP} -m ${BINMODE}
|
|
|
|
XPMLIB = -lXpm
|
|
LOCAL_LIBRARIES = $(XPMLIB) -lX11
|
|
@@ -19,7 +20,7 @@
|
|
DEFINES = -DSAME_DIR=\"$(SAMEDIR)\"
|
|
|
|
#CDEBUGFLAGS = -O2 -Wall
|
|
-CDEBUGFLAGS = -g -Wall
|
|
+#CDEBUGFLAGS = -g -Wall
|
|
#CDEBUGFLAGS = -O2
|
|
ComplexProgramTarget(sxsame)
|
|
InstallManPage(sxsame,$(MANDIR))
|
|
@@ -29,6 +30,10 @@
|
|
#defdata.o:: defdata.c defdata.h
|
|
install.dir::
|
|
$(MKDIRHIER) $(SAMEDIR)
|
|
- chmod 777 $(SAMEDIR)
|
|
+ chmod 2775 $(SAMEDIR)
|
|
+ chown ${BINOWN}:${BINGRP} $(SAMEDIR)
|
|
/bin/cp -pr contrib/?* $(SAMEDIR)
|
|
+ touch $(SAMEDIR)/hiscore
|
|
+ chmod 664 $(SAMEDIR)/hiscore
|
|
+ chown ${BINOWN}:${BINGRP} $(SAMEDIR)/hiscore
|
|
|