diff options
author | Marcus von Appen <mva@FreeBSD.org> | 2012-12-28 11:22:48 +0000 |
---|---|---|
committer | Marcus von Appen <mva@FreeBSD.org> | 2012-12-28 11:22:48 +0000 |
commit | 7382239e6dc375825406332af3cb3897797876da (patch) | |
tree | 2dc9160ffad49c454f8a40b60902408d473302e5 /audio/sdl_sound | |
parent | 60a54547f01d22b988078be7e3b314864587a28b (diff) |
- Fix MIDI support
- Trim Makefile headers
PR: ports/174098
Submitted by: Green Dog <fiziologus@gmail.com>
Notes
Notes:
svn path=/head/; revision=309566
Diffstat (limited to 'audio/sdl_sound')
-rw-r--r-- | audio/sdl_sound/Makefile | 11 | ||||
-rw-r--r-- | audio/sdl_sound/files/patch-decoders-timidity-options.h | 11 |
2 files changed, 16 insertions, 6 deletions
diff --git a/audio/sdl_sound/Makefile b/audio/sdl_sound/Makefile index 69a11f5a0492..493e5e69b5f3 100644 --- a/audio/sdl_sound/Makefile +++ b/audio/sdl_sound/Makefile @@ -1,13 +1,9 @@ -# New ports collection makefile for: sdl_sound -# Date created: 6 Feb 2003 -# Whom: David Yeske <dyeske@gmail.com> -# +# Created by: David Yeske <dyeske@gmail.com> # $FreeBSD$ -# PORTNAME= sdl_sound PORTVERSION= 1.0.3 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= audio MASTER_SITES= http://offload1.icculus.org:9090/SDL_sound/downloads/ \ http://offload2.icculus.org:9090/SDL_sound/downloads/ @@ -88,4 +84,7 @@ pre-everything:: @${ECHO_CMD} .endif +post-patch: + @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|' ${WRKSRC}/decoders/timidity/options.h + .include <bsd.port.post.mk> diff --git a/audio/sdl_sound/files/patch-decoders-timidity-options.h b/audio/sdl_sound/files/patch-decoders-timidity-options.h new file mode 100644 index 000000000000..a803cf2e21e9 --- /dev/null +++ b/audio/sdl_sound/files/patch-decoders-timidity-options.h @@ -0,0 +1,11 @@ +--- decoders/timidity/options.h.orig 2008-04-17 21:56:20.000000000 +0400 ++++ decoders/timidity/options.h 2012-12-04 01:38:58.000000000 +0400 +@@ -80,7 +80,7 @@ + #define MAX_AMPLIFICATION 800 + + /* The TiMidity configuration file */ +-#define CONFIG_FILE "timidity.cfg" ++#define CONFIG_FILE "%%PREFIX%%/share/timidity/timidity.cfg" + + /* These affect general volume */ + #define GUARD_BITS 3 |