From owner-freebsd-multimedia@FreeBSD.ORG Sun Aug 3 08:12:23 2008 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E36851065675 for ; Sun, 3 Aug 2008 08:12:23 +0000 (UTC) (envelope-from ml@bettercom.de) Received: from h1.bettercom.de (h1.bettercom.de [213.239.194.41]) by mx1.freebsd.org (Postfix) with ESMTP id 473618FC0A for ; Sun, 3 Aug 2008 08:12:23 +0000 (UTC) (envelope-from ml@bettercom.de) Received: (qmail 13395 invoked by uid 208); 3 Aug 2008 07:45:41 -0000 Received: from 87.166.209.149 by h1 (envelope-from , uid 0) with qmail-scanner-1.23 (clamdscan: 0.87. spamassassin: 3.04. Clear:RC:1(87.166.209.149):. Processed in 0.031425 secs); 03 Aug 2008 07:45:41 -0000 Received: from unknown (HELO fs.bettercom.de) ([87.166.209.149]) (envelope-sender ) by h1.bettercom.de (qmail-ldap-1.03) with SMTP for ; 3 Aug 2008 07:45:41 -0000 Received: (nullmailer pid 96341 invoked by uid 1000); Sun, 03 Aug 2008 07:45:40 -0000 To: multimedia@FreeBSD.org X-Face: "d[&>8')a)wbF:+L#^<_cohnX6#m5RCCeKF/6_gD(iQ9bX?xe2~Aq*!')D(1ks`?YhomOYbL3R:{4e4a]qft_]<.q/Lf4hIr,`G+LX33&TYp}XGfe~^5m$28R"$C(EwnB\n8t From: Martin Lesser Date: Sun, 03 Aug 2008 09:45:40 +0200 Message-ID: <87iquiv8wr.fsf@fs.bettercom.de> User-Agent: Gnus/5.1008 (Gnus v5.10.8) XEmacs/21.4.21 (berkeley-unix) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Cc: Subject: Builderror in multimedia/transcode X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Aug 2008 08:12:24 -0000 --=-=-= Hi, looks like multimedia/transcode depends on archivers/lzo. The applied patch solves this and the attached patch fixes a broken include. Cheers Martin --- /usr/ports/multimedia/transcode/Makefile.orig 2008-07-27 18:51:02.000000000 +0200 +++ /usr/ports/multimedia/transcode/Makefile 2008-08-03 08:44:19.000000000 +0200 @@ -7,7 +7,7 @@ PORTNAME= transcode PORTVERSION= 1.0.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia MASTER_SITES= http://transcode.kabewm.com/ \ http://fromani.exit1.org/ @@ -18,7 +18,8 @@ LIB_DEPENDS= dvdread.5:${PORTSDIR}/multimedia/libdvdread \ jpeg.9:${PORTSDIR}/graphics/jpeg \ mpeg2.0:${PORTSDIR}/multimedia/libmpeg2 \ - avcodec.1:${PORTSDIR}/multimedia/ffmpeg + avcodec.1:${PORTSDIR}/multimedia/ffmpeg \ + lzo.1:${PORTSDIR}/archivers/lzo BUILD_DEPENDS= iconv:${PORTSDIR}/converters/libiconv USE_BZIP2= yes --=-=-= Content-Type: application/octet-stream Content-Disposition: attachment; filename=patch-tc_lzo.h Content-Description: Patch-LZO --- libtc/tc_lzo.h.orig 2008-08-03 08:17:14.000000000 +0200 +++ libtc/tc_lzo.h 2008-08-03 08:17:14.000000000 +0200 @@ -10,8 +10,8 @@ #ifndef TC_LZO_H #define TC_LZO_H -#include -#include +#include +#include #ifdef HAVE_CONFIG_H #include "config.h" --=-=-=--