mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-24 09:25:01 +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
31 lines
671 B
Makefile
31 lines
671 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= xcwcp
|
|
|
|
COMMENT= X11 CW Tutor using unixcw
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libcw.so:comms/unixcw
|
|
|
|
MASTERDIR= ${.CURDIR}/../unixcw
|
|
|
|
PLIST= ${.CURDIR}/pkg-plist
|
|
USE_QT= buildtools gui widgets qmake_build
|
|
USES= gettext qt:5
|
|
# Qt from 5.7.0 on requires c++11.
|
|
USE_CXXSTD= c++11
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --enable-xcwcp
|
|
XCWCP= yes
|
|
PLIST_FILES= bin/xcwcp \
|
|
man/man1/xcwcp.1.gz
|
|
LDFLAGS+= -L${LOCALBASE}/lib -lintl
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/xcwcp/xcwcp ${STAGEDIR}${PREFIX}/bin/
|
|
${INSTALL_DATA} ${WRKSRC}/src/xcwcp/xcwcp.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include "${MASTERDIR}/Makefile"
|