pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/games/KoboDeluxe



Module Name:    pkgsrc
Committed By:   triaxx
Date:           Sat Aug 16 20:55:51 UTC 2025

Modified Files:
        pkgsrc/games/KoboDeluxe: Makefile distinfo
        pkgsrc/games/KoboDeluxe/patches: patch-enemies.h patch-enemy.cpp
            patch-graphics_window.cpp
Added Files:
        pkgsrc/games/KoboDeluxe: PLIST.bundle
        pkgsrc/games/KoboDeluxe/patches: patch-Makefile.in
            patch-data_gfx_Makefile.in patch-data_sfx_Makefile.in

Log Message:
KoboDeluxe: Fix installation on Darwin

pkgsrc changes:
---------------
  * Add missing patch comments as recommended by pkglint.
  * Add dedicated PLIST.bundle for Darwin that list files of macOS bundle.
  * Add patches to correctly install GFX and SFX files into the bundle.


To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 pkgsrc/games/KoboDeluxe/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/games/KoboDeluxe/PLIST.bundle
cvs rdiff -u -r1.11 -r1.12 pkgsrc/games/KoboDeluxe/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/games/KoboDeluxe/patches/patch-Makefile.in \
    pkgsrc/games/KoboDeluxe/patches/patch-data_gfx_Makefile.in \
    pkgsrc/games/KoboDeluxe/patches/patch-data_sfx_Makefile.in
cvs rdiff -u -r1.1 -r1.2 pkgsrc/games/KoboDeluxe/patches/patch-enemies.h \
    pkgsrc/games/KoboDeluxe/patches/patch-enemy.cpp \
    pkgsrc/games/KoboDeluxe/patches/patch-graphics_window.cpp

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/games/KoboDeluxe/Makefile
diff -u pkgsrc/games/KoboDeluxe/Makefile:1.30 pkgsrc/games/KoboDeluxe/Makefile:1.31
--- pkgsrc/games/KoboDeluxe/Makefile:1.30       Mon Jan  6 21:49:08 2025
+++ pkgsrc/games/KoboDeluxe/Makefile    Sat Aug 16 20:55:51 2025
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.30 2025/01/06 21:49:08 ktnb Exp $
+# $NetBSD: Makefile,v 1.31 2025/08/16 20:55:51 triaxx Exp $
 #
 
 DISTNAME=      KoboDeluxe-0.5.1
-PKGREVISION=   7
+PKGREVISION=   8
 CATEGORIES=    games
 MASTER_SITES=  http://olofson.net/kobodl/download/
 EXTRACT_SUFX=  .tar.bz2
