mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
ddae4e92d8
Most USES use a colon for build/run(/test) suffixes. Change kde.mk, qt.mk and pyqt.mk to do the same, and update all ports using that. Document in CHANGES. PR: 266034 Exp-run by: antoine Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D36349
39 lines
957 B
Makefile
39 lines
957 B
Makefile
PORTNAME= posterazor
|
|
PORTVERSION= 1.9.7
|
|
DISTVERSIONPREFIX= v
|
|
PORTREVISION= 1
|
|
CATEGORIES= print graphics
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= Cuts an image into pieces which can be printed out as a poster
|
|
WWW= https://github.com/aportale/posterazor
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= compiler:c++11-lang dos2unix gl localbase:ldflags qmake qt:5
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= ehaupt
|
|
USE_GL= gl
|
|
USE_QT= core gui printsupport widgets buildtools:build
|
|
|
|
QMAKE_SOURCE_PATH= ${WRKSRC}/src/posterazor.pro
|
|
|
|
DESKTOP_ENTRIES= "PosteRazor" \
|
|
"Make your own poster!" \
|
|
"${PREFIX}/share/pixmaps/posterazor.xpm" \
|
|
"posterazor" \
|
|
"Application;Graphics;" \
|
|
""
|
|
|
|
PLIST_FILES= bin/posterazor \
|
|
share/pixmaps/posterazor.xpm
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/PosteRazor \
|
|
${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
${INSTALL_DATA} ${WRKSRC}/icons/${PORTNAME}.xpm \
|
|
${STAGEDIR}${PREFIX}/share/pixmaps/
|
|
|
|
.include <bsd.port.mk>
|