freebsd-ports/security/keepass/Makefile
Pawel Pekala c7b9866617 - Make xsel run dependency optional - it makes clipboard pasting
not working under some conditions [1]
- Make xdotool also optional
- Add NO_ARCH

PR:		200931 [1]
Submitted by:	Sascha Holzleiter <sascha@root-login.org> [1]
Approved by:	maintainer [1]
2015-06-26 19:49:15 +00:00

66 lines
2 KiB
Makefile

# Created by: Ben Woods <woodsb02@gmail.com>
# $FreeBSD$
PORTNAME= keepass
PORTVERSION= 2.29
CATEGORIES= security
MASTER_SITES= SF/${PORTNAME}/KeePass%202.x/${PORTVERSION}
DISTNAME= KeePass-${PORTVERSION}-Source
MAINTAINER= woodsb02@gmail.com
COMMENT= Light-weight and easy-to-use password manager
LICENSE= GPLv2 # or later
BUILD_DEPENDS= icotool:${PORTSDIR}/graphics/icoutils
LIB_DEPENDS= libgcrypt.so:${PORTSDIR}/security/libgcrypt \
libgdiplus.so:${PORTSDIR}/x11-toolkits/libgdiplus
EXTRACT_AFTER_ARGS= -d ${WRKDIR}/${DISTNAME}
USES= cpe dos2unix mono zip
DOS2UNIX_GLOB= *.csproj *.sln
INSTALLS_ICONS= yes
SUB_FILES= ${PORTNAME}.sh
NO_ARCH= yes
DESKTOP_ENTRIES="KeePass" \
"${COMMENT}" \
"${PORTNAME}" \
"keepass.sh" \
"Utility;" \
true
OPTIONS_DEFINE= XDOTOOL XSEL
XDOTOOL_DESC= Use the xdotool utility for auto-typing passwords
XSEL_DESC= Use the xsel utility for clipboard copying
OPTIONS_DEFAULT= XDOTOOL XSEL
XDOTOOL_RUN_DEPENDS= xdotool:${PORTSDIR}/x11/xdotool
XSEL_RUN_DEPENDS= xsel:${PORTSDIR}/x11/xsel
do-build:
# Extract icons
(cd ${WRKSRC} && ${LOCALBASE}/bin/icotool -x KeePass/KeePass.ico)
# Prepare build
(cd ${WRKSRC}/Build && ${SH} PrepMonoDev.sh)
# Do build
(cd ${WRKSRC} && \
${SETENV} ${MAKE_ENV} ${LOCALBASE}/bin/xbuild /t:KeePass /p:Configuration=Release)
do-install:
@${MKDIR} ${STAGEDIR}${DATADIR}
${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}.sh ${STAGEDIR}${PREFIX}/bin
${INSTALL_DATA} ${WRKSRC}/Build/KeePass/Release/KeePass.exe ${STAGEDIR}${DATADIR}
${INSTALL_DATA} ${WRKSRC}/Ext/KeePass.config.xml ${STAGEDIR}${DATADIR}
${INSTALL_DATA} ${WRKSRC}/Ext/KeePass.exe.config ${STAGEDIR}${DATADIR}
@(cd ${WRKSRC}/Ext && ${COPYTREE_SHARE} XSL ${STAGEDIR}${DATADIR})
.for size in 16 32 48 256
@${MKDIR} ${STAGEDIR}${LOCALBASE}/share/icons/hicolor/${size}x${size}/apps
${INSTALL_DATA} ${WRKSRC}/KeePass_*_${size}x${size}x32.png \
${STAGEDIR}${LOCALBASE}/share/icons/hicolor/${size}x${size}/apps/keepass.png
.endfor
.include <bsd.port.mk>