diff options
author | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-01-18 15:04:44 +0800 |
---|---|---|
committer | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-01-18 15:04:44 +0800 |
commit | 6105f2314ce751114f6be24d789013d517e94a96 (patch) | |
tree | b372d56eab3a167ef105db512e34d88574bce9cc /audio/rhythmbox/Makefile | |
parent | e01d4922f249282379fbeb04ce4db36a05a91d20 (diff) | |
download | marcuscom-ports-6105f2314ce751114f6be24d789013d517e94a96.tar marcuscom-ports-6105f2314ce751114f6be24d789013d517e94a96.tar.gz marcuscom-ports-6105f2314ce751114f6be24d789013d517e94a96.tar.bz2 marcuscom-ports-6105f2314ce751114f6be24d789013d517e94a96.tar.lz marcuscom-ports-6105f2314ce751114f6be24d789013d517e94a96.tar.xz marcuscom-ports-6105f2314ce751114f6be24d789013d517e94a96.tar.zst marcuscom-ports-6105f2314ce751114f6be24d789013d517e94a96.zip |
Add rhythmbox with USE_GSTREAMER knob at version 0.8.8
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@3454 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'audio/rhythmbox/Makefile')
-rw-r--r-- | audio/rhythmbox/Makefile | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/audio/rhythmbox/Makefile b/audio/rhythmbox/Makefile new file mode 100644 index 000000000..819312898 --- /dev/null +++ b/audio/rhythmbox/Makefile @@ -0,0 +1,93 @@ +# 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.52 2004/12/31 17:47:42 pav Exp $ +# + +PORTNAME= rhythmbox +PORTVERSION= 0.8.8 +PORTREVISION= 1 +CATEGORIES= audio gnome +MASTER_SITES= ${MASTER_SITE_GNOME} +MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.8 +DIST_SUBDIR= gnome2 + +MAINTAINER= marcus@freebsd.org +COMMENT= Audio player for the Gnome 2 desktop environment + +LIB_DEPENDS= musicbrainz.4:${PORTSDIR}/audio/libmusicbrainz \ + id3tag.2:${PORTSDIR}/audio/libid3tag + +USE_BZIP2= yes +USE_X_PREFIX= yes +INSTALLS_OMF= yes +USE_GMAKE= yes +USE_GNOME= gnomehack intlhack gnomeprefix libgnomeui +WANT_GSTREAMER= yes +USE_LIBTOOL_VER=15 +CONFIGURE_ARGS= --enable-nautilus-menu +CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib -lm" \ + CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" + +GCONF_SCHEMAS= rhythmbox.schemas + +OPTIONS= XINE "Use xine backend instead of GStreamer" off \ + MONKEYMEDIA "Use MonkeyMedia metadata reader" off \ + IPOD "Enable iPod support" off + +.include <bsd.port.pre.mk> + +.ifdef (WITH_XINE) +LIB_DEPENDS+= xine.12:${PORTSDIR}/multimedia/libxine \ + FLAC.5:${PORTSDIR}/audio/flac \ + mad.2:${PORTSDIR}/audio/libmad +CONFIGURE_ARGS+= --with-player=xine +WITH_MONKEYMEDIA= yes +.else +CONFIGURE_ARGS+= --with-player=gstreamer +USE_GSTREAMER+= flac mad gnomevfs +.endif + +.ifdef (WITH_MONKEYMEDIA) +CONFIGURE_ARGS+= --with-metadata=monkeymedia +.else +CONFIGURE_ARGS+= --with-metadata=gstreamer +USE_GSTREAMER+= flac mad gnomevfs +.endif + +.ifdef (WITH_IPOD) +CONFIGURE_ARGS+= --enable-ipod +.endif + +.if exists(${LOCALBASE}/lib/libvorbis.so) +WITH_VORBIS= yes +.endif + +.ifdef (WITH_VORBIS) +.ifndef (WITH_XINE) +USE_GSTREAMER+= vorbis +.else +LIB_DEPENDS+= vorbis.3:${PORTSDIR}/audio/libvorbis +.endif +.else +CONFIGURE_ARGS+= --disable-vorbis --disable-vorbistest +.endif + +.if !defined(WITH_XINE) && defined(WITH_FAAD) +USE_GSTREAMER+= faad +.endif + +pre-everything:: +.if !defined(WITH_VORBIS) + @${ECHO_MSG} + @${ECHO_MSG} "Define WITH_VORBIS to enable Vorbis support" + @${ECHO_MSG} +.endif +.if !defined(WITH_XINE) && !defined(WITH_FAAD) + @${ECHO_MSG} + @${ECHO_MSG} "Define WITH_FAAD to enable Faad support" + @${ECHO_MSG} +.endif + +.include <bsd.port.post.mk> |