mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-05 06:27:37 +00:00
803483e33e
The 'Portable QR-Code Generator' is a free Java program which generates QR Codes from - WLAN credentials: SSID, network key and and network type (WEP, WPA/WPA2, not encrypted) - VCard-Import o Inlined images can optionally be removed to reduce the size of the generated QR Code o VCards up to version 3 (inclusive) are supported o You can import the cards via drag&drop or by selecting them in a file chooser dialog o Supports a broad range of character encodings (ISO-8859-1, UTF-8, UTF-16,) the actual number depends on the Java Virtual Machine you are using. - VCard generator - e-mail addresses - URLs - free text - geographic coordinates The QR Code can be printed, saved as BMP, GIF or PNG, or copied to clipboard to use in other applications. WWW: https://sites.google.com/site/qrcodeforwn/home/qr-code-generator-for-wireless-networks
45 lines
967 B
Makefile
45 lines
967 B
Makefile
# Created by: Lars Engels <lme@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= qrcodegen
|
|
PORTVERSION= 1.14.2
|
|
CATEGORIES= textproc java
|
|
MASTER_SITES= http://bsd-geek.de/FreeBSD/distfiles/
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION}
|
|
|
|
MAINTAINER= lme@FreeBSD.org
|
|
COMMENT= GUI to generate QR codes
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
USES= zip:infozip
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.6+
|
|
SUB_FILES= qrcodegen
|
|
|
|
INSTALLFILES= FAQ.txt Installation.txt NOTICE QRCodeGen.jar Version.html
|
|
|
|
DESKTOP_ENTRIES="Portable QR-Code Generator" \
|
|
"${COMMENT}" \
|
|
"" \
|
|
"qrcodegen" \
|
|
"Utility;2DGraphics;Java;" \
|
|
false
|
|
|
|
do-extract:
|
|
@${RM} -r ${WRKDIR}
|
|
@${MKDIR} ${WRKSRC}
|
|
@${UNZIP_CMD} -q -j -d ${WRKSRC} ${DISTDIR}/${EXTRACT_ONLY}
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}
|
|
.for i in ${INSTALLFILES}
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DATADIR}/
|
|
.endfor
|
|
${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
|
|
|
|
.include <bsd.port.mk>
|