mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-28 10:08:24 +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
36 lines
760 B
Makefile
36 lines
760 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= beediff
|
|
PORTVERSION= 1.9
|
|
PORTREVISION= 3
|
|
CATEGORIES= textproc devel
|
|
MASTER_SITES= http://www.beesoft.pl/download/
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION}_src
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Qt 4 based diff frontend
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/licence.txt
|
|
|
|
USES= qmake qt:4
|
|
USE_QT= corelib gui moc_build rcc_build
|
|
USE_XORG= x11 xext
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
PLIST_FILES= bin/beediff share/pixmaps/beediff.png
|
|
|
|
DESKTOP_ENTRIES="BeeDiff" \
|
|
"diff frontend" \
|
|
"${PREFIX}/share/pixmaps/${PORTNAME}.png" \
|
|
"beediff" \
|
|
"" \
|
|
true
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/beediff ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/img/beediff.png ${STAGEDIR}${PREFIX}/share/pixmaps
|
|
|
|
.include <bsd.port.mk>
|