3f651573ad
Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
38 lines
929 B
Makefile
38 lines
929 B
Makefile
# ports collection makefile for: fluidsynth
|
|
# Date created: 27 Nov 2003
|
|
# Whom: Juha Nygard <juha.nygard1@netikka.fi>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= fluidsynth
|
|
PORTVERSION= 1.0.3
|
|
PORTREVISION= 1
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://resonance.org/~josh/fluidsynth/
|
|
|
|
MAINTAINER= juha.nygard1@netikka.fi
|
|
COMMENT= Real-time software synthesizer based on the SoundFont 2 specifications
|
|
|
|
INSTALLS_SHLIB= yes
|
|
USE_GMAKE= yes
|
|
USE_GNOME= pkgconfig
|
|
USE_GETOPT_LONG= yes
|
|
USE_LIBTOOL_VER= 13
|
|
USE_REINPLACE= yes
|
|
CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CFLAGS}" LIBS="${PTHREAD_LIBS}"
|
|
|
|
MAN1= fluidsynth.1
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} != "i386" && ${ARCH} != "amd64"
|
|
BROKEN= "Does not compile on !i386 and !amd64"
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|-O2||' ${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e 's|[(]libdir[)]/pkgconfig|(prefix)/libdata/pkgconfig|' ${WRKSRC}/Makefile.in
|
|
|
|
.include <bsd.port.post.mk>
|