aboutsummaryrefslogtreecommitdiffstats
path: root/multimedia/xfce4-media/Makefile
blob: d7bda16d366b016ffddb9e85ce4e67747ae09fda (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
# New ports collection makefile for:    Xfce4-media
# Date created:     23 October 2004
# Whom:         Matt Lancereau <ports@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=   xfce4-media
PORTVERSION=    0.9.2
PORTREVISION=   22
CATEGORIES= multimedia xfce
MASTER_SITES=   http://spuriousinterrupt.org/files/xfmedia/
DISTNAME=   xfmedia-${PORTVERSION}
DIST_SUBDIR=    xfce4

MAINTAINER= xfce@FreeBSD.org
COMMENT=    Lightweight media player for Xfce4 based on the xine engine

LIB_DEPENDS=    xine.2:${PORTSDIR}/multimedia/libxine

GNU_CONFIGURE=  yes
INSTALLS_ICONS= yes
USE_BZIP2=  yes
USE_GETTEXT=    yes
USE_GMAKE=  yes
USE_GNOME=  glib20 gnomehack gtk20 intltool intlhack pkgconfig
USE_XFCE=   configenv libexo libgui libutil panel
USE_XORG=   x11 sm

OPTIONS=    TAGLIB  "Enable metadata editing"       off \
        DBUS    "Enable D-BUS support"          on \
        STARTUP "Enable startup notification support"   on

.include <bsd.port.pre.mk>

.if defined(WITH_TAGLIB)
LIB_DEPENDS+=   tag.1:${PORTSDIR}/audio/taglib
CONFIGURE_ARGS+=--with-taglib
.else
CONFIGURE_ARGS+=--without-taglib
.endif

.if !defined(WITHOUT_DBUS)
LIB_DEPENDS+=   dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib
CONFIGURE_ARGS+=--enable-dbus
.else
CONFIGURE_ARGS+=--disable-dbus
.endif

.if !defined(WITHOUT_STARTUP)
LIB_DEPENDS+=   startup-notification-1.0:${PORTSDIR}/x11/startup-notification
CONFIGURE_ARGS+=--enable-startup-notification
.else
CONFIGURE_ARGS+=--disable-startup-notification
.endif

CFLAGS+=    -I${LOCALBASE}/include

post-patch:
    @${REINPLACE_CMD} -e "s|xfmedia_remote_LDADD = |&@LIBXFCEGUI4_LIBS@|" \
        ${WRKSRC}/src/Makefile.in
    @${REINPLACE_CMD} -e "s|exo-0.3|exo-1|" ${WRKSRC}/configure
.for file in mediamarks.c playlist.c settings-dialog.c xfmedia-playlist-queue.c
    @${REINPLACE_CMD} -e "s|EXO_PANGO_ELLIPSIZE_END|PANGO_ELLIPSIZE_END|" \
        ${WRKSRC}/src/${file}
.endfor

.include <bsd.port.post.mk>