mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
d56984b056
Note: With this update several ports specific problems have been fixed. Qt4 headers and libraries have been moved to include/qt4 and lib/qt4. bsd.qt.mk defines QT_INCDIR and QT_LIBDIR now, which could be used in qt4-dependent ports if required. Thanks to: Max Brazhnikov Danny Pansters
39 lines
943 B
Makefile
39 lines
943 B
Makefile
# -*-mode: makefile-*-
|
|
# New ports collection makefile for: qt-pgsql-plugin
|
|
# Date created: 5 August 2003
|
|
# Whom: Lauri Watts <lauri@kde.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 PostgreSQL database plugin
|
|
|
|
DB= psql
|
|
|
|
USE_QT_VER= 4
|
|
QT_COMPONENTS= moc_build sql
|
|
QT_NONSTANDARD= yes
|
|
|
|
USE_PGSQL= yes
|
|
DRIVER= src/sql/drivers/${DB}
|
|
PLUGIN= src/plugins/sqldrivers/${DB}
|
|
EXTRACT_AFTER_ARGS?=| ${TAR} -xf - \
|
|
${DISTNAME}/${DRIVER} \
|
|
${DISTNAME}/${PLUGIN}
|
|
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>
|