blob: 5204f4ef06ea4d8c1070ddce5071bac5ce589fcc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# $NetBSD: Makefile,v 1.1.1.1 2009/02/26 21:52:00 plunky Exp $
DISTNAME= pam_fprint-0.2
PKGNAME= ${DISTNAME:S/_/-/}
CATEGORIES= security
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=fprint/}
EXTRACT_SUFX= .tar.bz2
MAINTAINER= plunky@rya-online.net
HOMEPAGE= http://reactivated.net/fprint/wiki/Pam_fprint
COMMENT= PAM module to provide authentication using fingerprint readers
PKG_DESTDIR_SUPPORT= user-destdir
GNU_CONFIGURE= yes
USE_LANGUAGES= c c++
USE_TOOLS+= gmake pkg-config
# Fix (workaround?) a bug with openpam/NetBSD
# The bug is described in PR security/39313.
#
.include "../../mk/bsd.prefs.mk"
#
.if ${OPSYS} == "NetBSD"
CFLAGS+= -DNO_STATIC_MODULES
.endif
.include "../../security/libfprint/buildlink3.mk"
.include "../../mk/pam.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|