While here, chase some KDE4 ports and functionality, these are scheduled for removal on 2018-12-31. Change the default option/flavor to QT5 where applicable or use alternative toolkits like GTK. Submitted by: tcberner Reviewed by: adridg, jhale, rene, tcberner Approved by: portmgr (implicit, flavor hook) Differential Revision: https://reviews.freebsd.org/D17741
33 lines
819 B
Makefile
33 lines
819 B
Makefile
# Created by: Jose Alonso Cardenas Marquez <acm@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= qt4pas
|
|
PORTVERSION= 2.5
|
|
PORTREVISION= 2
|
|
CATEGORIES= x11-toolkits
|
|
MASTER_SITES= http://users.telenet.be/Jan.Van.hijfte/qtforfpc/V${PORTVERSION}/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:S/^/V/}_Qt${QT4_VER_MIN}
|
|
|
|
MAINTAINER= acm@FreeBSD.org
|
|
COMMENT= Qt4 binding for FreePascal
|
|
|
|
DEPRECATED= Qt4 has been EOL since december 2015
|
|
EXPIRATION_DATE= 2019-03-15
|
|
|
|
USE_LDCONFIG= yes
|
|
USE_QT= corelib gui network script webkit \
|
|
moc_build
|
|
USES= qmake qt:4
|
|
|
|
QT4_VER_MIN= 4.5.3
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${QT4_VERSION:S/.//g} < ${QT4_VER_MIN:S/.//g}
|
|
IGNORE= Please update your current qt4 version to ${QT4_VER_MIN}
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|-mincoming-stack-boundary=2||g' ${WRKSRC}/Qt4Pas.pro
|
|
|
|
.include <bsd.port.post.mk>
|