From nobody@FreeBSD.org  Sun Dec  2 11:18:36 2012
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id 2D040AB0
	for <freebsd-gnats-submit@FreeBSD.org>; Sun,  2 Dec 2012 11:18:36 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22])
	by mx1.freebsd.org (Postfix) with ESMTP id 142AB8FC12
	for <freebsd-gnats-submit@FreeBSD.org>; Sun,  2 Dec 2012 11:18:36 +0000 (UTC)
Received: from red.freebsd.org (localhost [127.0.0.1])
	by red.freebsd.org (8.14.5/8.14.5) with ESMTP id qB2BIZCI032663
	for <freebsd-gnats-submit@FreeBSD.org>; Sun, 2 Dec 2012 11:18:35 GMT
	(envelope-from nobody@red.freebsd.org)
Received: (from nobody@localhost)
	by red.freebsd.org (8.14.5/8.14.5/Submit) id qB2BIZHe032662;
	Sun, 2 Dec 2012 11:18:35 GMT
	(envelope-from nobody)
Message-Id: <201212021118.qB2BIZHe032662@red.freebsd.org>
Date: Sun, 2 Dec 2012 11:18:35 GMT
From: Garrett Cooper <yaneurabeya@gmail.com>
To: freebsd-gnats-submit@FreeBSD.org
Subject: [patch] bsdinstall: add missing DPADD definitions
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         174046
>Category:       bin
>Synopsis:       [patch] bsdinstall(8): add missing DPADD definitions
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    antoine
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sun Dec 02 11:20:00 UTC 2012
>Closed-Date:    Sat Sep 28 08:52:07 UTC 2013
>Last-Modified:  Sat Sep 28 08:52:07 UTC 2013
>Originator:     Garrett Cooper
>Release:        10-CURRENT
>Organization:
EMC Isilon
>Environment:
FreeBSD bayonetta.local 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #0 r240836M: Sat Sep 22 12:30:11 PDT 2012     gcooper@bayonetta.local:/usr/obj/store/freebsd/stable/9/sys/BAYONETTA  amd64
>Description:
DPADD is missing from the Makefiles for the bsdinstall C applications. The attached patch fixes that.
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

Index: usr.sbin/bsdinstall/distextract/Makefile
===================================================================
--- usr.sbin/bsdinstall/distextract/Makefile	(revision 243747)
+++ usr.sbin/bsdinstall/distextract/Makefile	(working copy)
@@ -3,6 +3,7 @@
 BINDIR= /usr/libexec/bsdinstall
 PROG=	distextract
 LDADD=	-larchive -lncursesw -ldialog -lm
+DPADD=	${LIBARCHIVE} ${LIBNCURSESW} ${LIBDIALOG}
 
 WARNS?=	6
 NO_MAN=	true
Index: usr.sbin/bsdinstall/distfetch/Makefile
===================================================================
--- usr.sbin/bsdinstall/distfetch/Makefile	(revision 243747)
+++ usr.sbin/bsdinstall/distfetch/Makefile	(working copy)
@@ -3,6 +3,7 @@
 BINDIR= /usr/libexec/bsdinstall
 PROG=	distfetch
 LDADD=	-lfetch -lncursesw -ldialog -lm
+DPADD=	${LIBFETCH} ${LIBNCURSESW} ${LIBDIALOG}
 
 WARNS?=	6
 NO_MAN=	true
Index: usr.sbin/bsdinstall/partedit/Makefile
===================================================================
--- usr.sbin/bsdinstall/partedit/Makefile	(revision 243747)
+++ usr.sbin/bsdinstall/partedit/Makefile	(working copy)
@@ -4,6 +4,7 @@
 PROG=	partedit
 LINKS= ${BINDIR}/partedit ${BINDIR}/autopart
 LDADD=	-lgeom -lncursesw -lutil -ldialog -lm
+DPADD=	${LIBGEOM} ${LIBNCURSESW} ${LIBDIALOG}
 
 PARTEDIT_ARCH= ${MACHINE}
 .if ${MACHINE} == "i386" || ${MACHINE} == "amd64"


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-bugs->freebsd-sysinstall 
Responsible-Changed-By: linimon 
Responsible-Changed-When: Sun Dec 9 18:16:05 UTC 2012 
Responsible-Changed-Why:  
Over to maintainer(s). 

http://www.freebsd.org/cgi/query-pr.cgi?pr=174046 
State-Changed-From-To: open->patched 
State-Changed-By: antoine 
State-Changed-When: Wed May 15 16:57:37 UTC 2013 
State-Changed-Why:  
I patched this in head 


Responsible-Changed-From-To: freebsd-sysinstall->antoine 
Responsible-Changed-By: antoine 
Responsible-Changed-When: Wed May 15 16:57:37 UTC 2013 
Responsible-Changed-Why:  
Closure reminder 

http://www.freebsd.org/cgi/query-pr.cgi?pr=174046 
State-Changed-From-To: patched->closed 
State-Changed-By: antoine 
State-Changed-When: Sat Sep 28 08:51:45 UTC 2013 
State-Changed-Why:  
Close, no MFC for me. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=174046 
>Unformatted:
