diff options
author | wiz <wiz@pkgsrc.org> | 2003-01-06 19:48:08 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2003-01-06 19:48:08 +0000 |
commit | b33629298c72e0b518075209af4597fc12a8ee6a (patch) | |
tree | 27791f577c4bd3173fbac3575ceb9a66d5c868d4 /games/xrick/Makefile | |
parent | 1c53e56262fb678e1c7ace749b10f50f7f708d47 (diff) | |
download | pkgsrc-b33629298c72e0b518075209af4597fc12a8ee6a.tar.gz |
Update to 021212.
The data file needed for sound is installed into ${PREFIX}/share/xrick/data.zip.
Either copy it to your current dir, or start xrick with
xrick -data ${PREFIX}/share/xrick/data.zip
Changes:
* Reworked the build system so xrick can easily be built on Unix boxes as
well as on non-Unix boxes (do not rely on symbolic links, etc.).
* Use function keys instead of numeric keys for various game controls, as some
non-US keyboard require that SHIFT is pressed for numbers (A. Majorel).
* Fixed a potential buffer overflow in command-line parameters handling
(A. Majorel).
* Joystick is (hopefully) OK now (S. Chauveau).
* Implemented all sounds: music, effects, etc.
* The sound was horrible on Windows due to a poorly dimensionned sound
buffer. Fixed.
* Re-ripped all sounds. This time I used STeem with debugger to save each
sound as a WAV file, then Audacity to filter an annoying static noise
produced by STeem, then SOX to re-sample.
Diffstat (limited to 'games/xrick/Makefile')
-rw-r--r-- | games/xrick/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/games/xrick/Makefile b/games/xrick/Makefile index 25041a21c05..19005c02841 100644 --- a/games/xrick/Makefile +++ b/games/xrick/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.2 2002/08/27 19:09:12 jlam Exp $ +# $NetBSD: Makefile,v 1.3 2003/01/06 19:48:08 wiz Exp $ # -DISTNAME= xrick-010808 -WRKSRC= ${WRKDIR}/xrick +DISTNAME= xrick-021212 CATEGORIES= games MASTER_SITES= http://www.bigorno.net/xrick/ EXTRACT_SUFX= .tgz @@ -20,9 +19,6 @@ NO_SRC_ON_FTP= ${RESTRICTED} USE_GMAKE= YES USE_BUILDLINK2= YES USE_X11= YES -HAS_CONFIGURE= YES - -CONFIGURE_SCRIPT= ./config post-extract: cd ${WRKSRC} && ${GUNZIP_CMD} xrick.6.gz @@ -30,6 +26,8 @@ post-extract: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/xrick ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/xrick.6 ${PREFIX}/man/man6 + ${INSTALL_DATA_DIR} ${PREFIX}/share/xrick + ${INSTALL_DATA} ${WRKSRC}/data.zip ${PREFIX}/share/xrick .include "../../devel/SDL/buildlink2.mk" .include "../../mk/bsd.pkg.mk" |