freebsd-ports/Mk/Uses/shared-mime-info.mk
Tobias C. Berner aa25396790 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)
2022-04-24 12:00:20 +02:00

19 lines
508 B
Makefile

# handle dependency depends on shared-mime-info and package regen
#
# Feature: shared-mime-info
# Usage: USES=shared-mime-info
# Valid ARGS: does not require args
#
# MAINTAINER: gnome@FreeBSD.org
.if !defined(_INCLUDE_USES_SHARED_MIME_INFO_MK)
_INCLUDE_USES_SHARED_MIME_INFO_MK= yes
. if !empty(shared-mime-info_ARGS)
IGNORE= USES=shared-mime-info does not require args
. endif
BUILD_DEPENDS+= update-mime-database:misc/shared-mime-info
RUN_DEPENDS+= update-mime-database:misc/shared-mime-info
.endif