pkgsrc/audio/xmms/Makefile.common

80 lines
2.3 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile.common,v 1.28 2008/04/12 22:42:58 jlam Exp $
#
DISTNAME= xmms-1.2.11
CATEGORIES= audio
MASTER_SITES= http://www.xmms.org/files/1.2.x/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= rh@NetBSD.org
HOMEPAGE= http://www.xmms.org/
2003-08-08 11:26:13 +02:00
COMMENT= X Multimedia System - an audio player with a Winamp GUI
USE_PKGLOCALEDIR= yes
USE_LIBTOOL= yes
USE_TOOLS+= gmake
GNU_CONFIGURE= yes
PLIST_VARS= oss
DISTINFO_FILE= ${.CURDIR}/../../audio/xmms/distinfo
FILESDIR= ${.CURDIR}/../../audio/xmms/files
PATCHDIR= ${.CURDIR}/../../audio/xmms/patches
CONFIGURE_ARGS+= --without-gnome
SHLIBTOOL_OVERRIDE= # empty
# Broken configure script assumes that iconv_open lives in libc; work around.
CPPFLAGS+= -DHAVE_ICONV_OPEN=1
CONFIGURE_ENV+= ac_cv_func_iconv_open=yes
LDFLAGS+= ${BUILDLINK_LDADD.iconv}
PTHREAD_OPTS+= require
PKG_OPTIONS_VAR= PKG_OPTIONS.xmms
PKG_SUPPORTED_OPTIONS= inet6
2005-05-31 18:28:54 +02:00
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Minet6)
CONFIGURE_ARGS+= --enable-ipv6
.endif
2005-05-31 18:28:54 +02:00
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "NetBSD"
RAWPART_cmd= /sbin/sysctl -n kern.rawpartition | ${TR} 0-9 a-j
CONFIGURE_ARGS+= --with-dev-dsp=${DEVOSSSOUND:Q} \
--with-cdda-device=/dev/rcd0${RAWPART_cmd:sh} \
--with-cdda-dir=/cdrom/
CPPFLAGS+= -DHAVE_NANOSLEEP=1
post-patch:
. if ${MACHINE_ARCH} == "i386"
. if ${OBJECT_FMT} == "a.out"
${CP} ${FILESDIR}/decode_i586_.s ${WRKSRC}/Input/mpg123/decode_i586.s
. endif
cd ${WRKSRC}/Input/mpg123 && \
${MV} decode_i586.s decode_i586.s.orig && \
${SED} -e 's@^/@#/@g' <decode_i586.s.orig >decode_i586.s
. endif
${RM} -f ${WRKSRC}/Output/OSS/soundcard.h
.endif
# the configure test for OSS is broken on Solaris and by default tries
# to build the OSS module. explicitly turn it off for all platforms
# except those which support OSS.
.if ${OPSYS} != "FreeBSD" && ${OPSYS} != "Linux" && ${OPSYS} != "NetBSD" && \
2005-11-02 16:20:51 +01:00
${OPSYS} != "OpenBSD" && ${OPSYS} != "DragonFly"
CONFIGURE_ARGS+= --disable-oss
2006-07-08 03:11:21 +02:00
.else
PLIST.oss= yes
.endif
2004-02-17 17:23:53 +01:00
.include "../../audio/libmikmod/buildlink3.mk"
.include "../../audio/libvorbis/buildlink3.mk"
.include "../../converters/libiconv/buildlink3.mk"
.include "../../graphics/MesaLib/buildlink3.mk"
2004-02-17 17:23:53 +01:00
.include "../../x11/gtk/buildlink3.mk"
.include "../../mk/oss.buildlink3.mk"
2004-02-17 17:23:53 +01:00
.include "../../mk/pthread.buildlink3.mk"