freebsd-ports/sysutils/qtpass/Makefile
Dmitri Goutnik 0c5586a4ca sysutils/qtpass: Update to 1.3.2
- Pet portclippy while here

Changelog:

 * First run and build fixes #482 #473 #467 #479 (maciejsszmigiero)
 * Add OTP (two factor authentication) support #327 #394 (Noettore)
 * Display passwords as QR codes #421 (frawi)
 * Renaming password #463 #469 (Noettore)
 * Correct font color with Dark themes #340 #476 (a-andreyev)
 * Sorted profiles dropdown as in #404 #472 (Noettore)

PR:		241176
Submitted by:	Anne Jan Brouwer <brouwer@annejan.com> (maintainer)
Approved by:	tz (mentor)
Differential Revision:	https://reviews.freebsd.org/D21973
2019-10-10 19:45:49 +00:00

42 lines
950 B
Makefile

# $FreeBSD$
PORTNAME= qtpass
DISTVERSIONPREFIX= v
DISTVERSION= 1.3.2
CATEGORIES= sysutils
MAINTAINER= brouwer@annejan.com
COMMENT= Qt GUI for pass, the standard unix password manager
LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= pass:sysutils/password-store
USES= compiler:c++11-lang gl qmake:outsource qt:5 xorg
USE_GITHUB= yes
GH_ACCOUNT= IJhack
GH_PROJECT= QtPass
USE_GL= gl
USE_QT= core gui network testlib widgets buildtools_build linguisttools_build
# Create a desktop entry for the port.
DESKTOP_ENTRIES= "QtPass" "" \
"${PREFIX}/share/pixmaps/qtpass.png" \
"${PREFIX}/bin/qtpass" \
"Security;Utility;" true
PLIST_FILES= bin/qtpass \
share/pixmaps/qtpass.png
# Fix build with Qt 5.13
pre-build:
cd ${WRKSRC}/localization && ${LRELEASE} *ts
# Install the icon of the port.
post-install:
${INSTALL_DATA} ${WRKSRC}/artwork/icon.png \
${STAGEDIR}${PREFIX}/share/pixmaps/qtpass.png
.include <bsd.port.mk>