mirror of
https://git.freebsd.org/ports.git
synced 2025-06-01 02:46:27 -04:00
Most USES use a colon for build/run(/test) suffixes. Change kde.mk, qt.mk and pyqt.mk to do the same, and update all ports using that. Document in CHANGES. PR: 266034 Exp-run by: antoine Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D36349
38 lines
1.3 KiB
Makefile
38 lines
1.3 KiB
Makefile
PORTNAME= yubikey-personalization-gui
|
|
PORTVERSION= 3.1.25
|
|
DISTVERSIONPREFIX= ${PORTNAME}-
|
|
PORTREVISION= 4
|
|
CATEGORIES= security
|
|
|
|
MAINTAINER= romain@FreeBSD.org
|
|
COMMENT= Graphical YubiKey personalization tool
|
|
WWW= https://github.com/Yubico/yubikey-personalization-gui
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libykpers-1.so:security/ykpers \
|
|
libyubikey.so:security/libyubikey
|
|
|
|
USES= compiler:c++11-lang pkgconfig qmake qt:5
|
|
USE_GITHUB= yes
|
|
USE_QT= buildtools:build core gui testlib:build widgets
|
|
|
|
GH_ACCOUNT= Yubico
|
|
|
|
PLIST_FILES= bin/yubikey-personalization-gui \
|
|
man/man1/yubikey-personalization-gui.1.gz \
|
|
share/applications/yubikey-personalization-gui.desktop \
|
|
share/pixmaps/yubikey-personalization-gui.png \
|
|
share/pixmaps/yubikey-personalization-gui.xpm
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/build/release/${PORTNAME} \
|
|
${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/resources/lin/${PORTNAME}.desktop \
|
|
${STAGEDIR}${DESKTOPDIR}
|
|
${INSTALL_MAN} ${WRKSRC}/resources/lin/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
${INSTALL_DATA} ${WRKSRC}/resources/lin/${PORTNAME}.png ${STAGEDIR}${PREFIX}/share/pixmaps
|
|
${INSTALL_DATA} ${WRKSRC}/resources/lin/${PORTNAME}.xpm ${STAGEDIR}${PREFIX}/share/pixmaps
|
|
|
|
.include <bsd.port.mk>
|