Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 14 Mar 2004 13:03:21 +0100 (CET)
From:      dirk.meyer@dinoex.sub.org
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:    ports/64257: multimedia/ffmpeg postprocess needed for multimedia/vlc
Message-ID:  <200403141203.i2EC3Lx0048751@home.dinoex.sub.de>
Resent-Message-ID: <200403141210.i2ECAO1b071698@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         64257
>Category:       ports
>Synopsis:       multimedia/ffmpeg postprocess needed for multimedia/vlc
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sun Mar 14 04:10:23 PST 2004
>Closed-Date:
>Last-Modified:
>Originator:     Dirk Meyer
>Release:        FreeBSD 5.2-CURRENT i386
>Organization:
privat
>Environment:

	
>Description:

multimedia/vlc needs postprocess (--enable-pp)


>How-To-Repeat:
	
>Fix:

- enable postprocess by default, new option WITHOUT_POSTPROCESS

Index: Makefile
===================================================================
RCS file: /home/pcvs/ports/multimedia/ffmpeg/Makefile,v
retrieving revision 1.36
diff -u -r1.36 Makefile
--- Makefile	14 Mar 2004 04:51:05 -0000	1.36
+++ Makefile	14 Mar 2004 08:43:43 -0000
@@ -7,7 +7,7 @@
 
 PORTNAME=	ffmpeg
 PORTVERSION=	0.4.8
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	multimedia audio net
 MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
 MASTER_SITE_SUBDIR=	ffmpeg
@@ -163,6 +163,12 @@
 CONFIGURE_ARGS+=	--enable-faad
 .endif
 
+.ifndef(WITHOUT_POSTPROCESS)
+CONFIGURE_ARGS+=	--enable-pp
+PLIST_FILES+=		include/postproc/postprocess.h
+PLIST_DIRS+=		include/postproc
+.endif
+
 pre-everything::
 .ifndef(WITH_FREETYPE2)
 	@${ECHO_MSG} 'Define WITH_FREETYPE2 to enable drawtext FREETYPE2 codec'
@@ -285,5 +291,10 @@
 .for file in ${LIB_FILES}
 	@${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/lib/${file:T}
 .endfor
+.ifndef(WITHOUT_POSTPROCESS)
+	@${MKDIR} ${PREFIX}/include/postproc
+	@${INSTALL_DATA} ${WRKSRC}/libavcodec/libpostproc/postprocess.h \
+		 ${PREFIX}/include/postproc/postprocess.h
+.endif
 
 .include <bsd.port.post.mk>

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200403141203.i2EC3Lx0048751>