pkgsrc/audio/esound/Makefile

49 lines
1.3 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.76 2012/01/24 09:42:35 marino Exp $
Update to 0.2.41: =============== Version 0.2.41 =============== * Fix 32k samples turning into static when 8k samples played in the middle. Debian #79145. (Matthew Ashton) * Fix filter buffer handling so filters work. Debian #202027. (Ryan Murray) * Reconnect the ALSA driver and reload the config file after receiving a SIGUSR1. (Martin Pitt) * Fixed esd_audio_write() to use select() if the driver supports it (otherwise usleep) and write data in a configurable block size. (Ryan Murray) * Fixed esound.pc audifile linking. (Josselin Mouette) * Fixed esdcat.1. (Josselin Mouette) * Protect dsp_init() with a mutex lock. (Josselin Mouette) * Fixed to allow multiple esd instances (one per user). (Martin Pitt) * Fixes to startup time by not trying to exec a binary if it doesn't exist. (Martin Pitt) * Prettier debugging output. (Ryan Murray) * Fixed signedness compiler warnings. (Josselin Mouette) * Remove libesddsp from LD_PRELOAD when autospawning esd. (Ryan Murray) * Fixes for GStreamer using ESPEAKER. (Jeff Waugh) * Fixes for mmap64 (Josselin Mouette) * Close the spawnfd when the startup is successful. (Josselin Mouette) * Save a call to esd_audio_pause when run with -nobeeps. (Josselin Mouette) * Improved error checking for the -spawnfd switch. (Josselin Mouette) * Fixed buffer overflow possibilities. (Ryan Murray) * Call snd_pcm_hw_free() before calling snd_pcm_close() to avoid a memory leak. (Martin Pitt) * Add informative output for -double switch. (Josselin Mouette) * Use smaller sleep timeouts. (Josselin Mouette) * Updated to handle more file formats supported by audiofile 0.2.3. (Josselin Mouette)
2008-11-20 18:42:27 +01:00
DISTNAME= esound-0.2.41
PKGREVISION= 1
CATEGORIES= audio
2002-09-24 15:01:15 +02:00
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/esound/0.2/}
EXTRACT_SUFX= .tar.bz2
2008-01-19 10:16:17 +01:00
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.tux.org/~ricdude/EsounD.html
COMMENT= The Enlightened sound daemon
2011-09-09 17:19:44 +02:00
LICENSE= gnu-lgpl-v2
2004-01-06 08:17:03 +01:00
PKG_INSTALLATION_TYPES= overwrite pkgviews
2006-11-05 18:06:43 +01:00
PKG_DESTDIR_SUPPORT= user-destdir
2004-01-06 08:17:03 +01:00
USE_LIBTOOL= YES
USE_TOOLS+= pkg-config
PKGCONFIG_OVERRIDE= esound.pc.in
2002-02-17 22:55:43 +01:00
GNU_CONFIGURE= YES
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
CONFIGURE_ENV+= ac_cv_prog_JW=false
2002-02-17 22:55:43 +01:00
EGDIR= ${PREFIX}/share/examples/esound
CONF_FILES= ${EGDIR}/esd.conf ${PKG_SYSCONFDIR}/esd.conf
2005-06-08 15:20:04 +02:00
.include "options.mk"
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "Interix"
# no sound output device, but can support a remote esound server
CONFIGURE_ARGS+= --disable-local-sound
.else
.include "../../mk/oss.buildlink3.mk"
MAKE_ENV+= AM_CPPFLAGS='-DDEV_DSP=\"${DEVOSSAUDIO}\"'
SUBST_CLASSES+= oss
SUBST_STAGE.oss= post-patch
SUBST_FILES.oss= configure
SUBST_SED.oss= -e 's,-lossaudio,${LIBOSSAUDIO},g'
SUBST_MESSAGE.oss= Fixing oss.
.endif
LDFLAGS.IRIX+= -lm
LDFLAGS.DragonFly+= -lm
2004-01-06 08:17:03 +01:00
.include "../../audio/libaudiofile/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"