diff options
author | scheidell <scheidell@FreeBSD.org> | 2012-07-31 02:40:23 +0800 |
---|---|---|
committer | scheidell <scheidell@FreeBSD.org> | 2012-07-31 02:40:23 +0800 |
commit | b79bda0300bb4636271e120bf0b80978caed756e (patch) | |
tree | 03a3454bf355c3e48a1aa74ba196e5857f29ced4 /audio | |
parent | 9c19e4f40feea63e6f50295b2f6ec4c3ceb93ea1 (diff) | |
download | freebsd-ports-gnome-b79bda0300bb4636271e120bf0b80978caed756e.tar.gz freebsd-ports-gnome-b79bda0300bb4636271e120bf0b80978caed756e.tar.zst freebsd-ports-gnome-b79bda0300bb4636271e120bf0b80978caed756e.zip |
- Correct wrong use of '&&' instead of '&' for logical "bit and"
- Bump PORTREVISION (cause failure on clang build)
PR: ports/170079
Submitted by: RyoTa SimaMoto <liangtai.s4@gmail.com> (maintainer)
Diffstat (limited to 'audio')
-rw-r--r-- | audio/wildmidi/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/audio/wildmidi/Makefile b/audio/wildmidi/Makefile index ea8167327269..d2cfe01bf943 100644 --- a/audio/wildmidi/Makefile +++ b/audio/wildmidi/Makefile @@ -7,6 +7,7 @@ PORTNAME= wildmidi PORTVERSION= 0.2.3.5 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= SF/${PORTNAME}/${PORTNAME} @@ -14,8 +15,9 @@ MAINTAINER= liangtai.s4@gmail.com COMMENT= A simple software midi player and a core softsynth library # player: GPLv3, library: LGPL3 -LICENSE_COMB= multi LICENSE= GPLv3 LGPL3 +LICENSE_COMB= multi + MAKE_JOBS_UNSAFE= yes USE_GZIP= yes @@ -39,5 +41,7 @@ post-patch: ${REINPLACE_CMD} -e 's@/usr/local/share/wildmidi/@${DATADIR}/@' \ -e 's@default_timifityconf@default_wildmidiconf@' \ ${WRKSRC}/configure + ${REINPLACE_CMD} -e '/WM_MixerOptions/s/ \&\& / \& /' \ + ${WRKSRC}/src/wildmidi_lib.c .include <bsd.port.mk> |