Sat Aug 31 02:09:25 2013 UTC ()
Always create symbolic links avoid to use ".so" macro and stop ugly
messages from daily (or weekly).

Rebuilding man page index:
man-gpl-tmp2/mysql_client_test.1: No such file or directory
man-gpl-tmp2/mysqltest.1: No such file or directory

Bump PKGREVISION.


(taca)
diff -r1.6 -r1.7 pkgsrc/databases/mysql56-client/Makefile

cvs diff -r1.6 -r1.7 pkgsrc/databases/mysql56-client/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/mysql56-client/Makefile 2013/06/18 19:59:35 1.6
+++ pkgsrc/databases/mysql56-client/Makefile 2013/08/31 02:09:25 1.7
@@ -1,38 +1,37 @@ @@ -1,38 +1,37 @@
1# $NetBSD: Makefile,v 1.6 2013/06/18 19:59:35 joerg Exp $ 1# $NetBSD: Makefile,v 1.7 2013/08/31 02:09:25 taca Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/-client-/} 3PKGNAME= ${DISTNAME:S/-/-client-/}
 4PKGREVISION= 1
4SVR4_PKGNAME= mysqc 5SVR4_PKGNAME= mysqc
5COMMENT= MySQL 5, a free SQL database (client) 6COMMENT= MySQL 5, a free SQL database (client)
6 7
7CONFLICTS= {mysql-client-[0-9]*,mysql3-client-[0-9]*} 8CONFLICTS= {mysql-client-[0-9]*,mysql3-client-[0-9]*}
8 9
9.include "Makefile.common" 10.include "Makefile.common"
10 11
11CMAKE_ARGS+= -DWITHOUT_SERVER=ON 12CMAKE_ARGS+= -DWITHOUT_SERVER=ON
12UNWRAP_FILES+= scripts/mysql_config 13UNWRAP_FILES+= scripts/mysql_config
13INFO_FILES= yes 14INFO_FILES= yes
14INSTALL_DIRS+= client include libmysql man scripts tests 15INSTALL_DIRS+= client include libmysql man scripts tests
15 16
16REPLACE_PERL= scripts/mysql_convert_table_format.sh 17REPLACE_PERL= scripts/mysql_convert_table_format.sh
17REPLACE_PERL+= scripts/mysql_find_rows.sh 18REPLACE_PERL+= scripts/mysql_find_rows.sh
18REPLACE_PERL+= scripts/mysql_fix_extensions.sh 19REPLACE_PERL+= scripts/mysql_fix_extensions.sh
19REPLACE_PERL+= scripts/mysql_install_db.pl.in 20REPLACE_PERL+= scripts/mysql_install_db.pl.in
20REPLACE_PERL+= scripts/mysql_secure_installation.pl.in 21REPLACE_PERL+= scripts/mysql_secure_installation.pl.in
21REPLACE_PERL+= scripts/mysql_setpermission.sh 22REPLACE_PERL+= scripts/mysql_setpermission.sh
22REPLACE_PERL+= scripts/mysql_zap.sh 23REPLACE_PERL+= scripts/mysql_zap.sh
23REPLACE_PERL+= scripts/mysqlaccess.sh 24REPLACE_PERL+= scripts/mysqlaccess.sh
24REPLACE_PERL+= scripts/mysqld_multi.sh 25REPLACE_PERL+= scripts/mysqld_multi.sh
25REPLACE_PERL+= scripts/mysqldumpslow.sh 26REPLACE_PERL+= scripts/mysqldumpslow.sh
26REPLACE_PERL+= scripts/mysqlhotcopy.sh 27REPLACE_PERL+= scripts/mysqlhotcopy.sh
27 28
28# Replace manual pages which only include other ones with a symbolic link 29# Replace manual pages which only include other ones with a symbolic link
29# if manual compression is activated. The manual pages won't work otherwise. 30# It is for manual compression is activated or mandoc(1) is used.
30.if defined(MANZ) 
31post-install: 31post-install:
32. for mf in mysql_client_test_embedded.1 mysqltest_embedded.1 32.for mf in mysql_client_test_embedded.1 mysqltest_embedded.1
33 ${RM} -f ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/${mf} 33 ${RM} -f ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/${mf}
34 ${LN} -s ${mf:S/_embedded//} ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/${mf} 34 ${LN} -s ${mf:S/_embedded//} ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/${mf}
35. endfor 35.endfor
36.endif 
37 36
38.include "../../mk/bsd.pkg.mk" 37.include "../../mk/bsd.pkg.mk"