- There was no obvious reason to split these ports, and it makes porting simpler; the set of ports using either mostly coincided. Exp-run by: antoine PR: 223687 PR: 232751
48 lines
1.8 KiB
Makefile
48 lines
1.8 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= redisdesktopmanager
|
|
PORTVERSION= 0.9.6
|
|
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= dos2unix gl kde:5 qmake qt:5 ssl
|
|
DOS2UNIX_FILES= 3rdparty/3rdparty.pri
|
|
USE_GL= gl
|
|
USE_GITHUB= yes
|
|
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 \
|
|
easylogging:easyloggingpp:f926802:easylogging/3rdparty/easyloggingpp \
|
|
uglide:qredisclient:bede971:qredisclient/3rdparty/qredisclient \
|
|
sijk:qt-unix-signals:d6a1d12:qtunixsignals/3rdparty/qt-unix-signals \
|
|
uglide:qsshclient:6fa7fb7:qsshclient/3rdparty/qredisclient/3rdparty/qsshclient \
|
|
redis:hiredis:53c3243:hiredis/3rdparty/qredisclient/3rdparty/hiredis \
|
|
libssh2:libssh2:62b825c:libssh2/3rdparty/qredisclient/3rdparty/qsshclient/3rdparty/libssh2
|
|
USE_QT= buildtools_build charts concurrent core declarative gui network qmake_build widgets
|
|
|
|
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>
|