summaryrefslogtreecommitdiff
path: root/Mk/Uses/xfce.mk
diff options
context:
space:
mode:
authorTobias C. Berner <tcberner@FreeBSD.org>2022-04-24 12:00:20 +0200
committerTobias C. Berner <tcberner@FreeBSD.org>2022-04-24 12:00:20 +0200
commitaa2539679084872cd84112e9df6bfee571570623 (patch)
tree68559db98006e070248f851f5adaa2ad18661717 /Mk/Uses/xfce.mk
parentgraphics/ImageMagick7: update to 7.1.0-31 (diff)
framework: cleanup conditional-indentations in Mk/
Run Tools/scripts/indent_make_if.pl on all of Mk. These white space changes contribute greatly to the readability of those files. As we have a version control system, finding out the reasons for the changes prior to these white space changes is still easily possible Differential Revision: https://reviews.freebsd.org/D35024 Reviewed by: portmgr (rene, bapt)
Diffstat (limited to 'Mk/Uses/xfce.mk')
-rw-r--r--Mk/Uses/xfce.mk36
1 files changed, 18 insertions, 18 deletions
diff --git a/Mk/Uses/xfce.mk b/Mk/Uses/xfce.mk
index 15243f343de6..b23ab076ef76 100644
--- a/Mk/Uses/xfce.mk
+++ b/Mk/Uses/xfce.mk
@@ -42,40 +42,40 @@ thunar_USE_XFCE_REQ= xfconf libmenu
xfconf_LIB_DEPENDS= libxfconf-0.so:x11/xfce4-conf
xfconf_USE_XFCE_REQ= libutil
-.if defined(USE_XFCE)
+. if defined(USE_XFCE)
# First, expand all USE_XFCE_REQ recursively.
-.for comp in ${_USE_XFCE_ALL}
-. for subcomp in ${${comp}_USE_XFCE_REQ}
+. for comp in ${_USE_XFCE_ALL}
+. for subcomp in ${${comp}_USE_XFCE_REQ}
${comp}_USE_XFCE_REQ+=${${subcomp}_USE_XFCE_REQ}
-. endfor
-.endfor
+. endfor
+. endfor
# Then, use already expanded USE_XFCE_REQ to expand USE_XFCE.
-.for comp in ${USE_XFCE}
-. if ${_USE_XFCE_ALL:M${comp}} == ""
+. for comp in ${USE_XFCE}
+. if ${_USE_XFCE_ALL:M${comp}} == ""
IGNORE= cannot install: Unknown component ${comp}
-. endif
+. endif
_USE_XFCE+= ${${comp}_USE_XFCE_REQ} ${comp}
-.endfor
+. endfor
# Remove duplicate components
USE_XFCE= ${_USE_XFCE:O:u}
-.for comp in ${USE_XFCE}
-. if defined(${comp}_BUILD_DEPENDS)
+. for comp in ${USE_XFCE}
+. if defined(${comp}_BUILD_DEPENDS)
BUILD_DEPENDS+= ${${comp}_BUILD_DEPENDS}
-. endif
+. endif
-. if defined(${comp}_LIB_DEPENDS)
+. if defined(${comp}_LIB_DEPENDS)
LIB_DEPENDS+= ${${comp}_LIB_DEPENDS}
-. endif
+. endif
-. if defined(${comp}_RUN_DEPENDS)
+. if defined(${comp}_RUN_DEPENDS)
RUN_DEPENDS+= ${${comp}_RUN_DEPENDS}
-. endif
-.endfor
+. endif
+. endfor
-.endif # end of defined(USE_XFCE)
+. endif # end of defined(USE_XFCE)
.endif