bsd.port.pre.mk and Makefile.common were being included before the many options were being defined. Some of the options depend on Makefile.common to be defined though, so for now revert the USES=metaport conversion to get things back to a working state while a proper fix is devised. PR: 199501
33 lines
843 B
Makefile
33 lines
843 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= kipi-plugins
|
|
PORTVERSION= ${DIGIKAM_VER}
|
|
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>
|