d2b3ea3187
less dirs since the gettext change. @comment OSS plugin.
119 lines
3.0 KiB
Makefile
119 lines
3.0 KiB
Makefile
# $OpenBSD: Makefile,v 1.34 2004/08/03 10:22:40 espie Exp $
|
|
|
|
COMMENT= "Multimedia player for the X Window System"
|
|
COMMENT-esd= "Esound output plugin for XMMS"
|
|
COMMENT-vorbis= "Ogg Vorbis input plugin for XMMS"
|
|
COMMENT-mikmod= "Mikmod input plugin for XMMS"
|
|
COMMENT-mp3= "MP3 input plugin for XMMS"
|
|
|
|
VERSION= 1.2.10
|
|
DISTNAME= xmms-${VERSION}
|
|
PKGNAME-esd= xmms-esd-${VERSION}
|
|
PKGNAME-vorbis= xmms-vorbis-${VERSION}
|
|
PKGNAME-mikmod= xmms-mikmod-${VERSION}
|
|
PKGNAME-mp3= xmms-mp3-${VERSION}
|
|
CATEGORIES= audio
|
|
HOMEPAGE= http://www.xmms.org
|
|
|
|
MAINTAINER= Robert Nagy <robert@openbsd.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
V= 1.2.x
|
|
MASTER_SITES= ${HOMEPAGE}/files/$V/ \
|
|
ftp://ftp.xmms.org/xmms/$V/ \
|
|
ftp://ftp.sunet.se/pub/multimedia/xmms/$V/ \
|
|
ftp://ftp.stealth.net/xmms/$V/
|
|
|
|
PSEUDO_FLAVORS= no_esd no_vorbis no_mikmod no_mp3
|
|
FLAVOR?=
|
|
MULTI_PACKAGES=
|
|
.if !${FLAVOR:L:Mno_esd}
|
|
MULTI_PACKAGES+= -esd
|
|
.endif
|
|
.if !${FLAVOR:L:Mno_vorbis}
|
|
MULTI_PACKAGES+= -vorbis
|
|
.endif
|
|
.if !${FLAVOR:L:Mno_mikmod}
|
|
MULTI_PACKAGES+= -mikmod
|
|
.endif
|
|
.if !${FLAVOR:L:Mno_mp3}
|
|
MULTI_PACKAGES+= -mp3
|
|
.endif
|
|
|
|
SUBPACKAGE?=
|
|
|
|
MODULES= devel/gettext
|
|
RUN_DEPENDS= :unzip-*:archivers/unzip
|
|
LIB_DEPENDS= gtk.1.2,gdk.1.2::x11/gtk+ \
|
|
gthread.1.2::devel/glib \
|
|
xml.9::textproc/libxml1
|
|
|
|
USE_X11= Yes
|
|
CONFIGURE_STYLE= autoconf
|
|
AUTOCONF_VERSION= 2.59
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED} \
|
|
--without-gnome \
|
|
--enable-ipv6
|
|
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
|
|
CFLAGS="${CFLAGS} -I${LOCALBASE}/include -I${X11BASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" \
|
|
XML_CONFIG="${LOCALBASE}/bin/xml-config" \
|
|
|
|
DOCS= README NEWS FAQ
|
|
|
|
|
|
.if defined(PACKAGING)
|
|
. if ${SUBPACKAGE} == "-esd"
|
|
LIB_DEPENDS= esd.2::audio/esound
|
|
RUN_DEPENDS= ::audio/xmms
|
|
. endif
|
|
. if ${SUBPACKAGE} == "-vorbis"
|
|
LIB_DEPENDS= vorbis.0,vorbisfile.1::audio/libvorbis
|
|
RUN_DEPENDS= ::audio/xmms
|
|
. endif
|
|
. if ${SUBPACKAGE} == "-mikmod"
|
|
LIB_DEPENDS= mikmod.0::audio/libmikmod
|
|
RUN_DEPENDS= ::audio/xmms
|
|
. endif
|
|
. if ${SUBPACKAGE} == "-mp3"
|
|
PERMIT_PACKAGE_CDROM= "patent issues"
|
|
PERMIT_DISTFILES_CDROM= "patent issues"
|
|
RUN_DEPENDS= ::audio/xmms
|
|
. endif
|
|
.else
|
|
. if ${MULTI_PACKAGES:M-esd}
|
|
LIB_DEPENDS+= esd.2::audio/esound
|
|
CONFIGURE_ARGS+= --with-esd-prefix=${LOCALBASE}
|
|
. else
|
|
CONFIGURE_ARGS+= --disable-esd
|
|
. endif
|
|
. if ${MULTI_PACKAGES:M-vorbis}
|
|
LIB_DEPENDS+= vorbis.0,vorbisfile.1::audio/libvorbis
|
|
CONFIGURE_ARGS+= --with-ogg-prefix=${LOCALBASE} \
|
|
--with-vorbis-prefix=${LOCALBASE}
|
|
. else
|
|
CONFIGURE_ARGS+= --disable-vorbis
|
|
. endif
|
|
. if ${MULTI_PACKAGES:M-mikmod}
|
|
LIB_DEPENDS+= mikmod.2::audio/libmikmod
|
|
CONFIGURE_ARGS+= --with-mikmod-prefix=${LOCALBASE}
|
|
. else
|
|
CONFIGURE_ARGS+= --disable-mikmod
|
|
. endif
|
|
.endif
|
|
|
|
pre-configure:
|
|
@cd ${WRKSRC}/libxmms && ${LOCALBASE}/bin/autoconf-${AUTOCONF_VERSION}
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/xmms
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${PREFIX}/share/doc/xmms
|
|
|
|
.include <bsd.port.mk>
|