4a4ec28d37
Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a replacement for :U and :L (which has been marked as deprecated) bmake which is the default on FreeBSD 10+ only support by default :tu/:tl a hack has been added at the time to support :U and :L to ease migration. This hack is now not necessary anymore Note that this makes the ports tree incompatible with make(1) from FreeBSD 8.3 or earlier With hat: portmgr
34 lines
859 B
Makefile
34 lines
859 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= kipi-plugins
|
|
PORTVERSION= ${DIGIKAM_VER}
|
|
PORTREVISION= 1
|
|
PORTEPOCH= 1
|
|
CATEGORIES= graphics kde
|
|
DISTFILES= #
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= KDE 4 kipi graphics plugins (meta port)
|
|
|
|
NO_BUILD= yes
|
|
NO_INSTALL= yes
|
|
NO_MTREE= yes
|
|
|
|
.include "${.CURDIR}/../digikam-kde4/Makefile.common"
|
|
|
|
OPTIONS_DEFINE= DOCS NLS
|
|
OPTIONS_DEFAULT= ${OPTIONS_DEFINE}
|
|
|
|
# DOCS ans NLS options first, then plugins sorted in KIPI_PLUGINS_ALL
|
|
NO_OPTIONS_SORT= yes
|
|
|
|
.for plugin in ${KIPI_PLUGINS_ALL}
|
|
OPTIONS_DEFINE+= ${plugin:tu}
|
|
${plugin:tu}_DESC= ${${plugin}_DESC}
|
|
${plugin:tu}_RUN_DEPENDS= kipi-plugin-${plugin}>=${DIGIKAM_VER}:${PORTSDIR}/graphics/kipi-plugin-${plugin}
|
|
.endfor
|
|
|
|
NLS_DEP= digikam-l10n>=${DIGIKAM_VER}:${PORTSDIR}/graphics/digikam-kde4-l10n
|
|
DOCS_DEP= digikam-doc>=${DIGIKAM_VER}:${PORTSDIR}/graphics/digikam-kde4-doc
|
|
|
|
.include <bsd.port.mk>
|