From owner-freebsd-ports@FreeBSD.ORG Mon Nov 22 09:15:18 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 59D6816A4CE; Mon, 22 Nov 2004 09:15:18 +0000 (GMT) Received: from smtp-vbr6.xs4all.nl (smtp-vbr6.xs4all.nl [194.109.24.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3B3E43D46; Mon, 22 Nov 2004 09:15:17 +0000 (GMT) (envelope-from arjo.hooimeijer@xs4all.nl) Received: from hipc025 (a194-109-222-1.adsl.xs4all.nl [194.109.222.1]) by smtp-vbr6.xs4all.nl (8.12.11/8.12.11) with ESMTP id iAM9FGT7093168; Mon, 22 Nov 2004 10:15:16 +0100 (CET) (envelope-from arjo.hooimeijer@xs4all.nl) Message-Id: <200411220915.iAM9FGT7093168@smtp-vbr6.xs4all.nl> From: "Arjo Hooimeijer" To: Date: Mon, 22 Nov 2004 10:15:15 +0100 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_0003_01C4D07C.29654000" X-Mailer: Microsoft Office Outlook, Build 11.0.6353 Thread-Index: AcTQc8dpgZtfmol7Q2CKpFqRcw1iNg== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 X-Virus-Scanned: by XS4ALL Virus Scanner cc: ports@FreeBSD.org Subject: FreeBSD Port: vscan-4.40e X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Nov 2004 09:15:18 -0000 This is a multi-part message in MIME format. ------=_NextPart_000_0003_01C4D07C.29654000 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Hi, I created a patch for the security/vscan Makefile that fixes the following problem after upgrading to vscan-4.40e: root@deathstar [/usr/ports/security/vscan] uvscan --version /usr/libexec/ld-elf.so.1: Shared object "libbsdfv.so.4" not found, required by "uvscan" Cheers, AJ ------=_NextPart_000_0003_01C4D07C.29654000 Content-Type: application/octet-stream; name="Makefile.diff" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="Makefile.diff" --- Makefile.old Mon Nov 22 10:06:17 2004=0A= +++ Makefile Mon Nov 22 10:06:28 2004=0A= @@ -59,7 +59,7 @@=0A= .endif=0A= =0A= post-install:=0A= - ${LN} -sf ${PREFIX}/lib/libbsdfv.so \=0A= - ${PREFIX}/lib/libbsdfv.so.4=0A= + ${LN} -sf ${PREFIX}/lib/libbsdfv.so.4 \=0A= + ${PREFIX}/lib/libbsdfv.so=0A= =0A= .include =0A= ------=_NextPart_000_0003_01C4D07C.29654000--