View | Details | Raw Unified | Return to bug 113245
Collapse All | Expand All

(-)/usr/ports/multimedia/ffmpeg/Makefile (-7 / +11 lines)
Lines 40-46 Link Here
40
40
41
CONFLICTS=	ffmpeg-[0-9]*
41
CONFLICTS=	ffmpeg-[0-9]*
42
42
43
MAN1=		ffmpeg.1
43
FFMPEG_MAN1=	ffmpeg.1
44
44
45
##
45
##
46
DOC_FILES=	COPYING Changelog README
46
DOC_FILES=	COPYING Changelog README
Lines 102-108 Link Here
102
			--enable-libfaadbin
102
			--enable-libfaadbin
103
.endif
103
.endif
104
USE_RC_SUBR=		ffserver
104
USE_RC_SUBR=		ffserver
105
MAN1+=			ffserver.1
105
FFMPEG_MAN1+=		ffserver.1
106
106
107
#### BROKEN LIST #####
107
#### BROKEN LIST #####
108
WITHOUT_THEORA=	yes
108
WITHOUT_THEORA=	yes
Lines 135-141 Link Here
135
.ifdef(WITH_SDL) || ${HAVE_SDL:Msdl}
135
.ifdef(WITH_SDL) || ${HAVE_SDL:Msdl}
136
USE_SDL+=	sdl
136
USE_SDL+=	sdl
137
137
138
MAN1+=		ffplay.1
138
FFMPEG_MAN1+=	ffplay.1
139
139
140
PLIST_FILES+=	bin/ffplay
140
PLIST_FILES+=	bin/ffplay
141
.else
141
.else
Lines 185-190 Link Here
185
CONFIGURE_ARGS+=	--enable-xvid
185
CONFIGURE_ARGS+=	--enable-xvid
186
.endif
186
.endif
187
187
188
.ifndef(NOPORTDOCS)
189
MAN1=	${FFMPEG_MAN1}
190
.endif
191
188
pre-everything::
192
pre-everything::
189
.ifndef(WITHOUT_A52)
193
.ifndef(WITHOUT_A52)
190
	@${ECHO_MSG} 'You can disable liba52 support by defining WITHOUT_LIBA52'
194
	@${ECHO_MSG} 'You can disable liba52 support by defining WITHOUT_LIBA52'
Lines 223-230 Link Here
223
	@${ECHO_MSG} 'by defining WITH_OPTIMIZED_CFLAGS'
227
	@${ECHO_MSG} 'by defining WITH_OPTIMIZED_CFLAGS'
224
	@${ECHO_MSG}
228
	@${ECHO_MSG}
225
.endif
229
.endif
226
.ifndef(WITH_VORBIS)
230
.ifndef(WITHOUT_VORBIS)
227
	@${ECHO_MSG} 'Define WITH_VORBIS to enable libvorbisenc VORBIS codec'
231
	@${ECHO_MSG} 'Define WITHOUT_VORBIS to enable libvorbisenc VORBIS codec'
228
	@${ECHO_MSG}
232
	@${ECHO_MSG}
229
.endif
233
.endif
230
.ifndef(WITH_X264)
234
.ifndef(WITH_X264)
Lines 273-279 Link Here
273
		-e 's|(-lImlib2)|-L ${LOCALBASE}/lib \1|' \
277
		-e 's|(-lImlib2)|-L ${LOCALBASE}/lib \1|' \
274
		${WRKSRC}/vhook/Makefile
278
		${WRKSRC}/vhook/Makefile
275
.endif
279
.endif
276
.if defined(WITH_IPV6)
280
.if !defined(WITHOUT_IPV6)
277
	@${REINPLACE_CMD} -E \
281
	@${REINPLACE_CMD} -E \
278
		-e 's|^(ipv6).*$$|\1=yes|' \
282
		-e 's|^(ipv6).*$$|\1=yes|' \
279
		${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
283
		${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
Lines 304-310 Link Here
304
			${WRKSRC}/config.mak \
308
			${WRKSRC}/config.mak \
305
			${WRKSRC}/libavcodec/Makefile
309
			${WRKSRC}/libavcodec/Makefile
306
.endif
310
.endif
307
.ifndef(WITH_THEORA)
311
.ifdef(WITHOUT_THEORA)
308
	@${REINPLACE_CMD} -E \
312
	@${REINPLACE_CMD} -E \
309
		-e 's|^(CONFIG_LIBTHEORA).*$$|\1=no|' \
313
		-e 's|^(CONFIG_LIBTHEORA).*$$|\1=no|' \
310
		${WRKSRC}/config.mak
314
		${WRKSRC}/config.mak

Return to bug 113245