diff options
author | joerg <joerg@pkgsrc.org> | 2007-05-25 15:12:52 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2007-05-25 15:12:52 +0000 |
commit | 31f7ba18c8ca1fba0358cf9497c54e145137935b (patch) | |
tree | 0211402d36270f77c876967fc9c36693c795adec /mk/tools | |
parent | 72a55e9e864627027cb7bffca01491d1626203cd (diff) | |
download | pkgsrc-31f7ba18c8ca1fba0358cf9497c54e145137935b.tar.gz |
Add xauth as tool.
Diffstat (limited to 'mk/tools')
-rw-r--r-- | mk/tools/replace.mk | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/mk/tools/replace.mk b/mk/tools/replace.mk index 27835419a02..1397c03ed52 100644 --- a/mk/tools/replace.mk +++ b/mk/tools/replace.mk @@ -1,4 +1,4 @@ -# $NetBSD: replace.mk,v 1.186 2007/03/05 23:35:59 rillig Exp $ +# $NetBSD: replace.mk,v 1.187 2007/05/25 15:12:52 joerg Exp $ # # Copyright (c) 2005 The NetBSD Foundation, Inc. # All rights reserved. @@ -1030,6 +1030,17 @@ TOOLS_CREATE.bdftruncate= bdftruncate . endif .endif +.if !defined(TOOLS_IGNORE.xauth) && !empty(_USE_TOOLS:Mxauth) +. if !empty(PKGPATH:Mx11/xauth) +MAKEFLAGS+= TOOLS_IGNORE.xauth= +. else +TOOLS_DEPENDS.xauth?= xauth-[0-9]*:../../x11/xauth +TOOLS_FIND_PREFIX+= TOOLS_PREFIX.xauth=xauth +TOOLS_PATH.xauth= ${TOOLS_PREFIX.xauth}/bin/xauth +TOOLS_CREATE.xauth= xauth +. endif +.endif + .if !defined(TOOLS_IGNORE.xinit) && !empty(_USE_TOOLS:Mxinit) . if !empty(PKGPATH:Mx11/xinit) MAKEFLAGS+= TOOLS_IGNORE.xinit= @@ -1058,7 +1069,7 @@ TOOLS_CREATE.xmessage= xmessage # native tool available. # .if ${X11_TYPE} != "modular" -_TOOLS.x11-clients= bdftopcf iceauth mkfontdir mkfontscale xinit xmessage +_TOOLS.x11-clients= bdftopcf iceauth mkfontdir mkfontscale xauth xinit xmessage .for _t_ in ${_TOOLS.x11-clients} . if !defined(TOOLS_IGNORE.${_t_}) && !empty(_USE_TOOLS:M${_t_}) |