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
53 lines
1.1 KiB
Makefile
53 lines
1.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= saaghar
|
|
PORTVERSION= 2.5.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= misc
|
|
MASTER_SITES= SF/saaghar/Source%20Code/:saaghar \
|
|
SF/ganjoor/s3db:ganjoor
|
|
DISTFILES= Saaghar-${PORTVERSION}.tar.gz:saaghar \
|
|
ganjoor-s3db-930711.zip:ganjoor
|
|
DIST_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= javad.kouhi@gmail.com
|
|
COMMENT= Persian poetry software
|
|
|
|
LICENSE= GPLv3
|
|
|
|
BROKEN= fails to build
|
|
|
|
DEPRECATED= Qt4 has been EOL since december 2015
|
|
EXPIRATION_DATE= 2019-03-15
|
|
|
|
EXTRACT_DEPENDS= ${LOCALBASE}/bin/unzip:archivers/unzip
|
|
|
|
OPTIONS_DEFINE= DEBUG
|
|
|
|
USES= qmake dos2unix qt:4
|
|
USE_QT= gui network sql xml sql-sqlite3_run \
|
|
moc_build rcc_build uic_build phonon \
|
|
dbus declarative xmlpatterns svg script
|
|
WRKSRC= ${WRKDIR}/Saaghar
|
|
|
|
DOS2UNIX_REGEX= .*\.([ch]|cpp)
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if !${PORT_OPTIONS:MDEBUG}
|
|
QMAKE_ARGS+= -config release
|
|
.endif
|
|
|
|
post-extract:
|
|
${UNZIP_CMD} -d ${WRKDIR}/ganjoor \
|
|
${DISTDIR}/${DIST_SUBDIR}/ganjoor-s3db-930711.zip
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '1 s|^.*/|/|g' \
|
|
${WRKSRC}/src/saagharwindow.cpp \
|
|
${WRKSRC}/src/version.h
|
|
|
|
post-install:
|
|
cd ${WRKDIR}/ganjoor && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}
|
|
|
|
.include <bsd.port.mk>
|