From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 22 17:10:07 2005 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C51B716A445 for ; Thu, 22 Sep 2005 17:10:07 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC56143D5A for ; Thu, 22 Sep 2005 17:10:06 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j8MHA6L9030297 for ; Thu, 22 Sep 2005 17:10:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j8MHA6sl030296; Thu, 22 Sep 2005 17:10:06 GMT (envelope-from gnats) Resent-Date: Thu, 22 Sep 2005 17:10:06 GMT Resent-Message-Id: <200509221710.j8MHA6sl030296@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, bh@izb.knu.ac.kr (Byung-Hee HWANG) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 109C516A41F for ; Thu, 22 Sep 2005 17:07:31 +0000 (GMT) (envelope-from bh@izb.knu.ac.kr) Received: from izb.knu.ac.kr (izb.knu.ac.kr [155.230.157.93]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5305943D46 for ; Thu, 22 Sep 2005 17:07:30 +0000 (GMT) (envelope-from bh@izb.knu.ac.kr) Received: (qmail 25768 invoked from network); 23 Sep 2005 02:07:25 +0900 Received: from e.mx (HELO i.mx) (2002:9be6:9d5d:2::1) by e.mx (envelope-from bh@izb.knu.ac.kr) with AES256-SHA encrypted SMTP; 23 Sep 2005 02:07:25 +0900 Received: (qmail 25764 invoked from network); 23 Sep 2005 02:07:25 +0900 Received: from viola.izb.knu.ac.kr (2002:9be6:9d9f:3::2) by i.mx (envelope-from bh@izb.knu.ac.kr) with AES256-SHA encrypted SMTP; 23 Sep 2005 02:07:25 +0900 Received: by viola.izb.knu.ac.kr (Postfix, from userid 1001) id D94CF69C2; Fri, 23 Sep 2005 02:07:25 +0900 (KST) Message-Id: <20050922170725.D94CF69C2@viola.izb.knu.ac.kr> Date: Fri, 23 Sep 2005 02:07:25 +0900 (KST) From: bh@izb.knu.ac.kr (Byung-Hee HWANG) To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/86473: multimedia/mplayer build option added X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Sep 2005 17:10:08 -0000 >Number: 86473 >Category: ports >Synopsis: multimedia/mplayer build option added >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Sep 22 17:10:06 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Byung-Hee HWANG >Release: FreeBSD 5.4-STABLE i386 >Organization: InZealBomb >Environment: System: FreeBSD viola.izb.knu.ac.kr 5.4-STABLE FreeBSD 5.4-STABLE #0: Wed Sep 21 18:38:58 KST 2005 bh@viola.izb.knu.ac.kr:/usr/obj/usr/src/sys/GENERIC i386 >Description: Some AVI format is need DTS decoding. Build option (--enable-libdts) added for that. >How-To-Repeat: >Fix: This is the diff file. That's very simple :-) --- Makefile.diff begins here --- ? Makefile.diff Index: Makefile =================================================================== RCS file: /home/ncvs/ports/multimedia/mplayer/Makefile,v retrieving revision 1.120 diff -u -r1.120 Makefile --- Makefile 31 Aug 2005 11:34:33 -0000 1.120 +++ Makefile 22 Sep 2005 16:39:53 -0000 @@ -241,6 +241,9 @@ # WITH_XMMS # default: autodetect # +# WITH_DTS +# default: autodetect +# # WITH_LANG # default: en # Enables language support bg, cz, de, dk, en, es, fr, gr, hu, it, ko, nl, no, pl, pt_BR, ro, ru, sk, tr, uk, zh @@ -442,6 +445,10 @@ WITH_XMMS= yes .endif +.if exists(${LOCALBASE}/lib/libdts.a) +WITH_DTS= yes +.endif + .if exists(${LOCALBASE}/lib/liblzo.so) WITH_LZO= yes .endif @@ -735,6 +742,11 @@ .if defined(WITH_XMMS) CONFIGURE_ARGS+= --enable-xmms LIB_DEPENDS+= xmms.4:${PORTSDIR}/multimedia/xmms +.endif + +.if defined(WITH_DTS) +CONFIGURE_ARGS+= --enable-libdts +BUILD_DEPENDS+= ${LOCALBASE}/lib/libdts.a:${PORTSDIR}/multimedia/libdts .endif .if defined(WITH_FREETYPE) --- Makefile.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: multimedia/mplayer build option added From: Byung-Hee HWANG Reply-To: Byung-Hee HWANG Cc: freebsd-ports-bugs@freebsd.org X-send-pr-version: 3.113 X-GNATS-Notify: Reply-To: Byung-Hee HWANG Cc: freebsd-ports-bugs@freebsd.org X-send-pr-version: 3.113 X-GNATS-Notify: