Skip to content

Commit

Permalink
import: http://pastefile.com/uploads/gnu.tar.gz [Ben Asselstine]
Browse files Browse the repository at this point in the history
  • Loading branch information
rzr committed Feb 27, 2013
1 parent b3469fe commit b6ba545
Show file tree
Hide file tree
Showing 41 changed files with 27,965 additions and 11 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,6 @@ conftest.c
conftest.err
conftest.cpp
conf*/

debian/*.substvars
debian/*-snapshot/
4 changes: 3 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -267,10 +267,12 @@ AC_DEFINE(EM_USE_SHARED_COLOR, [1], [One color per vertex])
dnl AC_SUBST(pkglibdir)
dnl AC_SUBST(pkgincludedir)

AC_CONFIG_FILES([Makefile

AC_CONFIG_FILES([Makefile
addon/Makefile base/Makefile data/Makefile
data/tux/Makefile data/professor/Makefile
data/hurd/Makefile
data/gnu/Makefile
src/Makefile test/Makefile pinball-config])

AC_OUTPUT
2 changes: 1 addition & 1 deletion data/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
AUTOMAKE_OPTIONS = gnu

SUBDIRS = tux professor hurd
SUBDIRS = tux professor hurd gnu

pindatadir = $(datadir)/pinball

Expand Down
Binary file added data/gnu/.README.swp
Binary file not shown.
58 changes: 58 additions & 0 deletions data/gnu/Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
AUTOMAKE_OPTIONS = gnu

highscoredir = $(DESTDIR)/$(EM_BUILD_ROOT)/$(EM_HIGHSCORE_DIR)/gnu

gnulibdir = $(EM_LIBDIR)
gnudatadir = $(datadir)/pinball/gnu

gnulib_LTLIBRARIES = libModuleGnu.la

INCLUDES = -I../../base -I.../../addon -I../../src

libModuleGnu_la_LDFLAGS = -module
libModuleGnu_la_SOURCES = ModuleGnu.cpp

gnudata_DATA = \
bump.ogg \
bumpsoft.wav \
nudge.wav \
shoot.ogg \
flip2b.ogg \
flip2br.ogg \
lock.ogg \
gnu_letter.ogg \
gnu_all.ogg \
multiball.wav \
gplv1.ogg \
gplv2.ogg \
gplv3.ogg \
freedom0.ogg \
freedom1.ogg \
freedom2.ogg \
freedom3.ogg \
freeball.ogg \
free_letter.ogg \
free_all.ogg \
knockdown.ogg \
reset_knockdowns.ogg \
raise-stopper.ogg \
plunger.wav \
music.ogg \
pinball.pbl \
gnu.png \
gnu2b.png \
tiles.png \
tiles2.png \
tiles3.png
#music is Subvulture_-_The_Money_Ran_Out__Rudy, from jamendo. CC by sa.

# This will create a new empty highscores file
# NOTE! The user games must exist!
install-data-hook:
-mkdir -p $(highscoredir) # - if not root #!rzr
-touch $(highscoredir)/highscores
-if test `whoami` = root; then chown games $(highscoredir)/highscores; fi
-if test `whoami` = root; then chgrp games $(highscoredir)/highscores; fi
-chmod 666 $(highscoredir)/highscores

EXTRA_DIST = $(gnudata_DATA)
Loading

1 comment on commit b6ba545

@rzr
Copy link
Author

@rzr rzr commented on b6ba545 Jan 19, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changes have been extracted and relocated at:

https://github.com/rzr/pinball-table-gnu

Feel free to see if this change can be reverted or if later changes can be upstreamed to the gnu table project

Relate-to: adoptware#15

Please sign in to comment.