ports/142388: [PATCH] security/ssl-admin: RUN_DEPENDS incorrect

Kevin Kobb kkobb at skylinecorp.com
Wed Jan 6 20:40:10 UTC 2010


>Number:         142388
>Category:       ports
>Synopsis:       [PATCH] security/ssl-admin: RUN_DEPENDS incorrect
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Wed Jan 06 20:40:09 UTC 2010
>Closed-Date:
>Last-Modified:
>Originator:     Kevin Kobb
>Release:        FreeBSD 7.2-RELEASE-p5 amd64
>Organization:
>Environment:
FreeBSD mail.skylinecorp.com 7.2-RELEASE-p5 FreeBSD 7.2-RELEASE-p5 #0: Tue Dec 29 15:44:33 EST 2009     root at mail.skylinecorp.com:/usr/obj/usr/src/sys/PE840  amd64
>Description:
The port Makefile RUN_DEPENDS values for zip/unzip are reversed. If you already have only zip or unzip installed and try to build the port, it will try to install the package you already have installed (instead of the one you actually need) and fail.
>How-To-Repeat:
Install either zip or unzip only and try to build the port.
>Fix:
Correct the Makefile values. Patch attached.

Patch attached with submission follows:

--- Makefile.orig	2009-04-08 13:21:21.000000000 -0400
+++ Makefile	2010-01-06 15:07:05.000000000 -0500
@@ -13,8 +13,8 @@
 MAINTAINER=	ecrist at secure-computing.net
 COMMENT=	OpenSSL certificate manager with OpenVPN support
 
-RUN_DEPENDS=	unzip:${PORTSDIR}/archivers/zip \
-		zip:${PORTSDIR}/archivers/unzip
+RUN_DEPENDS=	unzip:${PORTSDIR}/archivers/unzip \
+		zip:${PORTSDIR}/archivers/zip
 
 USE_PERL5_RUN=	YES
 MAN1=		ssl-admin.1


>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list