1d16d53e19
A lot of KDE Ports share MASTERSITES, LICENSE and so one, as they are released as a bundle upstream, however, there was not really a clean way to share this information. Using these new categories, we can simplify the Makefiles for the diverse KDE ports. At the moment we support the virtual category * kde-kde4 In the future, this will be extended to * kde-frameworks * kde-plasma * kde-applications PR: 213406 Differential Revision: https://reviews.freebsd.org/D7645 Exp-run by : antoine Reviewed by: mat, rakuco Approved by: portmgr (mat), rakuco (mentor)
32 lines
871 B
Makefile
32 lines
871 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= perlqt
|
|
PORTVERSION= ${KDE4_VERSION}
|
|
CATEGORIES= devel kde kde-kde4 perl5
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Perl bindings for Qt
|
|
|
|
LIB_DEPENDS= libqscintilla2.so:devel/qscintilla2 \
|
|
libqwt.so:x11-toolkits/qwt5
|
|
|
|
USES= cmake:outsource kde:4 perl5 tar:xz
|
|
USE_KDE= smokeqt qimageblitz
|
|
USE_QT4= corelib dbus gui network xml \
|
|
qmake_build moc_build uic_build rcc_build
|
|
|
|
# Respect PREFIX
|
|
CMAKE_ARGS+= -DCUSTOM_PERL_SITE_ARCH_DIR=${PREFIX}/${SITE_ARCH_REL}
|
|
# Fix build PREFIX != KDE_PREFIX
|
|
CMAKE_ARGS+= -DSmoke_DIR=${KDE_PREFIX}/lib/cmake/smoke
|
|
|
|
SUB_FILES= perl-kdebindings-env.sh pkg-message
|
|
SUB_LIST+= PERL5LIBDIR="${PREFIX}/${SITE_ARCH_REL}:\
|
|
${PREFIX}/${SITE_PERL_REL}"
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/env
|
|
${INSTALL_SCRIPT} ${WRKDIR}/perl-kdebindings-env.sh ${STAGEDIR}${PREFIX}/env
|
|
|
|
.include <bsd.port.mk>
|