blob: 6a924193a4d773ebc3e3e6982c41ff8fed05a8ff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# 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.28 2004/02/04 05:18:37 marcus Exp $
#
PORTNAME= rhythmbox
PORTVERSION= 0.7.0
CATEGORIES= audio gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.7
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.2:${PORTSDIR}/audio/libmad \
id3tag.2:${PORTSDIR}/audio/libid3tag
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"
OPTIONS= XINE "Use xine backend instead of GStreamer" off \
MONKEYMEDIA "Use MonkeyMedia metadata reader" off
.include <bsd.port.pre.mk>
.ifdef (WITH_XINE)
LIB_DEPENDS+= xine.9:${PORTSDIR}/multimedia/libxine
CONFIGURE_ARGS+= --with-player=xine
.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
.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>
|