From owner-freebsd-ports@FreeBSD.ORG Fri May 7 00:29:47 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0518C16A4CF; Fri, 7 May 2004 00:29:47 -0700 (PDT) Received: from smtp.web.de (smtp07.web.de [217.72.192.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89BB343D39; Fri, 7 May 2004 00:29:46 -0700 (PDT) (envelope-from kay_lehmann@web.de) Received: from lehmann.in-dsl.de ([217.197.85.240] helo=web.de) by smtp.web.de with asmtp (TLSv1:RC4-MD5:128) (WEB.DE 4.101 #91) id 1BLznj-0005p4-00; Fri, 07 May 2004 09:29:44 +0200 Message-ID: <409B3B55.4070209@web.de> Date: Fri, 07 May 2004 09:31:33 +0200 From: Kay Lehmann User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; de-AT; rv:1.6) Gecko/20040405 X-Accept-Language: de-de, de, en-us, en MIME-Version: 1.0 To: Marc Smith References: <409B2DAE.9090605@comcast.net> In-Reply-To: <409B2DAE.9090605@comcast.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: kay_lehmann@web.de cc: ports@FreeBSD.org cc: lioux@FreeBSD.org Subject: Re: FreeBSD Port: mjpegtools-1.6.1_2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 May 2004 07:29:47 -0000 Hello, Marc Smith wrote: > Hi, I am trying to use mjpegtools with transcode and it can not find > 'export_mpeg2enc.so' or 'export_mp2enc.so' and I was under the > impression these came with mjpegtools. No, I think they come with transcode. Supporting mjpegtools is an option of transcode: Makefile ---snip--- .if exists(${LOCALBASE}/include/mjpegtools/yuv4mpeg.h) WITH_MJPEG= yes .endif ... .if defined(WITH_MJPEG) LIB_DEPENDS+= lavplay-1.6.1:${PORTSDIR}/multimedia/mjpegtools PLIST_SUB+= WITH_MJPEG="" .else PLIST_SUB+= WITH_MJPEG="@comment " .endif ---snip--- pkg-plist: ---snip--- %%WITH_MJPEG%%lib/transcode/export_mpeg2enc.so %%WITH_MJPEG%%lib/transcode/export_mp2enc.so ---snip--- > I poked around on Google a little > bit and it seems RedHat users have the same problem with these libs not > coming with the RPM of mjpegtools. I was wondering if this is also true > for FreeBSD and if so, is there a way to make it so it does install these? > Thanks for your time. > > Marc So you have two options to get it working: 1. Install mjpegtools and build transcode from ports 2. build transcode with 'make WITH_MJPEG=yes' greets, Kay