blob: 32df5514f662e7f704fe12e9ae2807bfda218873 (
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
74
75
76
77
78
79
80
81
82
83
|
# New ports collection makefile for: gxine
# Date created: Sa 19 Apr 2003 01:34:06 CEST
# Whom: Grigori Goronzy <greg@chown.ath.cx>
#
# $FreeBSD$
#
PORTNAME= gxine
PORTVERSION= 0.5.907
PORTREVISION= 1
CATEGORIES= multimedia
MASTER_SITES= SF/xine/${PORTNAME}/${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= An alternative GUI for the Xine media player
LICENSE= GPLv2
LIB_DEPENDS= nspr4.1:${PORTSDIR}/devel/nspr \
xine.2:${PORTSDIR}/multimedia/libxine
OPTIONS= MOZILLA_PLUGIN "Install Mozilla plugin" off \
GNOME "Enable Gnome integration" off \
LIRC "Enable lirc support" off
USE_XZ= yes
USE_GNOME= gnomehack gtk20
USE_GECKO= libxul
USE_GMAKE= yes
USE_AUTOTOOLS= libtool
CONFIGURE_ENV= MKDIR_P="${MKDIR}"
CONFIGURE_ARGS= --enable-mozjs --disable-ffjs --disable-seajs \
--without-hal --with-libintl-prefix=${LOCALBASE}
INSTALLS_ICONS= yes
MAKE_JOBS_SAFE= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
MANLANG= "" de es
MAN1= gxine.1 gxine_client.1
MANCOMPRESSED= no
.include <bsd.port.options.mk>
.if defined(WITH_MOZILLA_PLUGIN)
USE_XORG+= xaw
USE_WEBPLUGINS= native
WEBPLUGINS_DIR= ${PREFIX}/lib/gxine
WEBPLUGINS_FILES=gxineplugin.so
.include "${PORTSDIR}/www/firefox/Makefile.webplugins"
PLIST_SUB+= MOZILLA_PLUGIN=""
.else
CONFIGURE_ARGS+=--without-browser-plugin
PLIST_SUB+= MOZILLA_PLUGIN="@comment "
.endif
.if defined(WITH_GNOME)
BUILD_DEPENDS+= gnome-screensaver:${PORTSDIR}/x11/gnome-screensaver
LIB_DEPENDS+= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib
RUN_DEPENDS+= gnome-screensaver:${PORTSDIR}/x11/gnome-screensaver
CONFIGURE_ARGS+=--with-dbus
.else
CONFIGURE_ARGS+=--disable-integration-wizard --without-dbus
.endif
.if defined(WITH_LIRC)
LIB_DEPENDS+= lirc_client.2:${PORTSDIR}/comms/lirc
CONFIGURE_ARGS+=--enable-lirc
.else
CONFIGURE_ARGS+=--disable-lirc
.endif
post-patch:
@${REINPLACE_CMD} -e \
'/CFLAGS/s|-I/usr/local/include|| ; \
/CFLAGS/s|-L/usr/local/lib|| ; \
/CPPFLAGS/s|-I/usr/local/include|| ; \
s|XINE_LIST=.*|XINE_LIST=|' ${WRKSRC}/configure
@${REINPLACE_CMD} -e \
's|@MAKE_PNG_TRUE@|#|' ${WRKSRC}/pixmaps/Makefile.in
.include <bsd.port.mk>
|