Skip site navigation (1)Skip section navigation (2)
Date:      Thu,  1 Aug 2002 15:07:02 +0200 (CEST)
From:      Xavier Beaudouin <xbeaudouin@fr.cw.net>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/41234: graphics/ffmpeg: missing header on install
Message-ID:  <20020801130702.DC5D01B7B4@kiwi.isdnet.net>

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

>Number:         41234
>Category:       ports
>Synopsis:       graphics/ffmpeg: missing header on install
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Thu Aug 01 06:20:01 PDT 2002
>Closed-Date:
>Last-Modified:
>Originator:     Xavier Beaudouin
>Release:        FreeBSD 4.6-STABLE i386
>Organization:
The Caudium Group / Cable & Wireless
>Environment:
System: FreeBSD kiwi.isdnet.net 4.6-STABLE FreeBSD 4.6-STABLE #0: Mon Jul 8 14:14:50 CEST 2002 root@kiwi.isdnet.net:/usr/src/sys/compile/KIWI i386

Last port cvsup at 15h CEST

>Description:

 The current port of graphics/ffmpeg forgot to install include/libavcodec/common.h that is needed for avcodec.h.

>How-To-Repeat:

 Just create a code like this :

  #include <libavcodec/avcodec.h>

 And try to compile it.

>Fix:

use the following patch


diff -u -r --new-file ffmpeg.old/Makefile ffmpeg/Makefile
--- ffmpeg.old/Makefile	Thu Aug  1 14:58:17 2002
+++ ffmpeg/Makefile	Thu Aug  1 14:58:55 2002
@@ -7,7 +7,7 @@
 
 PORTNAME=	ffmpeg
 PORTVERSION=	0.4.5
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	graphics
 MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
 MASTER_SITE_SUBDIR=	${PORTNAME}
@@ -32,7 +32,7 @@
 DOC_DOCFILES=	FAQ README.dev README.tech \
 		TODO bench.txt ffmpeg.txt \
 		ffserver.txt
-HEADER_FILES=	libavcodec/avcodec.h libavcodec/dsputil.h
+HEADER_FILES=	libavcodec/avcodec.h libavcodec/dsputil.h libavcodec/common.h
 LIB_FILES=	libav/libav.a libavcodec/libavcodec.a
 
 .ifdef(WITHOUT_MMX)
diff -u -r --new-file ffmpeg.old/pkg-plist ffmpeg/pkg-plist
--- ffmpeg.old/pkg-plist	Thu Aug  1 14:58:17 2002
+++ ffmpeg/pkg-plist	Thu Aug  1 14:59:12 2002
@@ -3,6 +3,7 @@
 etc/ffserver.conf.sample
 include/libavcodec/avcodec.h
 include/libavcodec/dsputil.h
+include/libavcodec/common.h
 lib/libav.a
 lib/libavcodec.a
 %%PORTDOCS%%share/doc/ffmpeg/FAQ


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

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




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