Skip site navigation (1)Skip section navigation (2)
Date:      Sun,  9 Nov 2008 20:33:34 +0300 (MSK)
From:      Dmitry Marakasov <amdmi3@amdmi3.ru>
To:        FreeBSD-gnats-submit@freebsd.org
Cc:        multimedia@FreeBSD.org
Subject:   [PATCH] multimedia/libquicktime: default LAME option to on
Message-ID:  <20081109173334.9851A1702D@hades.panopticon>

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

>Submitter-Id:	current-users
>Originator:	Dmitry Marakasov
>Organization:	
>Confidential:	no 
>Synopsis:	[PATCH] multimedia/libquicktime: default LAME option to on
>Severity:	non-critical
>Priority:	low
>Category:	ports 
>Class:		change-request
>Release:	FreeBSD 7.0-RELEASE-p1 i386
>Environment:
System: FreeBSD hades.panopticon 7.0-RELEASE-p1 FreeBSD 7.0-RELEASE-p1 #1: Wed Jun 25 15:36:22 MSD 2008
>Description:
Enable LAME option by default. I have a port (pending multimedia/openmovieeditor update) that needs lame-enabled libquicktime and unfortunately, there's no way to depend on other ports' options :(

Port maintainer (multimedia@FreeBSD.org) is cc'd.

Generated with FreeBSD Port Tools 0.77
>How-To-Repeat:
>Fix:

--- libquicktime-1.0.3_1.patch begins here ---
Index: Makefile
===================================================================
RCS file: /home/amdmi3/projects/freebsd/FreeBSD.cvs/ports/multimedia/libquicktime/Makefile,v
retrieving revision 1.61
diff -u -u -r1.61 Makefile
--- Makefile	20 Aug 2008 00:57:00 -0000	1.61
+++ Makefile	9 Nov 2008 17:29:04 -0000
@@ -7,6 +7,7 @@
 
 PORTNAME=	libquicktime
 PORTVERSION=	1.0.3
+PORTREVISION=	1
 CATEGORIES=	multimedia
 MASTER_SITES=	SFE
 
@@ -26,7 +27,7 @@
 CFLAGS+=	-fPIC
 MAN1=		lqtplay.1
 
-OPTIONS=	LAME "Enable Lame mp3 encoding support" Off \
+OPTIONS=	LAME "Enable Lame mp3 encoding support" On \
 		OPENGL "Enable OpenGL support" On \
 		DV "Enable libdv support for digital cameras" On \
 		JPEG "Enable JPEG support" On \
@@ -58,7 +59,7 @@
 PLIST_SUB+=	GTK="@comment "
 .endif
 
-.if defined(WITH_LAME)
+.if !defined(WITHOUT_LAME)
 LIB_DEPENDS+=	mp3lame.0:${PORTSDIR}/audio/lame
 PLIST_SUB+=	LAME=""
 CONFIGURE_ARGS+=	--with-lame
--- libquicktime-1.0.3_1.patch ends here ---




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