freebsd-ports/x11-themes/qtcurve/Makefile
Tobias C. Berner 0f583d8700 Replace Mk/bsd.kde4.mk by Mk/Uses/kde.mk in preparation for KDE Frameworks and
Plasma5 ports

At the moment KDE ports use bsd.kde4.mk to handle their dependencies. When
working on the ports for KDE Frameworks and Plasma5 it seemed to be more
reasonable to create a new kde.mk instead of adding an bsd.kde5.mk.

The kde.mk in this review is a stripped down version of the one we are using in
the KDE Test repositories plasma5 branch [1] to only contain the parts relevant
to the current KDE4 ports in the portstree [2].

Changes to the KDE Ports needed by this:

Replace USE_KDE4 by USE_KDE [3]
Add USES=kde:4 [4]
[1] http://src.mouf.net/area51/view/branches/plasma5/KDE/Mk/Uses/kde.mk
[2] The version in the plasma5 branch also handles frameworks/plasma5 and
    handles MASTER_SITES via a KDE_DIST variable similar to bsd.qt.mk for Qt
    Ports -- I chose to leave this out for now, as the diff is already large
    enough.
[3] I chose USE_KDE instead of USE_KDE4, USE_KDE5, USE_KDEX as the version we
    want is already specified as argument to kde:<arg>
[4] For KDE Frameworks and Plasma5 ports this would be kde:5

PR:             210667
Approved by:    portmgr, mat (mentor), rakuco (mentor)
Reviewed by:    mat, rakuco
Differential Revision:   https://reviews.freebsd.org/D6961
2016-08-24 08:20:31 +00:00

93 lines
2.2 KiB
Makefile

# $FreeBSD$
PORTNAME= qtcurve
PORTVERSION= 1.8.18
CATEGORIES= x11-themes
MAINTAINER= makc@FreeBSD.org
COMMENT?= Widget styles for Qt and GTK+ toolkits
.if !defined(QTCURVE_SLAVE)
USES= metaport
# There is no NO_PATCH
PATCHDIR= ${MASTERDIR}/none
OPTIONS_DEFINE= GTK2 KDE4 QT4 QT5
OPTIONS_DEFAULT:= ${OPTIONS_DEFINE}
GTK2_RUN_DEPENDS= gtk2-qtcurve-theme>=1.8.18:x11-themes/qtcurve-gtk2
KDE4_RUN_DEPENDS= kde4-style-qtcurve>=1.8.18:x11-themes/qtcurve-kde4
QT4_RUN_DEPENDS= qt4-style-qtcurve>=1.8.18:x11-themes/qtcurve-qt4
QT5_RUN_DEPENDS= qt5-style-qtcurve>=1.8.18:x11-themes/qtcurve-qt5
.else # !defined(QTCURVE_SLAVE)
USE_GITHUB= yes
GH_ACCOUNT= QtCurve
USES= compiler:c++11-lib cmake execinfo pkgconfig
USE_XORG= x11 xcb
.for i in gtk2 kde4 qt4 qt5
WITH_${i}= Off
.endfor
WITH_${QTCURVE_SLAVE}= On
CMAKE_ARGS+= -DENABLE_GTK2=${WITH_gtk2} \
-DENABLE_QT4=${WITH_qt4} \
-DENABLE_QT5=${WITH_qt5} \
-DQTC_QT4_ENABLE_KDE=${WITH_kde4}
LDFLAGS+= -L${LOCALBASE}/lib
BUILD_WRKSRC= ${WRKSRC}/${QTCURVE_SLAVE}
INSTALL_WRKSRC= ${BUILD_WRKSRC}
PLIST= ${PKGDIR}/pkg-plist.${QTCURVE_SLAVE}
.if ${QTCURVE_SLAVE} == "utils"
PKGNAMESUFFIX= -utils
USE_LDCONFIG= yes
BUILD_WRKSRC= ${WRKSRC}
OPTIONS_DEFINE= NLS
OPTIONS_SUB= yes
NLS_USES= gettext-tools:build
NLS_CMAKE_OFF= -DQTC_INSTALL_PO=Off
.else
LIB_DEPENDS+= libqtcurve-utils.so:x11-themes/qtcurve-utils
.endif
.if ${QTCURVE_SLAVE} == "gtk2"
PKGNAMEPREFIX= gtk2-
PKGNAMESUFFIX= -theme
USE_GNOME= gtk20 cairo pango
USE_LDCONFIG= yes
post-install:
@(cd ${WRKSRC}/lib/cairo && \
${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET})
.endif
.if ${QTCURVE_SLAVE} == "kde4"
WITH_qt4= On # required for KDE 4
PKGNAMEPREFIX= kde4-style-
USE_KDE= kdelibs workspace automoc4
USES+= kde:4
USE_QT4= moc_build qmake_build rcc_build uic_build
BUILD_WRKSRC= ${WRKSRC}/qt4
.endif
.if ${QTCURVE_SLAVE} == "qt4"
PKGNAMEPREFIX= qt4-style-
USE_QT4= dbus gui svg moc_build qmake_build rcc_build uic_build
PLIST_FILES= ${QT_PLUGINDIR_REL}/styles/qtcurve.so
.endif
.if ${QTCURVE_SLAVE} == "qt5"
PKGNAMEPREFIX= qt5-style-
USE_QT5= dbus gui svg widgets x11extras buildtools_build qmake_build
PLIST_FILES= ${QT_PLUGINDIR_REL}/styles/qtcurve.so
.endif
.endif # !defined(QTCURVE_SLAVE)
.include <bsd.port.mk>