blob: 5395bfc57ab2c3da888fffa6c3ea047a58eeee5e (
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
|
# New ports collection makefile for: libxine
# Date created: 14 Oct 2000
# Whom: alex
#
# $FreeBSD$
#
PORTNAME= xine
PORTVERSION= 0.9.8
CATEGORIES= graphics
MASTER_SITES= http://xine.sourceforge.net/files/ \
${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
PKGNAMEPREFIX= lib
DISTNAME= ${PORTNAME}-lib-${PORTVERSION}
MAINTAINER= nobutaka@FreeBSD.org
BUILD_DEPENDS= ${LOCALBASE}/lib/libavcodec.a:${PORTSDIR}/graphics/ffmpeg
LIB_DEPENDS= a52.0:${PORTSDIR}/audio/liba52 \
aa.1:${PORTSDIR}/graphics/aalib \
intl.1:${PORTSDIR}/devel/gettext
WRKSRC= ${WRKDIR}/${PORTNAME}-lib-${PORTVERSION}
CONFIGURE_ARGS= --with-w32-path=${LOCALBASE}/lib/win32
CONFIGURE_ENV= CPPFLAGS=-I${LOCALBASE}/include LIBS=-L${LOCALBASE}/lib
USE_AUTOMAKE= yes
USE_GMAKE= yes
USE_X_PREFIX= yes
USE_IMLIB= yes
USE_ESOUND= yes
INSTALLS_SHLIB= yes
MAN1= xine-config.1
MAN3= ao_driver_t.3 ao_functions_t.3 autoplay_group.3 \
audio_cap.3 audio_group.3 audio_prop.3 \
browse_group.3 build_info.3 cfg_data_t.3 config_group.3 \
config_values_s.3 config_values_t.3 demux_strategy.3 \
event_group.3 loadplugins_group.3 mrl_t.3 mrl_types.3 \
status_group.3 ui_callbacks.3 version_group.3 video_cap.3 \
video_group.3 video_prop.3 video_ratio.3 visual_types.3 \
vo_driver_s.3 vo_driver_t.3 vo_frame_t.3 vo_overlay_t.3 \
xine-lib.3 xine.h.3 xine_api.3 xine_init.3 xine_management.3 \
xine_t.3 xine_version.3
.include <bsd.port.pre.mk>
.if ${XFREE86_VERSION} >= 4
PLIST_SUB= HAVE_LIBXV=""
.else
PLIST_SUB= HAVE_LIBXV="@comment "
.endif
.if exists(${LOCALBASE}/bin/artsc-config)
PLIST_SUB+= HAVE_ARTS=""
.else
PLIST_SUB+= HAVE_ARTS="@comment "
.endif
.if exists(${LOCALBASE}/include/vorbis/codec.h)
LIB_DEPENDS+= vorbis.1:${PORTSDIR}/audio/libvorbis
PLIST_SUB+= HAVE_VORBIS=""
.else
PLIST_SUB+= HAVE_VORBIS="@comment "
.endif
.if exists(${LOCALBASE}/include/ogg/ogg.h)
LIB_DEPENDS+= ogg.3:${PORTSDIR}/audio/libogg
PLIST_SUB+= HAVE_OGG=""
.else
PLIST_SUB+= HAVE_OGG="@comment "
.endif
# XXX: To avoid internal error in gcc.
post-configure:
@${SED} -e "s/-funroll-loops//" < ${WRKSRC}/src/libw32dll/wine/Makefile > ${WRKSRC}/src/libw32dll/wine/Makefile.tmp
@${MV} ${WRKSRC}/src/libw32dll/wine/Makefile.tmp ${WRKSRC}/src/libw32dll/wine/Makefile
.include <bsd.port.post.mk>
|