ea8c8ec7da
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
41 lines
981 B
Makefile
41 lines
981 B
Makefile
# Created by: Anders Nordby <anders@fix.no>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pam_mysql
|
|
PORTVERSION= 0.7.r1
|
|
PORTREVISION= 6
|
|
CATEGORIES= security databases
|
|
MASTER_SITES= SF/pam-mysql/pam-mysql/0.7RC1
|
|
DISTNAME= ${PORTNAME}-0.7RC1${DISTVERSIONSUFFIX}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Pam module for authenticating with MySQL
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= compiler:c11 libtool:keepla
|
|
USE_MYSQL= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-mysql=${LOCALBASE} \
|
|
--with-pam-mods-dir=${PREFIX}/lib \
|
|
--with-pam=/usr
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
PORTDOCS= *
|
|
PLIST_FILES= lib/pam_mysql.so lib/pam_mysql.la
|
|
|
|
OPTIONS_DEFINE= DOCS SSL
|
|
SSL_DESC= Build with OpenSSL support (non-crypt()ish MD5 hash)
|
|
SSL_CONFIGURE_WITH= openssl
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/pam_mysql.so
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/ChangeLog ${WRKSRC}/NEWS \
|
|
${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|