mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
65a9953ba7
This patch includes information about the average bitrate of the file (because vorbis uses variable bit rate encoding by default and nominal might or might not match the actual effective bitrate) as well as information about the encoder which created the file. Bump PORTREVISION. PR: 74219 Submitted by: Thomas E. Zander <riggs@rrr.de> Reviewed by: Espen Skoglund <esk@ira.uka.de>
153 lines
4.2 KiB
Makefile
153 lines
4.2 KiB
Makefile
# New ports collection makefile for: xmms
|
|
# Date created: 3 July 1999
|
|
# Whom: Espen Skoglund <esk@ira.uka.de>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xmms
|
|
PORTVERSION= 1.2.10
|
|
PORTREVISION= 4
|
|
CATEGORIES+= multimedia audio ipv6
|
|
MASTER_SITES= http://www.xmms.org/files/1.2.x/ \
|
|
ftp://ftp.sunet.se/pub/multimedia/xmms/1.2.x/
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER?= esk@ira.uka.de
|
|
COMMENT?= X Multimedia System --- An audio player with a Winamp GUI
|
|
|
|
USE_BZIP2= yes
|
|
USE_X_PREFIX= yes
|
|
USE_GNOME= gtk12 gnomehack
|
|
USE_REINPLACE= yes
|
|
WANT_GNOME= yes
|
|
USE_GMAKE= yes
|
|
USE_ICONV= yes
|
|
INSTALLS_SHLIB= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LIBS="-L${LOCALBASE}/lib" \
|
|
INPUT_PLUGINS="${INPUT_PLUGINS}" \
|
|
OUTPUT_PLUGINS="${OUTPUT_PLUGINS}" \
|
|
VISUALIZATION_PLUGINS="${VISUALIZATION_PLUGINS}"
|
|
MAN1= wmxmms.1 xmms.1
|
|
|
|
CONFLICTS= ru-xmms-*
|
|
|
|
INPUT_PLUGINS= cdaudio,mpg123,tonegen,wav
|
|
OUTPUT_PLUGINS= OSS,disk_writer
|
|
VISUALIZATION_PLUGINS= blur_scope,sanalyzer
|
|
|
|
PLIST_SUB= DATADIR="share"
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
CONFIGURE_ARGS+= --enable-ipv6
|
|
|
|
.if defined(WITH_ENCODING_PATCH) || defined(WITH_ID3V2_PATCH)
|
|
ENC_PATCHLEVEL= 27.4
|
|
DISTFILES+= ${PORTNAME}-${PORTVERSION}-recode-csa${ENC_PATCHLEVEL}${EXTRACT_SUFX}:enc
|
|
MASTER_SITES+= ${MASTER_SITE_SOURCEFORGE:S/$/:enc/}
|
|
MASTER_SITE_SUBDIR+= rusxmms/:enc
|
|
.endif
|
|
|
|
.if defined(WITH_ENCODING_PATCH)
|
|
PLIST_SUB+= ENCODING=""
|
|
.else
|
|
PLIST_SUB+= ENCODING="@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_EXTENDED_VORBIS_FILEINFO)
|
|
CFLAGS+= -DALL_VORBIS_TAGS
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_MIKMOD)
|
|
LIB_DEPENDS+= mikmod.2:${PORTSDIR}/audio/libmikmod
|
|
INPUT_PLUGINS+= mikmod
|
|
PLIST_SUB+= MIKMODPLUGIN:=""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-mikmod
|
|
PLIST_SUB+= MIKMODPLUGIN:="@comment "
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_VORBIS)
|
|
LIB_DEPENDS+= vorbis.3:${PORTSDIR}/audio/libvorbis
|
|
INPUT_PLUGINS+= vorbis
|
|
PLIST_SUB+= VORBISPLUGIN:=""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-vorbis
|
|
PLIST_SUB+= VORBISPLUGIN:="@comment "
|
|
.endif
|
|
|
|
.if ${HAVE_GNOME:Mesound}!=""
|
|
USE_GNOME+= esound
|
|
OUTPUT_PLUGINS+= esd
|
|
PLIST_SUB+= ESDPLUGIN:=""
|
|
.if defined(PKGNAMESUFFIX)
|
|
PKGNAMESUFFIX:= ${PKGNAMESUFFIX}-esound
|
|
.else
|
|
PKGNAMESUFFIX= -esound
|
|
.endif
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-esd
|
|
PLIST_SUB+= ESDPLUGIN:="@comment "
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} != "i386"
|
|
WITHOUT_SIMD= yes
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_SIMD) && ${OSVERSION} >= 400021
|
|
CONFIGURE_ARGS+= --enable-simd
|
|
.endif
|
|
|
|
.if defined(WITHOUT_SIMD) || ${OSVERSION} < 400021
|
|
post-extract:
|
|
(cd ${WRKSRC}/Input/mpg123 && ${MV} decode_i586.s decode_i586.S && \
|
|
cd ${WRKSRC}/Visualization/blur_scope && ${MV} blur_8.s blur_8.S);
|
|
${REINPLACE_CMD} -e 's:\.s :.S :g' -e 's:\.s$$:.S:g' \
|
|
-e 's:^\.s\.:.S.:g' ${WRKSRC}/Input/mpg123/Makefile.in
|
|
${REINPLACE_CMD} -e 's:\.s :.S :g' -e 's:\.s$$:.S:g' \
|
|
-e 's:^\.s\.:.S.:g' ${WRKSRC}/Visualization/blur_scope/Makefile.in
|
|
.endif
|
|
|
|
pre-extract:
|
|
.if !defined(WITHOUT_MIKMOD) || !defined(WITHOUT_VORBIS) || ( !defined(WITHOUT_SIMD) && ${OSVERSION} >= 400021 ) || ${HAVE_GNOME:Mesound}!=""
|
|
@${ECHO_MSG}
|
|
.if !defined(WITHOUT_MIKMOD)
|
|
@${ECHO_MSG} "You can disable support for mikmod by defining WITHOUT_MIKMOD."
|
|
.endif
|
|
.if !defined(WITHOUT_VORBIS)
|
|
@${ECHO_MSG} "You can disable support for vorbis by defining WITHOUT_VORBIS."
|
|
.endif
|
|
.if !defined(WITHOUT_SIMD) && ${OSVERSION} >= 400021
|
|
@${ECHO_MSG} "You can disable x86 SIMD (3DNow!/MMX) optimized decoding routines by defining WITHOUT_SIMD."
|
|
.endif
|
|
.if ${HAVE_GNOME:Mesound}!=""
|
|
@${ECHO_MSG} "You can disable support for esound by defining WITHOUT_GNOME=esound."
|
|
.endif
|
|
@${ECHO_MSG}
|
|
.endif
|
|
|
|
post-patch:
|
|
.if defined(WITH_ID3V2_PATCH)
|
|
@${PATCH} -s -p1 -d ${WRKSRC} < ${WRKDIR}/recode.3rdparty/id3v2.patch
|
|
.endif
|
|
.if defined(WITH_ENCODING_PATCH) && defined(WITH_ID3V2_PATCH)
|
|
@${PATCH} -s -p1 -d ${WRKSRC} < ${WRKDIR}/xmms_id3v2-ds-recode.patch
|
|
.elif defined(WITH_ENCODING_PATCH)
|
|
@${PATCH} -s -p1 -d ${WRKSRC} < ${WRKDIR}/xmms-ds-recode.patch
|
|
.endif
|
|
@${FIND} ${WRKSRC} -name "Makefile.in*" | ${XARGS} ${REINPLACE_CMD} -e \
|
|
's|\(datadir\)/aclocal|(prefix)/share/aclocal|g'
|
|
@${REINPLACE_CMD} -e 's|{datadir}/locale|{prefix}/share/locale|g' \
|
|
${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e 's,-pthread,${PTHREAD_LIBS},g' \
|
|
${WRKSRC}/configure
|
|
|
|
post-install:
|
|
@${MKDIR} ${PREFIX}/share/xmms/Skins
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|