beb1c1fe19
Ports using USES=lua:module or lua:flavors will be flavored. A range of supported lua versions can be set using XX-YY (or XX-, or -YY, or simply ZZ) for ports not supporting all lua versions. USES=lua sets LUA_FLAVOR that needs to be used on all dependencies of flavored lua ports, in a similar way as PHP or Python flavors. PR: 245038 Submitted by: andrew tao11 riddles org uk Reviewed by: mat, kevans, russ haley gmail com Approved by: mat (portmgr) Differential Revision: https://reviews.freebsd.org/D16494
35 lines
862 B
Makefile
35 lines
862 B
Makefile
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cardpeek
|
|
PORTVERSION= 0.8.4
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://downloads.pannetrat.com/install/
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= Tool for reading the contents of ISO 7816 smart cards
|
|
|
|
LICENSE= GPLv3
|
|
|
|
LIB_DEPENDS= libpcsclite.so:devel/pcsc-lite \
|
|
libcurl.so:ftp/curl
|
|
RUN_DEPENDS= pcscd:devel/pcsc-lite
|
|
|
|
USES= gnome iconv localbase lua:52 pkgconfig
|
|
USE_GNOME= gtk30
|
|
GNU_CONFIGURE= yes
|
|
INSTALLS_ICONS= yes
|
|
|
|
PLIST_FILES= bin/cardpeek man/man1/cardpeek.1.gz \
|
|
share/appdata/cardpeek.appdata.xml \
|
|
share/applications/cardpeek.desktop \
|
|
share/icons/hicolor/48x48/apps/cardpeek-logo.png
|
|
PORTDOCS= AUTHORS README cardpeek_ref.en.pdf
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's,^doc_DATA =,& AUTHORS README,' \
|
|
${WRKSRC}/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|