From 6f2c87870081718731cccee678e1e89869826de2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Mon, 17 Aug 2020 18:58:43 +0200 Subject: Initial import of version 0.3.2 from the source package. https://sourceforge.net/projects/kpacman/files/kpacman/0.3.2/kpacman-0.3.2.tar.gz MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Original package is licenced under GPL 2.0. Signed-off-by: Slávek Banko --- kpacman/Makefile.am | 74 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 kpacman/Makefile.am (limited to 'kpacman/Makefile.am') diff --git a/kpacman/Makefile.am b/kpacman/Makefile.am new file mode 100644 index 0000000..a98f991 --- /dev/null +++ b/kpacman/Makefile.am @@ -0,0 +1,74 @@ +####### kdevelop will overwrite this part!!! (begin)########## +bin_PROGRAMS = kpacman + +## INCLUDES were found outside kdevelop specific part + +kpacman_SOURCES = kpacmanview.cpp referee.cpp status.cpp painter.cpp score.cpp pacman.cpp monster.cpp keys.cpp fruit.cpp energizer.cpp board.cpp bitfont.cpp kpacman.cpp main.cpp +kpacman_LDADD = -lkdegames $(LIB_KDEUI) $(LIB_KDECORE) $(LIB_QT) $(LIBSOCKET) + + +EXTRA_DIST = main.cpp kpacman.cpp kpacman.h kpacman.desktop lo32-app-kpacman.png lo16-app-kpacman.png bitfont.cpp bitfont.h colors.h bitmaps.h board.cpp board.h energizer.cpp energizer.h fruit.cpp fruit.h keys.cpp keys.h monster.cpp monster.h pacman.cpp pacman.h score.cpp score.h painter.cpp painter.h status.cpp status.h referee.cpp referee.h kpacmanrc kpacmanview.h kpacmanview.cpp kpacmanui.rc hi16-app-kpacman.png hi32-app-kpacman.png + +install-data-local: + $(mkinstalldirs) $(kde_appsdir)/Games/ + $(INSTALL_DATA) $(srcdir)/kpacman.desktop $(kde_appsdir)/Games/kpacman.desktop + $(mkinstalldirs) $(kde_icondir)/locolor/32x32/apps/ + $(INSTALL_DATA) $(srcdir)/lo32-app-kpacman.png $(kde_icondir)/locolor/32x32/apps/kpacman.png + $(mkinstalldirs) $(kde_icondir)/locolor/16x16/apps/ + $(INSTALL_DATA) $(srcdir)/lo16-app-kpacman.png $(kde_icondir)/locolor/16x16/apps/kpacman.png + $(mkinstalldirs) $(kde_confdir)/ + $(INSTALL_DATA) $(srcdir)/kpacmanrc $(kde_confdir)/kpacmanrc + $(mkinstalldirs) $(kde_icondir)/hicolor/16x16/apps/ + $(INSTALL_DATA) $(srcdir)/hi16-app-kpacman.png $(kde_icondir)/hicolor/16x16/apps/kpacman.png + $(mkinstalldirs) $(kde_icondir)/hicolor/32x32/apps/ + $(INSTALL_DATA) $(srcdir)/hi32-app-kpacman.png $(kde_icondir)/hicolor/32x32/apps/kpacman.png + +uninstall-local: + -rm -f $(kde_appsdir)/Games/kpacman.desktop + -rm -f $(kde_icondir)/locolor/32x32/apps/kpacman.png + -rm -f $(kde_icondir)/locolor/16x16/apps/kpacman.png + -rm -f $(kde_confdir)/kpacmanrc + -rm -f $(kde_icondir)/hicolor/16x16/apps/kpacman.png + -rm -f $(kde_icondir)/hicolor/32x32/apps/kpacman.png + +####### kdevelop will overwrite this part!!! (end)############ +# this 10 paths are KDE specific. Use them: +# kde_htmldir Where your docs should go to. (contains lang subdirs) +# kde_appsdir Where your application file (.kdelnk) should go to. +# kde_icondir Where your icon should go to. +# kde_minidir Where your mini icon should go to. +# kde_datadir Where you install application data. (Use a subdir) +# kde_locale Where translation files should go to.(contains lang subdirs) +# kde_cgidir Where cgi-bin executables should go to. +# kde_confdir Where config files should go to. +# kde_mimedir Where mimetypes should go to. +# kde_toolbardir Where general toolbar icons should go to. +# kde_wallpaperdir Where general wallpapers should go to. + +# set the include path for X, qt and KDE +INCLUDES= $(all_includes) + +METASOURCES = AUTO + +# the library search path. +kpacman_LDFLAGS = $(all_libraries) $(KDE_RPATH) + +# Uncomment the following two lines if you add a ui.rc file for your application to make use of +# KDE +rcdir = $(kde_datadir)/kpacman +rc_DATA = kpacmanui.rc + +#WARNING: if you use a ui.rc file above, use: + +# messages: rc.cpp + +# instead of + +# messages: + +messages: rc.cpp + LIST=`find . -name \*.h -o -name \*.hh -o -name \*.H -o -name \*.hxx -o -name \*.hpp -o -name \*.cpp -o -name \*.cc -o -name \*.cxx -o -name \*.ecpp -o -name \*.C`; \ + if test -n "$$LIST"; then \ + $(XGETTEXT) $$LIST -o $(podir)/kpacman.pot; \ + fi + -- cgit v1.2.1