View | Details | Raw Unified | Return to bug 73023 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-1 / +14 lines)
Lines 7-12 Link Here
7
7
8
PORTNAME=	avidemux2
8
PORTNAME=	avidemux2
9
PORTVERSION=	2.0.32
9
PORTVERSION=	2.0.32
10
PORTREVISION=	1
10
CATEGORIES=	multimedia
11
CATEGORIES=	multimedia
11
MASTER_SITES=	http://fixounet.free.fr/avidemux/ \
12
MASTER_SITES=	http://fixounet.free.fr/avidemux/ \
12
		http://download.berlios.de/avidemux/
13
		http://download.berlios.de/avidemux/
Lines 43-48 Link Here
43
#WITH_SDL=	yes
44
#WITH_SDL=	yes
44
#.endif
45
#.endif
45
46
47
.if exists(${LOCALBASE}/lib/libfaac.so.0)
48
WITH_FAAC= yes
49
.endif
50
46
.if exists(${LOCALBASE}/lib/libfaad.so.0)
51
.if exists(${LOCALBASE}/lib/libfaad.so.0)
47
WITH_FAAD=	yes
52
WITH_FAAD=	yes
48
.endif
53
.endif
Lines 82-87 Link Here
82
USE_SDL+=	sdl
87
USE_SDL+=	sdl
83
.endif
88
.endif
84
89
90
.if defined(WITH_FAAC)
91
LIB_DEPENDS+= faac.0:${PORTSDIR}/audio/faac
92
.endif
93
85
.if defined(WITH_FAAD)
94
.if defined(WITH_FAAD)
86
LIB_DEPENDS+=	faad.0:${PORTSDIR}/audio/faad
95
LIB_DEPENDS+=	faad.0:${PORTSDIR}/audio/faad
87
.endif
96
.endif
Lines 103-110 Link Here
103
	@${ECHO_MSG} "To enable SDL support define WITH_SDL."
112
	@${ECHO_MSG} "To enable SDL support define WITH_SDL."
104
.endif
113
.endif
105
114
115
.if !defined(WITH_FAAC)
116
 @${ECHO_MSG} "To enable FAAC (mpeg4/aac encoder) support define WITH_FAAC."
117
.endif
118
106
.if !defined(WITH_FAAD)
119
.if !defined(WITH_FAAD)
107
	@${ECHO_MSG} "To enable FAAD (mpeg4/aac) support define WITH_FAAD."
120
	@${ECHO_MSG} "To enable FAAD (mpeg4/aac decoder) support define WITH_FAAD."
108
.endif
121
.endif
109
122
110
post-patch:
123
post-patch:

Return to bug 73023