From owner-freebsd-multimedia@FreeBSD.ORG Fri Jan 6 19:55:24 2012 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A206D1065672 for ; Fri, 6 Jan 2012 19:55:24 +0000 (UTC) (envelope-from me@janh.de) Received: from mxchg03.rrz.uni-hamburg.de (mxchg03.rrz.uni-hamburg.de [134.100.38.113]) by mx1.freebsd.org (Postfix) with ESMTP id 4FC968FC17 for ; Fri, 6 Jan 2012 19:55:24 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mxchg03.rrz.uni-hamburg.de (Postfix) with ESMTP id 2EA731EE2AC; Fri, 6 Jan 2012 20:40:19 +0100 (CET) X-Virus-Scanned: by University of Hamburg ( RRZ / mgw02.rrz.uni-hamburg.de ) Received: from mxchg03.rrz.uni-hamburg.de ([127.0.0.1]) by localhost (mxchg03.rrz.uni-hamburg.de [127.0.0.1]) (amavisd-new, port 10324) with ESMTP id 8VNaysv-SH8o; Fri, 6 Jan 2012 20:40:19 +0100 (CET) Received: from mailhost.uni-hamburg.de (mailhost.uni-hamburg.de [134.100.38.99]) by mxchg03.rrz.uni-hamburg.de (Postfix) with ESMTPS; Fri, 6 Jan 2012 20:40:19 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by mailhost.uni-hamburg.de (Postfix) with ESMTP id 1876E9004A; Fri, 6 Jan 2012 20:40:19 +0100 (CET) X-Virus-Scanned: by University of Hamburg (RRZ/mailhost) Received: from mailhost.uni-hamburg.de ([127.0.0.1]) by localhost (mailhost.uni-hamburg.de [127.0.0.1]) (amavisd-new, port 10024) with LMTP id cSJZpMiZCMwE; Fri, 6 Jan 2012 20:40:19 +0100 (CET) Received: from nb981.math (g224007063.adsl.alicedsl.de [92.224.7.63]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) (Authenticated sender: fmjv004) by mailhost.uni-hamburg.de (Postfix) with ESMTPSA id CF8E590006; Fri, 6 Jan 2012 20:40:18 +0100 (CET) Message-ID: <4F074E1D.6080207@janh.de> Date: Fri, 06 Jan 2012 20:40:13 +0100 From: Jan Henrik Sylvester User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:9.0) Gecko/20111222 Thunderbird/9.0 MIME-Version: 1.0 To: multimedia-list freebsd Content-Type: multipart/mixed; boundary="------------020306050208020208090007" Subject: multimedia/avidemux2 and audio/liba52 have legacy restrictions for PACKAGE_BUILDING 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: Fri, 06 Jan 2012 19:55:24 -0000 This is a multi-part message in MIME format. --------------020306050208020208090007 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit audio/liba52 avoids math/djbfft, if PACKAGE_BUILDING is defined, but math/djbfft is not restricted anymore: http://www.freebsd.org/cgi/getmsg.cgi?fetch=252187+0+/usr/local/www/db/text/2008/cvs-ports/20080810.cvs-ports multimedia/avidemux2 avoids audio/opencore-amr, if PACKAGE_BUILDING is defined, but audio/opencore-amr is not restricted, only audio/libamrwb is restricted, which has been replaced as the AMR dependency: http://www.freebsd.org/cgi/getmsg.cgi?fetch=1161222+0+/usr/local/www/db/text/2010/cvs-ports/20101219.cvs-ports Remark: WITHOUT_LAME and WITHOUT_FAAC are still valid for PACKAGE_BUILDING in multimedia/avidemux2/Makefile.common. Cheers, Jan Henrik --------------020306050208020208090007 Content-Type: text/plain; name="patch.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch.txt" --- audio/liba52/Makefile.orig 2011-09-24 00:21:04.000000000 +0200 +++ audio/liba52/Makefile 2012-01-06 20:35:45.000000000 +0100 @@ -25,7 +25,7 @@ CONFIGURE_ARGS= --disable-oss --enable-shared USE_LDCONFIG= yes -.if !defined(WITHOUT_DJBFFT) && !defined(PACKAGE_BUILDING) +.if !defined(WITHOUT_DJBFFT) BUILD_DEPENDS+= ${LOCALBASE}/lib/libdjbfft.a:${PORTSDIR}/math/djbfft RUN_DEPENDS+= ${LOCALBASE}/lib/libdjbfft.a:${PORTSDIR}/math/djbfft --- multimedia/avidemux2/Makefile.common.orig 2011-12-21 09:48:26.000000000 +0100 +++ multimedia/avidemux2/Makefile.common 2012-01-06 20:35:05.000000000 +0100 @@ -62,7 +62,6 @@ .if defined(PACKAGE_BUILDING) WITHOUT_LAME= yes WITHOUT_FAAC= yes -WITHOUT_AMR= yes .endif # for libexecinfo: (so that __builtin_frame_address() finds the top --------------020306050208020208090007--