From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Dec 5 14:30:31 2004 Return-Path: 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 0A77E16A4D4 for ; Sun, 5 Dec 2004 14:30:31 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC6E643D39 for ; Sun, 5 Dec 2004 14:30:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iB5EUUki051883 for ; Sun, 5 Dec 2004 14:30:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iB5EUUPI051874; Sun, 5 Dec 2004 14:30:30 GMT (envelope-from gnats) Resent-Date: Sun, 5 Dec 2004 14:30:30 GMT Resent-Message-Id: <200412051430.iB5EUUPI051874@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, Hendrik Scholz Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FA5216A4CE for ; Sun, 5 Dec 2004 14:25:55 +0000 (GMT) Received: from mail.wormulon.net (plant.wormulon.net [81.169.153.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2668343D39 for ; Sun, 5 Dec 2004 14:25:55 +0000 (GMT) (envelope-from hscholz@mail.wormulon.net) Received: from localhost (localhost [127.0.0.1]) by mail.wormulon.net (Postfix) with ESMTP id 3BD9B55251; Sun, 5 Dec 2004 15:25:54 +0100 (CET) Received: from mail.wormulon.net ([127.0.0.1]) by localhost (plant.wormulon.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16881-04; Sun, 5 Dec 2004 15:25:48 +0100 (CET) Received: by mail.wormulon.net (Postfix, from userid 1001) id BB4595524F; Sun, 5 Dec 2004 15:25:48 +0100 (CET) Message-Id: <20041205142548.BB4595524F@mail.wormulon.net> Date: Sun, 5 Dec 2004 15:25:48 +0100 (CET) From: Hendrik Scholz To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: Hendrik Scholz Subject: ports/74719: maintainer-update: multimedia/transcode (fix plist on !i386) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Hendrik Scholz List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Dec 2004 14:30:31 -0000 >Number: 74719 >Category: ports >Synopsis: maintainer-update: multimedia/transcode (fix plist on !i386) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Dec 05 14:30:30 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Hendrik Scholz >Release: FreeBSD 5.2.1-RELEASE-p9 i386 >Organization: >Environment: System: FreeBSD plant.wormulon.net 5.2.1-RELEASE-p9 FreeBSD 5.2.1-RELEASE-p9 #0: Fri Aug 13 11:32:22 CEST 2004 hscholz@h2012.ka.strato.de:/usr/src/sys/i386/compile/PLANT i386 FreeBSD zoidberg.freenet-ag.de 6.0-CURRENT FreeBSD 6.0-CURRENT #0: Wed Nov 17 09:02:02 CET 2004 hscholz@zoidberg.freenet-ag.de:/usr/src/sys/i386/compile/ZOIDBERG i386 FreeBSD sera.naomiwatts.info 5.3-STABLE FreeBSD 5.3-STABLE #0: Mon Oct 25 15:31:33 CEST 2004 root@sera.naomiwatts.info:/usr/src/sys/sparc64/compile/SERA1 sparc64 >Description: fix plist on !i386 as noted by Kris/pointyhat: http://pointyhat.freebsd.org/errorlogs/sparc64-errorlogs/e.6.2004102017/transcode-0.6.12_2.log et al. >How-To-Repeat: Try to build on !i386 >Fix: We don't have MMX on !i386 (amd64 didn't work either) so remove it from pkg-plist for !i386. --- transcode-mmx-plist.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/multimedia/transcode/Makefile,v retrieving revision 1.46 diff -u -u -r1.46 Makefile --- Makefile 4 Dec 2004 01:30:38 -0000 1.46 +++ Makefile 5 Dec 2004 14:23:11 -0000 @@ -38,10 +38,6 @@ .include -.if ${ARCH} != "i386" -BROKEN= "Broken pkg-plist on !i386" -.endif - .if exists(${LOCALBASE}/lib/libtheora.so) WITH_LIBTHEORA= yes .endif @@ -398,5 +394,12 @@ .endif @${RM} ${PREFIX}/lib/transcode/*.la + +.if ${ARCH} == i386 +PLIST_SUB+= I386="" +.else +PLIST_SUB+= I386="@comment " +.endif + .include Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/multimedia/transcode/pkg-plist,v retrieving revision 1.20 diff -u -u -r1.20 pkg-plist --- pkg-plist 11 Oct 2004 23:12:03 -0000 1.20 +++ pkg-plist 5 Dec 2004 14:23:11 -0000 @@ -71,7 +71,7 @@ lib/transcode/filter_denoise3d.so lib/transcode/filter_detectclipping.so lib/transcode/filter_detectsilence.so -lib/transcode/filter_dilyuvmmx.so +%%I386%%lib/transcode/filter_dilyuvmmx.so lib/transcode/filter_divxkey.so lib/transcode/filter_doublefps.so lib/transcode/filter_dnr.so --- transcode-mmx-plist.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: