diff options
author | kris <kris@FreeBSD.org> | 2000-11-11 17:47:03 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2000-11-11 17:47:03 +0800 |
commit | 19e051463ed51537bcef018cbdf3d8ed60512721 (patch) | |
tree | 1d795fa099c90705e2110c25fc3808bf87c2fbdd /games/pentix | |
parent | 14950c306f3e87834ab2d3783c815f24ae53ae23 (diff) | |
download | freebsd-ports-gnome-19e051463ed51537bcef018cbdf3d8ed60512721.tar.gz freebsd-ports-gnome-19e051463ed51537bcef018cbdf3d8ed60512721.tar.zst freebsd-ports-gnome-19e051463ed51537bcef018cbdf3d8ed60512721.zip |
Install this setgid games and remove world-writable privs from 3 files
Diffstat (limited to 'games/pentix')
-rw-r--r-- | games/pentix/files/patch-aa | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/games/pentix/files/patch-aa b/games/pentix/files/patch-aa index 1d87730ed820..0a82d5d16595 100644 --- a/games/pentix/files/patch-aa +++ b/games/pentix/files/patch-aa @@ -1,5 +1,5 @@ ---- Makefile.orig Sat Sep 23 17:14:43 2000 -+++ Makefile Mon Oct 9 23:35:38 2000 +--- Makefile.orig Sat Sep 23 14:14:43 2000 ++++ Makefile Sat Nov 11 01:42:49 2000 @@ -4,9 +4,9 @@ CFLAGS = -O2 -Wall LFLAGS = -lncurses @@ -13,3 +13,18 @@ PROG = pentix DATA = pentix.qtn pentix.res readme.txt +@@ -23,10 +23,10 @@ + all: $(INSTALL) + + install: $(PROG) +- install -c -s -o bin -g bin -m 755 $(PROG) $(BINDIR) +- install -d -o bin -g bin -m 755 $(DATDIR) +- install -c -o bin -g bin -m 666 $(DATA) $(DATDIR) +- install -c -o bin -g bin -m 644 $(MAN1) $(MANDIR) ++ install -c -s -o root -g games -m 2755 $(PROG) $(BINDIR) ++ install -d -o root -g games -m 755 $(DATDIR) ++ install -c -o root -g games -m 664 $(DATA) $(DATDIR) ++ install -c -o root -g games -m 644 $(MAN1) $(MANDIR) + + # Cleanup procedure + clean: |