diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-08-30 06:48:11 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-08-30 06:48:11 +0000 |
commit | 60c908d57b7dd40783f4015897d352e3123e774e (patch) | |
tree | 81571c99da5ca9c028c0c75279bdb91a32862d74 /net/libnss-mysql/files/patch-Makefile.in | |
parent | Maybe that added an empty line to this file will force it to stay (diff) |
net/libnss-mysql (NSS module using a MySQL database for backend)
libNSS-MySQL allows you to authenticate UNIX groups and
users using a MySQL database. It uses the NSS API which
provides an abstraction layer between the UNIX authentication
API and the related data. NSS-MySQL currently supports the
passwd and groups services. Version 1.0 has native FreeBSD
suppport.
PR: ports/54423
Submitted by: Clement Laforet <sheepkiller@cultdeadsheep.org>
Notes
Notes:
svn path=/head/; revision=88053
Diffstat (limited to 'net/libnss-mysql/files/patch-Makefile.in')
-rw-r--r-- | net/libnss-mysql/files/patch-Makefile.in | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/net/libnss-mysql/files/patch-Makefile.in b/net/libnss-mysql/files/patch-Makefile.in new file mode 100644 index 000000000000..cc1d50b2f8be --- /dev/null +++ b/net/libnss-mysql/files/patch-Makefile.in @@ -0,0 +1,22 @@ +--- Makefile.in.orig Sat Jul 12 21:43:29 2003 ++++ Makefile.in Sat Jul 12 21:45:55 2003 +@@ -492,16 +492,13 @@ + + + install-data-hook: +- @if test ! -f ${DESTDIR}${sysconfdir}/libnss-mysql.cfg; then \ + ${srcdir}/mkinstalldirs ${DESTDIR}${sysconfdir}; \ + ${INSTALL_DATA} ${srcdir}/sample/@OS@/libnss-mysql.cfg \ +- ${DESTDIR}${sysconfdir}/libnss-mysql.cfg; \ +- fi +- @if test ! -f ${DESTDIR}${sysconfdir}/libnss-mysql-root.cfg; then \ ++ ${DESTDIR}${sysconfdir}/libnss-mysql.cfg-dist; \ + ${srcdir}/mkinstalldirs ${DESTDIR}${sysconfdir}; \ + ${INSTALL_DATA} -m 600 ${srcdir}/sample/@OS@/libnss-mysql-root.cfg \ +- ${DESTDIR}${sysconfdir}/libnss-mysql-root.cfg; \ +- fi ++ ${DESTDIR}${sysconfdir}/libnss-mysql-root.cfg-dist; \ ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: |