pkgsrc/mk/dirs.mk
jmmv c8cb1c5b0d Drop the disctinction of xdg and xdg-x11 from USE_DIRS POV. We can choose
which one is required in an automatic way by checking USE_X11BASE.  This
simplifies things and avoids possible problems in the future due to confusion.
2004-04-14 19:30:22 +00:00

47 lines
1 KiB
Makefile

# $NetBSD: dirs.mk,v 1.2 2004/04/14 19:30:22 jmmv Exp $
#
.if !defined(DIRS_MK)
DIRS_MK= # defined
_USE_GNOME1_DIRS= # empty
_USE_GNOME2_DIRS= # empty
_USE_XDG_DIRS= # empty
_USE_XDG_X11_DIRS= # empty
.for dir in ${USE_DIRS}
pkg:= ${dir:C/-[^-]*$//}
ver:= ${dir:C/^.*-//}
. if ${pkg} == "gnome1" && ${_USE_GNOME1_DIRS} < ${ver}
_USE_GNOME1_DIRS:= ${ver}
. elif ${pkg} == "gnome2" && ${_USE_GNOME2_DIRS} < ${ver}
_USE_GNOME2_DIRS:= ${ver}
. elif ${pkg} == "xdg" && ${_USE_XDG_DIRS} < ${ver} && !defined(USE_X11BASE)
_USE_XDG_DIRS:= ${ver}
. elif ${pkg} == "xdg" && ${_USE_XDG_X11_DIRS} < ${ver} && defined(USE_X11BASE)
_USE_XDG_X11_DIRS:= ${ver}
. endif
.endfor
.undef ver
.undef pkg
.undef dir
.if !empty(_USE_GNOME1_DIRS)
. include "../../misc/gnome1-dirs/dirs.mk"
.endif
.if !empty(_USE_GNOME2_DIRS)
. include "../../misc/gnome2-dirs/dirs.mk"
.endif
.if !empty(_USE_XDG_DIRS)
. include "../../misc/xdg-dirs/dirs.mk"
.endif
.if !empty(_USE_XDG_X11_DIRS)
. include "../../misc/xdg-x11-dirs/dirs.mk"
.endif
.endif # !defined(DIRS_MK)