summaryrefslogtreecommitdiffstats
path: root/audio/rhythmbox/Makefile
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2005-12-05 08:42:43 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2005-12-05 08:42:43 +0800
commit3d58c50fc09d8c210c5d0b87325d4ee6b599b3a2 (patch)
treeefaea7760c9000071d0dcfda4eb0537cbe344c50 /audio/rhythmbox/Makefile
parent6814ad6a1e2840d7b6f4c6439dc6fe02cf1a7627 (diff)
downloadmarcuscom-ports-3d58c50fc09d8c210c5d0b87325d4ee6b599b3a2.tar
marcuscom-ports-3d58c50fc09d8c210c5d0b87325d4ee6b599b3a2.tar.gz
marcuscom-ports-3d58c50fc09d8c210c5d0b87325d4ee6b599b3a2.tar.bz2
marcuscom-ports-3d58c50fc09d8c210c5d0b87325d4ee6b599b3a2.tar.lz
marcuscom-ports-3d58c50fc09d8c210c5d0b87325d4ee6b599b3a2.tar.xz
marcuscom-ports-3d58c50fc09d8c210c5d0b87325d4ee6b599b3a2.tar.zst
marcuscom-ports-3d58c50fc09d8c210c5d0b87325d4ee6b599b3a2.zip
Teach rhythmbox to use avahi instead of howl for mDNS support.
Submitted by: sajd on #freebsd-gnome git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@5253 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'audio/rhythmbox/Makefile')
-rw-r--r--audio/rhythmbox/Makefile85
1 files changed, 85 insertions, 0 deletions
diff --git a/audio/rhythmbox/Makefile b/audio/rhythmbox/Makefile
new file mode 100644
index 000000000..93a978a6b
--- /dev/null
+++ b/audio/rhythmbox/Makefile
@@ -0,0 +1,85 @@
+# New ports collection makefile for: rhythmbox
+# Date created: 17 August 2003
+# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
+#
+# $FreeBSD$
+# $MCom: ports/audio/rhythmbox/Makefile,v 1.40 2005/10/28 08:03:53 jylefort Exp $
+#
+
+PORTNAME= rhythmbox
+PORTVERSION= 0.9.2
+PORTREVISION= 1
+CATEGORIES= audio gnome
+MASTER_SITES= ${MASTER_SITE_GNOME}
+MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.9
+DIST_SUBDIR= gnome2
+
+MAINTAINER= marcus@FreeBSD.org
+COMMENT= Audio player for the Gnome 2 desktop environment
+
+LIB_DEPENDS= musicbrainz.4:${PORTSDIR}/audio/libmusicbrainz \
+ id3tag.0:${PORTSDIR}/audio/libid3tag \
+ totem-plparser.1:${PORTSDIR}/multimedia/totem-gstreamer \
+ dbus-1.1:${PORTSDIR}/devel/dbus
+
+USE_BZIP2= yes
+USE_X_PREFIX= yes
+INSTALLS_OMF= yes
+USE_GMAKE= yes
+USE_GNOME= gnomehack intlhack gnomeprefix libgnomeui nautiluscdburner
+USE_GSTREAMER= flac mad gnomevfs gconf jpeg
+USE_AUTOTOOLS= libtool:15
+CONFIGURE_ARGS= --enable-nautilus-menu
+CONFIGURE_ENV= LIBS="-lm" \
+ LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" \
+ CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include"
+
+GCONF_SCHEMAS= rhythmbox.schemas
+
+OPTIONS= IPOD "Enable iPod support" off \
+ DAAP "Enable iTunes music sharing" off \
+ FAAD "Enable FAAD decoder support" off
+
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} < 500000
+BROKEN= "Does not build on 4.X"
+.endif
+
+.ifdef (WITH_IPOD)
+CONFIGURE_ARGS+= --enable-ipod
+.endif
+
+.if exists(${LOCALBASE}/lib/libvorbis.so)
+WITH_VORBIS= yes
+.endif
+
+.ifdef (WITH_VORBIS)
+USE_GSTREAMER+= vorbis
+.else
+CONFIGURE_ARGS+= --disable-vorbis --disable-vorbistest
+.endif
+
+.if defined(WITH_FAAD)
+USE_GSTREAMER+= faad
+.endif
+
+.if defined(WITH_DAAP)
+CONFIGURE_ARGS+= --enable-daap --with-mdns=avahi
+LIB_DEPENDS+= soup-2.2.8:${PORTSDIR}/devel/libsoup \
+ avahi-client:${PORTSDIR}/net/avahi
+.else
+.if exists(${LOCALBASE}/lib/libavahi-client.a)
+LIB_DEPENDS+= avahi-client:${PORTSDIR}/net/avahi
+.endif
+CONFIGURE_ARGS+= --disable-daap
+.endif
+
+pre-everything::
+.if !defined(WITH_VORBIS)
+ @${ECHO_MSG}
+ @${ECHO_MSG} "Define WITH_VORBIS to enable Vorbis support"
+ @${ECHO_MSG}
+.endif
+
+.include <bsd.port.post.mk>