mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
aa25396790
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)
20 lines
534 B
Makefile
20 lines
534 B
Makefile
# handle dependency depends on desktop-file-utils and package regen
|
|
#
|
|
# Feature: desktop-file-utils
|
|
# Usage: USES=desktop-file-utils
|
|
# Valid ARGS: does not require args
|
|
#
|
|
# MAINTAINER: gnome@FreeBSD.org
|
|
|
|
.if !defined(_INCLUDE_USES_DESKTOP_FILE_UTILS_MK)
|
|
_INCLUDE_USES_DESKTOP_FILE_UTILS_MK= yes
|
|
|
|
. if !empty(desktop-file-utils_ARGS)
|
|
IGNORE= USES=desktop-file-utils does not require args
|
|
. endif
|
|
|
|
BUILD_DEPENDS+= update-desktop-database:devel/desktop-file-utils
|
|
RUN_DEPENDS+= update-desktop-database:devel/desktop-file-utils
|
|
|
|
.endif
|