Module Name:    src
Committed By:   mbalmer
Date:           Sun Apr  3 13:29:45 UTC 2011

Modified Files:
        src/distrib/sets/lists/xbase: mi
        src/external/mit/xorg/bin/ssh-askpass: Makefile
        src/x11/bin/ssh-askpass: Makefile

Log Message:
Build the updates ssh-askpass program and add the man page to the xbase set.


To generate a diff of this commit:
cvs rdiff -u -r1.107 -r1.108 src/distrib/sets/lists/xbase/mi
cvs rdiff -u -r1.2 -r1.3 src/external/mit/xorg/bin/ssh-askpass/Makefile
cvs rdiff -u -r1.6 -r1.7 src/x11/bin/ssh-askpass/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/distrib/sets/lists/xbase/mi
diff -u src/distrib/sets/lists/xbase/mi:1.107 src/distrib/sets/lists/xbase/mi:1.108
--- src/distrib/sets/lists/xbase/mi:1.107	Sun Mar  6 22:15:29 2011
+++ src/distrib/sets/lists/xbase/mi	Sun Apr  3 13:29:45 2011
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.107 2011/03/06 22:15:29 mrg Exp $
+# $NetBSD: mi,v 1.108 2011/04/03 13:29:45 mbalmer Exp $
 #
 # Note: don't delete entries from here - mark them as "obsolete" instead.
 #
@@ -2510,6 +2510,7 @@
 ./usr/X11R7/man/cat1/setxkbmap.0			-unknown-	.cat,xorg
 ./usr/X11R7/man/cat1/showrgb.0				-unknown-	.cat,xorg
 ./usr/X11R7/man/cat1/smproxy.0				-unknown-	.cat,xorg
+./usr/X11R7/man/cat1/ssh-askpass.0			-unknown-	.cat,xorg
 ./usr/X11R7/man/cat1/startx.0				-unknown-	.cat,xorg
 ./usr/X11R7/man/cat1/sxpm.0				-unknown-	.cat,xorg
 ./usr/X11R7/man/cat1/twm.0				-unknown-	.cat,xorg
@@ -2647,6 +2648,7 @@
 ./usr/X11R7/man/html1/setxkbmap.html			-unknown-	html,xorg
 ./usr/X11R7/man/html1/showrgb.html			-unknown-	html,xorg
 ./usr/X11R7/man/html1/smproxy.html			-unknown-	html,xorg
+./usr/X11R7/man/html1/ssh-askpass.html			-unknown-	html,xorg
 ./usr/X11R7/man/html1/startx.html			-unknown-	html,xorg
 ./usr/X11R7/man/html1/sxpm.html				-unknown-	html,xorg
 ./usr/X11R7/man/html1/twm.html				-unknown-	html,xorg
@@ -2785,6 +2787,7 @@
 ./usr/X11R7/man/man1/setxkbmap.1			-unknown-	.man,xorg
 ./usr/X11R7/man/man1/showrgb.1				-unknown-	.man,xorg
 ./usr/X11R7/man/man1/smproxy.1				-unknown-	.man,xorg
+./usr/X11R7/man/man1/ssh-askpass.1			-unknown-	.man,xorg
 ./usr/X11R7/man/man1/startx.1				-unknown-	.man,xorg
 ./usr/X11R7/man/man1/sxpm.1				-unknown-	.man,xorg
 ./usr/X11R7/man/man1/twm.1				-unknown-	.man,xorg

Index: src/external/mit/xorg/bin/ssh-askpass/Makefile
diff -u src/external/mit/xorg/bin/ssh-askpass/Makefile:1.2 src/external/mit/xorg/bin/ssh-askpass/Makefile:1.3
--- src/external/mit/xorg/bin/ssh-askpass/Makefile:1.2	Sat Oct 25 22:27:34 2008
+++ src/external/mit/xorg/bin/ssh-askpass/Makefile	Sun Apr  3 13:29:45 2011
@@ -1,6 +1,4 @@
-#	$NetBSD: Makefile,v 1.2 2008/10/25 22:27:34 apb Exp $
-
-NOMAN=		yes
+#	$NetBSD: Makefile,v 1.3 2011/04/03 13:29:45 mbalmer Exp $
 
 .include <bsd.own.mk>
 
