aboutsummaryrefslogtreecommitdiff
path: root/security/keepass/Makefile
blob: 8320561c6d94d43ec448e91824f6f9f5f383f7bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Created by: Ben Woods <woodsb02@gmail.com>
# $FreeBSD$

PORTNAME=	keepass
PORTVERSION=	2.30
PORTREVISION=	1
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+

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-conrad

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>