View | Details | Raw Unified | Return to bug 93794
Collapse All | Expand All

(-)security/pam_bsdbioapi/Makefile (-1 / +31 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	pam_bsdbioapi
8
PORTNAME=	pam_bsdbioapi
9
PORTVERSION=	1.0
9
PORTVERSION=	1.5
10
CATEGORIES=	security
10
CATEGORIES=	security
11
MASTER_SITES=	http://shapeshifter.se/pub/pam_bsdbioapi/
11
MASTER_SITES=	http://shapeshifter.se/pub/pam_bsdbioapi/
12
12
Lines 15-24 Link Here
15
15
16
LIB_DEPENDS=	bioapi100.0:${PORTSDIR}/security/bioapi
16
LIB_DEPENDS=	bioapi100.0:${PORTSDIR}/security/bioapi
17
17
18
INSTALLS_SHLIB= yes
19
SUB_FILES=	pkg-message
18
MAN8=		pam_bsdbioapi.8
20
MAN8=		pam_bsdbioapi.8
21
MAN3=		libbirdb.3
22
MAN1=		bbdm.1
23
24
OPTIONS=	FILEDB "Filebacked database backend" on \
25
			MYSQL  "MySQL backend" off \
26
			PLAIN  "Plain ASCII backend" on 
19
27
20
.include <bsd.port.pre.mk>
28
.include <bsd.port.pre.mk>
21
29
30
PLIST_FILES = etc/birdb.conf.sample
31
BACKENDS=
32
.if defined(WITH_FILEDB)
33
BACKENDS+=	filedb
34
PLIST_FILES+= share/birdb/birdb_filedb.so
35
.endif
36
.if defined(WITH_MYSQL)
37
USE_MYSQL=  yes
38
BACKENDS+=	mysql
39
PLIST_FILES+= share/birdb/birdb_mysql.so
40
.endif
41
.if defined(WITH_PLAIN)
42
BACKENDS+=	plain
43
PLIST_FILES+= share/birdb/birdb_plain.so
44
.endif
45
46
MAKE_ENV=BACKENDS="${BACKENDS}"
47
48
post-install:
49
	${INSTALL} ${WRKSRC}/etc/birdb.conf ${PREFIX}/etc/birdb.conf.sample
50
	@${CAT} ${PKGMESSAGE}
51
22
.if ${OSVERSION} < 500000
52
.if ${OSVERSION} < 500000
23
IGNORE=		needs at least FreeBSD 5.0-RELEASE
53
IGNORE=		needs at least FreeBSD 5.0-RELEASE
24
.endif
54
.endif
(-)security/pam_bsdbioapi/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (pam_bsdbioapi-1.0.tar.gz) = 04c3ad00c08865d205f131813484f9a5
1
MD5 (pam_bsdbioapi-1.5.tar.gz) = 148a4dd4be43ba6a86554375264e2c88
2
SHA256 (pam_bsdbioapi-1.0.tar.gz) = 6bed45702320c674d385ece24603591e818dfb43d34b0b3e4a70be8c6d567531
2
SHA256 (pam_bsdbioapi-1.5.tar.gz) = 8aed40bd942c9f3230eaba478736a3203be31e3d10574cdd812d4f03bf3cea78
3
SIZE (pam_bsdbioapi-1.0.tar.gz) = 4640
3
SIZE (pam_bsdbioapi-1.5.tar.gz) = 27827
(-)security/pam_bsdbioapi/pkg-descr (+4 lines)
Lines 1-4 Link Here
1
The (BSD) BioAPI service module for PAM provides authentication management
1
The (BSD) BioAPI service module for PAM provides authentication management
2
through BioAPI BSPs.
2
through BioAPI BSPs.
3
3
4
Features includes support for multiple database backends for BIR storage,
5
BSP message callback translation for easy integration with graphical login
6
managers such as GDM.
7
4
WWW: http://shapeshifter.se/code/pam_bsdbioapi
8
WWW: http://shapeshifter.se/code/pam_bsdbioapi
(-)security/pam_bsdbioapi/pkg-plist (-2 / +8 lines)
Lines 1-3 Link Here
1
lib/libpam_bsdbioapi.a
1
sbin/bbdm
2
lib/libpam_bsdbioapi_p.a
2
include/birdb.h
3
lib/libbirdb.so.0
4
lib/libbirdb.a
5
lib/libbirdb.so
3
lib/pam_bsdbioapi.so
6
lib/pam_bsdbioapi.so
7
@dirrm share/birdb
8
share/pam_bsdbioapi/upek_touchchip.cmsg
9
@dirrm share/pam_bsdbioapi
(-)security/pam_bsdbioapi/files/pkg-message.in (+10 lines)
Added Link Here
1
2
**********************************************************
3
4
 A sample configuration file for libbirdb has been copied
5
 to %%PREFIX%%/etc/birdb.conf.sample
6
 You need to create a birdb.conf file before pam_bsdbioapi
7
 can run properly. 
8
 
9
**********************************************************
10

Return to bug 93794