Changelogs: https://forum.kee.pm/t/release-notes-keepassrpc-1-9-0/2345 https://github.com/kee-org/keepassrpc/releases/tag/v1.10.0 https://github.com/kee-org/keepassrpc/releases/tag/v1.11.0 https://github.com/kee-org/keepassrpc/releases/tag/v1.12.0 https://github.com/kee-org/keepassrpc/releases/tag/v1.12.1 https://github.com/kee-org/keepassrpc/releases/tag/v1.13.0 https://github.com/kee-org/keepassrpc/releases/tag/v1.14.0 https://github.com/kee-org/keepassrpc/releases/tag/v1.15.0 https://github.com/kee-org/keepassrpc/releases/tag/v1.15.1 https://github.com/kee-org/keepassrpc/releases/tag/v1.16.0 https://github.com/kee-org/keepassrpc/releases/tag/v2.0.0 https://github.com/kee-org/keepassrpc/releases/tag/v2.0.1 https://github.com/kee-org/keepassrpc/releases/tag/v2.0.2 Security: https://forum.kee.pm/t/a-critical-security-update-for-keepassrpc-is-available/3040 https://forum.kee.pm/t/cve-2020-16271-warning-message/3143 PR: 280357 MFH: 2024Q3
42 lines
953 B
Makefile
42 lines
953 B
Makefile
PORTNAME= keepassrpc
|
|
PORTVERSION= 2.0.2
|
|
DISTVERSIONPREFIX=v
|
|
CATEGORIES= security
|
|
PKGNAMEPREFIX= keepass-plugin-
|
|
|
|
MAINTAINER= tiago.gasiba@gmail.com
|
|
COMMENT= KeePass plugin which facilitates the Kee Firefox plugin
|
|
WWW= https://www.kee.pm/
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= keepass>0:security/keepass \
|
|
msbuild:devel/msbuild
|
|
LIB_DEPENDS= libgdiplus.so:x11-toolkits/libgdiplus
|
|
|
|
USES= cpe mono
|
|
CPE_VENDOR= kee
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= kee-org
|
|
|
|
DATADIR= ${PREFIX}/share/keepass/Plugins
|
|
NO_ARCH= yes
|
|
|
|
OPTIONS_DEFINE= DEBUG
|
|
DEBUG_VARS= config=Debug
|
|
DEBUG_VARS_OFF= config=Release
|
|
|
|
do-build:
|
|
(cd ${WRKSRC} && \
|
|
${SETENV} ${MAKE_ENV} ${LOCALBASE}/bin/msbuild /t:KeePassRPC /p:Configuration=${CONFIG})
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}
|
|
(cd ${WRKSRC}/KeePassRPC/bin/${CONFIG} && \
|
|
${RM} ./KeePass.exe && \
|
|
${RM} ./KeePass.exe.config && \
|
|
${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR})
|
|
|
|
.include <bsd.port.mk>
|