From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 21 13:47:53 2005 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 15D3716A4CE; Sat, 21 May 2005 13:47:53 +0000 (GMT) Received: from pandora.afflictions.org (asylum.afflictions.org [64.7.134.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25E0D43D45; Sat, 21 May 2005 13:47:49 +0000 (GMT) (envelope-from dgerow@afflictions.org) Received: from localhost (localhost [127.0.0.1]) by pandora.afflictions.org (Postfix) with ESMTP id 0FC4778C64; Sat, 21 May 2005 09:48:12 -0400 (EDT) Received: from pandora.afflictions.org ([127.0.0.1]) by localhost (pandora.afflictions.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 91835-02; Sat, 21 May 2005 09:48:08 -0400 (EDT) Received: from dementia.afflictions.org (dementia.afflictions.org [172.19.206.56]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by pandora.afflictions.org (Postfix) with ESMTP id 55C2478C5F; Sat, 21 May 2005 09:48:07 -0400 (EDT) Received: by dementia.afflictions.org (Postfix, from userid 1001) id 036AF33C7B; Sat, 21 May 2005 09:47:41 -0400 (EDT) Date: Sat, 21 May 2005 09:47:41 -0400 From: Damian Gerow To: Pav Lucistnik Message-ID: <20050521134741.GK52914@afflictions.org> References: <200505211145.j4LBjZMV052143@freefall.freebsd.org> <20050521130058.GJ52914@afflictions.org> <1116681742.79313.13.camel@hood.oook.cz> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="jq0ap7NbKX2Kqbes" Content-Disposition: inline In-Reply-To: <1116681742.79313.13.camel@hood.oook.cz> X-GPG-Fingerprint: B3D7 D901 A53A 1A99 BFD6 E6DF 9F3B 742B C288 9CC9 User-Agent: Mutt/1.5.9i X-Virus-Scanned: amavisd-new at pandora.afflictions.org cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/81333: www/linux-firefox doesn't pick up linux-flashplugin7 via linkfarm X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 May 2005 13:47:53 -0000 --jq0ap7NbKX2Kqbes Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Thus spake Pav Lucistnik (pav@FreeBSD.org) [21/05/05 09:36]: : > : linkfarm file is generated from port Makefile, so can you please provide : > : patch for port Makefile? : > : > Try the attached patch instead. : : Good, but I think you missed flashplugin7 in this patch, which was the : main point of this exercise, correct? :) That'll teach me to make patches three minutes after I wake up. Try this one instead. - Damian --jq0ap7NbKX2Kqbes Content-Type: text/plain; charset=us-ascii Content-Description: www/linux-firefox patch for linkfarm Content-Disposition: attachment; filename=asdf --- Makefile.orig Sat May 21 01:18:28 2005 +++ Makefile Sat May 21 09:46:05 2005 @@ -27,7 +27,7 @@ NO_BUILD= yes NO_FILTER_SHLIBS=yes -ONLY_FOR_ARCHS=i386 +ONLY_FOR_ARCHS=amd64 i386 FIREFOX_NAME= ${PKGNAMEPREFIX}${PORTNAME} DESCR= ${.CURDIR}/pkg-descr MD5_FILE= ${.CURDIR}/distinfo @@ -45,6 +45,9 @@ >>${WRKDIR}/linkfarm ${ECHO_CMD} "cd ${PREFIX}/lib/${FIREFOX_NAME}/plugins" \ >>${WRKDIR}/linkfarm + ${ECHO_CMD} "${FIND} -L . -type l -delete" \ + >>${WRKDIR}/linkfarm + .for ii in \ lib/linux-beonex/plugins \ lib/netscape-linux/plugins \ @@ -52,6 +55,7 @@ lib/linux-mozilla/plugins \ lib/linux-netscape*/plugins \ lib/linux-flashplugin6 \ + lib/linux-flashplugin7 \ linux-blackdown-jdk1.3.1/jre/plugin/i386/mozilla \ linux-blackdown-jdk1.4.1/jre/plugin/i386/mozilla ${ECHO_CMD} -n "${FIND} ${LOCALBASE}/${ii}/*" \ --jq0ap7NbKX2Kqbes--