diff options
author | ale <ale@FreeBSD.org> | 2004-09-25 00:21:27 +0800 |
---|---|---|
committer | ale <ale@FreeBSD.org> | 2004-09-25 00:21:27 +0800 |
commit | 030410a85ff989400a9ab46aaecad364aec587f6 (patch) | |
tree | ee943f3c1eb07400aa1c8bfdbfb29bce380ad780 /databases | |
parent | a4e424c1991136e676c5d006554a4dca05069ea8 (diff) | |
download | freebsd-ports-gnome-030410a85ff989400a9ab46aaecad364aec587f6.tar.gz freebsd-ports-gnome-030410a85ff989400a9ab46aaecad364aec587f6.tar.zst freebsd-ports-gnome-030410a85ff989400a9ab46aaecad364aec587f6.zip |
- Fix mysqlhotdump vulnerability
- Fix plist (don't install .la files)
Approved by: portmgr (marcus)
Diffstat (limited to 'databases')
29 files changed, 360 insertions, 83 deletions
diff --git a/databases/mysql50-client/Makefile b/databases/mysql50-client/Makefile index 75d3af17afbc..ef007652addc 100644 --- a/databases/mysql50-client/Makefile +++ b/databases/mysql50-client/Makefile @@ -6,7 +6,6 @@ # PORTNAME= mysql -PORTREVISION= 2 PKGNAMESUFFIX= -client COMMENT= Multithreaded SQL database (client) diff --git a/databases/mysql50-scripts/Makefile b/databases/mysql50-scripts/Makefile index 8cb8c1a5df2a..38175bad4739 100644 --- a/databases/mysql50-scripts/Makefile +++ b/databases/mysql50-scripts/Makefile @@ -6,7 +6,6 @@ # PORTNAME= mysql -PORTREVISION= 1 PKGNAMESUFFIX= -scripts COMMENT= Multithreaded SQL database (scripts) diff --git a/databases/mysql50-server/Makefile b/databases/mysql50-server/Makefile index 6f0c34ecd24c..cc535fc107b6 100644 --- a/databases/mysql50-server/Makefile +++ b/databases/mysql50-server/Makefile @@ -29,8 +29,7 @@ COMMENT?= Multithreaded SQL database (server) SLAVEDIRS= databases/mysql50-client PKGINSTALL?= ${WRKDIR}/pkg-install DB_DIR?= /var/db/mysql -USE_GNOME= lthack -USE_LIBTOOL_VER= 13 +USE_LIBTOOL_VER=15 USE_REINPLACE= yes CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} @@ -67,7 +66,7 @@ CONFIGURE_ARGS+=--with-mysqld-ldflags=-all-static .include <bsd.port.pre.mk> -.if ${MACHINE_ARCH} == "i386" +.if ${ARCH} == "i386" CONFIGURE_ARGS+=--enable-assembler --with-berkeley-db .endif .if defined(WITH_LINUXTHREADS) diff --git a/databases/mysql50-server/files/patch-configure b/databases/mysql50-server/files/patch-configure index ec52ce45dfb2..9eed46865e83 100644 --- a/databases/mysql50-server/files/patch-configure +++ b/databases/mysql50-server/files/patch-configure @@ -1,14 +1,14 @@ --- configure.orig Sun Dec 21 19:03:09 2003 +++ configure Wed Dec 24 10:40:53 2003 -@@ -9069,7 +9070,7 @@ - ;; - esac - fi --HOSTNAME=$ac_cv_path_HOSTNAME -+HOSTNAME="$ac_cv_path_HOSTNAME -s" - - if test -n "$HOSTNAME"; then - echo "$as_me:$LINENO: result: $HOSTNAME" >&5 +@@ -8128,8 +8128,6 @@ + # This can be used to rebuild libtool when needed + LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"; $ac_aux_dir/ltconfig $LIBTOOL_DEPS; + +-# Always use our own libtool. +-LIBTOOL='$(SHELL) $(top_builddir)/libtool' + + # Prevent multiple expansion + @@ -9261,43 +9262,8 @@ echo "$as_me:$LINENO: checking \"how to check if pid exists\"" >&5 echo $ECHO_N "checking \"how to check if pid exists\"... $ECHO_C" >&6 diff --git a/databases/mysql50-server/files/patch-scripts::mysqlhotcopy.sh b/databases/mysql50-server/files/patch-scripts::mysqlhotcopy.sh new file mode 100644 index 000000000000..19d4395fa09f --- /dev/null +++ b/databases/mysql50-server/files/patch-scripts::mysqlhotcopy.sh @@ -0,0 +1,49 @@ +--- scripts/mysqlhotcopy.sh.orig Sun Dec 21 19:01:29 2003 ++++ scripts/mysqlhotcopy.sh Thu Sep 23 11:02:45 2004 +@@ -7,6 +7,7 @@ + use File::Path; + use DBI; + use Sys::Hostname; ++use File::Temp; + + =head1 NAME + +@@ -607,7 +608,6 @@ + sub copy_index + { + my ($method, $files, $source, $target) = @_; +- my $tmpfile="$opt_tmpdir/mysqlhotcopy$$"; + + print "Copying indices for ".@$files." files...\n" unless $opt{quiet}; + foreach my $file (@$files) +@@ -633,23 +633,23 @@ + } + close OUTPUT || die "Error on close of $to: $!\n"; + } +- elsif ($opt{method} eq 'scp') ++ elsif ($opt{method} =~ /^scp\b/) + { +- my $tmp=$tmpfile; +- open(OUTPUT,">$tmp") || die "Can\'t create file $tmp: $!\n"; +- if (syswrite(OUTPUT,$buff) != length($buff)) ++ my ($fh, $tmp)=tempfile('mysqlhotcopy-XXXXXX', DIR => $opt_tmpdir); ++ die "Can\'t create/open file in $opt_tmpdir\n"; ++ if (syswrite($fh,$buff) != length($buff)) + { + die "Error when writing data to $tmp: $!\n"; + } +- close OUTPUT || die "Error on close of $tmp: $!\n"; +- safe_system("scp $tmp $to"); ++ close $fh || die "Error on close of $tmp: $!\n"; ++ safe_system("$opt{method} $tmp $to"); ++ unlink $tmp; + } + else + { + die "Can't use unsupported method '$opt{method}'\n"; + } + } +- unlink "$tmpfile" if ($opt{method} eq 'scp'); + } + + diff --git a/databases/mysql51-client/Makefile b/databases/mysql51-client/Makefile index 75d3af17afbc..ef007652addc 100644 --- a/databases/mysql51-client/Makefile +++ b/databases/mysql51-client/Makefile @@ -6,7 +6,6 @@ # PORTNAME= mysql -PORTREVISION= 2 PKGNAMESUFFIX= -client COMMENT= Multithreaded SQL database (client) diff --git a/databases/mysql51-scripts/Makefile b/databases/mysql51-scripts/Makefile index 8cb8c1a5df2a..38175bad4739 100644 --- a/databases/mysql51-scripts/Makefile +++ b/databases/mysql51-scripts/Makefile @@ -6,7 +6,6 @@ # PORTNAME= mysql -PORTREVISION= 1 PKGNAMESUFFIX= -scripts COMMENT= Multithreaded SQL database (scripts) diff --git a/databases/mysql51-server/Makefile b/databases/mysql51-server/Makefile index 6f0c34ecd24c..cc535fc107b6 100644 --- a/databases/mysql51-server/Makefile +++ b/databases/mysql51-server/Makefile @@ -29,8 +29,7 @@ COMMENT?= Multithreaded SQL database (server) SLAVEDIRS= databases/mysql50-client PKGINSTALL?= ${WRKDIR}/pkg-install DB_DIR?= /var/db/mysql -USE_GNOME= lthack -USE_LIBTOOL_VER= 13 +USE_LIBTOOL_VER=15 USE_REINPLACE= yes CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} @@ -67,7 +66,7 @@ CONFIGURE_ARGS+=--with-mysqld-ldflags=-all-static .include <bsd.port.pre.mk> -.if ${MACHINE_ARCH} == "i386" +.if ${ARCH} == "i386" CONFIGURE_ARGS+=--enable-assembler --with-berkeley-db .endif .if defined(WITH_LINUXTHREADS) diff --git a/databases/mysql51-server/files/patch-configure b/databases/mysql51-server/files/patch-configure index ec52ce45dfb2..9eed46865e83 100644 --- a/databases/mysql51-server/files/patch-configure +++ b/databases/mysql51-server/files/patch-configure @@ -1,14 +1,14 @@ --- configure.orig Sun Dec 21 19:03:09 2003 +++ configure Wed Dec 24 10:40:53 2003 -@@ -9069,7 +9070,7 @@ - ;; - esac - fi --HOSTNAME=$ac_cv_path_HOSTNAME -+HOSTNAME="$ac_cv_path_HOSTNAME -s" - - if test -n "$HOSTNAME"; then - echo "$as_me:$LINENO: result: $HOSTNAME" >&5 +@@ -8128,8 +8128,6 @@ + # This can be used to rebuild libtool when needed + LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"; $ac_aux_dir/ltconfig $LIBTOOL_DEPS; + +-# Always use our own libtool. +-LIBTOOL='$(SHELL) $(top_builddir)/libtool' + + # Prevent multiple expansion + @@ -9261,43 +9262,8 @@ echo "$as_me:$LINENO: checking \"how to check if pid exists\"" >&5 echo $ECHO_N "checking \"how to check if pid exists\"... $ECHO_C" >&6 diff --git a/databases/mysql51-server/files/patch-scripts::mysqlhotcopy.sh b/databases/mysql51-server/files/patch-scripts::mysqlhotcopy.sh new file mode 100644 index 000000000000..19d4395fa09f --- /dev/null +++ b/databases/mysql51-server/files/patch-scripts::mysqlhotcopy.sh @@ -0,0 +1,49 @@ +--- scripts/mysqlhotcopy.sh.orig Sun Dec 21 19:01:29 2003 ++++ scripts/mysqlhotcopy.sh Thu Sep 23 11:02:45 2004 +@@ -7,6 +7,7 @@ + use File::Path; + use DBI; + use Sys::Hostname; ++use File::Temp; + + =head1 NAME + +@@ -607,7 +608,6 @@ + sub copy_index + { + my ($method, $files, $source, $target) = @_; +- my $tmpfile="$opt_tmpdir/mysqlhotcopy$$"; + + print "Copying indices for ".@$files." files...\n" unless $opt{quiet}; + foreach my $file (@$files) +@@ -633,23 +633,23 @@ + } + close OUTPUT || die "Error on close of $to: $!\n"; + } +- elsif ($opt{method} eq 'scp') ++ elsif ($opt{method} =~ /^scp\b/) + { +- my $tmp=$tmpfile; +- open(OUTPUT,">$tmp") || die "Can\'t create file $tmp: $!\n"; +- if (syswrite(OUTPUT,$buff) != length($buff)) ++ my ($fh, $tmp)=tempfile('mysqlhotcopy-XXXXXX', DIR => $opt_tmpdir); ++ die "Can\'t create/open file in $opt_tmpdir\n"; ++ if (syswrite($fh,$buff) != length($buff)) + { + die "Error when writing data to $tmp: $!\n"; + } +- close OUTPUT || die "Error on close of $tmp: $!\n"; +- safe_system("scp $tmp $to"); ++ close $fh || die "Error on close of $tmp: $!\n"; ++ safe_system("$opt{method} $tmp $to"); ++ unlink $tmp; + } + else + { + die "Can't use unsupported method '$opt{method}'\n"; + } + } +- unlink "$tmpfile" if ($opt{method} eq 'scp'); + } + + diff --git a/databases/mysql54-client/Makefile b/databases/mysql54-client/Makefile index 75d3af17afbc..ef007652addc 100644 --- a/databases/mysql54-client/Makefile +++ b/databases/mysql54-client/Makefile @@ -6,7 +6,6 @@ # PORTNAME= mysql -PORTREVISION= 2 PKGNAMESUFFIX= -client COMMENT= Multithreaded SQL database (client) diff --git a/databases/mysql54-scripts/Makefile b/databases/mysql54-scripts/Makefile index 8cb8c1a5df2a..38175bad4739 100644 --- a/databases/mysql54-scripts/Makefile +++ b/databases/mysql54-scripts/Makefile @@ -6,7 +6,6 @@ # PORTNAME= mysql -PORTREVISION= 1 PKGNAMESUFFIX= -scripts COMMENT= Multithreaded SQL database (scripts) diff --git a/databases/mysql54-server/Makefile b/databases/mysql54-server/Makefile index 6f0c34ecd24c..cc535fc107b6 100644 --- a/databases/mysql54-server/Makefile +++ b/databases/mysql54-server/Makefile @@ -29,8 +29,7 @@ COMMENT?= Multithreaded SQL database (server) SLAVEDIRS= databases/mysql50-client PKGINSTALL?= ${WRKDIR}/pkg-install DB_DIR?= /var/db/mysql -USE_GNOME= lthack -USE_LIBTOOL_VER= 13 +USE_LIBTOOL_VER=15 USE_REINPLACE= yes CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} @@ -67,7 +66,7 @@ CONFIGURE_ARGS+=--with-mysqld-ldflags=-all-static .include <bsd.port.pre.mk> -.if ${MACHINE_ARCH} == "i386" +.if ${ARCH} == "i386" CONFIGURE_ARGS+=--enable-assembler --with-berkeley-db .endif .if defined(WITH_LINUXTHREADS) diff --git a/databases/mysql54-server/files/patch-configure b/databases/mysql54-server/files/patch-configure index ec52ce45dfb2..9eed46865e83 100644 --- a/databases/mysql54-server/files/patch-configure +++ b/databases/mysql54-server/files/patch-configure @@ -1,14 +1,14 @@ --- configure.orig Sun Dec 21 19:03:09 2003 +++ configure Wed Dec 24 10:40:53 2003 -@@ -9069,7 +9070,7 @@ - ;; - esac - fi --HOSTNAME=$ac_cv_path_HOSTNAME -+HOSTNAME="$ac_cv_path_HOSTNAME -s" - - if test -n "$HOSTNAME"; then - echo "$as_me:$LINENO: result: $HOSTNAME" >&5 +@@ -8128,8 +8128,6 @@ + # This can be used to rebuild libtool when needed + LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"; $ac_aux_dir/ltconfig $LIBTOOL_DEPS; + +-# Always use our own libtool. +-LIBTOOL='$(SHELL) $(top_builddir)/libtool' + + # Prevent multiple expansion + @@ -9261,43 +9262,8 @@ echo "$as_me:$LINENO: checking \"how to check if pid exists\"" >&5 echo $ECHO_N "checking \"how to check if pid exists\"... $ECHO_C" >&6 diff --git a/databases/mysql54-server/files/patch-scripts::mysqlhotcopy.sh b/databases/mysql54-server/files/patch-scripts::mysqlhotcopy.sh new file mode 100644 index 000000000000..19d4395fa09f --- /dev/null +++ b/databases/mysql54-server/files/patch-scripts::mysqlhotcopy.sh @@ -0,0 +1,49 @@ +--- scripts/mysqlhotcopy.sh.orig Sun Dec 21 19:01:29 2003 ++++ scripts/mysqlhotcopy.sh Thu Sep 23 11:02:45 2004 +@@ -7,6 +7,7 @@ + use File::Path; + use DBI; + use Sys::Hostname; ++use File::Temp; + + =head1 NAME + +@@ -607,7 +608,6 @@ + sub copy_index + { + my ($method, $files, $source, $target) = @_; +- my $tmpfile="$opt_tmpdir/mysqlhotcopy$$"; + + print "Copying indices for ".@$files." files...\n" unless $opt{quiet}; + foreach my $file (@$files) +@@ -633,23 +633,23 @@ + } + close OUTPUT || die "Error on close of $to: $!\n"; + } +- elsif ($opt{method} eq 'scp') ++ elsif ($opt{method} =~ /^scp\b/) + { +- my $tmp=$tmpfile; +- open(OUTPUT,">$tmp") || die "Can\'t create file $tmp: $!\n"; +- if (syswrite(OUTPUT,$buff) != length($buff)) ++ my ($fh, $tmp)=tempfile('mysqlhotcopy-XXXXXX', DIR => $opt_tmpdir); ++ die "Can\'t create/open file in $opt_tmpdir\n"; ++ if (syswrite($fh,$buff) != length($buff)) + { + die "Error when writing data to $tmp: $!\n"; + } +- close OUTPUT || die "Error on close of $tmp: $!\n"; +- safe_system("scp $tmp $to"); ++ close $fh || die "Error on close of $tmp: $!\n"; ++ safe_system("$opt{method} $tmp $to"); ++ unlink $tmp; + } + else + { + die "Can't use unsupported method '$opt{method}'\n"; + } + } +- unlink "$tmpfile" if ($opt{method} eq 'scp'); + } + + diff --git a/databases/mysql55-client/Makefile b/databases/mysql55-client/Makefile index 75d3af17afbc..ef007652addc 100644 --- a/databases/mysql55-client/Makefile +++ b/databases/mysql55-client/Makefile @@ -6,7 +6,6 @@ # PORTNAME= mysql -PORTREVISION= 2 PKGNAMESUFFIX= -client COMMENT= Multithreaded SQL database (client) diff --git a/databases/mysql55-scripts/Makefile b/databases/mysql55-scripts/Makefile index 8cb8c1a5df2a..38175bad4739 100644 --- a/databases/mysql55-scripts/Makefile +++ b/databases/mysql55-scripts/Makefile @@ -6,7 +6,6 @@ # PORTNAME= mysql -PORTREVISION= 1 PKGNAMESUFFIX= -scripts COMMENT= Multithreaded SQL database (scripts) diff --git a/databases/mysql55-server/Makefile b/databases/mysql55-server/Makefile index 6f0c34ecd24c..cc535fc107b6 100644 --- a/databases/mysql55-server/Makefile +++ b/databases/mysql55-server/Makefile @@ -29,8 +29,7 @@ COMMENT?= Multithreaded SQL database (server) SLAVEDIRS= databases/mysql50-client PKGINSTALL?= ${WRKDIR}/pkg-install DB_DIR?= /var/db/mysql -USE_GNOME= lthack -USE_LIBTOOL_VER= 13 +USE_LIBTOOL_VER=15 USE_REINPLACE= yes CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} @@ -67,7 +66,7 @@ CONFIGURE_ARGS+=--with-mysqld-ldflags=-all-static .include <bsd.port.pre.mk> -.if ${MACHINE_ARCH} == "i386" +.if ${ARCH} == "i386" CONFIGURE_ARGS+=--enable-assembler --with-berkeley-db .endif .if defined(WITH_LINUXTHREADS) diff --git a/databases/mysql55-server/files/patch-configure b/databases/mysql55-server/files/patch-configure index ec52ce45dfb2..9eed46865e83 100644 --- a/databases/mysql55-server/files/patch-configure +++ b/databases/mysql55-server/files/patch-configure @@ -1,14 +1,14 @@ --- configure.orig Sun Dec 21 19:03:09 2003 +++ configure Wed Dec 24 10:40:53 2003 -@@ -9069,7 +9070,7 @@ - ;; - esac - fi --HOSTNAME=$ac_cv_path_HOSTNAME -+HOSTNAME="$ac_cv_path_HOSTNAME -s" - - if test -n "$HOSTNAME"; then - echo "$as_me:$LINENO: result: $HOSTNAME" >&5 +@@ -8128,8 +8128,6 @@ + # This can be used to rebuild libtool when needed + LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"; $ac_aux_dir/ltconfig $LIBTOOL_DEPS; + +-# Always use our own libtool. +-LIBTOOL='$(SHELL) $(top_builddir)/libtool' + + # Prevent multiple expansion + @@ -9261,43 +9262,8 @@ echo "$as_me:$LINENO: checking \"how to check if pid exists\"" >&5 echo $ECHO_N "checking \"how to check if pid exists\"... $ECHO_C" >&6 diff --git a/databases/mysql55-server/files/patch-scripts::mysqlhotcopy.sh b/databases/mysql55-server/files/patch-scripts::mysqlhotcopy.sh new file mode 100644 index 000000000000..19d4395fa09f --- /dev/null +++ b/databases/mysql55-server/files/patch-scripts::mysqlhotcopy.sh @@ -0,0 +1,49 @@ +--- scripts/mysqlhotcopy.sh.orig Sun Dec 21 19:01:29 2003 ++++ scripts/mysqlhotcopy.sh Thu Sep 23 11:02:45 2004 +@@ -7,6 +7,7 @@ + use File::Path; + use DBI; + use Sys::Hostname; ++use File::Temp; + + =head1 NAME + +@@ -607,7 +608,6 @@ + sub copy_index + { + my ($method, $files, $source, $target) = @_; +- my $tmpfile="$opt_tmpdir/mysqlhotcopy$$"; + + print "Copying indices for ".@$files." files...\n" unless $opt{quiet}; + foreach my $file (@$files) +@@ -633,23 +633,23 @@ + } + close OUTPUT || die "Error on close of $to: $!\n"; + } +- elsif ($opt{method} eq 'scp') ++ elsif ($opt{method} =~ /^scp\b/) + { +- my $tmp=$tmpfile; +- open(OUTPUT,">$tmp") || die "Can\'t create file $tmp: $!\n"; +- if (syswrite(OUTPUT,$buff) != length($buff)) ++ my ($fh, $tmp)=tempfile('mysqlhotcopy-XXXXXX', DIR => $opt_tmpdir); ++ die "Can\'t create/open file in $opt_tmpdir\n"; ++ if (syswrite($fh,$buff) != length($buff)) + { + die "Error when writing data to $tmp: $!\n"; + } +- close OUTPUT || die "Error on close of $tmp: $!\n"; +- safe_system("scp $tmp $to"); ++ close $fh || die "Error on close of $tmp: $!\n"; ++ safe_system("$opt{method} $tmp $to"); ++ unlink $tmp; + } + else + { + die "Can't use unsupported method '$opt{method}'\n"; + } + } +- unlink "$tmpfile" if ($opt{method} eq 'scp'); + } + + diff --git a/databases/mysql60-client/Makefile b/databases/mysql60-client/Makefile index 75d3af17afbc..ef007652addc 100644 --- a/databases/mysql60-client/Makefile +++ b/databases/mysql60-client/Makefile @@ -6,7 +6,6 @@ # PORTNAME= mysql -PORTREVISION= 2 PKGNAMESUFFIX= -client COMMENT= Multithreaded SQL database (client) diff --git a/databases/mysql60-scripts/Makefile b/databases/mysql60-scripts/Makefile index 8cb8c1a5df2a..38175bad4739 100644 --- a/databases/mysql60-scripts/Makefile +++ b/databases/mysql60-scripts/Makefile @@ -6,7 +6,6 @@ # PORTNAME= mysql -PORTREVISION= 1 PKGNAMESUFFIX= -scripts COMMENT= Multithreaded SQL database (scripts) diff --git a/databases/mysql60-server/Makefile b/databases/mysql60-server/Makefile index 6f0c34ecd24c..cc535fc107b6 100644 --- a/databases/mysql60-server/Makefile +++ b/databases/mysql60-server/Makefile @@ -29,8 +29,7 @@ COMMENT?= Multithreaded SQL database (server) SLAVEDIRS= databases/mysql50-client PKGINSTALL?= ${WRKDIR}/pkg-install DB_DIR?= /var/db/mysql -USE_GNOME= lthack -USE_LIBTOOL_VER= 13 +USE_LIBTOOL_VER=15 USE_REINPLACE= yes CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} @@ -67,7 +66,7 @@ CONFIGURE_ARGS+=--with-mysqld-ldflags=-all-static .include <bsd.port.pre.mk> -.if ${MACHINE_ARCH} == "i386" +.if ${ARCH} == "i386" CONFIGURE_ARGS+=--enable-assembler --with-berkeley-db .endif .if defined(WITH_LINUXTHREADS) diff --git a/databases/mysql60-server/files/patch-configure b/databases/mysql60-server/files/patch-configure index ec52ce45dfb2..9eed46865e83 100644 --- a/databases/mysql60-server/files/patch-configure +++ b/databases/mysql60-server/files/patch-configure @@ -1,14 +1,14 @@ --- configure.orig Sun Dec 21 19:03:09 2003 +++ configure Wed Dec 24 10:40:53 2003 -@@ -9069,7 +9070,7 @@ - ;; - esac - fi --HOSTNAME=$ac_cv_path_HOSTNAME -+HOSTNAME="$ac_cv_path_HOSTNAME -s" - - if test -n "$HOSTNAME"; then - echo "$as_me:$LINENO: result: $HOSTNAME" >&5 +@@ -8128,8 +8128,6 @@ + # This can be used to rebuild libtool when needed + LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"; $ac_aux_dir/ltconfig $LIBTOOL_DEPS; + +-# Always use our own libtool. +-LIBTOOL='$(SHELL) $(top_builddir)/libtool' + + # Prevent multiple expansion + @@ -9261,43 +9262,8 @@ echo "$as_me:$LINENO: checking \"how to check if pid exists\"" >&5 echo $ECHO_N "checking \"how to check if pid exists\"... $ECHO_C" >&6 diff --git a/databases/mysql60-server/files/patch-scripts::mysqlhotcopy.sh b/databases/mysql60-server/files/patch-scripts::mysqlhotcopy.sh new file mode 100644 index 000000000000..19d4395fa09f --- /dev/null +++ b/databases/mysql60-server/files/patch-scripts::mysqlhotcopy.sh @@ -0,0 +1,49 @@ +--- scripts/mysqlhotcopy.sh.orig Sun Dec 21 19:01:29 2003 ++++ scripts/mysqlhotcopy.sh Thu Sep 23 11:02:45 2004 +@@ -7,6 +7,7 @@ + use File::Path; + use DBI; + use Sys::Hostname; ++use File::Temp; + + =head1 NAME + +@@ -607,7 +608,6 @@ + sub copy_index + { + my ($method, $files, $source, $target) = @_; +- my $tmpfile="$opt_tmpdir/mysqlhotcopy$$"; + + print "Copying indices for ".@$files." files...\n" unless $opt{quiet}; + foreach my $file (@$files) +@@ -633,23 +633,23 @@ + } + close OUTPUT || die "Error on close of $to: $!\n"; + } +- elsif ($opt{method} eq 'scp') ++ elsif ($opt{method} =~ /^scp\b/) + { +- my $tmp=$tmpfile; +- open(OUTPUT,">$tmp") || die "Can\'t create file $tmp: $!\n"; +- if (syswrite(OUTPUT,$buff) != length($buff)) ++ my ($fh, $tmp)=tempfile('mysqlhotcopy-XXXXXX', DIR => $opt_tmpdir); ++ die "Can\'t create/open file in $opt_tmpdir\n"; ++ if (syswrite($fh,$buff) != length($buff)) + { + die "Error when writing data to $tmp: $!\n"; + } +- close OUTPUT || die "Error on close of $tmp: $!\n"; +- safe_system("scp $tmp $to"); ++ close $fh || die "Error on close of $tmp: $!\n"; ++ safe_system("$opt{method} $tmp $to"); ++ unlink $tmp; + } + else + { + die "Can't use unsupported method '$opt{method}'\n"; + } + } +- unlink "$tmpfile" if ($opt{method} eq 'scp'); + } + + diff --git a/databases/percona55-client/Makefile b/databases/percona55-client/Makefile index 75d3af17afbc..ef007652addc 100644 --- a/databases/percona55-client/Makefile +++ b/databases/percona55-client/Makefile @@ -6,7 +6,6 @@ # PORTNAME= mysql -PORTREVISION= 2 PKGNAMESUFFIX= -client COMMENT= Multithreaded SQL database (client) diff --git a/databases/percona55-server/Makefile b/databases/percona55-server/Makefile index 6f0c34ecd24c..cc535fc107b6 100644 --- a/databases/percona55-server/Makefile +++ b/databases/percona55-server/Makefile @@ -29,8 +29,7 @@ COMMENT?= Multithreaded SQL database (server) SLAVEDIRS= databases/mysql50-client PKGINSTALL?= ${WRKDIR}/pkg-install DB_DIR?= /var/db/mysql -USE_GNOME= lthack -USE_LIBTOOL_VER= 13 +USE_LIBTOOL_VER=15 USE_REINPLACE= yes CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} @@ -67,7 +66,7 @@ CONFIGURE_ARGS+=--with-mysqld-ldflags=-all-static .include <bsd.port.pre.mk> -.if ${MACHINE_ARCH} == "i386" +.if ${ARCH} == "i386" CONFIGURE_ARGS+=--enable-assembler --with-berkeley-db .endif .if defined(WITH_LINUXTHREADS) diff --git a/databases/percona55-server/files/patch-configure b/databases/percona55-server/files/patch-configure index ec52ce45dfb2..9eed46865e83 100644 --- a/databases/percona55-server/files/patch-configure +++ b/databases/percona55-server/files/patch-configure @@ -1,14 +1,14 @@ --- configure.orig Sun Dec 21 19:03:09 2003 +++ configure Wed Dec 24 10:40:53 2003 -@@ -9069,7 +9070,7 @@ - ;; - esac - fi --HOSTNAME=$ac_cv_path_HOSTNAME -+HOSTNAME="$ac_cv_path_HOSTNAME -s" - - if test -n "$HOSTNAME"; then - echo "$as_me:$LINENO: result: $HOSTNAME" >&5 +@@ -8128,8 +8128,6 @@ + # This can be used to rebuild libtool when needed + LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"; $ac_aux_dir/ltconfig $LIBTOOL_DEPS; + +-# Always use our own libtool. +-LIBTOOL='$(SHELL) $(top_builddir)/libtool' + + # Prevent multiple expansion + @@ -9261,43 +9262,8 @@ echo "$as_me:$LINENO: checking \"how to check if pid exists\"" >&5 echo $ECHO_N "checking \"how to check if pid exists\"... $ECHO_C" >&6 diff --git a/databases/percona55-server/files/patch-scripts::mysqlhotcopy.sh b/databases/percona55-server/files/patch-scripts::mysqlhotcopy.sh new file mode 100644 index 000000000000..19d4395fa09f --- /dev/null +++ b/databases/percona55-server/files/patch-scripts::mysqlhotcopy.sh @@ -0,0 +1,49 @@ +--- scripts/mysqlhotcopy.sh.orig Sun Dec 21 19:01:29 2003 ++++ scripts/mysqlhotcopy.sh Thu Sep 23 11:02:45 2004 +@@ -7,6 +7,7 @@ + use File::Path; + use DBI; + use Sys::Hostname; ++use File::Temp; + + =head1 NAME + +@@ -607,7 +608,6 @@ + sub copy_index + { + my ($method, $files, $source, $target) = @_; +- my $tmpfile="$opt_tmpdir/mysqlhotcopy$$"; + + print "Copying indices for ".@$files." files...\n" unless $opt{quiet}; + foreach my $file (@$files) +@@ -633,23 +633,23 @@ + } + close OUTPUT || die "Error on close of $to: $!\n"; + } +- elsif ($opt{method} eq 'scp') ++ elsif ($opt{method} =~ /^scp\b/) + { +- my $tmp=$tmpfile; +- open(OUTPUT,">$tmp") || die "Can\'t create file $tmp: $!\n"; +- if (syswrite(OUTPUT,$buff) != length($buff)) ++ my ($fh, $tmp)=tempfile('mysqlhotcopy-XXXXXX', DIR => $opt_tmpdir); ++ die "Can\'t create/open file in $opt_tmpdir\n"; ++ if (syswrite($fh,$buff) != length($buff)) + { + die "Error when writing data to $tmp: $!\n"; + } +- close OUTPUT || die "Error on close of $tmp: $!\n"; +- safe_system("scp $tmp $to"); ++ close $fh || die "Error on close of $tmp: $!\n"; ++ safe_system("$opt{method} $tmp $to"); ++ unlink $tmp; + } + else + { + die "Can't use unsupported method '$opt{method}'\n"; + } + } +- unlink "$tmpfile" if ($opt{method} eq 'scp'); + } + + |