117 lines
3.2 KiB
Makefile
117 lines
3.2 KiB
Makefile
COMMENT= cross-platform networked sound server
|
|
|
|
VERSION= 16.1
|
|
DISTNAME= pulseaudio-${VERSION}
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
SHARED_LIBS += pulse 7.2 # 0.24.2
|
|
SHARED_LIBS += pulse-simple 1.2 # 0.1.1
|
|
SHARED_LIBS += pulse-mainloop-glib 1.2 # 0.0.6
|
|
|
|
CATEGORIES= audio
|
|
|
|
SUBST_VARS+= VERSION
|
|
|
|
HOMEPAGE= http://www.pulseaudio.org/
|
|
|
|
MAINTAINER= Antoine Jacoutot <ajacoutot@openbsd.org>
|
|
|
|
# LGPLv2.1
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
WANTLIB += ICE SM X11 X11-xcb Xtst c crypto dbus-1 execinfo gio-2.0
|
|
WANTLIB += glib-2.0 gobject-2.0 gstapp-1.0 gstbase-1.0 gstreamer-1.0
|
|
WANTLIB += iconv intl ltdl m pthread sndfile sndio speexdsp tdb
|
|
WANTLIB += xcb
|
|
|
|
MASTER_SITES= https://freedesktop.org/software/pulseaudio/releases/
|
|
|
|
MODULES= devel/meson
|
|
|
|
# C++11; no associated WANTLIB: only checked by configure but never used
|
|
COMPILER= base-clang ports-gcc
|
|
|
|
BUILD_DEPENDS= devel/gettext,-tools \
|
|
shells/bash-completion
|
|
|
|
# bundled xmltoman
|
|
BUILD_DEPENDS += textproc/p5-XML-Parser
|
|
|
|
# needed for tests
|
|
BUILD_DEPENDS += devel/check
|
|
TEST_FLAGS= HOME=${WRKDIST}
|
|
|
|
# speex is a requirement for echo canceller (needs at least one)
|
|
LIB_DEPENDS= audio/libsndfile \
|
|
audio/speexdsp \
|
|
databases/tdb \
|
|
devel/glib2 \
|
|
devel/libtool,-ltdl \
|
|
multimedia/gstreamer1/plugins-base \
|
|
x11/dbus
|
|
|
|
# module-console-kit.so
|
|
RUN_DEPENDS += sysutils/consolekit
|
|
|
|
# ERROR: C shared or static library 'intl' not found
|
|
CONFIGURE_ENV += CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
# We only enable the strict minimum for basic volume control support.
|
|
# sndiod(1) is the default sound server on OpenBSD and pulseaudio is only
|
|
# needed for a couple of use cases (volume control, media-keys)
|
|
CONFIGURE_ARGS= -Ddoxygen=false \
|
|
-Dtests=false \
|
|
-Dsystem_user=_pulse \
|
|
-Dsystem_group=_pulse \
|
|
-Daccess_group=_pulse-access \
|
|
-Ddatabase=tdb \
|
|
-Datomic-arm-linux-helpers=false \
|
|
-Dalsa=disabled \
|
|
-Dasyncns=disabled \
|
|
-Davahi=disabled \
|
|
-Dbluez5=disabled \
|
|
-Delogind=disabled \
|
|
-Dfftw=disabled \
|
|
-Dbluez5-gstreamer=disabled \
|
|
-Dgsettings=disabled \
|
|
-Dgtk=disabled \
|
|
-Dhal-compat=false \
|
|
-Djack=disabled \
|
|
-Dlirc=disabled \
|
|
-Dorc=disabled \
|
|
-Doss-output=disabled \
|
|
-Dsamplerate=disabled \
|
|
-Dsoxr=disabled \
|
|
-Dsystemd=disabled \
|
|
-Dtcpwrap=disabled \
|
|
-Dudev=disabled \
|
|
-Dvalgrind=disabled \
|
|
-Dadrian-aec=false \
|
|
-Dwebrtc-aec=disabled
|
|
|
|
# Forget per-stream routing settings that have been set before version 14.0.
|
|
# Recommended when using GNOME.
|
|
# See https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/issues/832'
|
|
CONFIGURE_ARGS += -Dstream-restore-clear-old-devices=false
|
|
|
|
post-extract:
|
|
cp ${FILESDIR}/module-sndio*.{c,h} ${WRKSRC}/src/modules/
|
|
|
|
.include <bsd.port.arch.mk>
|
|
pre-configure:
|
|
sed -i 's,/bin/bash,/usr/bin/env bash,' \
|
|
${WRKSRC}/shell-completion/bash/pactl
|
|
.if !${PROPERTIES:Mclang}
|
|
sed -i "/libintl_dep = \[\]/ s/\[\]/cc.find_library('intl')/" \
|
|
${WRKSRC}/meson.build
|
|
.endif
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/pulseaudio
|
|
mv ${WRKINST}${SYSCONFDIR}/{dbus-1,pulse,xdg} ${PREFIX}/share/examples/pulseaudio
|
|
# remove this linux-centric bash script
|
|
rm ${PREFIX}/bin/pa-info
|
|
|
|
.include <bsd.port.mk>
|