Bacula 3.0.1

2009-06-22 Thread Nicki de Wet

Hi,

According to the bacula website, version 3.0.1 has been released in April 
09, but the current FreeBSD port version is 3.0.0. Is there a plan to bring 
the port up to date?


Thanks,
Nicki 


___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


horde-base 3.3.5 upgrade error

2009-09-23 Thread Nicki de Wet

Hi,

I get the following errors when upgrading horde-base from 3.3.3 to 3.3.5:

ns0# portupgrade -bv horde-base
---  Session started at: Wed, 23 Sep 2009 10:08:15 +0200
---  Upgrade of www/horde-base started at: Wed, 23 Sep 2009 10:08:16 +0200
---  Upgrading 'horde-base-3.3.3' to 'horde-base-3.3.5' (www/horde-base)
---  Build of www/horde-base started at: Wed, 23 Sep 2009 10:08:16 +0200
---  Building '/usr/ports/www/horde-base'
===  Cleaning for horde-base-3.3.5
===  Extracting for horde-base-3.3.5
= MD5 Checksum OK for horde-3.3.5.tar.gz.
= SHA256 Checksum OK for horde-3.3.5.tar.gz.
===  Patching for horde-base-3.3.5
===  Applying extra patch 
/usr/ports/www/horde-base/files/extra-patch-lib_Horde_NLS.php

1 out of 1 hunks failed--saving rejects to lib/Horde/NLS.php.rej
*** Error code 1

Stop in /usr/ports/www/horde-base.
** Command failed [exit code 1]: /usr/bin/script -qa 
/tmp/portupgrade20090923-12787-12zdpcy-0 env UPGRADE_TOOL=portupgrade 
UPGRADE_PORT=horde-base-3.3.3 UPGRADE_PORT_VER=3.3.3 make

** Fix the problem and try again.
---  Build of www/horde-base ended at: Wed, 23 Sep 2009 10:08:23 +0200 
(consumed 00:00:07)
---  Upgrade of www/horde-base ended at: Wed, 23 Sep 2009 10:08:23 +0200 
(consumed 00:00:07)

---  ** Upgrade tasks 1: 0 done, 0 ignored, 0 skipped and 1 failed
---  Listing the results (+:done / -:ignored / *:skipped / !:failed)
   ! www/horde-base (horde-base-3.3.3) (patch error)
---  Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed
---  Session ended at: Wed, 23 Sep 2009 10:08:23 +0200 (consumed 00:00:08)
ns0# pwd

The patch mentioned seems to be for an older version of horde-base, as the 
file was created a year and a half ago:

-rw-r--r--  1 root  wheel423 Feb 29  2008 extra-patch-lib_Horde_NLS.php.

Maybe the patch needs to be updated?

Regards,
Nicki 


___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


www/horde-base

2007-12-20 Thread Nicki de Wet
The latest patch broke my horde, I get the following error when opening horde 
in the browser:

Parse error: syntax error, unexpected T_STRING in 
/usr/local/www/horde/lib/Horde/NLS.php on line 122

This is the file that was patched.

Here is the patch file's contents:
--- lib/Horde/NLS.php.orig  2007-09-29 07:22:46.0 -0800
+++ lib/Horde/NLS.php   2007-12-18 11:16:03.0 -0900
@@ -119,6 +119,10 @@
 setlocale(LC_ALL, $lang_charset);
 }
 }
+ A0 A0 A0 A0/* avoid FreeBSD issapce(3) bug */
+ A0 A0 A0 A0if(NLS::getCharset() == UTF-8){
+ A0 A0 A0 A0 A0 A0setlocale(LC_CTYPE,C);
+ A0 A0 A0 A0}
 @putenv('LANG=' . $lang_charset);
 @putenv('LANGUAGE=' . $lang_charset);
 }

Here is what the file looks like now, obviously there were some funny 
characters:
setlocale(LC_ALL, $lang_charset);
}
}
 \xa0 \xa0 \xa0 \xa0/* avoid FreeBSD issapce(3) bug */
 \xa0 \xa0 \xa0 \xa0if(NLS::getCharset() == UTF-8){
 \xa0 \xa0 \xa0 \xa0 \xa0 \xa0setlocale(LC_CTYPE,C);
 \xa0 \xa0 \xa0 \xa0}
@putenv('LANG=' . $lang_charset);
@putenv('LANGUAGE=' . $lang_charset);
}



This is what the patch should look like;
--- usr/local/www/horde/lib/Horde/NLS.php   Sat Sep 29 17:22:46 2007
+++ /usr/local/www/horde/lib/Horde/NLS.php  Thu Dec 20 10:38:46 2007
@@ -119,6 +119,10 @@
 setlocale(LC_ALL, $lang_charset);
 }
 }
+/* avoid FreeBSD issapce(3) bug */
+if(NLS::getCharset() == UTF-8){
+  setlocale(LC_CTYPE,C);
+}
 @putenv('LANG=' . $lang_charset);
 @putenv('LANGUAGE=' . $lang_charset);
 }

Regards,
Nicki
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: www/horde-base

2007-12-20 Thread Nicki de Wet


- Original Message - 
From: Jeremy Chadwick [EMAIL PROTECTED]

To: Nicki de Wet [EMAIL PROTECTED]
Cc: freebsd-ports@freebsd.org
Sent: Thursday, December 20, 2007 11:04 AM
Subject: Re: www/horde-base




http://lists.freebsd.org/pipermail/freebsd-ports/2007-December/045813.html



My apologies, I also saw the thread after posting. I've fixed it locally for 
now.


Regards,
Nicki 


___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Problem with clamav-0.90.1_1

2007-03-19 Thread Nicki de Wet
Hi,

The latest version has a bug in the clamav-clamd.sh and clamav-freshclam.sh 
files. It does not contain the prefix /usr/local when calling rc.subr. The 
previous versions always had this right.

Regards,
Nicki
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: awstats 6.6

2007-04-26 Thread Nicki de Wet
I did a fetch 
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/awstats-6.6.tar.gz and it 
gave me


-rw-r--r--  1 root   wheel 1079064 Sep 16  2006 awstats-6.6.tar.gz

Obviously this mirror is wrong.

Regards,
Nicki

- Original Message - 
From: Jeremy Chadwick [EMAIL PROTECTED]

