From mistry.7@osu.edu  Sat Oct 23 04:42:12 2004
Return-Path: <mistry.7@osu.edu>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 4AF0A16A4CE
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 23 Oct 2004 04:42:12 +0000 (GMT)
Received: from crumpet.united-ware.com (ddsl-66-42-172-210.fuse.net [66.42.172.210])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 96B1E43D31
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 23 Oct 2004 04:42:11 +0000 (GMT)
	(envelope-from mistry.7@osu.edu)
Received: from [192.168.0.6] (adsl-69-211-137-113.dsl.wotnoh.ameritech.net [69.211.137.113])
	(authenticated bits=0)
	by crumpet.united-ware.com (8.12.8p2/8.12.8) with ESMTP id i9N4OpUJ054881
	(version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO);
	Sat, 23 Oct 2004 00:24:53 -0400 (EDT)
	(envelope-from mistry.7@osu.edu)
Message-Id: <200410230044.45464.mistry.7@osu.edu>
Date: Sat, 23 Oct 2004 00:44:36 -0400
From: Anish Mistry <mistry.7@osu.edu>
To: Michael Johnson <ahze@ahze.net>
Cc: FreeBSD-gnats-submit@freebsd.org
In-Reply-To: <200410230020.i9N0K9d7044292@blueheron.ahze.net>
Subject: Re: [PATCH] multimedia/avidemux2: add faac support
References: <200410230020.i9N0K9d7044292@blueheron.ahze.net>

>Number:         73027
>Category:       ports
>Synopsis:       Re: [PATCH] multimedia/avidemux2: add faac support
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    ceri
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sat Oct 23 04:50:32 GMT 2004
>Closed-Date:    Fri Oct 29 09:32:35 GMT 2004
>Last-Modified:  Fri Oct 29 09:32:35 GMT 2004
>Originator:     
>Release:        
>Organization:
>Environment:
>Description:
 --nextPart2827552.OJkGL6uv3T
 Content-Type: text/plain;
   charset="iso-8859-1"
 Content-Transfer-Encoding: quoted-printable
 Content-Disposition: inline
 
 On Friday 22 October 2004 08:20 pm, Michael Johnson wrote:
 > >Submitter-Id: current-users
 > >Originator: Michael Johnson
 > >Organization:
 > >Confidential: no
 > >Synopsis: [PATCH] multimedia/avidemux2: add faac support
 > >Severity: non-critical
 > >Priority: low
 > >Category: ports
 > >Class:  change-request
 > >Release: FreeBSD 5.3-STABLE i386
 > >Environment:
 >
 > System: FreeBSD blueheron.ahze.net 5.3-STABLE FreeBSD 5.3-STABLE #68: Sat
 > Oct 16 21:30:18 EDT 2004
 >
 > >Description:
 >
 > - add faac support
 >
 > Port maintainer (amistry@am-productions.biz) is cc'd.
 >
 > Generated with FreeBSD Port Tools 0.63
 >
 > >How-To-Repeat:
 > >Fix:
 >
 > --- avidemux2-2.0.32.patch begins here ---
 > Index: Makefile
 > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
 > RCS file: /home/ncvs/ports/multimedia/avidemux2/Makefile,v
 > retrieving revision 1.14
 > diff -u -r1.14 Makefile
 > --- Makefile 22 Oct 2004 00:58:44 -0000 1.14
 > +++ Makefile 23 Oct 2004 00:19:31 -0000
 > @@ -43,6 +43,10 @@
 >  #WITH_SDL=3D yes
 >  #.endif
 >
 > +.if exists(${LOCALBASE}/lib/libfaac.so.0)
 > +WITH_FAAC=3D yes
 > +.endif
 > +
 >  .if exists(${LOCALBASE}/lib/libfaad.so.0)
 >  WITH_FAAD=3D yes
 >  .endif
 > @@ -82,6 +86,10 @@
 >  USE_SDL+=3D sdl
 >  .endif
 >
 > +.if defined(WITH_FAAC)
 > +LIB_DEPENDS+=3D faac.0:${PORTSDIR}/audio/faac
 > +.endif
 > +
 >  .if defined(WITH_FAAD)
 >  LIB_DEPENDS+=3D faad.0:${PORTSDIR}/audio/faad
 >  .endif
 > @@ -103,8 +111,12 @@
 >   @${ECHO_MSG} "To enable SDL support define WITH_SDL."
 >  .endif
 >
 > +.if !defined(WITH_FAAC)
 > + @${ECHO_MSG} "To enable FAAC (mpeg4/aac encoder) support define
 > WITH_FAAC." +.endif
 > +
 >  .if !defined(WITH_FAAD)
 > - @${ECHO_MSG} "To enable FAAD (mpeg4/aac) support define WITH_FAAD."
 > + @${ECHO_MSG} "To enable FAAD (mpeg4/aac decoder) support define
 > WITH_FAAD." .endif
 >
 >  post-patch:
 > --- avidemux2-2.0.32.patch ends here ---
 Patch looks good.  Thanks.
 =2D-=20
 Anish Mistry
 
 --nextPart2827552.OJkGL6uv3T
 Content-Type: application/pgp-signature
 
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.2.6 (FreeBSD)
 
 iD8DBQBBeeG9xqA5ziudZT0RAq8HAKCEKNUm5TkF+0GigKL8oqAxV9UcnQCePsD7
 FZAPIpDdP9bKJzePGN42PF8=
 =PkhK
 -----END PGP SIGNATURE-----
 
 --nextPart2827552.OJkGL6uv3T--
>How-To-Repeat:
>Fix:
>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->closed 
State-Changed-By: ceri 
State-Changed-When: Fri Oct 29 09:31:33 GMT 2004 
State-Changed-Why:  
Misfiled followup to ports/73023 [content migrated]. 


Responsible-Changed-From-To: gnats-admin->ceri 
Responsible-Changed-By: ceri 
Responsible-Changed-When: Fri Oct 29 09:31:33 GMT 2004 
Responsible-Changed-Why:  
Take from gnats-admin. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=73027 
>Unformatted:
