pkgsrc/games/monsterz/patches/patch-aa
wiz 61fddea0c7 Honor LDFLAGS, fixes RELRO build.
While here, also honor CFLAGS and remove an unnecessary chunk.
2017-07-13 12:29:09 +00:00

55 lines
2 KiB
Text

$NetBSD: patch-aa,v 1.3 2017/07/13 12:29:09 wiz Exp $
--- Makefile.orig 2007-12-17 22:05:00.000000000 +0000
+++ Makefile
@@ -1,9 +1,9 @@
-prefix = /usr/local
-gamesdir = ${prefix}/games
+prefix = ${PREFIX}
+gamesdir = ${prefix}/bin
datadir = ${prefix}/share
pkgdatadir = $(datadir)/games/monsterz
-scoredir = /var/games
+scoredir = ${VARBASE}/games
scorefile = $(scoredir)/monsterz
VERSION = 0.7.1
@@ -22,7 +22,7 @@ INKSCAPE = inkscape -z
all: monsterz
monsterz: monsterz.c
- $(CC) -Wall monsterz.c -DDATADIR=\"$(pkgdatadir)\" -DSCOREFILE=\"$(scorefile)\" -o monsterz
+ $(CC) $(LDFLAGS) $(CFLAGS) -Wall monsterz.c -DDATADIR=\"$(pkgdatadir)\" -DSCOREFILE=\"$(scorefile)\" -o monsterz
bitmap: $(BITMAP)
@@ -40,18 +40,17 @@ graphics/logo.png: graphics/graphics.svg
$(INKSCAPE) graphics/graphics.svg -a 810:858:1220:1075 -w380 -h180 -e graphics/logo.png
install: all
- mkdir -p $(DESTDIR)$(gamesdir)
- cp monsterz $(DESTDIR)$(gamesdir)/
- chown root:games $(DESTDIR)$(gamesdir)/monsterz
- chmod g+s $(DESTDIR)$(gamesdir)/monsterz
- mkdir -p $(DESTDIR)$(pkgdatadir)/graphics
- mkdir -p $(DESTDIR)$(pkgdatadir)/sound
- cp monsterz.py $(DESTDIR)$(pkgdatadir)/
- cp $(BITMAP) $(DESTDIR)$(pkgdatadir)/graphics/
- cp $(SOUND) $(MUSIC) $(DESTDIR)$(pkgdatadir)/sound/
- mkdir -p $(DESTDIR)$(scoredir)
+ ${BSD_INSTALL_GAME_DIR} $(DESTDIR)$(gamesdir)
+ ${BSD_INSTALL_GAME} monsterz $(DESTDIR)$(gamesdir)/
+ ${BSD_INSTALL_GAME_DIR} $(DESTDIR)$(pkgdatadir)/graphics
+ ${BSD_INSTALL_GAME_DIR} $(DESTDIR)$(pkgdatadir)/sound
+ ${BSD_INSTALL_SCRIPT} monsterz.py $(DESTDIR)$(pkgdatadir)/
+ ${BSD_INSTALL_GAME_DATA} $(BITMAP) $(DESTDIR)$(pkgdatadir)/graphics/
+ ${BSD_INSTALL_GAME_DATA} $(SOUND) $(MUSIC) $(DESTDIR)$(pkgdatadir)/sound/
+ ${BSD_INSTALL_GAME_DIR} $(DESTDIR)$(scoredir)
+ ${BSD_INSTALL_GAME_DIR} $(DESTDIR)$(scoredir)
test -f $(DESTDIR)$(scorefile) || echo "" > $(DESTDIR)$(scorefile)
- chown root:games $(DESTDIR)$(scorefile)
+ chown ${GAMEOWN}:${GAMEGRP} $(DESTDIR)$(scorefile)
chmod g+w $(DESTDIR)$(scorefile)
uninstall: