mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +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
26 lines
543 B
Makefile
26 lines
543 B
Makefile
# Created by: cy
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= qxv
|
|
PORTVERSION= 0.2
|
|
PORTREVISION= 5
|
|
CATEGORIES+= graphics
|
|
MASTER_SITES= http://labs.freehackers.org/attachments/download/422/
|
|
|
|
MAINTAINER= cy@FreeBSD.org
|
|
COMMENT= Qt 4 program that displays images of various formats
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= qmake qt:4 tar:bzip2
|
|
USE_QT= corelib gui moc_build uic_build rcc_build
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}/${PREFIX}/bin/
|
|
|
|
.include <bsd.port.mk>
|