diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2004-04-17 04:54:52 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2004-04-17 04:54:52 +0800 |
commit | 5ef0fd9d8a293d9635c044ce76e77b08feb7ee35 (patch) | |
tree | 38575c04509baea98666f68cb5c1184f8dbb3dbd /audio/rhythmbox/Makefile | |
parent | 6afd016e33273e1e46809945ad61f21a61556668 (diff) | |
download | marcuscom-ports-5ef0fd9d8a293d9635c044ce76e77b08feb7ee35.tar marcuscom-ports-5ef0fd9d8a293d9635c044ce76e77b08feb7ee35.tar.gz marcuscom-ports-5ef0fd9d8a293d9635c044ce76e77b08feb7ee35.tar.bz2 marcuscom-ports-5ef0fd9d8a293d9635c044ce76e77b08feb7ee35.tar.lz marcuscom-ports-5ef0fd9d8a293d9635c044ce76e77b08feb7ee35.tar.xz marcuscom-ports-5ef0fd9d8a293d9635c044ce76e77b08feb7ee35.tar.zst marcuscom-ports-5ef0fd9d8a293d9635c044ce76e77b08feb7ee35.zip |
Remove rhythmbox now that it has been merged into the FreeBSD tree.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@2276 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'audio/rhythmbox/Makefile')
-rw-r--r-- | audio/rhythmbox/Makefile | 79 |
1 files changed, 0 insertions, 79 deletions
diff --git a/audio/rhythmbox/Makefile b/audio/rhythmbox/Makefile deleted file mode 100644 index 248711be9..000000000 --- a/audio/rhythmbox/Makefile +++ /dev/null @@ -1,79 +0,0 @@ -# New ports collection makefile for: rhythmbox -# Date created: 17 August 2003 -# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= rhythmbox -PORTVERSION= 0.8.0 -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 \ - FLAC.5:${PORTSDIR}/audio/flac \ - mad.2:${PORTSDIR}/audio/libmad \ - id3tag.2:${PORTSDIR}/audio/libid3tag - -USE_BZIP2= yes -USE_X_PREFIX= yes -USE_GMAKE= yes -USE_GNOME= gnomehack intlhack gnomeprefix libgnomeui -USE_LIBTOOL_VER=13 -CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib -lm" \ - CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" - -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.9:${PORTSDIR}/multimedia/libxine -CONFIGURE_ARGS+= --with-player=xine -WITH_MONKEYMEDIA= yes -.else -CONFIGURE_ARGS+= --with-player=gstreamer -USE_GNOME+= gstreamerplugins -.endif - -.ifdef (WITH_MONKEYMEDIA) -CONFIGURE_ARGS+= --with-metadata=monkeymedia -.else -CONFIGURE_ARGS+= --with-metadata=gstreamer -USE_GNOME+= gstreamerplugins -.endif - -.ifdef (WITH_IPOD) -CONFIGURE_ARGS+= --enable-ipod -.endif - -.if exists(${LOCALBASE}/lib/libvorbis.so) -WITH_VORBIS= yes -.endif - -.ifdef (WITH_VORBIS) -LIB_DEPENDS+= vorbis.3:${PORTSDIR}/audio/libvorbis -.else -CONFIGURE_ARGS+= --disable-vorbis --disable-vorbistest -.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 - -.include <bsd.port.post.mk> |