d65c037b00
- Don't set CMAKE_BUILD_TYPE for debug builds (cmake.mk already handles it) - Don't set WITH_DEBUG for unstable branch (KDE4_BRANCH) - Remove now useless KDE4_BUILDENV KDE SC ports: - Chase KDE4_BUILDENV removal: replace 'KDE4_BUILDENV= yes' with 'USES= cmake:outsource' and add USE_LDCONFIG if needed
39 lines
1,014 B
Makefile
39 lines
1,014 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= perlqt
|
|
PORTVERSION= ${KDE4_VERSION}
|
|
CATEGORIES= devel kde perl5
|
|
MASTER_SITES= ${MASTER_SITE_KDE}
|
|
MASTER_SITE_SUBDIR= ${KDE4_BRANCH}/${PORTVERSION}/src
|
|
PKGNAMEPREFIX= p5-
|
|
DIST_SUBDIR= KDE
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Perl bindings for Qt
|
|
|
|
LIB_DEPENDS= qscintilla2:${PORTSDIR}/devel/qscintilla2 \
|
|
qwt.5:${PORTSDIR}/x11-toolkits/qwt5
|
|
|
|
USE_XZ= yes
|
|
USE_PERL5= yes
|
|
USE_KDE4= kdehier kdeprefix smokeqt qimageblitz
|
|
USE_QT4= qmake_build moc_build uic_build rcc_build
|
|
USES= cmake
|
|
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
# Respect PREFIX
|
|
CMAKE_ARGS+= -DCUSTOM_PERL_SITE_ARCH_DIR=${PREFIX}/${SITE_PERL_REL}/${PERL_ARCH}
|
|
# Fix build PREFIX != KDE4_PREFIX
|
|
CMAKE_ARGS+= -DSmoke_DIR=${KDE4_PREFIX}/lib/cmake/smoke
|
|
|
|
SUB_FILES= perl-kdebindings-env.sh pkg-message
|
|
SUB_LIST+= PERL5LIBDIR="${PREFIX}/${SITE_PERL_REL}/${PERL_ARCH}:\
|
|
${PREFIX}/${SITE_PERL_REL}"
|
|
|
|
post-install:
|
|
${MKDIR} ${PREFIX}/env
|
|
${INSTALL_SCRIPT} ${WRKDIR}/perl-kdebindings-env.sh ${PREFIX}/env
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|