blob: 9a2d6df2a5cb41da15744d1caf90ca66b0afd1fc (
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
68
|
# $FreeBSD$
PORTNAME= password-store
PORTVERSION= 1.4.2
CATEGORIES= sysutils
MASTER_SITES= http://git.zx2c4.com/password-store/snapshot/
MAINTAINER= milki@rescomp.berkeley.edu
COMMENT= Stores, retrieves, generates, and synchronizes passwords securely
LICENSE= GPLv2
RUN_DEPENDS= bash>=0:${PORTSDIR}/shells/bash \
gnupg>=2:${PORTSDIR}/security/gnupg \
pwgen>=0:${PORTSDIR}/sysutils/pwgen \
tree>=0:${PORTSDIR}/sysutils/tree
OPTIONS_DEFINE= GIT XCLIP
GIT_DESC= Enable git storage
XCLIP_DESC= Enable xclip feature
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MGIT}
RUN_DEPENDS+= git>=0:${PORTSDIR}/devel/git
.endif
.if ${PORT_OPTIONS:MXCLIP}
RUN_DEPENDS+= base64>=0:${PORTSDIR}/converters/base64 \
xclip>=0:${PORTSDIR}/x11/xclip
.endif
do-patch:
.if empty(PORT_OPTIONS:MGIT) && empty(PORT_OPTIONS:MXCLIP)
(cd ${WRKSRC} && ${PATCH} < ${PATCHDIR}/linuxism+git+xclip.patch)
.elif empty(PORT_OPTIONS:MGIT)
(cd ${WRKSRC} && ${PATCH} < ${PATCHDIR}/linuxism+git.patch)
.elif empty(PORT_OPTIONS:MXCLIP)
(cd ${WRKSRC} && ${PATCH} < ${PATCHDIR}/linuxism+xclip.patch)
.else
(cd ${WRKSRC} && ${PATCH} < ${PATCHDIR}/linuxism.patch)
.endif
# empty to skip make
do-build:
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/src/password-store.sh ${PREFIX}/libexec/pass
@${LN} -s ${PREFIX}/libexec/pass ${PREFIX}/bin/pass
@${MKDIR} ${DATADIR}
${INSTALL_DATA} ${WRKSRC}/contrib/pass.bash-completion ${DATADIR}/
${INSTALL_DATA} ${WRKSRC}/contrib/pass.zsh-completion ${DATADIR}/
${INSTALL_DATA} ${WRKSRC}/contrib/pass.fish-completion ${DATADIR}/
${INSTALL_DATA} ${WRKSRC}/man/pass.1 ${MANPREFIX}/man/man1/pass.1
MAN1= pass.1
MANCOMPRESSED= no
PLIST_FILES= bin/pass \
libexec/pass \
share/password-store/pass.bash-completion \
share/password-store/pass.zsh-completion \
share/password-store/pass.fish-completion
PLIST_DIRS= share/password-store
.include <bsd.port.mk>
|