90a49f0472
With hat: portmgr Sponsored by: Absolight
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
# Created by: Thomas Hurst <tom@hur.st>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= lastpass-cli
|
|
PORTVERSION= 0.5.1
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= security
|
|
|
|
MAINTAINER= tom@hur.st
|
|
COMMENT= LastPass command line interface tool
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl
|
|
|
|
USES= gmake pkgconfig
|
|
USE_GNOME= libxml2
|
|
USE_OPENSSL= yes
|
|
|
|
USE_GITHUB= YES
|
|
GH_ACCOUNT= lastpass
|
|
|
|
PLIST_FILES= bin/lpass
|
|
MAKE_ENV+= MANDIR=${MANPREFIX}/man
|
|
|
|
OPTIONS_DEFINE= MANPAGES PINENTRY XCLIP XSEL
|
|
OPTIONS_DEFAULT= MANPAGES
|
|
PINENTRY_DESC= Use pinentry for password entry
|
|
XCLIP_DESC= Use xclip for interacting with X11 clipboard
|
|
XSEL_DESC= Use xsel for interacting with X11 clipboard
|
|
|
|
MANPAGES_BUILD_DEPENDS= asciidoc:${PORTSDIR}/textproc/asciidoc \
|
|
xmlto:${PORTSDIR}/textproc/xmlto
|
|
MANPAGES_ALL_TARGET= all doc-man
|
|
MANPAGES_INSTALL_TARGET=install install-doc
|
|
MANPAGES_PLIST_FILES= ${MANPREFIX}/man/man1/lpass.1.gz
|
|
|
|
PINENTRY_RUN_DEPENDS= pinentry:${PORTSDIR}/security/pinentry
|
|
XCLIP_RUN_DEPENDS= xclip:${PORTSDIR}/x11/xclip
|
|
XSEL_RUN_DEPENDS= xsel:${PORTSDIR}/x11/xsel
|
|
|
|
post-extract:
|
|
@${REINPLACE_CMD} -e 's/-Wno-language-extension-token//g' \
|
|
${WRKSRC}/Makefile
|
|
|
|
.include <bsd.port.mk>
|