mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
b1a1d38bf9
From now on, ports that depend on Qt4 will have to set USES= qt:4 USE_QT= foo bar ports depending on Qt5 will use USES= qt:5 USE_QT= foo bar PR: 229225 Exp-run by: antoine Reviewed by: mat Approved by: portmgr (antoine) Differential Revision: →https://reviews.freebsd.org/D15540
33 lines
836 B
Makefile
33 lines
836 B
Makefile
# Created by: Gvozdikov Veniamin <g.veniamin@googlemail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= easypaint
|
|
PORTVERSION= 0.6.0
|
|
PORTREVISION= 3
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://qt-apps.org/CONTENT/content-files/
|
|
DISTNAME= 140877-easyPaint
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Easy graphic editing program
|
|
|
|
LICENSE= GPLv3
|
|
|
|
USES= qmake qt:4
|
|
USE_QT= gui xml uic_build moc_build rcc_build
|
|
QPROFILE= easyPaint
|
|
WRKSRC= ${WRKDIR}/${QPROFILE}
|
|
|
|
DESKTOP_ENTRIES="easyPaint" "${COMMENT}" "easypaint" "easypaint" \
|
|
"Graphics;2DGraphics;RasterGraphics;" "true"
|
|
|
|
PLIST_FILES= bin/${PORTNAME} \
|
|
share/pixmaps/${PORTNAME}.png
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${QPROFILE} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
${INSTALL_DATA} ${WRKSRC}/icons/program/paint.png \
|
|
${STAGEDIR}${PREFIX}/share/pixmaps/${PORTNAME}.png
|
|
|
|
.include <bsd.port.mk>
|