ea8c8ec7da
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
52 lines
1.7 KiB
Makefile
52 lines
1.7 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= redisdesktopmanager
|
|
PORTVERSION= 2019.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= databases
|
|
|
|
MAINTAINER= swills@FreeBSD.org
|
|
COMMENT= Redis DB management tool
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libssh2.so:security/libssh2
|
|
|
|
USES= compiler:c++0x dos2unix gl kde:5 qmake qt:5 ssl
|
|
USE_GL= gl
|
|
USE_GITHUB= yes
|
|
|
|
DOS2UNIX_FILES= 3rdparty/3rdparty.pri
|
|
BUILD_WRKSRC= ${WRKSRC}/src
|
|
CONFIGURE_WRKSRC= ${WRKSRC}/src
|
|
INSTALL_WRKSRC= ${WRKSRC}/bin/freebsd/release
|
|
PLIST_FILES= bin/rdm \
|
|
share/pixmaps/rdm.png
|
|
DESKTOP_ENTRIES= "Redis Desktop Manager" \
|
|
"Redis Desktop Manager" \
|
|
"rdm.png" \
|
|
"rdm" \
|
|
"Development;" \
|
|
""
|
|
GH_TUPLE= uglide:RedisDesktopManager:${PORTVERSION}:DEFAULT/RedisDesktopManager-${PORTVERSION} \
|
|
benlau:asyncfuture:4579d53:asyncfuture/3rdparty/asyncfuture \
|
|
RedisDesktop:CrashReporter:0202f9b:crashreporter/3rdparty/crashreporter \
|
|
uglide:qredisclient:0a0cc36:qredisclient/3rdparty/qredisclient \
|
|
sijk:qt-unix-signals:d6a1d12:qtunixsignals/3rdparty/qt-unix-signals \
|
|
uglide:qsshclient:6fa7fb7:qsshclient/3rdparty/qredisclient/3rdparty/qsshclient \
|
|
redis:hiredis:6850306:hiredis/3rdparty/qredisclient/3rdparty/hiredis
|
|
USE_QT= charts concurrent core declarative gui network widgets \
|
|
buildtools_build qmake_build
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's|%%PORTVERSION%%|${PORTVERSION}|g' ${WRKSRC}/src/version.h
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/bin ${STAGEDIR}${PREFIX}/share/pixmaps
|
|
cd ${INSTALL_WRKSRC} ; \
|
|
${STRIP_CMD} rdm ; \
|
|
${INSTALL_PROGRAM} rdm ${STAGEDIR}${PREFIX}/bin/rdm
|
|
${INSTALL_DATA} ${BUILD_WRKSRC}/resources/rdm.png ${STAGEDIR}${PREFIX}/share/pixmaps/rdm.png
|
|
|
|
.include <bsd.port.mk>
|