@@ -21,6 +21,17 @@ CONFIGURE_ARGS+=     --sharedstatedir=${VARB
 # Fails with C++14 default language.
 FORCE_CXX_STD= c++03
 
+.include "../../mk/bsd.prefs.mk"
+.if ${OPSYS} == "Darwin"
+MACOS_BUNDLE_PREFIX=   ${PREFIX}/Applications
+SUBST_CLASSES+=                app
+SUBST_STAGE.app=       pre-configure
+SUBST_MESSAGE.app=     Fixing installation paths.
+SUBST_FILES.app=       Makefile.in data/gfx/Makefile.in data/sfx/Makefile.in
+SUBST_VARS.app=                MACOS_BUNDLE_PREFIX
+PLIST_SRC=             PLIST.bundle
+.endif
+
 .include "../../devel/SDL/buildlink3.mk"
 .include "../../graphics/SDL_image/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/games/KoboDeluxe/distinfo
diff -u pkgsrc/games/KoboDeluxe/distinfo:1.11 pkgsrc/games/KoboDeluxe/distinfo:1.12
--- pkgsrc/games/KoboDeluxe/distinfo:1.11       Tue Oct 26 10:43:44 2021
+++ pkgsrc/games/KoboDeluxe/distinfo    Sat Aug 16 20:55:51 2025
@@ -1,9 +1,12 @@
-$NetBSD: distinfo,v 1.11 2021/10/26 10:43:44 nia Exp $
+$NetBSD: distinfo,v 1.12 2025/08/16 20:55:51 triaxx Exp $
 
 BLAKE2s (KoboDeluxe-0.5.1.tar.bz2) = 734f55ff1634b92e7a43b8fac13bf35a252407361b35f8e0034ec2159554ca8a
 SHA512 (KoboDeluxe-0.5.1.tar.bz2) = fc107e4367fd300574823aa40c68311d95de3a403d7c930963b8754aac14293f0624996fd77c4de0677921d11883047b68dd95df81eeb03078c37426ebd58afd
 Size (KoboDeluxe-0.5.1.tar.bz2) = 1781752 bytes
-SHA1 (patch-enemies.h) = a3e9fb60581d7a7bcb079ceda5d1271f923470cd
-SHA1 (patch-enemy.cpp) = dbec6a60bb6a26cac66498584b3f100c6acd5f21
-SHA1 (patch-graphics_window.cpp) = 608b7eff6222bdd50f2cc575adb32903bba573ab
+SHA1 (patch-Makefile.in) = a40b38a948ce04b7799231ea57c2132a12214285
+SHA1 (patch-data_gfx_Makefile.in) = e65367d0eba7790bba1a17d093fca4192da3c9de
+SHA1 (patch-data_sfx_Makefile.in) = 0bc24f9a4c7f97bcd98b40719d430010c1a0539d
+SHA1 (patch-enemies.h) = f13295b05046b162380369f8fae70fe891059553
+SHA1 (patch-enemy.cpp) = 7e47a6145e8406fe01164f03cfb4b3ba17bb8ebe
+SHA1 (patch-graphics_window.cpp) = bd9aae80bf1f9241f675a7596f49c124d2076651
 SHA1 (patch-kobo.cpp) = 958b9b40caee7dc3d67edbe3b834eed5f2af6beb

Index: pkgsrc/games/KoboDeluxe/patches/patch-enemies.h
diff -u pkgsrc/games/KoboDeluxe/patches/patch-enemies.h:1.1 pkgsrc/games/KoboDeluxe/patches/patch-enemies.h:1.2
--- pkgsrc/games/KoboDeluxe/patches/patch-enemies.h:1.1 Sun Sep 25 19:46:21 2011
+++ pkgsrc/games/KoboDeluxe/patches/patch-enemies.h     Sat Aug 16 20:55:51 2025
@@ -1,4 +1,6 @@
-$NetBSD: patch-enemies.h,v 1.1 2011/09/25 19:46:21 joerg Exp $
+$NetBSD: patch-enemies.h,v 1.2 2025/08/16 20:55:51 triaxx Exp $
+
+Fix conflict with pipe2(2) syscall.
 
 --- enemies.h.orig     2011-09-24 20:34:52.000000000 +0000
 +++ enemies.h
Index: pkgsrc/games/KoboDeluxe/patches/patch-enemy.cpp
diff -u pkgsrc/games/KoboDeluxe/patches/patch-enemy.cpp:1.1 pkgsrc/games/KoboDeluxe/patches/patch-enemy.cpp:1.2
--- pkgsrc/games/KoboDeluxe/patches/patch-enemy.cpp:1.1 Sun Sep 25 19:46:21 2011
+++ pkgsrc/games/KoboDeluxe/patches/patch-enemy.cpp     Sat Aug 16 20:55:51 2025
@@ -1,4 +1,6 @@
-$NetBSD: patch-enemy.cpp,v 1.1 2011/09/25 19:46:21 joerg Exp $
+$NetBSD: patch-enemy.cpp,v 1.2 2025/08/16 20:55:51 triaxx Exp $
+
+Fix conflict with pipe2(2) syscall.
 
 --- enemy.cpp.orig     2011-09-24 20:34:55.000000000 +0000
 +++ enemy.cpp
Index: pkgsrc/games/KoboDeluxe/patches/patch-graphics_window.cpp
diff -u pkgsrc/games/KoboDeluxe/patches/patch-graphics_window.cpp:1.1 pkgsrc/games/KoboDeluxe/patches/patch-graphics_window.cpp:1.2
--- pkgsrc/games/KoboDeluxe/patches/patch-graphics_window.cpp:1.1       Wed Mar 18 17:54:54 2020
+++ pkgsrc/games/KoboDeluxe/patches/patch-graphics_window.cpp   Sat Aug 16 20:55:51 2025
@@ -1,4 +1,6 @@
-$NetBSD: patch-graphics_window.cpp,v 1.1 2020/03/18 17:54:54 joerg Exp $
+$NetBSD: patch-graphics_window.cpp,v 1.2 2025/08/16 20:55:51 triaxx Exp $
+
+Fix invalide pointer substraction since pointers was of different types.
 
 --- graphics/window.cpp.orig   2020-03-18 13:31:58.788125295 +0000
 +++ graphics/window.cpp

Added files:

Index: pkgsrc/games/KoboDeluxe/PLIST.bundle
diff -u /dev/null pkgsrc/games/KoboDeluxe/PLIST.bundle:1.1
--- /dev/null   Sat Aug 16 20:55:51 2025
+++ pkgsrc/games/KoboDeluxe/PLIST.bundle        Sat Aug 16 20:55:51 2025
@@ -0,0 +1,114 @@
+@comment $NetBSD: PLIST.bundle,v 1.1 2025/08/16 20:55:51 triaxx Exp $
+Applications/KoboDeluxe.app/Contents/Info.plist
+Applications/KoboDeluxe.app/Contents/MacOS/kobodl
+Applications/KoboDeluxe.app/Contents/PkgInfo
+Applications/KoboDeluxe.app/Contents/Resources/gfx/bigfont3.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/bigship.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/bmr-green.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/bmr-pink.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/bmr-purple.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/bolt.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/boltexpl.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/bomb.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/bombdeto.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/brushes.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/bullet5b.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/bulletexpl2.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/counterfont.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/crosshair.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/deluxe.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/explo1e.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/explo3e.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/explo4e.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/explo5e.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/fighter.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/flatstars1.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/focusfx.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/goldfont.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/hitnoise.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/icefont2.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/loading3.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/logo-outline.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/logomask3.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/missile.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/missile2.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/missile3.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/noise.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/player.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/ring.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/ringexpl2b.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/rock1c.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/rock2.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/rockexpl.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/screen2.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/shinyrock.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/tiles-blood.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/tiles-chrome.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/tiles-double.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/tiles-green.png
+Applications/KoboDeluxe.app/Contents/Resources/gfx/tiles-metal.png
+Applications/KoboDeluxe.app/Contents/Resources/sfx/aguitar1.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/bassdrum5.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/bleep1.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/bleep3.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/boltfire2.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/boltfire2e.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/boltfire2o.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/boltfire2s.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/brass2.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/bzzzt1.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/cannon1.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/claps1.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/edge2.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/explo1b-rg.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/explo1b.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/explo1c-rg.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/explo1c.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/explo3d.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/explo4d.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/explo5.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/explo5b.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/explo5c.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/explo6.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/fmthump1b.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/gameover1.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/hardsync1.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/impact2.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/impact2b.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/impact2c.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/klank2b.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/klank3.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/klank3b.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/klank3c.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/klank4.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/kobosfx.h
+Applications/KoboDeluxe.app/Contents/Resources/sfx/launch.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/launch2.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/launch3b.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/launch4.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/metallic7.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/metallic7rs.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/music.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/music_c.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/noiseburst2.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/phattpad2.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/pioing1b.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/rockexplo.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/save_waves.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/schwoom1.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/schwoop2.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/schwoop3.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/sfx.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/sfx_c.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/sine.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/snare1.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/synbass1.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/test2.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/test2.mid
+Applications/KoboDeluxe.app/Contents/Resources/sfx/thunder1.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/trance1.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/trance1.mid
+Applications/KoboDeluxe.app/Contents/Resources/sfx/trance1_c.agw
+Applications/KoboDeluxe.app/Contents/Resources/sfx/zapp1.agw
+bin/kobodl
+man/man6/kobodl.6

Index: pkgsrc/games/KoboDeluxe/patches/patch-Makefile.in
diff -u /dev/null pkgsrc/games/KoboDeluxe/patches/patch-Makefile.in:1.1
--- /dev/null   Sat Aug 16 20:55:51 2025
+++ pkgsrc/games/KoboDeluxe/patches/patch-Makefile.in   Sat Aug 16 20:55:51 2025
@@ -0,0 +1,19 @@
+$NetBSD: patch-Makefile.in,v 1.1 2025/08/16 20:55:51 triaxx Exp $
+
+Set DESTDIR to Applications subdirectory of PREFIX.
+Do not remove DESTDIR first to not remove GFX and SFX installation.
+
+--- Makefile.in.orig   2007-12-18 01:03:35.000000000 +0000
++++ Makefile.in
+@@ -842,9 +842,8 @@ uninstall-man: uninstall-man6
+ @BUILD_MACOSX_BUNDLE_TRUE@    $(INSTALL_PROGRAM) ${EXEFILE} $(bundle_contents)/MacOS/
+ 
+ @BUILD_MACOSX_BUNDLE_TRUE@install-exec-hook: @PACKAGE@_bundle
+-@BUILD_MACOSX_BUNDLE_TRUE@    rm -rf $(DESTDIR)$(prefix)/@PACKAGE@.app
+-@BUILD_MACOSX_BUNDLE_TRUE@    mkdir -p $(DESTDIR)$(prefix)/
+-@BUILD_MACOSX_BUNDLE_TRUE@    cp -r @PACKAGE@.app $(DESTDIR)$(prefix)/
++@BUILD_MACOSX_BUNDLE_TRUE@    mkdir -p $(DESTDIR)@MACOS_BUNDLE_PREFIX@
++@BUILD_MACOSX_BUNDLE_TRUE@    cp -r @PACKAGE@.app $(DESTDIR)@MACOS_BUNDLE_PREFIX@
+ 
+ @BUILD_MACOSX_BUNDLE_TRUE@clean-local:
+ @BUILD_MACOSX_BUNDLE_TRUE@    rm -rf $(bundle_contents)
Index: pkgsrc/games/KoboDeluxe/patches/patch-data_gfx_Makefile.in
diff -u /dev/null pkgsrc/games/KoboDeluxe/patches/patch-data_gfx_Makefile.in:1.1
--- /dev/null   Sat Aug 16 20:55:51 2025
+++ pkgsrc/games/KoboDeluxe/patches/patch-data_gfx_Makefile.in  Sat Aug 16 20:55:51 2025
@@ -0,0 +1,15 @@
+$NetBSD: patch-data_gfx_Makefile.in,v 1.1 2025/08/16 20:55:51 triaxx Exp $
+
+Set DESTDIR to Applications subdirectory of PREFIX.
+
+--- data/gfx/Makefile.in.orig  2025-08-16 20:24:22.468733214 +0000
++++ data/gfx/Makefile.in
+@@ -181,7 +181,7 @@ target_vendor = @target_vendor@
+ KOBOGFX_OBJECTS = *.png
+ @BUILD_MACOSX_BUNDLE_FALSE@@BUILD_SIMPLE_BUNDLE_FALSE@kobogfxdir = $(datadir)/kobo-deluxe/gfx
+ @BUILD_MACOSX_BUNDLE_FALSE@@BUILD_SIMPLE_BUNDLE_TRUE@kobogfxdir = $(srcdir)/../@PACKAGE@/gfx
+-@BUILD_MACOSX_BUNDLE_TRUE@kobogfxdir = $(srcdir)/../@PACKAGE@.app/Contents/Resources/gfx
++@BUILD_MACOSX_BUNDLE_TRUE@kobogfxdir = @MACOS_BUNDLE_PREFIX@/@PACKAGE@.app/Contents/Resources/gfx
+ kobogfx_DATA = $(KOBOGFX_OBJECTS)
+ EXTRA_DIST = $(KOBOGFX_OBJECTS)
+ all: all-am
Index: pkgsrc/games/KoboDeluxe/patches/patch-data_sfx_Makefile.in
diff -u /dev/null pkgsrc/games/KoboDeluxe/patches/patch-data_sfx_Makefile.in:1.1
--- /dev/null   Sat Aug 16 20:55:51 2025
+++ pkgsrc/games/KoboDeluxe/patches/patch-data_sfx_Makefile.in  Sat Aug 16 20:55:51 2025
@@ -0,0 +1,15 @@
+$NetBSD: patch-data_sfx_Makefile.in,v 1.1 2025/08/16 20:55:51 triaxx Exp $
+
+Set DESTDIR to Applications subdirectory of PREFIX.
+
+--- data/sfx/Makefile.in.orig  2025-08-16 20:28:16.824125024 +0000
++++ data/sfx/Makefile.in
+@@ -181,7 +181,7 @@ target_vendor = @target_vendor@
+ KOBOSFX_OBJECTS = *.agw *.mid *.h
+ @BUILD_MACOSX_BUNDLE_FALSE@@BUILD_SIMPLE_BUNDLE_FALSE@kobosfxdir = $(datadir)/kobo-deluxe/sfx
+ @BUILD_MACOSX_BUNDLE_FALSE@@BUILD_SIMPLE_BUNDLE_TRUE@kobosfxdir = $(srcdir)/../@PACKAGE@/sfx
+-@BUILD_MACOSX_BUNDLE_TRUE@kobosfxdir = $(srcdir)/../@PACKAGE@.app/Contents/Resources/sfx
++@BUILD_MACOSX_BUNDLE_TRUE@kobosfxdir = @MACOS_BUNDLE_PREFIX@/@PACKAGE@.app/Contents/Resources/sfx
+ kobosfx_DATA = $(KOBOSFX_OBJECTS)
+ EXTRA_DIST = $(KOBOSFX_OBJECTS)
+ CLEANFILES = *_c.raw



Home | Main Index | Thread Index | Old Index