mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
7e3da3deb2
- Remove unneeded INSTALLS_ICONS, only required for GTK software PR: 227562 [1] Submitted by: lbartoletti@tuxfamily.org (maintainer)
46 lines
1.2 KiB
Makefile
46 lines
1.2 KiB
Makefile
# Created by: lbartoletti <coder@tuxfamily.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= quiterss
|
|
PORTVERSION= 0.18.10
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://quiterss.org/files/${PORTVERSION}/
|
|
DISTNAME= QuiteRSS-${PORTVERSION}-src
|
|
|
|
MAINTAINER= lbartoletti@tuxfamily.org
|
|
COMMENT= Open-source cross-platform RSS/Atom news feeds reader
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
NO_WRKSUBDIR= yes
|
|
|
|
USES= desktop-file-utils pkgconfig qmake:outsource sqlite
|
|
|
|
OPTIONS_DEFINE= DEBUG
|
|
OPTIONS_SINGLE= GUI
|
|
OPTIONS_SINGLE_GUI= QT4 QT5
|
|
OPTIONS_DEFAULT= QT5
|
|
|
|
QT4_USE= QT4=moc_build,rcc_build,uic_build,linguisttools_build
|
|
QT4_USE+= QT4=corelib,gui,network,xml,webkit,phonon,sql,sql-sqlite3_run
|
|
|
|
QT5_USE= QT5=buildtools_build,linguisttools_build,core,xml,gui,widgets
|
|
QT5_USE+= QT5=network,multimedia,printsupport,webkit,sql,sql-sqlite3_run
|
|
|
|
post-patch-DEBUG-on:
|
|
@${REINPLACE_CMD} 's|debug_and_release|debug|' \
|
|
${WRKSRC}/QuiteRSS.pro
|
|
|
|
post-patch-DEBUG-off:
|
|
@${REINPLACE_CMD} 's|debug_and_release|release|' \
|
|
${WRKSRC}/QuiteRSS.pro
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's|$$$$\[QT_INSTALL_BINS\]/lrelease|${LRELEASE}|' \
|
|
${WRKSRC}/lang/lang.pri
|
|
@${REINPLACE_CMD} 's|$$$$PREFIX/share/quiterss|${DATADIR}|' \
|
|
${WRKSRC}/QuiteRSS.pro
|
|
|
|
.include <bsd.port.mk>
|