forked from Lainports/freebsd-ports
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
34 lines
917 B
Makefile
34 lines
917 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= luckybackup
|
|
PORTVERSION= 0.4.9
|
|
PORTREVISION= 2
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTVERSION}/source
|
|
|
|
MAINTAINER= jhale@FreeBSD.org
|
|
COMMENT= Qt frontend to the backup utility rsync
|
|
|
|
LICENSE= GPLv3+
|
|
LICENSE_FILE= ${WRKSRC}/license/gpl.txt
|
|
|
|
RUN_DEPENDS= rsync:net/rsync
|
|
|
|
USES= compiler:c++11-lang qmake qt:5
|
|
|
|
USE_GL= gl
|
|
USE_QT= core gui network widgets buildtools_build
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's|/usr|$$$${PREFIX}|g' -e '/INSTALLS/s|debianmenu ||' \
|
|
-e '/manpage/s|share/||' -e 's|QMAKE_STRIP.*|QMAKE_STRIP = ${STRIP_CMD}|g' \
|
|
${WRKSRC}/luckybackup.pro
|
|
${REINPLACE_CMD} -e 's|/usr/bin/||g' -e 's|/usr/share/pixmaps/||g' \
|
|
${WRKSRC}/menu/*.desktop
|
|
${REINPLACE_CMD} -e 's|/usr|${LOCALBASE}|g' \
|
|
${WRKSRC}/src/executenow.cpp
|
|
${REINPLACE_CMD} -e 's|/usr|${PREFIX}|g' \
|
|
${WRKSRC}/src/global.cpp \
|
|
${WRKSRC}/src/scheduleDialog.cpp
|
|
|
|
.include <bsd.port.mk>
|