blob: 770085de3d39e75cac575201772f9f6f22d65106 (
plain) (
blame)
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
31
32
33
|
# Created by: Mark Felder <feld@FreeBSD.org>
# $FreeBSD$
PORTNAME= percona57
PORTREVISION?= 0
PKGNAMESUFFIX= -pam-for-mysql
COMMENT= PAM plugin for MySQL
LICENSE= GPLv2+
RUN_DEPENDS=# This plugin has no run dependencies. It should work with any desired mysql client/server.
MASTERDIR= ${.CURDIR}/../percona57-server
PKGMESSAGE= ${.CURDIR}/pkg-message
PATCHDIR= ${MASTERDIR}/files
FILESDIR= ${.CURDIR}/files
PLIST= ${.CURDIR}/pkg-plist
DESCR= ${.CURDIR}/pkg-descr
CONFLICTS_INSTALL= percona5[0-68-9]-pam-for-mysql* \
percona-pam-for-mysql*
CMAKE_ARGS+= -DWITH_PAM=1
PLUGIN_ONLY= yes
do-install:
(cd ${WRKSRC}/plugin/percona-pam-for-mysql && ${MAKE} ${MAKE_ARGS} install)
${INSTALL_DATA} ${FILESDIR}/pam.conf ${STAGEDIR}${PREFIX}/etc/pam.d/mysqld.sample
.include "${MASTERDIR}/Makefile"
|