blob: 6955b23b23611b06ac12612cffa74eeabebb0b52 (
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
|
# Created by: Grigori Goronzy <greg@chown.ath.cx>
# $FreeBSD$
PORTNAME= gxine
PORTVERSION= 0.5.908
PORTREVISION= 3
CATEGORIES= multimedia
MASTER_SITES= SF/xine/${PORTNAME}/${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Alternative GUI for the Xine media player
LICENSE= GPLv2
LIB_DEPENDS= libnspr4.so:${PORTSDIR}/devel/nspr \
libmozjs185.so:${PORTSDIR}/lang/spidermonkey185 \
libxine.so:${PORTSDIR}/multimedia/libxine
USES= desktop-file-utils gmake libtool pathfix pkgconfig tar:xz
USE_GNOME= gtk20
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --without-hal --with-libintl-prefix=${LOCALBASE}
INSTALLS_ICONS= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib -lm
OPTIONS_DEFINE= GNOME LIRC WEBPLUGIN
OPTIONS_SUB= yes
GNOME_BUILD_DEPENDS= gnome-screensaver:${PORTSDIR}/x11/gnome-screensaver
GNOME_LIB_DEPENDS= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib
GNOME_RUN_DEPENDS= gnome-screensaver:${PORTSDIR}/x11/gnome-screensaver
GNOME_CONFIGURE_ON= --with-dbus
GNOME_CONFIGURE_OFF= --disable-integration-wizard --without-dbus
LIRC_LIB_DEPENDS= liblirc_client.so:${PORTSDIR}/comms/lirc
LIRC_CONFIGURE_ON= --enable-lirc
LIRC_CONFIGURE_OFF= --disable-lirc
WEBPLUGIN_DESC= Build and/or install Web browser plugins
WEBPLUGIN_USE= xorg=xaw
WEBPLUGIN_USES= webplugin:native
WEBPLUGIN_CONFIGURE_OFF= --without-browser-plugin
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MWEBPLUGIN}
WEBPLUGIN_DIR= ${PREFIX}/lib/gxine
WEBPLUGIN_FILES=gxineplugin.so
.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
post-install:
.if ${PORT_OPTIONS:MWEBPLUGIN}
@${STRIP_CMD} ${STAGEDIR}${WEBPLUGIN_DIR}/${WEBPLUGIN_FILES}
.endif
.include <bsd.port.mk>
|