60945f0277
the 32 ports that still use it. Bump PORTREVISION on their dependent ports except the ones that depend on these: audio/libogg audio/libvorbis devel/pcre ftp/curl graphics/jpeg graphics/libart_lgpl graphics/tiff textproc/expat2 textproc/libxslt In these cases the same trick as in the recent gettext update is used. The ports install a symlink with the old library version. When enough of their dependent ports have had regular updates the remaining ones can get a PORTREVISION bump and the links can be removed. Also remove the devel/pcre dependency from USE_GNOME=glib20. It causes over 2200 packages to depend on devel/pcre while less than 200 actually link with it. The glib20 package still depends on devel/pcre so this should not make a difference for ports with USE_GNOME=glib20. Also, libdata/pkgconfig/glib-2.0.pc lists pcre as a private library so USE_GNOME=glib20 should not propagate it. PR: 195724 Exp-run by: antoine Approved by: portmgr (antoine)
84 lines
2.1 KiB
Makefile
84 lines
2.1 KiB
Makefile
# Created by: trasz <trasz@pin.if.uz.zgora.pl>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= dssi
|
|
PORTVERSION= 1.1.1
|
|
PORTREVISION= 5
|
|
CATEGORIES= audio
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= API for audio processing plugins
|
|
|
|
LICENSE= LGPL21
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/ladspa.h:${PORTSDIR}/audio/ladspa
|
|
LIB_DEPENDS= libdssialsacompat.so:${PORTSDIR}/audio/libdssialsacompat \
|
|
liblo.so:${PORTSDIR}/audio/liblo \
|
|
libsamplerate.so:${PORTSDIR}/audio/libsamplerate \
|
|
libsndfile.so:${PORTSDIR}/audio/libsndfile \
|
|
libjack.so:${PORTSDIR}/audio/jack
|
|
RUN_DEPENDS= ${LOCALBASE}/include/ladspa.h:${PORTSDIR}/audio/ladspa
|
|
|
|
USES= gmake pathfix pkgconfig libtool
|
|
GNU_CONFIGURE= yes
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
PORTDOCS= ChangeLog README
|
|
|
|
PORTEXAMPLES= *
|
|
|
|
EXAMPLESSRCDIR= ${WRKSRC}/examples
|
|
|
|
EXAMPLES_FILES1= dssi_analyse_plugin dssi_list_plugins \
|
|
dssi_osc_send dssi_osc_update
|
|
|
|
EXAMPLES_FILES2= LTS_qt trivial_sampler_qt
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES QT4
|
|
OPTIONS_DEFAULT= QT4
|
|
|
|
OPTIONS_SUB= yes
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MQT4}
|
|
USE_QT4= corelib gui moc_build
|
|
QT_NONSTANDARD= yes
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
'/^lts_uidir/s|^|@HAVE_QT_TRUE@|; \
|
|
/^trivial_sampler_uidir/s|^|@HAVE_QT_TRUE@|; \
|
|
s|-ldl$$||' ${WRKSRC}/examples/Makefile.in
|
|
@${REINPLACE_CMD} -e \
|
|
's|-ldl$$||' ${WRKSRC}/jack-dssi-host/Makefile.in
|
|
@${REINPLACE_CMD} -e \
|
|
'/alsa >=/s|$$PKG_CONFIG|${FALSE}|' ${WRKSRC}/configure
|
|
|
|
.if ! ${PORT_OPTIONS:MQT4}
|
|
@${REINPLACE_CMD} -e \
|
|
'/QtCore >=/s|$$PKG_CONFIG|${FALSE}|' ${WRKSRC}/configure
|
|
.endif
|
|
|
|
post-install:
|
|
.for l in trivial_synth less_trivial_synth trivial_sampler karplong
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/dssi/${l}.so
|
|
.endfor
|
|
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_PROGRAM} ${EXAMPLES_FILES1:S|^|${EXAMPLESSRCDIR}/|} \
|
|
${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
.if ${PORT_OPTIONS:MQT4}
|
|
${INSTALL_PROGRAM} ${EXAMPLES_FILES2:S|^|${EXAMPLESSRCDIR}/|} \
|
|
${STAGEDIR}${EXAMPLESDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|