blob: 4146f010e07e0411b885364d8dec40d3d522437e (
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: multimedia/toxine
# Date created: 3 August 2005
# Whom: Alejandro Pulver <alejandro@varnet.biz>
#
# $FreeBSD$
#
PORTNAME= toxine
PORTVERSION= 0.6.3
PORTREVISION= 2
CATEGORIES= multimedia
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= toxine
MAINTAINER= alepulver@FreeBSD.org
COMMENT= Text user interface using the xine library
LIB_DEPENDS= xine.13:${PORTSDIR}/multimedia/libxine
USE_X_PREFIX= yes
USE_REINPLACE= yes
GNU_CONFIGURE= yes
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib -I${X11BASE}/lib"
MAN1= toxine.1
OPTIONS= AALIB "Enable aalib support" on \
LIBCACA "Enable libcaca support" on \
OPTIMIZED_CFLAGS "Enable compilation optimizations" on
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 502000
LIB_DEPENDS+= readline.5:${PORTSDIR}/devel/readline
CONFIGURE_ARGS+= --with-readline=${LOCALBASE}
.endif
.if ${OSVERSION} < 500000
EXTRA_PATCHES= ${FILESDIR}/extra-patch-main.c
.endif
.if !defined(WITHOUT_AALIB)
LIB_DEPENDS+= aa.1:${PORTSDIR}/graphics/aalib
.endif
.if !defined(WITHOUT_LIBCACA)
BUILD_DEPENDS+= ${LOCALBASE}/lib/libcaca.a:${PORTSDIR}/graphics/libcaca
.endif
post-patch:
@${REINPLACE_CMD} -e 's|alsa09|oss|g' ${WRKSRC}/misc/dvdplayer.sh.in
.if defined(WITHOUT_OPTIMIZED_CFLAGS)
@${REINPLACE_CMD} -e 's|-mpreferred-stack-boundary=2||g ; \
s|-fno-strict-aliasing||g ; \
s|-fschedule-insns2||g ; \
s|-mwide-multiply||g ; \
s|-falign-functions=4||g ; \
s|-falign-loops=4||g ; \
s|-falign-jumps=4||g ; \
s|-fomit-frame-pointer||g ; \
s|-fexpensive-optimizations||g ; \
s|-ffast-math||g ; \
s|-funroll-loops||g ; \
s|-finline-functions||g' \
${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
.endif
.if defined(WITH_AALIB) || exists(${LOCALBASE}/lib/libaa.a)
PLIST_SUB+= AALIB=""
.else
PLIST_SUB+= AALIB="@comment "
.endif
.if defined(WITH_LIBCACA) || exists(${LOCALBASE}/lib/libcaca.a)
PLIST_SUB+= LIBCACA=""
.else
PLIST_SUB+= LIBCACA="@comment "
.endif
.include <bsd.port.post.mk>
|