e332496be5
QT_COMPONENTS can now be depended on at runtime or buildtime only by specifiying them as <component>_build or <component>_run, respectively. Specifying <component> without any suffix will depend on the component at both build- and runtime just like before. - Convert Qt core ports to use the new dependency switches. - Add a patch to corelib to fix Qt4 on ARM, submitted by: Björn König <bkoenig@alpha-tierchen.de>
40 lines
1 KiB
Makefile
40 lines
1 KiB
Makefile
# -*-mode: makefile-*-
|
|
# New ports collection makefile for: qt-ibase-plugin
|
|
# Date created: 27 February 2004
|
|
# Whom: Michael Nottebrock <lofi@freebsd.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= qt4-${DB}-plugin
|
|
PORTVERSION= ${QT4_VERSION}
|
|
CATEGORIES= databases
|
|
MASTER_SITES= ${MASTER_SITE_QT}
|
|
DISTNAME= qt-x11-opensource-src-${PORTVERSION}
|
|
DIST_SUBDIR= KDE
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Qt IBase/Firebird database plugin
|
|
|
|
DB= ibase
|
|
|
|
USE_FIREBIRD= yes
|
|
USE_QT_VER= 4
|
|
QT_COMPONENTS= moc_build sql
|
|
QT_NONSTANDARD= yes
|
|
|
|
#USE_BZIP2= yes
|
|
DRIVER= src/sql/drivers/${DB}
|
|
PLUGIN= src/plugins/sqldrivers/${DB}
|
|
EXTRACT_AFTER_ARGS?=| ${TAR} -xf - \
|
|
${DISTNAME}/${DRIVER} ${DISTNAME}/${PLUGIN} \
|
|
${DISTNAME}/include/QtSql \
|
|
${DISTNAME}/src/sql/kernel
|
|
MAKEFILE= ${FILESDIR}/Makefile.bsd
|
|
MAKE_ENV+= DB="${DB}" DRIVER="${DRIVER}" MOC="${MOC}" \
|
|
PLUGIN="${PLUGIN}" \
|
|
PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \
|
|
PTHREAD_LIBS="${PTHREAD_LIBS}"
|
|
PLIST_SUB= DB=${DB}
|
|
|
|
.include <bsd.port.mk>
|