From owner-freebsd-ports Sat Jul 20 11:30:12 2002 Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 287A237B400 for ; Sat, 20 Jul 2002 11:30:08 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCA0743E65 for ; Sat, 20 Jul 2002 11:30:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.4/8.12.4) with ESMTP id g6KIU7JU086794 for ; Sat, 20 Jul 2002 11:30:07 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.4/8.12.4/Submit) id g6KIU7BG086793; Sat, 20 Jul 2002 11:30:07 -0700 (PDT) Date: Sat, 20 Jul 2002 11:30:07 -0700 (PDT) Message-Id: <200207201830.g6KIU7BG086793@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Dmitry Morozovsky Subject: Re: ports/40814: explicit dependencies for security/gnupg Reply-To: Dmitry Morozovsky Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/40814; it has been noted by GNATS. From: Dmitry Morozovsky To: FreeBSD-gnats-submit@FreeBSD.org, Cc: Subject: Re: ports/40814: explicit dependencies for security/gnupg Date: Sat, 20 Jul 2002 22:21:29 +0400 (MSD) On Sat, 20 Jul 2002 FreeBSD-gnats-submit@FreeBSD.org wrote: Actually, I suppose the name of the package should be changed to reflect libraries used. Modified patch follows: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/security/gnupg/Makefile,v retrieving revision 1.44 diff -u -r1.44 Makefile --- Makefile 27 May 2002 23:16:06 -0000 1.44 +++ Makefile 20 Jul 2002 18:21:06 -0000 @@ -28,11 +28,13 @@ .include -.if exists(${PREFIX}/lib/libgdbm.so) +.if defined(WITH_GDBM) || exists(${PREFIX}/lib/libgdbm.so) LIB_DEPENDS+= gdbm.2:${PORTSDIR}/databases/gdbm +PKGNAMESUFFIX+= -gdbm .endif -.if exists(${PREFIX}/lib/libiconv.so) +.if defined(WITH_LIBICONV) || exists(${PREFIX}/lib/libiconv.so) LIB_DEPENDS+= iconv.3:${PORTSDIR}/converters/libiconv +PKGNAMESUFFIX+= -iconv .endif post-install: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message