summaryrefslogtreecommitdiffstats
path: root/audio/rhythmbox/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'audio/rhythmbox/Makefile')
-rw-r--r--audio/rhythmbox/Makefile66
1 files changed, 66 insertions, 0 deletions
diff --git a/audio/rhythmbox/Makefile b/audio/rhythmbox/Makefile
new file mode 100644
index 000000000..f5c8dd7a7
--- /dev/null
+++ b/audio/rhythmbox/Makefile
@@ -0,0 +1,66 @@
+# New ports collection makefile for: rhythmbox
+# Date created: 17 August 2003
+# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
+#
+# $FreeBSD: ports/audio/rhythmbox/Makefile,v 1.16 2003/11/12 03:03:08 marcus Exp $
+#
+
+PORTNAME= rhythmbox
+PORTVERSION= 0.6.0
+CATEGORIES= audio gnome
+MASTER_SITES= ${MASTER_SITE_GNOME}
+MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.6
+DIST_SUBDIR= gnome2
+
+MAINTAINER= marcus@freebsd.org
+COMMENT= Audio player for the Gnome 2 desktop environment
+
+LIB_DEPENDS= musicbrainz.3:${PORTSDIR}/audio/libmusicbrainz \
+ FLAC.5:${PORTSDIR}/audio/flac \
+ mad.1:${PORTSDIR}/audio/mad
+
+USE_BZIP2= yes
+USE_X_PREFIX= yes
+USE_GMAKE= yes
+USE_GNOME= gnomehack gnomeprefix libgnomeui
+USE_LIBTOOL= yes
+CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib -lm" \
+ CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include"
+
+.include <bsd.port.pre.mk>
+
+.if exists(${LOCALBASE}/lib/libvorbis.so)
+WITH_VORBIS= yes
+.endif
+
+.ifdef (WITH_VORBIS)
+LIB_DEPENDS+= vorbis.2:${PORTSDIR}/audio/libvorbis
+.else
+CONFIGURE_ARGS+= --disable-vorbis --disable-vorbistest
+.endif
+
+.ifdef (WITH_XINE)
+LIB_DEPENDS+= xine.7:${PORTSDIR}/multimedia/libxine
+CONFIGURE_ARGS+= --enable-xine
+.else
+LIB_DEPENDS+= gstplay-0.7.1:${PORTSDIR}/multimedia/gstreamer-plugins
+.endif
+
+pre-everything::
+.if !defined(WITH_XINE)
+ @${ECHO_MSG}
+ @${ECHO_MSG} "You must have gstreamer-plugins built with MAD support!"
+ @${ECHO_MSG}
+.endif
+.if !defined(WITH_VORBIS)
+ @${ECHO_MSG}
+ @${ECHO_MSG} "Define WITH_VORBIS to enable Vorbis support"
+ @${ECHO_MSG}
+.endif
+.if !defined(WITH_XINE)
+ @${ECHO_MSG}
+ @${ECHO_MSG} "Define WITH_XINE to use xine backend instead of gstreamer"
+ @${ECHO_MSG}
+.endif
+
+.include <bsd.port.post.mk>