From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 21 13:01:07 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 746B316A4CE; Sat, 21 May 2005 13:01:07 +0000 (GMT) Received: from pandora.afflictions.org (asylum.afflictions.org [64.7.134.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id 535B043D88; Sat, 21 May 2005 13:01:06 +0000 (GMT) (envelope-from dgerow@afflictions.org) Received: from localhost (localhost [127.0.0.1]) by pandora.afflictions.org (Postfix) with ESMTP id B4D8278C71; Sat, 21 May 2005 09:01:28 -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 59988-04; Sat, 21 May 2005 09:01:24 -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 BD9E878C64; Sat, 21 May 2005 09:01:23 -0400 (EDT) Received: by dementia.afflictions.org (Postfix, from userid 1001) id 9BADE33C7B; Sat, 21 May 2005 09:00:58 -0400 (EDT) Date: Sat, 21 May 2005 09:00:58 -0400 From: Damian Gerow To: Pav Lucistnik Message-ID: <20050521130058.GJ52914@afflictions.org> References: <200505211145.j4LBjZMV052143@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="tKW2IUtsqtDRztdT" Content-Disposition: inline In-Reply-To: <200505211145.j4LBjZMV052143@freefall.freebsd.org> 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:01:07 -0000 --tKW2IUtsqtDRztdT Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Thus spake Pav Lucistnik (pav@FreeBSD.org) [21/05/05 07:46]: : linkfarm file is generated from port Makefile, so can you please provide : patch for port Makefile? Try the attached patch instead. : Also, I'm not sure if deleting all symlinks is desirable, what if someone : makes a symlink by hand there? The patch only deletes hanging symlinks: I figured that since the symlinks weren't actually pointing anywhere, they wouldn't be missed. - Damian --tKW2IUtsqtDRztdT Content-Type: text/plain; charset=us-ascii Content-Description: www/linux-firefox patch to linkfarm Content-Disposition: attachment; filename=asdf --- Makefile.orig Sat May 21 01:18:28 2005 +++ Makefile Sat May 21 08:57:59 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 \ --tKW2IUtsqtDRztdT--