freebsd-ports/audio/xmp/Makefile
Emanuel Haupt ecaa0b842a Update to 3.4.0 and drop audacious plugin support for now as the plugin does not
compile with the current audacious plugin API. Note that the current version of
the audacious plugin also stopped working when multimedia/audacious was last
updated. Also drop aRts support, does not compile.
2011-08-12 16:55:22 +00:00

126 lines
3.0 KiB
Makefile

# New ports collection makefile for: xmp
# Date created: 18 September 1999
# Whom: Anders Nordby <anders@fix.no>
#
# $FreeBSD$
#
PORTNAME= xmp
PORTVERSION= 3.4.0
PORTEPOCH= 1
CATEGORIES= audio
MASTER_SITES= SF
MAINTAINER= ehaupt@FreeBSD.org
COMMENT= A player for many different Amiga and PC module formats
LICENSE= GPLv2
USE_GMAKE= yes
WANT_GNOME= yes
GNU_CONFIGURE= yes
CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib"
CONFIGURE_ARGS= --sysconfdir=${PREFIX}/etc --disable-arts \
--disable-audacious-plugin
MAN1= xmp.1
OPTIONS= ALSA "ALSA output driver" off \
BMP "BeepMP plugin" off \
ESOUND "EsounD output driver" off \
NAS "Network Audio System ouptut driver" off \
PULSEAUDIO "PulseAudio output driver" off \
UNZIP "Use unzip(1) not bsdtar(1) to read .zip files" on \
XMMS "XMMS plugin" off
MAKE_JOBS_SAFE= yes
.include <bsd.port.pre.mk>
.if !defined(NOPORTDOCS)
PORTDOCS= *
.endif
.if defined(WITH_ALSA)
LIB_DEPENDS+= asound.2:${PORTSDIR}/audio/alsa-lib
RUN_DEPENDS+= ${LOCALBASE}/lib/alsa-lib/libasound_module_pcm_oss.so:${PORTSDIR}/audio/alsa-plugins
CONFIGURE_ARGS+= --enable-alsa
.else
CONFIGURE_ARGS+= --disable-alsa
.endif
.if defined(WITH_BMP)
LIB_DEPENDS+= beep.2:${PORTSDIR}/multimedia/beep-media-player
CONFIGURE_ARGS+= --enable-bmp-plugin
PLIST_SUB+= BMP=""
.else
CONFIGURE_ARGS+= --disable-bmp-plugin
PLIST_SUB+= BMP="@comment "
.endif
.if defined(WITH_ESOUND)
USE_GNOME+= esound
CONFIGURE_ARGS+= --enable-esd
.else
CONFIGURE_ARGS+= --disable-esd
.endif
.if defined(WITH_NAS)
LIB_DEPENDS+= audio.2:${PORTSDIR}/audio/nas
CONFIGURE_ARGS+= --enable-nas
.else
CONFIGURE_ARGS+= --disable-nas
.endif
.if defined(WITH_PULSEAUDIO)
LIB_DEPENDS+= pulse-simple.0:${PORTSDIR}/audio/pulseaudio
CONFIGURE_ARGS+= --enable-pulseaudio
.else
CONFIGURE_ARGS+= --disable-pulseaudio
.endif
.if defined(WITH_UNZIP)
RUN_DEPENDS+= ${LOCALBASE}/bin/unzip:${PORTSDIR}/archivers/unzip
.else
EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-src-misc-load.c
.endif
.if defined(WITH_XMMS)
LIB_DEPENDS+= xmms.4:${PORTSDIR}/multimedia/xmms
CONFIGURE_ARGS+= --enable-xmms-plugin
PLIST_SUB+= XMMS=""
.else
CONFIGURE_ARGS+= --disable-xmms-plugin
PLIST_SUB+= XMMS="@comment "
.endif
post-patch: .SILENT
.for f in docs/xmp.1 etc/xmp.conf etc/modules.conf
${REINPLACE_CMD} -e "s|/etc/xmp|${ETCDIR}|g" ${WRKSRC}/${f}
.endfor
${REINPLACE_CMD} -e \
'/$$(INSTALL_DATA)/s|\([[:alnum:]]*\.conf\).*$$|&\1.sample|' \
${WRKSRC}/etc/Makefile
@${REINPLACE_CMD} -e \
's|-Wno-unknown-warning-option -Wno-unused-but-set-variable||' \
${WRKSRC}/configure
post-install: .SILENT
if [ ! -f ${ETCDIR}/${PORTNAME}.conf ]; then \
${INSTALL_DATA} ${ETCDIR}/${PORTNAME}.conf.sample \
${ETCDIR}/${PORTNAME}.conf; \
fi
if [ ! -f ${ETCDIR}/modules.conf ]; then \
${INSTALL_DATA} ${ETCDIR}/modules.conf.sample \
${ETCDIR}/modules.conf; \
fi
.if !defined(NOPORTDOCS)
${ECHO_MSG} Installing documentation in ${DOCSDIR}
( cd ${WRKSRC}/docs && ${COPYTREE_SHARE} \* \
${DOCSDIR} '! ( -name Makefile -or -name xmp.1 \
-or -name *.bak -or -name *.orig )' )
.endif
.include <bsd.port.post.mk>