@@ -8,6 +6,7 @@
 SRCS=		drawing.c dynlist.c resources.c x11-ssh-askpass.c
 
 APPDEFS=	SshAskpass.ad
+DATE=		February 14, 2001
 
 BUILDSYMLINKS=	SshAskpass-default.ad SshAskpass.ad
 
@@ -29,13 +28,20 @@
 CPPFLAGS+=	-I.
 DPSRCS+=	SshAskpass_ad.h
 CLEANFILES+=	SshAskpass_ad.h
+
+SRCPATH=        ${X11SRCDIR.local}/programs/x11-ssh-askpass
+
+ssh-askpass.1:  x11-ssh-askpass.man.in
+	sed -e 's#@NAME@#$(PROG)#g' -e 's#@VERSION@#$(VERSION)#g' \
+	    -e 's#@DATE@#$(DATE)#g' < ${SRCPATH}/x11-ssh-askpass.man.in > $@
+
 SshAskpass_ad.h: SshAskpass.ad
 	${_MKTARGET_CREATE}
 	rm -f ${.TARGET}
 	${TOOL_SED} -n '/^[^!]/s/.*/"&",/p' <${.ALLSRC} > ${.TARGET}
 
-LDADD+=		-lXt -lSM -lICE -lXext -lX11
-DPADD+=		${LIBXT} ${LIBSM} ${LIBICE} ${LIBXEXT} ${LIBX11}
+LDADD+=		-lXt -lSM -lICE -lXinerama -lXext -lX11
+DPADD+=		${LIBXT} ${LIBSM} ${LIBICE} ${LIBXINERAMA} ${LIBXEXT} ${LIBX11}
 
 .PATH:		${X11SRCDIR.local}/programs/x11-ssh-askpass
 

Index: src/x11/bin/ssh-askpass/Makefile
diff -u src/x11/bin/ssh-askpass/Makefile:1.6 src/x11/bin/ssh-askpass/Makefile:1.7
--- src/x11/bin/ssh-askpass/Makefile:1.6	Sat Oct 25 22:27:39 2008
+++ src/x11/bin/ssh-askpass/Makefile	Sun Apr  3 13:29:45 2011
@@ -1,6 +1,4 @@
-#	$NetBSD: Makefile,v 1.6 2008/10/25 22:27:39 apb Exp $
-
-NOMAN=		yes
+#	$NetBSD: Makefile,v 1.7 2011/04/03 13:29:45 mbalmer Exp $
 
 .include <bsd.own.mk>
 
@@ -8,6 +6,7 @@
 SRCS=		drawing.c dynlist.c resources.c x11-ssh-askpass.c
 
 APPDEFS=	SshAskpass.ad
+DATE=		February 14, 2001
 
 BUILDSYMLINKS=	SshAskpass-default.ad SshAskpass.ad
 
@@ -19,15 +18,22 @@
 CPPFLAGS+=	-I.
 DPSRCS+=	SshAskpass_ad.h
 CLEANFILES+=	SshAskpass_ad.h
+
+SRCPATH=	${X11SRCDIR.local}/programs/x11-ssh-askpass
+
+ssh-askpass.1:	x11-ssh-askpass.man.in
+	sed -e 's#@NAME@#$(PROG)#g' -e 's#@VERSION@#$(VERSION)#g' \
+	    -e 's#@DATE@#$(DATE)#g' < ${SRCPATH}/x11-ssh-askpass.man.in > $@
+
 SshAskpass_ad.h: SshAskpass.ad
 	${_MKTARGET_CREATE}
 	rm -f ${.TARGET}
 	${TOOL_SED} -n '/^[^!]/s/.*/"&",/p' <${.ALLSRC} > ${.TARGET}
 
-LDADD+=		-lXt -lSM -lICE -lXext -lX11
-DPADD+=		${LIBXT} ${LIBSM} ${LIBICE} ${LIBXEXT} ${LIBX11}
+LDADD+=		-lXt -lSM -lICE -lXinerama -lXext -lX11
+DPADD+=		${LIBXT} ${LIBSM} ${LIBICE} ${LIBXINERAMA} ${LIBXEXT} ${LIBX11}
 
-.PATH:		${X11SRCDIR.local}/programs/x11-ssh-askpass
+.PATH:		${SRCPATH}
 
 .include <bsd.x11.mk>
 .include <bsd.prog.mk>

Reply via email to