To: Nicki de Wet [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Thursday, April 26, 2007 2:41 PM
Subject: Re: awstats 6.6



On Thu, Apr 26, 2007 at 01:57:33PM +0200, Nicki de Wet wrote:

Hi,

I get the following error when trying to build awstats:

===  Vulnerability check disabled, database not found
===  Found saved configuration for awstats-6.6_1,1
===  Extracting for awstats-6.6_1,1
= MD5 Checksum mismatch for awstats-6.6.tar.gz.
= SHA256 Checksum mismatch for awstats-6.6.tar.gz.

cvs# more distinfo
MD5 (awstats-6.6.tar.gz) = 38e393edb530d409fdf7f79127a7548e
SHA256 (awstats-6.6.tar.gz) = 
dcd5d717621b15474ab79c88251f39471eb2dbfdc46ba6a62113c3e953b9755c

SIZE (awstats-6.6.tar.gz) = 1084101

cvs# md5 /usr/ports/distfiles/awstats-6.6.tar.gz
MD5 (/usr/ports/distfiles/awstats-6.6.tar.gz) = 
3e6da58e0c479ae0de49ae3e6948576e


cvs# ll /usr/ports/distfiles/awstats-6.6.tar.gz
-rw-r--r--  1 root  wheel  1079064 Apr 26 10:38 
/usr/ports/distfiles/awstats-6.6.tar.gz


Obviously the distinfo file is incorrect.


And I beg to differ:

$ curl -iIsS 'http://awstats.sourceforge.net/files/awstats-6.6.tar.gz' | 
grep Content-Length

Content-Length: 1084101

$ wget --quiet http://awstats.sourceforge.net/files/awstats-6.6.tar.gz
$ ls -l awstats-6.6.tar.gz
-rw---1 jdc   users 1084101 23 Dec 05:02 
awstats-6.6.tar.gz

$ md5 awstats-6.6.tar.gz
MD5 (awstats-6.6.tar.gz) = 38e393edb530d409fdf7f79127a7548e

# cd /usr/ports/www/awstats
# make fetch
= awstats-6.6.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
= Attempting to fetch from 
http://heanet.dl.sourceforge.net/sourceforge/awstats/.
awstats-6.6.tar.gz100% of 1058 kB   67 kBps 
00m00s

# make checksum
= MD5 Checksum OK for awstats-6.6.tar.gz.
= SHA256 Checksum OK for awstats-6.6.tar.gz.
# make distclean
===  Cleaning for p5-Net-XWhois-0.90_4
===  Cleaning for perl-5.8.8
===  Cleaning for awstats-6.6_1,1
===  Deleting distfiles for awstats-6.6_1,1

My guess is that there's an SF mirror with a corrupted copy of the
tarball, or there's some undetermined networking or software problem
somewhere that's corrupting your download.

--
| Jeremy Chadwickjdc at parodius.com |
| Parodius Networking   http://www.parodius.com/ |
| UNIX Systems Administrator  Mountain View, CA, USA |
| Making life hard for others since 1977.  PGP: 4BD6C0CB |





___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Problem with audio/gstreamer-plugins-a52dec

2006-11-09 Thread Nicki de Wet
Michael,

I'm still getting the exact same message, it does not appear to be fixed
yet.

Regards,
Nicki
- Original Message - 
From: Michael Johnson [EMAIL PROTECTED]
To: Nicki de Wet [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Wednesday, November 08, 2006 2:57 PM
Subject: Re: Problem with audio/gstreamer-plugins-a52dec


On 11/8/06, Nicki de Wet [EMAIL PROTECTED] wrote:
 Hi,

 For the past few weeks we are getting the error below on running
 portsdb -Uu.

 uname -a:
 FreeBSD ns1.astcape.co.za 4.10-RELEASE FreeBSD 4.10-RELEASE #0: Tue May 25
 22:47:12 GMT 2004
 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC  i386

 Our ports collection is updated daily from a local mirror.

 I have searched the web for this particular error, and found no solutions,
 the following link highlights the same problem:
 http://www.mail-archive.com/freebsd-ports@freebsd.org/msg02875.html

Fixed thanks!


 Regards,
 Nicki

 - Original Message -

  Updating the ports index ... Generating INDEX.tmp - please
 
wait../usr/ports/audio/gstreamer-plugins-a52dec/../../multimedia/gstreamer-
plugins/Makefile.common,
  line 345: Malformed conditional (${gst_${GST_PLUGIN}_GCONF_SCHEMAS}!=)
 
/usr/ports/audio/gstreamer-plugins-a52dec/../../multimedia/gstreamer-plugin
s/Makefile.common,
  line 349: Malformed conditional (${gst_${GST_PLUGIN}_USE_SDL}!=)
 
/usr/ports/audio/gstreamer-plugins-a52dec/../../multimedia/gstreamer-plugin
s/Makefile.common,
  line 351: if-less endif
 
/usr/ports/audio/gstreamer-plugins-a52dec/../../multimedia/gstreamer-plugin
s/Makefile.common,
  line 351: Need an operator
 
/usr/ports/audio/gstreamer-plugins-a52dec/../../multimedia/gstreamer-plugin
s/Makefile.common,
  line 372: if-less endif
 
/usr/ports/audio/gstreamer-plugins-a52dec/../../multimedia/gstreamer-plugin
s/Makefile.common,
  line 372: Need an operator
  make: fatal errors encountered -- cannot continue
  === audio/gstreamer-plugins-a52dec failed
  *** Error code 1
  1 error
 
  
  Before reporting this error, verify that you are running a supported
  version of FreeBSD (see http://www.FreeBSD.org/ports/) and that you
  have a complete and up-to-date ports collection.  (INDEX builds are
  not supported with partial or out-of-date ports collections -- in
  particular, if you are using cvsup, you must cvsup the ports-all
  collection, and have no refuse files.)  If that is the case, then
  report the failure to [EMAIL PROTECTED] together with relevant
  details of your ports configuration (including FreeBSD version,
  your architecture, your environment, and your /etc/make.conf
  settings, especially compiler flags and WITH/WITHOUT settings).
 
  Note: the latest pre-generated version of INDEX may be fetched
  automatically with make fetchindex.
  
 
  *** Error code 1
 
  Stop in /usr/ports.
  *** Error code 1
 
  Stop in /usr/ports.
  failed to generate INDEX!
  portsdb: index generation error
 
 

 ___
 freebsd-ports@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-ports
 To unsubscribe, send any mail to [EMAIL PROTECTED]



___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Problem with audio/gstreamer-plugins-a52dec (still)

2006-11-16 Thread Nicki de Wet
Hi,

I'm still getting the error below on our installations.

%uname -v
FreeBSD 4.10-RELEASE #0: Tue May 25 22:47:12 GMT 2004
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC

- Original Message - 

Updating the ports index ... Generating INDEX.tmp - please
wait../usr/ports/audio/gstreamer-plugins-a52dec/../../multimedia/gstreamer-
plugins/Makefile.common, line 345: Malformed conditional
(${gst_${GST_PLUGIN}_GCONF_SCHEMAS}!=)
/usr/ports/audio/gstreamer-plugins-a52dec/../../multimedia/gstreamer-plugin
s/Makefile.common, line 349: Malformed conditional
(${gst_${GST_PLUGIN}_USE_SDL}!=)
/usr/ports/audio/gstreamer-plugins-a52dec/../../multimedia/gstreamer-plugin
s/Makefile.common, line 351: if-less endif
/usr/ports/audio/gstreamer-plugins-a52dec/../../multimedia/gstreamer-plugin
s/Makefile.common, line 351: Need an operator
/usr/ports/audio/gstreamer-plugins-a52dec/../../multimedia/gstreamer-plugin
s/Makefile.common, line 372: if-less endif
/usr/ports/audio/gstreamer-plugins-a52dec/../../multimedia/gstreamer-plugin
s/Makefile.common, line 372: Need an operator
make: fatal errors encountered -- cannot continue
=== audio/gstreamer-plugins-a52dec failed
*** Error code 1
1 error


Before reporting this error, verify that you are running a supported
version of FreeBSD (see http://www.FreeBSD.org/ports/) and that you
have a complete and up-to-date ports collection.  (INDEX builds are
not supported with partial or out-of-date ports collections -- in
particular, if you are using cvsup, you must cvsup the ports-all
collection, and have no refuse files.)  If that is the case, then
report the failure to [EMAIL PROTECTED] together with relevant
details of your ports configuration (including FreeBSD version,
your architecture, your environment, and your /etc/make.conf
settings, especially compiler flags and WITH/WITHOUT settings).

Note: the latest pre-generated version of INDEX may be fetched
automatically with make fetchindex.


*** Error code 1

Stop in /usr/ports.
*** Error code 1

Stop in /usr/ports.
failed to generate INDEX!
portsdb: index generation error


___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


freetds port

2008-08-11 Thread Nicki de Wet
I noticed that the freetds port is outdated, it is still on version  
0.64, whereas the latest available is 0.82.


Regards,
Nicki


This message was sent using IMP, the Internet Messaging Program.

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


autoconf problem

2008-08-27 Thread Nicki de Wet

There appears to be a problem with the autoconf port.

After doing portsnap fetch update, portversion says the following:
bsd00# portversion -vl 
[Updating the portsdb format:bdb_btree in /usr/ports ... - 19039  
port entries found  
.1000.2000.3000.4000.5000.6000.7000.8000.9000.1.11000.12000.13000.14000.15000.16000.17000.18000.19000 .  
done]
autoconf  needs updating (port has 2.62) (=  
'devel/autoconf262')


Trying to upgrade autoconf, I get the following:
bsd00# portupgrade -bvpp autoconf
---  Session started at: Wed, 27 Aug 2008 08:36:38 +
** Port directory not found: devel/autoconf261
---  Listing the results (+:done / -:ignored / *:skipped / !:failed)
- devel/autoconf261 (port directory error)
---  Packages processed: 0 done, 1 ignored, 0 skipped and 0 failed
---  Session ended at: Wed, 27 Aug 2008 08:36:38 + (consumed 00:00:00)


There is no mention in /usr/ports/UPDATING of the change in directory  
apparent from the above output, and it seems there is a discrepency in  
the INDEX downloaded by portsnap and the output of make search  
name=autoconf


INDEX:
autoconf-2.61|/usr/ports/devel/autoconf261|/usr/local|Automatically  
configure source code on many Un*x platforms  
(2.61)|/usr/ports/devel/autoconf261/pkg-descr|[EMAIL PROTECTED]|devel|expat-2.0.0_1 gettext-0.14.5_2 gmake-3.81_1 help2man-1.36.4_1 ldconfig_compat-1.0_8 libiconv-1.9.2_2 m4-1.4.8_1 p5-gettext-1.05_1  
rc_subr-1.31_1|m4-1.4.8_1|http://www.gnu.org/software/autoconf/|||

b

make search name=autoconf:
Port:   autoconf-2.62
Path:   /usr/ports/devel/autoconf262
Info:   Automatically configure source code on many Un*x platforms (2.62)
Maint:  [EMAIL PROTECTED]
B-deps: gettext-0.17_1 gmake-3.81_3 help2man-1.36.4_2 libiconv-1.11_1  
m4-1.4.11,1 p5-gettext-1.05_2 perl-5.8.8_1

R-deps: autoconf-wrapper-20071109 m4-1.4.11,1 perl-5.8.8_1
WWW:http://www.gnu.org/software/autoconf/

I would really appreciate it if someone can point me in the right direction.

Thanks,
Nicki


This message was sent using IMP, the Internet Messaging Program.
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: autoconf

2008-08-27 Thread Nicki de Wet
Ok, I figured out how to get it right. First upgrade automake, then  
upgrade autoconf, and the problem is gone.


Nicki


This message was sent using IMP, the Internet Messaging Program.

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: autoconf problem

2008-08-29 Thread Nicki de Wet



Sergey Matveychuk wrote:

Nicki de Wet wrote:

There appears to be a problem with the autoconf port.

After doing portsnap fetch update, portversion says the following:
bsd00# portversion -vl 
[Updating the portsdb format:bdb_btree in /usr/ports ... - 19039 
port entries found 
.1000.2000.3000.4000.5000.6000.7000.8000.9000.1.11000.12000.13000.14000.15000.16000.17000.18000.19000 
. done]
autoconf  needs updating (port has 2.62) (= 
'devel/autoconf262')


Trying to upgrade autoconf, I get the following:
bsd00# portupgrade -bvpp autoconf
---  Session started at: Wed, 27 Aug 2008 08:36:38 +
** Port directory not found: devel/autoconf261
---  Listing the results (+:done / -:ignored / *:skipped / !:failed)
- devel/autoconf261 (port directory error)
---  Packages processed: 0 done, 1 ignored, 0 skipped and 0 failed
---  Session ended at: Wed, 27 Aug 2008 08:36:38 + (consumed 
00:00:00)



There is no mention in /usr/ports/UPDATING of the change in directory 
apparent from the above output, and it seems there is a discrepency 
in the INDEX downloaded by portsnap and the output of make search 
name=autoconf


INDEX:
autoconf-2.61|/usr/ports/devel/autoconf261|/usr/local|Automatically 
configure source code on many Un*x platforms 
(2.61)|/usr/ports/devel/autoconf261/pkg-descr|[EMAIL PROTECTED]|devel|expat-2.0.0_1 
gettext-0.14.5_2 gmake-3.81_1 help2man-1.36.4_1 ldconfig_compat-1.0_8 
libiconv-1.9.2_2 m4-1.4.8_1 p5-gettext-1.05_1 
rc_subr-1.31_1|m4-1.4.8_1|http://www.gnu.org/software/autoconf/|||

b



Show grep ^devel/autoconf261 /usr/ports/MOVED output.

If your MOVED file is OK, I'll take a look on it (if it's a regression).

Anyway you can just remove autoconf port. It'll be installed when 
required.


Thanks Sergey, I upgraded automake first, then autoconf, and it worked 
ok, thanks.


Nicki
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


mysql41 upgrade

2008-12-31 Thread Nicki de Wet
I'm trying to upgrade mysql from 4.1.22 to 4.1.25, but get the following 
error when upgrading:


===  Extracting for mysql-server-4.1.25
= MD5 Checksum OK for mysql-4.1.25.tar.gz.
= SHA256 Checksum OK for mysql-4.1.25.tar.gz.
===  Patching for mysql-server-4.1.25
===  Applying FreeBSD patches for mysql-server-4.1.25
===   mysql-server-4.1.25 depends on file: /usr/local/bin/libtool - found
===   mysql-server-4.1.25 depends on shared library: mysqlclient.14 - found
===  Configuring for mysql-server-4.1.25
cp: /usr/ports/databases/mysql41-server/work/mysql-4.1.25/config.guess: No 
such file or directory

*** Error code 1

Stop in /usr/ports/databases/mysql41-server.
** Command failed [exit code 1]: /usr/bin/script -qa 
/tmp/portupgrade.74688.0 env UPGRADE_TOOL=portupgrade 
UPGRADE_PORT=mysql-server-4.1.22_1 UPGRADE_PORT_VER=4.1.22_1 make

** Fix the problem and try again.


Upon further investigation I saw that there are symlinks in the mysql work 
directory pointing to a different version of autmake:


ns0# ll|grep automake
lrwxr-xr-x   1 root  wheel   43 Dec 30 15:38 config.guess - 
/usr/local/share/automake-1.10/config.guess
lrwxr-xr-x   1 root  wheel   41 Dec 30 15:38 config.sub - 
/usr/local/share/automake-1.10/config.sub
lrwxr-xr-x   1 root  wheel   38 Dec 30 15:38 depcomp - 
/usr/local/share/automake-1.10/depcomp
lrwxr-xr-x   1 root  wheel   41 Dec 30 15:37 install-sh - 
/usr/local/share/automake-1.10/install-sh
lrwxr-xr-x   1 root  wheel   38 Dec 30 15:37 missing - 
/usr/local/share/automake-1.10/missing
lrwxr-xr-x   1 root  wheel   37 Dec 30 15:38 ylwrap - 
/usr/local/share/automake-1.10/ylwrap


ns0# ll /usr/local/share/ | grep autom
drwxr-xr-x2 rootwheel   1536 Sep 29 13:31 automake-1.4
ns0#


All the ports on the system is up to date, as well as the ports tree. Does 
this point to a port patch needed for mysql41?


Thanks in advance,
Nicki 


___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


mysql41 upgrade

2008-12-31 Thread Nicki de Wet

I'm trying to upgrade mysql from 4.1.22 to 4.1.25, but get the following
error when upgrading:

===  Extracting for mysql-server-4.1.25
= MD5 Checksum OK for mysql-4.1.25.tar.gz.
= SHA256 Checksum OK for mysql-4.1.25.tar.gz.
===  Patching for mysql-server-4.1.25
===  Applying FreeBSD patches for mysql-server-4.1.25
===   mysql-server-4.1.25 depends on file: /usr/local/bin/libtool - found
===   mysql-server-4.1.25 depends on shared library: mysqlclient.14 - found
===  Configuring for mysql-server-4.1.25
cp: /usr/ports/databases/mysql41-server/work/mysql-4.1.25/config.guess: No
such file or directory
*** Error code 1

Stop in /usr/ports/databases/mysql41-server.
** Command failed [exit code 1]: /usr/bin/script -qa
/tmp/portupgrade.74688.0 env UPGRADE_TOOL=portupgrade
UPGRADE_PORT=mysql-server-4.1.22_1 UPGRADE_PORT_VER=4.1.22_1 make
** Fix the problem and try again.


Upon further investigation I saw that there are symlinks in the mysql work
directory pointing to a different version of autmake:

ns0# ll|grep automake
lrwxr-xr-x   1 root  wheel   43 Dec 30 15:38 config.guess -
/usr/local/share/automake-1.10/config.guess
lrwxr-xr-x   1 root  wheel   41 Dec 30 15:38 config.sub -
/usr/local/share/automake-1.10/config.sub
lrwxr-xr-x   1 root  wheel   38 Dec 30 15:38 depcomp -
/usr/local/share/automake-1.10/depcomp
lrwxr-xr-x   1 root  wheel   41 Dec 30 15:37 install-sh -
/usr/local/share/automake-1.10/install-sh
lrwxr-xr-x   1 root  wheel   38 Dec 30 15:37 missing -
/usr/local/share/automake-1.10/missing
lrwxr-xr-x   1 root  wheel   37 Dec 30 15:38 ylwrap -
/usr/local/share/automake-1.10/ylwrap

ns0# ll /usr/local/share/ | grep autom
drwxr-xr-x2 rootwheel   1536 Sep 29 13:31 automake-1.4
ns0#


All the ports on the system is up to date, as well as the ports tree. Does
this point to a port patch needed for mysql41?

Thanks in advance,
Nicki

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org