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
40 lines
902 B
Makefile
40 lines
902 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= burplex
|
|
PORTVERSION= 1.0.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://www.burplex.com/ \
|
|
http://www.da3m0n8t3r.com/
|
|
|
|
MAINTAINER= waitman@waitman.net
|
|
COMMENT= Preview and select images for batch processing
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
DEPRECATED= Qt4 has been EOL since december 2015
|
|
EXPIRATION_DATE= 2019-03-15
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/bin/dcraw:graphics/dcraw
|
|
|
|
USES= qmake qt:4
|
|
USE_QT= gui uic_build moc_build rcc_build \
|
|
imageformats_run
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
PLIST_FILES= bin/${PORTNAME} \
|
|
man/man7/burplex.7.gz
|
|
|
|
DESKTOP_ENTRIES= "burplex" "${COMMENT}" "" \
|
|
"burplex" "" "true"
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's,/usr/local,${LOCALBASE},' \
|
|
${WRKSRC}/mainwindow.cpp
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/burplex.7 ${STAGEDIR}${MANPREFIX}/man/man7
|
|
|
|
.include <bsd.port.mk>
|