From pinodm at euphonynet.be Tue Apr 1 01:11:02 2008 From: pinodm at euphonynet.be (Giuseppe Di Matteo) Date: Tue Apr 1 01:10:09 2008 Subject: upgrade of p5-gtk2 failed Message-ID: <60EE0B3C-19DF-4A0F-B600-BCC1EDA535AD@euphonynet.be> My system: Tiger; iMac G4; MacPorts 1.6. The problem: DEBUG: Assembled command: 'cd "/opt/local/var/macports/build/ _opt_local_var_macports_sources_rsync.macports.org_release_ports_perl_p5 -gtk2/work/Gtk2-1.181" && /opt/local/bin/perl Makefile.PL INSTALLDIRS=vendor'Glib version 1.180 required--this is only version 1.164 at /opt/local/lib/perl5/5.8.8/Exporter/Heavy.pm line 121.BEGIN failed--compilation aborted at (eval 11) line 1. MakeMaker FATAL: prerequisites not found (Glib 1.180) Please install these modules first and rerun 'perl Makefile.PL'.Checking if your kit is complete...Looks goodError: Target org.macports.configure returned: configure failure: shell command " cd "/opt/local/var/macports/build/ _opt_local_var_macports_sources_rsync.macports.org_release_ports_perl_p5 -gtk2/work/Gtk2-1.181" && /opt/local/bin/perl Makefile.PL INSTALLDIRS=vendor " returned error 2Command output: Glib version 1.180 required--this is only version 1.164 at /opt/local/lib/ perl5/5.8.8/Exporter/Heavy.pm line 121.BEGIN failed--compilation aborted at (eval 11) line 1. MakeMaker FATAL: prerequisites not found (Glib 1.180) Please install these modules first and rerun 'perl Makefile.PL'.Checking if your kit is complete...Looks good Warning: the following items did not execute (for p5-gtk2): org.macports.activate org.macports.configure org.macports.build org.macports.destroot org.macports.installError: Status 1 encountered during processing. Glib is installed: tigre:~ pino$ port installed | grep glib glib1 @1.2.10_5 (active) glib2 @2.16.1_0 (active) p5-glib @1.181_0 (active) Giuseppe Di Matteo pinodm@euphonynet.be -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.macosforge.org/pipermail/macports-users/attachments/20080401/edc2ec01/attachment.html From sourceforge.rocks at xemaps.com Tue Apr 1 02:58:29 2008 From: sourceforge.rocks at xemaps.com (sourceforge.rocks@xemaps.com) Date: Tue Apr 1 02:57:30 2008 Subject: [MySQL] Install difficulties : Can't connect to local MySQL server through socket '/opt/local/var/run/mysql5/mysqld.sock' References: <61A40F56-F751-4879-89F4-CB9C9C3A48BE@frognet.net> Message-ID: <4D11D863-E341-47D4-BEC5-8AA14139F040@frognet.net> I thought I had previously responded to the list, but I must have responded only to Ryan. On Mar 31, 2008, at 7:18 AM, Ryan Schmidt wrote: > > On Mar 31, 2008, at 05:45, sourceforge.rocks@xemaps.com wrote: BTW, how do you get your name to show up instead of your email address? I've got my name in the Optional Name field in my user profile, yet (as we see) my email address is showing up instead of my name. >> I've installed and reinstalled MySQL with the following command line: >> $ sudo port install mysql5 +server >> >> Initially, I had trouble creating the initial mysql database >> because the /opt/local/temp directory did not exist (and therefore >> the /opt/local/temp/mysql5 directory did not exist). >> >> Creating these two directories, and making the mysql user the >> owner of /opt/local/temp/mysql5 allowed me to build the initial >> database, but sadly it had no data in any of the non-index tables. > > Where are you getting "/opt/local/temp" from? I've never heard of > that directory. Unless you've modified your my.cnf (in /opt/local/ > etc/mysql5/my.cnf or /etc/my.cnf or any of several other locations) > and deliberately pointed it at /opt/local/temp, your databases > should be stored in /opt/local/var/db/mysql5. Did you run > mysql_install_db to install the initial tables? Error messages regarding not being able to create a file in /opt/ local/temp/mysql5 were in the /opt/local/var/db/mysql5/MyApple.err file. The file names referenced lead me to believe that this was some sort of temporary file, not an entire database. For the record, I have not created nor have I modified any .cnf file. A reference to this error log was in the message that appeared when the "sudo -u mysql mysql_install_db5" command to create the initial tables failed. I have no idea why the temp directory and its mysql5 directory did not exist after I installed mysql5. >> I went ahead and unistalled mysql5 and reinstalled it, and now I >> get the following when I try to change the root password: >> $ mysqladmin -u root password 'newpass' >> mysqladmin: connect to server at 'localhost' failed error: >> 'Can't connect to local MySQL server through socket '/opt/local/ >> var/run/mysql5/mysqld.sock' (2)' Check that mysqld is running >> and that the socket: '/opt/local/var/run/mysql5/mysqld.sock' exists! >> >> I verified that mysqld is running through the Activity Monitor. >> >> Sure enough, /opt/local/var/run/mysql5/mysqld.sock does not >> exist. In fact, mysqld.sock does not exist anywhere on my hard >> drive, a fact which I determined by: >> $ sudo find / -name "*.sock" > > If mysqld is running, there should be a socket somewhere so that > you can connect to the running server. Have you modified your > my.cnf to tell it to put the socket somewhere else? If so, look > there. The default location for the socket file in MacPorts mysql5 > is /opt/local/var/run/mysql5. The default location for Apple and > mysql.com binary packages used to be /tmp but this was found to be > an insecure location. I believe it was changed to /var/mysql. > > >> Elsewhere, I found an instruction to >> $ touch opt/local/var/run/mysql5/mysqld.sock >> >> This command creates an empty file of the correct name; however, >> when I tried to change the root password, I got: >> $ mysqladmin -u root password 'newpass' >> mysqladmin: connect to server at 'localhost' failed >> error: 'Can't connect to local MySQL server through socket '/ >> opt/local/var/run/mysql5/mysqld.sock' (38)' Check that mysqld >> is running and that the socket: '/opt/local/var/run/mysql5/ >> mysqld.sock' exists! >> >> Note that only the error number changed. > > Where did you find that instruction? I don't think it's helpful... > There's no need to touch the socket file... mysqld creates it when > the server is running. I found that instruction at http://samuraicoder.net/tags/mysql > Does mysqld have permission to write to the /opt/local/var/run/ > mysql5 directory? (Is it owned by the mysql user and group?) Does > it have permission to write to your database directory? I had not checked that before, but I did just now: MyApple:~ me$ cd /opt/local/var/run MyApple:/opt/local/var/run me$ sudo ls -l total 0 drwxr-xr-x 3 mysql mysql 102 Mar 31 06:37 mysql5 So, yep, the mysql user has write access to the /opt/local/var/run/ mysql5 directory which means that mysqld has write access. >> When I stopped and restarted mysql5: >> $ sudo launchctl unload /Library/LaunchDaemons/ >> org.macports.mysql5.plist >> $ sudo launchctl load -w /Library/LaunchDaemons/ >> org.macports.mysql5.plist >> I found that the mysqld.sock was deleted from opt/local/var/run/ >> mysql5/ > > I'm not surprised that it would delete the socket file when > stopping the server; that's probably what it's supposed to do. Which is another indication that mysqld has write access to the directory. >> Does anyone have any ideas about what I'm supposed to do to get a >> properly functioning MySQL5 installation? >> >> Environment: >> MacPorts version 1.600. I've done a selfupdate before >> attempting to install MySQL5 >> Power Mac G4 >> Mac OS X 10.4.11 > > It should mostly "just work", and it does for me. I have 10.4.11 on > Intel. > > Can you check if there's anything in the log file in your database > directory? If the server had trouble starting (and therefore didn't > create the socket), the log should say why. OK, good call. There are a bunch of messages in the .err log file of this form: 080331 6:37:08 InnoDB: Started; log sequence number 0 43655 080331 6:37:08 [ERROR] Can't start server: Bind on TCP/IP port: Address already in use 080331 6:37:08 [ERROR] Do you already have another mysqld server running on port: 3306 ? 080331 6:37:08 [ERROR] Aborting 080331 6:37:08 InnoDB: Starting shutdown... 080331 6:37:10 InnoDB: Shutdown completed; log sequence number 0 43655 080331 6:37:10 [Note] /opt/local/libexec/mysqld: Shutdown complete I just executed "sudo launchctl unload /Library/LaunchDaemons/ org.macports.mysql5.plist" again, and checked the Activity Monitor. The mysqld process is not stop. I've killed the running mysqld and restarted mysql via launchctl. Now, mysqld.sock exists!!! So, I must have been mistaken when I said that mysqld had been stopped by the launchctl unload command. Thanks for the help, and sorry to have taken up so much bandwidth. From schalk at unf.edu Tue Apr 1 03:25:05 2008 From: schalk at unf.edu (Stuart Chalk) Date: Tue Apr 1 03:24:10 2008 Subject: Xcode 3.1 Message-ID: Has anyone installed the iPhone SDK and Xcode 3.1? Any problems building against it? Stuart Chalk, Ph.D. Associate Professor of Chemistry Department of Chemistry and Physics University of North Florida 1 UNF Drive Jacksonville FL 32224 P: 904-620-1938 F: 904-620-1989 E: schalk@unf.edu W: http://www.unf.edu/coas/chemphys/ From ms at mac-specialist.com Tue Apr 1 06:09:21 2008 From: ms at mac-specialist.com (Bill Hernandez) Date: Tue Apr 1 06:08:30 2008 Subject: [MySQL] Install difficulties : Can't connect to local MySQL server through socket '/opt/local/var/run/mysql5/mysqld.sock' In-Reply-To: <4D11D863-E341-47D4-BEC5-8AA14139F040@frognet.net> References: <61A40F56-F751-4879-89F4-CB9C9C3A48BE@frognet.net> <4D11D863-E341-47D4-BEC5-8AA14139F040@frognet.net> Message-ID: On Apr 1, 2008, at 4:58 AM, sourceforge.rocks@xemaps.com wrote: > A reference to this error log was in the message that appeared when > the "sudo -u mysql mysql_install_db5" command to create the initial > tables failed. Since I converted to Leopard, I am using a MySQL binary install until I can get around to doing the whole MacPorts install, but basically depending upon whether it's a MacPorts install or not the only thing that should really change is the path to the script : (your path to where the script is located would be different than mine) In my case when I am using : shell> $ cd /usr/local/mysql shell> /usr/local/mysql $ sudo ./scripts/mysql_install_db I'm not quite sure why you are using "sudo -u mysql mysql_install_db5" following "sudo" there should be a command, not a switch "-u" As I recall, for the MacPorts install you might try : shell> $ sudo mysql_install_db5 --user=mysql I assume your $PATH includes /opt/local/lib/mysql5/bin if you are not sure, cd into it... shell> $ cd /opt/local/lib/mysql5/bin shell> /opt/local/lib/mysql5/bin/ $ sudo mysql_install_db5 --user=mysql Best Regards, Bill Hernandez Plano, Texas From raimue at macports.org Tue Apr 1 07:00:40 2008 From: raimue at macports.org (=?ISO-8859-1?Q?Rainer_M=FCller?=) Date: Tue Apr 1 06:59:39 2008 Subject: Port Sync via Daily Tarball In-Reply-To: <7DAE6669-45BA-460C-9859-3D19DF620244@apple.com> References: <7DAE6669-45BA-460C-9859-3D19DF620244@apple.com> Message-ID: <47F24008.9000909@macports.org> William Siegrist wrote: > I did some initial work on making a daily tarball copy of the rsync > (release) repo and made it available on www.macports.org. Be warned, > its only lightly tested, but its also not very invasive. Please test > it out and expand the HOWTO or file tickets against server/hosting if > you find a problem. The tarball updates daily in the afternoon (PDT), > but the exact time is subject to change. I added support for fetching the daily snapshot tarball directly with 'port sync' in trunk in r35647/r35648. If you are using trunk, just add the following line to your sources.conf instead of rsync: http://macports.org/files/ports.tar.gz Rainer From matt at raibledesigns.com Tue Apr 1 08:37:18 2008 From: matt at raibledesigns.com (Matt Raible) Date: Tue Apr 1 08:36:16 2008 Subject: Issue installing Apache 2 on Leopard Message-ID: <813ebebb0804010837j4ba81adbj51562428ef7e023c@mail.gmail.com> When I try to install Apache 2 on Leopard, I get the following error. Any ideas? $ sudo port clean apache2 ---> Cleaning apache2 mraible-mn:~ mraible$ sudo port install apache2 ---> Fetching apache2 ---> Verifying checksum(s) for apache2 ---> Extracting apache2 ---> Configuring apache2 ---> Building apache2 with target all Error: Target org.macports.build returned: shell command " cd "/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_www_apache2/work/httpd-2.2.8" && make all " returned error 2 Command output: Making all in srclib Making all in os Making all in unix /opt/local/share/apr-1/build/libtool --silent --mode=compile /usr/bin/gcc-4.0 -I/opt/local/include -O2 -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -no-cpp-precomp -I/opt/local/include -I. -I/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_www_apache2/work/httpd-2.2.8/os/unix -I/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_www_apache2/work/httpd-2.2.8/server/mpm/prefork -I/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_www_apache2/work/httpd-2.2.8/modules/http -I/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_www_apache2/work/httpd-2.2.8/modules/filters -I/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_www_apache2/work/httpd-2.2.8/modules/proxy -I/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_www_apache2/work/httpd-2.2.8/include -I/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_www_apache2/work/httpd-2.2.8/modules/generators -I/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_www_apache2/work/httpd-2.2.8/modules/mappers -I/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_www_apache2/work/httpd-2.2.8/modules/database -I/opt/local/include/apr-1 -I/opt/local/include -I/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_www_apache2/work/httpd-2.2.8/server -I/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_www_apache2/work/httpd-2.2.8/modules/proxy/../generators -I/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_www_apache2/work/httpd-2.2.8/modules/ssl -I/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_www_apache2/work/httpd-2.2.8/modules/dav/main -prefer-non-pic -static -c unixd.c && touch unixd.lo libtool: compile: unable to infer tagged configuration libtool: compile: specify a tag with `--tag' make[3]: *** [unixd.lo] Error 1 make[2]: *** [all-recursive] Error 1 make[1]: *** [all-recursive] Error 1 make: *** [all-recursive] Error 1 Error: Status 1 encountered during processing. Thanks, Matt From ryandesign at macports.org Tue Apr 1 09:09:42 2008 From: ryandesign at macports.org (Ryan Schmidt) Date: Tue Apr 1 09:09:17 2008 Subject: Issue installing Apache 2 on Leopard In-Reply-To: <813ebebb0804010837j4ba81adbj51562428ef7e023c@mail.gmail.com> References: <813ebebb0804010837j4ba81adbj51562428ef7e023c@mail.gmail.com> Message-ID: <5091BB59-F53C-4058-B60D-1DED3A47A767@macports.org> On Apr 1, 2008, at 10:37, Matt Raible wrote: > When I try to install Apache 2 on Leopard, I get the following > error. Any ideas? [snip] > libtool: compile: unable to infer tagged configuration > libtool: compile: specify a tag with `--tag' Aw, heck. That issue was supposed to have been taken care of by now. :) Check these bugs: http://trac.macosforge.org/projects/macports/query?summary=%7Einfer Specifically this one: http://trac.macosforge.org/projects/macports/ticket/13653 According to that, the problem was supposed to have been resolved by incrementing apr's revision so that it's forced to rebuild following the update to MacPorts 1.6.0. Do you have MacPorts 1.6.0 (or later) and are your ports current? Please try "sudo port selfupdate" and then use "port outdated" to see if any ports are outdated, and if so, "sudo port upgrade" them. Then try installing apache2 again. If it still fails, "sudo port clean --work apache2" again, then rebuild apr with "sudo port -ncuf upgrade apr" and then try installing apache2 again. Please let us know your results. From jschnide at umn.edu Tue Apr 1 09:27:20 2008 From: jschnide at umn.edu (Joe Schnide) Date: Tue Apr 1 09:26:27 2008 Subject: dbus issue In-Reply-To: References: Message-ID: Hello, An additional bit of information: I completely deleted macports, did an install from scratch, installed all the deluge port dependencies and still get the error below on intel-based macs. The problem is not happening on my g4 macs, just on the intel-based macs. Is there more information that needs to be provided on this issue? Thanks Joe At 1:46 PM -0500 3/26/08, Joe Schnide wrote: >Hello, > >Recently did the selfupdate and update installed ports. Now >when I try to run deluge, X11 starts fine but I get the error: > >Failed to start message bus: Failed to read directory >"/opt/local/etc/dbus-1/session.d": No such file or directory >EOF in dbus-launch reading address from bus daemon -- ------- jschnide@umn.edu From frstan at bellsouth.net Tue Apr 1 09:29:56 2008 From: frstan at bellsouth.net (William Davis) Date: Tue Apr 1 09:28:51 2008 Subject: poppler error Message-ID: <875332EA-95F6-44DC-B45C-61CBB80A3932@bellsouth.net> trying to build poppler: mkdir .libs libtool: link: cannot find the library `' or unhandled argument `Carbon' make[3]: *** [poppler_qt4viewer] Error 1 make[2]: *** [all-recursive] Error 1 make[1]: *** [all-recursive] Error 1 make: *** [all] Error 2 Warning: the following items did not execute (for poppler): org.macports.destroot org.macports.build DEBUG: Error: Unable to upgrade port: 1 William Davis frstanATbellsouthDOTnet Mac OS X.5.2 Darwin 9.2.0 XQuartz 2.1.4 - (xorg-server 1.3.0-apple10) Mac Mini Intel Duo @ 1.86 GHz Mundus vult decepi, ego non From matt at raibledesigns.com Tue Apr 1 10:00:15 2008 From: matt at raibledesigns.com (Matt Raible) Date: Tue Apr 1 09:59:13 2008 Subject: Issue installing Apache 2 on Leopard In-Reply-To: <5091BB59-F53C-4058-B60D-1DED3A47A767@macports.org> References: <813ebebb0804010837j4ba81adbj51562428ef7e023c@mail.gmail.com> <5091BB59-F53C-4058-B60D-1DED3A47A767@macports.org> Message-ID: <813ebebb0804011000yda61157tbb7ce54bd6872ce4@mail.gmail.com> Running "sudo port upgrade apr" fixed the problem. However, after copying httpd.conf.sample to httpd.conf, I get the following error on startup: httpd: Syntax error on line 97 of /opt/local/apache2/conf/httpd.conf: Cannot load /opt/local/apache2/modules/mod_ssl.so into server: dlopen(/opt/local/apache2/modules/mod_ssl.so, 10): Symbol not found: _ssl_cmd_SSLCACertificateFile\n Referenced from: /opt/local/apache2/modules/mod_ssl.so\n Expected in: flat namespace\n Commenting out line 97 fixes the problem: #LoadModule ssl_module modules/mod_ssl.so However, I want to use SSL on this server. Any idea how to fix? Thanks, Matt On Tue, Apr 1, 2008 at 10:09 AM, Ryan Schmidt wrote: > > On Apr 1, 2008, at 10:37, Matt Raible wrote: > > > When I try to install Apache 2 on Leopard, I get the following > > error. Any ideas? > > [snip] > > > libtool: compile: unable to infer tagged configuration > > libtool: compile: specify a tag with `--tag' > > Aw, heck. That issue was supposed to have been taken care of by now. :) > > Check these bugs: > > http://trac.macosforge.org/projects/macports/query?summary=%7Einfer > > Specifically this one: > > http://trac.macosforge.org/projects/macports/ticket/13653 > > According to that, the problem was supposed to have been resolved by > incrementing apr's revision so that it's forced to rebuild following > the update to MacPorts 1.6.0. Do you have MacPorts 1.6.0 (or later) > and are your ports current? Please try "sudo port selfupdate" and > then use "port outdated" to see if any ports are outdated, and if so, > "sudo port upgrade" them. Then try installing apache2 again. If it > still fails, "sudo port clean --work apache2" again, then rebuild apr > with "sudo port -ncuf upgrade apr" and then try installing apache2 > again. Please let us know your results. > > From guido.soranzio at gmail.com Tue Apr 1 10:07:10 2008 From: guido.soranzio at gmail.com (Guido Soranzio) Date: Tue Apr 1 10:06:23 2008 Subject: Issue installing Apache 2 on Leopard In-Reply-To: <813ebebb0804011000yda61157tbb7ce54bd6872ce4@mail.gmail.com> References: <813ebebb0804010837j4ba81adbj51562428ef7e023c@mail.gmail.com> <5091BB59-F53C-4058-B60D-1DED3A47A767@macports.org> <813ebebb0804011000yda61157tbb7ce54bd6872ce4@mail.gmail.com> Message-ID: <35E6FC60-92EB-407B-B33E-FDFF31AB9B34@gmail.com> > On Apr 1, 2008, at 7:00 PM, Matt Raible wrote: > >> However, I want to use SSL on this server. Any idea how to fix? > > There are two workarounds explained in these comments on our Trac: > http://trac.macports.org/projects/macports/ticket/13182. > -Guido From dersh at alum.mit.edu Tue Apr 1 10:12:57 2008 From: dersh at alum.mit.edu (Adam Dershowitz) Date: Tue Apr 1 10:11:52 2008 Subject: poppler error In-Reply-To: <875332EA-95F6-44DC-B45C-61CBB80A3932@bellsouth.net> References: <875332EA-95F6-44DC-B45C-61CBB80A3932@bellsouth.net> Message-ID: <4505D682-82EE-494A-BDC1-C1B40C34478E@alum.mit.edu> There is a ticket for this here: http://trac.macports.org/projects/macports/ticket/14865 The problem seems to be that poppler tries to build some qt stuff but looks in the wrong place, when qt is installed. There is both a work around and a new port file in that ticket. --Adam On Apr 1, 2008, at 9:29 AM, William Davis wrote: > trying to build poppler: > mkdir .libs > libtool: link: cannot find the library `' or unhandled argument > `Carbon' > make[3]: *** [poppler_qt4viewer] Error 1 > make[2]: *** [all-recursive] Error 1 > make[1]: *** [all-recursive] Error 1 > make: *** [all] Error 2 > > Warning: the following items did not execute (for poppler): > org.macports.destroot org.macports.build > DEBUG: > Error: Unable to upgrade port: 1 > > > > William Davis > frstanATbellsouthDOTnet > Mac OS X.5.2 Darwin 9.2.0 > XQuartz 2.1.4 - (xorg-server 1.3.0-apple10) > Mac Mini Intel Duo @ 1.86 GHz > > Mundus vult decepi, ego non > > _______________________________________________ > macports-users mailing list > macports-users@lists.macosforge.org > http://lists.macosforge.org/mailman/listinfo/macports-users From florian.ebeling at gmail.com Tue Apr 1 13:22:42 2008 From: florian.ebeling at gmail.com (Florian Ebeling) Date: Tue Apr 1 13:21:36 2008 Subject: doxygen fails to build In-Reply-To: <20080331085339.GA4777@weetamoe.loria.fr> References: <5cbbe4ae0803271510n6e14a174oc1bcac9c371514cb@mail.gmail.com> <47EFF1F4.4090204@macports.org> <5cbbe4ae0803301411n5caf2439hc6a53a80886ee947@mail.gmail.com> <47F02422.1050007@macports.org> <20080331085339.GA4777@weetamoe.loria.fr> Message-ID: <5cbbe4ae0804011322g431da5a5rd19cff11bd53ca79@mail.gmail.com> > I'm afraid the error lies in the texlive install: > > kpathsea: Running mktexfmt pdflatex.fmt > I can't find the format file `pdflatex.fmt'! > > indicates that pdflatex was badly installed. You may have to rebuild > texlive (texlive_base in fact), but hopefully, retrying the > post-activate phase may render texlive working. That indeed solved the problem. Thanks. Florian -- Florian Ebeling florian.ebeling@gmail.com From bruda at cs.ubishops.ca Tue Apr 1 17:24:39 2008 From: bruda at cs.ubishops.ca (Stefan Bruda) Date: Tue Apr 1 17:26:15 2008 Subject: dbus issue In-Reply-To: References: Message-ID: <18418.53831.754543.462391@gargle.gargle.HOWL> Hi, At 11:27 -0500 on 2008-4-1 Joe Schnide wrote: > > I completely deleted macports, did an install from scratch, > installed all the deluge port dependencies and still get the error > below on intel-based macs. The problem is not happening on my g4 > macs, just on the intel-based macs. Is there more information that > needs to be provided on this issue? Happened to me too (Intel Mac) and the solution turns out to be trivial: a `mkdir /opt/local/etc/dbus-1/session.d' does it nicely. While this is a workaround and not a port-based solution, it is too simple and too straightforward to require a second thought (in my opinion anyway) and is trivial to implement in the dbus port. > Thanks > Joe > > At 1:46 PM -0500 3/26/08, Joe Schnide wrote: > >Hello, > > > >Recently did the selfupdate and update installed ports. Now > >when I try to run deluge, X11 starts fine but I get the error: > > > >Failed to start message bus: Failed to read directory > >"/opt/local/etc/dbus-1/session.d": No such file or directory > >EOF in dbus-launch reading address from bus daemon Cheers, Stefan -- If it was so, it might be; and if it were so, it would be; but as it isn't, it ain't. That's logic. --Lewis Carroll, Through the Looking-Glass From sourceforge.rocks at xemaps.com Tue Apr 1 19:55:28 2008 From: sourceforge.rocks at xemaps.com (sourceforge.rocks@xemaps.com) Date: Tue Apr 1 19:54:28 2008 Subject: [MySQL] Install difficulties : Can't connect to local MySQL server through socket '/opt/local/var/run/mysql5/mysqld.sock' In-Reply-To: References: <61A40F56-F751-4879-89F4-CB9C9C3A48BE@frognet.net> <4D11D863-E341-47D4-BEC5-8AA14139F040@frognet.net> Message-ID: <8716DCC5-08EC-4B47-9A38-9968F9BA34A7@frognet.net> On Apr 1, 2008, at 9:08 AM, Bill Hernandez wrote: > On Apr 1, 2008, at 4:58 AM, sourceforge.rocks@xemaps.com wrote: > >> A reference to this error log was in the message that appeared >> when the "sudo -u mysql mysql_install_db5" command to create the >> initial tables failed. > > > Since I converted to Leopard, I am using a MySQL binary install > until I can get around to doing the whole MacPorts install, but > basically depending upon whether it's a MacPorts install or not the > only thing that should really change is the path to the script : > > (your path to where the script is located would be different than > mine) > > In my case when I am using : > > shell> $ cd /usr/local/mysql > > shell> /usr/local/mysql $ sudo ./scripts/mysql_install_db > > I'm not quite sure why you are using "sudo -u mysql mysql_install_db5" The following is displayed to the terminal after the successful completion of the "$ sudo port install mysql5 +server" command: ########################################################### # A startup item has been generated that will aid in # starting mysql5 with launchd. It is disabled # by default. Execute the following command to start it, # and to cause it to launch at startup: # # sudo launchctl load -w /Library/LaunchDaemons/ org.macports.mysql5.plist ########################################################### ---> Installing mysql5 5.0.51_0+server ****************************************************** * In order to setup the database, you might want to run * sudo -u mysql mysql_install_db5 * if this is a new install ****************************************************** Note the instructions in that last comment box. I was just copying and pasting the commands. > > following "sudo" there should be a command, not a switch "-u" > > As I recall, for the MacPorts install you might try : > > shell> $ sudo mysql_install_db5 --user=mysql > > I assume your $PATH includes /opt/local/lib/mysql5/bin Yes, it does. > > if you are not sure, cd into it... Actually, a simple "echo $PATH" works. > > shell> $ cd /opt/local/lib/mysql5/bin > > shell> /opt/local/lib/mysql5/bin/ $ sudo mysql_install_db5 -- > user=mysql The "sudo -u ...." command seems to have worked (after the temp/ mysql5 directory was properly created). > > Best Regards, > > Bill Hernandez > Plano, Texas Cheers, Mike. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.macosforge.org/pipermail/macports-users/attachments/20080401/12c9148d/attachment.html From ms at mac-specialist.com Wed Apr 2 00:19:03 2008 From: ms at mac-specialist.com (Bill Hernandez) Date: Wed Apr 2 00:18:14 2008 Subject: MACPORTS - mysql5 install on Leopard - step by step instructions Message-ID: <18C634A2-D545-4E1C-A13B-A4115A75110E@mac-specialist.com> ---------------------------------------------------------------------------------- MACPORTS - mysql5 install on Leopard - step by step instructions ---------------------------------------------------------------------------------- I wrote a big long script to set permissions, and posted a bunch of notes to solve some problems, that as it turns out are not neccessary if the installation is done in the correct order. I installed mysql5 +server from scratch, and the outcome was as it should be, it worked just fine, so I have listed the 18 steps that should provide anyone else with the same result... There are three sections, make sure to read it all, then feel free to use either SUMMARY : SUMMARY : (the commands, for easy to follow order) COMMAND SUMMARY : (the bare commands, for easy copy paste, or script creation) DETAILS : (a brief set of instructions, designed more as a tutorial) I think the problem most people have with the install, including myself, is that a couple of the steps in the notes created by mysql_install_db5 are not in the correct order. If you are a database admin that's fine, you don't need the exact steps, but if you install mysql every couple of years or so, you tend to follow the instructions step by step which in this case generates a SOCKET error. After MacPorts installs mysql, and you initialize the database using mysql_install_db5, there are some instructions provided, which unfortunately are not in the correct order, and cause frequent problems, particularly with the SOCKET. The instructions show how to set the root password, followed by instructions for starting the database. Since the database is not running when you enter the commands to set the root password, a SOCKET error is generated. To test this installation, here's what I did : (obviously you don't need to do steps ( A ) thru ( E )) ( A ) I reformatted a drive ( B ) Installed OSX 10.5.2 Leopard ( C ) Installed BBEdit, just so I would have an editor... ( D ) Installed MacPorts 1.6.0 ( E ) Installed and ran MySQL-Server, and MySQL-Client v5.0 = = = = = = = = = = ======================================================================== SUMMARY : (the commands, for easy to follow order) = = = = = = = = = = ======================================================================== ( 01 ) [2008.01.04](07:45PM) -> [username] ~ $ sudo port -v install mysql5 +server ( 02 ) [2008.01.04](07:58PM) -> [username] ~ $ sudo -u mysql mysql_install_db5 ( 03 ) [2008.01.04](08:01PM) -> [username] ~ $ sudo /opt/local/lib/ mysql5/bin/mysqld_safe & ( 04 ) [2008.01.04](08:01PM) -> [username] ~ $ ps aux | grep mysql ( 05 ) [2008.01.04](08:02PM) -> [username] ~ $ sudo find /opt -name mysql_secure_installation ( 06 ) [2008.01.04](08:05PM) -> [username] ~ $ sudo echo ( 07 ) [2008.01.04](08:05PM) -> [username] ~ $ sudo /opt/local/lib/ mysql5/bin/mysql_secure_installation ( 08 ) [2008.01.04](08:06PM) -> [username] ~ $ /opt/local/lib/mysql5/ bin/mysqladmin -u root password '' ( 09 ) [2008.01.04](08:07PM) -> [username] ~ $ /opt/local/lib/mysql5/ bin/mysqladmin -u root -h your_computer_name.local password '' ( 10 ) [2008.01.04](08:08PM) -> [username] ~ $ /opt/local/lib/mysql5/ bin/mysqladmin -u root -h your_computer_name.local -p password '' ( 11 ) [2008.01.04](08:10PM) -> [username] ~ $ sudo find / -name my.cnf ( 12 ) [2008.01.04](08:12PM) -> [username] ~ $ sudo find / -name my[^ \.]*\.cnf ( 13 ) [2008.01.04](08:15PM) -> [username] ~ $ sudo cp /opt/local/ share/mysql5/mysql/my-medium.cnf /opt/local/etc/mysql5/my.cnf ( 14 ) [2008.01.04](08:16PM) -> [username] ~ $ sudo open -a / Applications/BBEdit.app /opt/local/etc/mysql5/my.cnf ( 15 ) [2008.01.04](08:17PM) -> [username] ~ $ echo $PATH ( 16 ) [2008.01.04](08:19PM) -> [username] ~ $ mysql5 -u root -p ( 17 ) [2008.01.04](08:21PM) -> [username] ~ $ sudo launchctl load -w / Library/LaunchDaemons/org.macports.mysql5.plist CAUTION : DO NOT DO STEP 18 UNTIL YOU READ THE NOTES BELOW ( 18 ) [2008.01.04](08:27PM) -> [username] ~ $ sudo cp /opt/local/etc/ php.ini-recommended /opt/local/etc/php.ini = = = = = = = = = = ======================================================================== COMMAND SUMMARY : (the bare commands, for easy copy paste, or script creation) = = = = = = = = = = ======================================================================== sudo port -v install mysql5 +server sudo -u mysql mysql_install_db5 sudo /opt/local/lib/mysql5/bin/mysqld_safe & ps aux | grep mysql sudo find /opt -name mysql_secure_installation sudo echo sudo /opt/local/lib/mysql5/bin/mysql_secure_installation /opt/local/lib/mysql5/bin/mysqladmin -u root password '' /opt/local/lib/mysql5/bin/mysqladmin -u root -h your_computer_name.local password '' /opt/local/lib/mysql5/bin/mysqladmin -u root -h your_computer_name.local -p password '' sudo find / -name my.cnf sudo find / -name my[^\.]*\.cnf sudo cp /opt/local/share/mysql5/mysql/my-medium.cnf /opt/local/etc/ mysql5/my.cnf sudo open -a /Applications/BBEdit.app /opt/local/etc/mysql5/my.cnf echo $PATH mysql5 -u root -p sudo launchctl load -w /Library/LaunchDaemons/org.macports.mysql5.plist CAUTION : DO NOT DO STEP 18 UNTIL YOU READ THE NOTES BELOW ( 18 ) sudo cp /opt/local/etc/php.ini-recommended /opt/local/etc/php.ini = = = = = = = = = = ======================================================================== DETAILS : (a brief set of instructions, designed more as a tutorial) = = = = = = = = = = ======================================================================== If you follow (copy and paste) these instructions step by step from ( 01 ) thru ( 18 ), you should achieve the same exact outcome... ---------------------------------------------------------------------------------- ( 01 ) [2008.01.04](07:45PM) -> [username] ~ $ sudo port -v install mysql5 +server ---------------------------------------------------------------------------------- Password: --> Fetching zlib --> --> ... --> --> Creating launchd control script --> ########################################################### --> # A startup item has been generated that will aid in --> # starting mysql5 with launchd. It is disabled --> # by default. Execute the following command to start it, --> # and to cause it to launch at startup: --> # --> # sudo launchctl load -w /Library/LaunchDaemons/ org.macports.mysql5.plist --> ########################################################### --> --> ... --> --> Installing mysql5 5.0.51_0+server --> ****************************************************** --> * In order to setup the database, you might want to run --> * sudo -u mysql mysql_install_db5 --> * if this is a new install --> ****************************************************** --> Activating mysql5 5.0.51_0+server --> Cleaning mysql5 --> Removing build directory for mysql5 ---------------------------------------------------------------------------------- ( 02 ) [2008.01.04](07:58PM) -> [username] ~ $ sudo -u mysql mysql_install_db5 ---------------------------------------------------------------------------------- Password: --> Installing MySQL system tables... --> 080401 19:59:48 [Warning] Setting lower_case_table_names=2 because file system for /opt/local/var/db/mysql5/ is case insensitive --> OK --> Filling help tables... --> 080401 19:59:48 [Warning] Setting lower_case_table_names=2 because file system for /opt/local/var/db/mysql5/ is case insensitive --> OK --> --> To start mysqld at boot time you have to copy --> support-files/mysql.server to the right place for your system ------------------------------------------- NOTE : Here's where the SOCKET problem is generated you need to start the server (daemon) before you set the password for the mysql root user The order of these instructions is wrong. They should specify : Start the daemon first, make sure the server is running, then set the password... $ sudo /opt/local/lib/mysql5/bin/mysqld_safe & # (hit return twice) $ ps aux | grep mysql $ /opt/local/lib/mysql5/bin/mysqladmin -u root password 'new-password' ------------------------------------------- --> PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER ! --> To do so, start the server, then issue the following commands: --> /opt/local/lib/mysql5/bin/mysqladmin -u root password 'new-password' --> /opt/local/lib/mysql5/bin/mysqladmin -u root -h eagle.local password 'new-password' --> --> Alternatively you can run: --> /opt/local/lib/mysql5/bin/mysql_secure_installation --> --> which will also give you the option of removing the test --> databases and anonymous user created by default. This is --> strongly recommended for production servers. --> --> See the manual for more instructions. --> --> You can START the MySQL daemon with: --> cd /opt/local ; /opt/local/lib/mysql5/bin/mysqld_safe & --> --> You can test the MySQL daemon with mysql-test-run.pl --> cd mysql-test ; perl mysql-test-run.pl --> --> Please report any problems with the /opt/local/lib/mysql5/bin/ mysqlbug script! --> --> The latest information about MySQL is available on the web at --> http://www.mysql.com --> Support MySQL by buying support/licenses at http://shop.mysql.com ---------------------------------------------------------------------------------- ( 03 ) [2008.01.04](08:01PM) -> [username] ~ $ sudo /opt/local/lib/ mysql5/bin/mysqld_safe & ---------------------------------------------------------------------------------- ---------------------------------------------------------------------------------- ( 04 ) [2008.01.04](08:01PM) -> [username] ~ $ ps aux | grep mysql ---------------------------------------------------------------------------------- --> --> ... --> If everything went well, this command will show that MySQL-Server is running, and --> display 4-5 lines showing the associated processes, and some other useful information --> ... --> Let's look for the secure installation script... ---------------------------------------------------------------------------------- ( 05 ) [2008.01.04](08:02PM) -> [username] ~ $ sudo find /opt -name mysql_secure_installation ---------------------------------------------------------------------------------- --> /opt/local/lib/mysql5/bin/mysql_secure_installation --> /opt/local/var/macports/software/mysql5/5.0.51_0+server/opt/local/ lib/mysql5/bin/mysql_secure_installation The preferred way to set the is to run /opt/ local/lib/mysql5/bin/mysql_secure_installation After running "mysql_install_db5", the initial will be empty ---------------------------------------------------------------------------------- ( 06 ) [2008.01.04](08:05PM) -> [username] ~ $ sudo echo ---------------------------------------------------------------------------------- ( 07 ) [2008.01.04](08:05PM) -> [username] ~ $ sudo /opt/local/lib/ mysql5/bin/mysql_secure_installation ---------------------------------------------------------------------------------- Set the now that MySQL-Server is running ---------------------------------------------------------------------------------- ( 08 ) [2008.01.04](08:06PM) -> [username] ~ $ /opt/local/lib/mysql5/ bin/mysqladmin -u root password '' ---------------------------------------------------------------------------------- This worked fine, so the is now set correctly for the localhost. We will now try to set the host Rendevouz address, and steps ( 09 ) and ( 10 ) will generate an error until my.cnf is modified more than likely, that's the only thing I can figure out is causing the error, but for now it's unimportant, so continue with step ( 11 )... ---------------------------------------------------------------------------------- ( 09 ) [2008.01.04](08:07PM) -> [username] ~ $ /opt/local/lib/mysql5/ bin/mysqladmin -u root -h your_computer_name.local password '' ---------------------------------------------------------------------------------- --> /opt/local/lib/mysql5/bin/mysqladmin: connect to server at 'your_computer_name.local' failed --> error: 'Host '192.168.1.176' is not allowed to connect to this MySQL server' Here I will try with the "-p" switch to see if that helps... ---------------------------------------------------------------------------------- ( 10 ) [2008.01.04](08:08PM) -> [username] ~ $ /opt/local/lib/mysql5/ bin/mysqladmin -u root -h your_computer_name.local -p password '' ---------------------------------------------------------------------------------- --> Enter password: --> /opt/local/lib/mysql5/bin/mysqladmin: connect to server at 'your_computer_name.local' failed --> error: 'Host '192.168.1.176' is not allowed to connect to this MySQL server' NOPE, that didn't help, if you need to login this way you might want to read up on : # skip-networking # bind address I normally add all the user GRANTS using Navicat, so this isn't important to me at this point. Let's see if a valid my.cnf exists ---------------------------------------------------------------------------------- ( 11 ) [2008.01.04](08:10PM) -> [username] ~ $ sudo find / -name my.cnf ---------------------------------------------------------------------------------- --> /opt/local/var/macports/sources/rsync.macports.org/release/ports/ databases/mysql4/files/my.cnf A normal MySQL-Server install should have a file /etc/my.cnf, and for MacPorts the file should be /opt/local/etc/mysql5/my.cnf and there isn't one, so that pretty much tells us that MySQL-Server is using the defaults that it was configured with, hence the errors in steps ( 10 ) and ( 11 ). However we'll do a search to see if we find a standard config template, so we will broaden the search. ---------------------------------------------------------------------------------- ( 12 ) [2008.01.04](08:12PM) -> [username] ~ $ sudo find / -name my[^ \.]*\.cnf ---------------------------------------------------------------------------------- --> Password: --> --> /opt/local/share/mysql5/mysql/my-huge.cnf --> /opt/local/share/mysql5/mysql/my-innodb-heavy-4G.cnf --> /opt/local/share/mysql5/mysql/my-large.cnf --> /opt/local/share/mysql5/mysql/my-medium.cnf --> /opt/local/share/mysql5/mysql/my-small.cnf --> /opt/local/var/macports/software/mysql5/5.0.51_0+server/opt/local/ share/mysql5/mysql/my-huge.cnf --> /opt/local/var/macports/software/mysql5/5.0.51_0+server/opt/local/ share/mysql5/mysql/my-innodb-heavy-4G.cnf --> /opt/local/var/macports/software/mysql5/5.0.51_0+server/opt/local/ share/mysql5/mysql/my-large.cnf --> /opt/local/var/macports/software/mysql5/5.0.51_0+server/opt/local/ share/mysql5/mysql/my-medium.cnf --> /opt/local/var/macports/software/mysql5/5.0.51_0+server/opt/local/ share/mysql5/mysql/my-small.cnf Next we will copy a medium template to /opt/local/etc/mysql5/my.cnf ---------------------------------------------------------------------------------- ( 13 ) [2008.01.04](08:15PM) -> [username] ~ $ sudo cp /opt/local/ share/mysql5/mysql/my-medium.cnf /opt/local/etc/mysql5/my.cnf ---------------------------------------------------------------------------------- --> Password: We can edit the my.cnf file now... ---------------------------------------------------------------------------------- ( 14 ) [2008.01.04](08:16PM) -> [username] ~ $ sudo open -a / Applications/BBEdit.app /opt/local/etc/mysql5/my.cnf ---------------------------------------------------------------------------------- You might want to read up on : # skip-networking # bind address Just for grins, let's check the bash path... ---------------------------------------------------------------------------------- ( 15 ) [2008.01.04](08:17PM) -> [username] ~ $ echo $PATH ---------------------------------------------------------------------------------- --> /opt/local/sbin:/opt/local/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/ local/bin:/usr/local/sbin:/Developer/Tools The path shows that /opt/local/sbin:/opt/local/bin exist, which is very good... Let's try to use MySQL-Client to log into theMySQL-Server, and if that works let's tell the client to show us what databases are available, this will confirm, that life is as it should... ---------------------------------------------------------------------------------- ( 16 ) [2008.01.04](08:19PM) -> [username] ~ $ mysql5 -u root -p ---------------------------------------------------------------------------------- --> Enter password: --> --> Welcome to the MySQL monitor. Commands end with ; or \g. --> Your MySQL connection id is 5 --> Server version: 5.0.51 Source distribution --> --> Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> show databases ; --> --> +--------------------+ --> | Database | --> +--------------------+ --> | information_schema | --> | mysql | --> | test | --> +--------------------+ --> 3 rows in set (0.00 sec) --> mysql> quit --> Bye The server is running now, but we want to make sure it starts up every time we re-boot... ---------------------------------------------------------------------------------- ( 17 ) [2008.01.04](08:21PM) -> [username] ~ $ sudo launchctl load -w / Library/LaunchDaemons/org.macports.mysql5.plist ---------------------------------------------------------------------------------- --> Password: CAUTION - READ THIS STEP CAREFULLY, SO YOU DON'T OVERWRITE YOUR php.ini, UNLESS YOU NEED IT : CAUTION - SKIP step ( 18 ) if you already have a php.ini STEP ( 13 ) shows how to create "my.cnf" from the templates: STEP ( 18 ) shows how to create "php.ini" from the templates: If you have PHP installed, and don't have an existing /opt/local/etc/ php.ini, you can create one here: ---------------------------------------------------------------------------------- ( 18 ) [2008.01.04](08:27PM) -> [username] ~ $ sudo cp /opt/local/etc/ php.ini-recommended /opt/local/etc/php.ini ---------------------------------------------------------------------------------- ---------------------------------------------------------------------------------- STANDARD LOCATIONS : You need to be aware of three locations where you have to use matching values for the SOCKET : Normally these would be located at : (MacPorts puts them in a slightly different place as shown below) ( a ) /etc/my.cnf ( b ) /etc/php.ini ( c ) if using a GUI like Navicat the preferences have to be correct for the connection. MACPORTS LOCATIONS : ( a ) /opt/local/etc/mysql5/my.cnf ( b ) /opt/local/etc/php.ini ( c ) if using a GUI like Navicat the preferences have to be correct for the connection. ---------------------------------------------------------------------------------- ---------------------------------------------------------------------------------- Bill Hernandez Plano, Texas From ms at mac-specialist.com Wed Apr 2 00:40:40 2008 From: ms at mac-specialist.com (Bill Hernandez) Date: Wed Apr 2 00:40:02 2008 Subject: MACPORTS - mysql5 install on Leopard - step by step instructions Message-ID: ---------------------------------------------------------------------------------- MACPORTS - mysql5 install on Leopard - step by step instructions ---------------------------------------------------------------------------------- UPDATED : Wednesday, April 2, 2008 (2:37 AM) UPDATE NOTES : Some steps I listed in the tutorial, are not actually required if you just want a list of the commands in either one of the SUMMARIES, so this is an update to the original message, and list the correct commands for the summaries. I wrote a big long script to set permissions, and posted a bunch of notes to solve some problems, that as it turns out are not neccessary if the installation is done in the correct order. I installed mysql5 +server from scratch, and the outcome was as it should be, it worked just fine, so I have listed the 18 steps that should provide anyone else with the same result... There are three sections, make sure to read it all, then feel free to use either SUMMARY : SUMMARY : (the commands, for easy to follow order) COMMAND SUMMARY : (the bare commands, for easy copy paste, or script creation) DETAILS : (a brief set of instructions, designed more as a tutorial) I think the problem most people have with the install, including myself, is that a couple of the steps in the notes created by mysql_install_db5 are not in the correct order. If you are a database admin that's fine, you don't need the exact steps, but if you install mysql every couple of years or so, you tend to follow the instructions step by step which in this case generates a SOCKET error. After MacPorts installs mysql, and you initialize the database using mysql_install_db5, there are some instructions provided, which unfortunately are not in the correct order, and cause frequent problems, particularly with the SOCKET. The instructions show how to set the root password, followed by instructions for starting the database. Since the database is not running when you enter the commands to set the root password, a SOCKET error is generated. To test this installation, here's what I did : (obviously you don't need to do steps ( A ) thru ( E )) ( A ) I reformatted a drive ( B ) Installed OSX 10.5.2 Leopard ( C ) Installed BBEdit, just so I would have an editor... ( D ) Installed MacPorts 1.6.0 ( E ) Installed and ran MySQL-Server, and MySQL-Client v5.0 = = = = = = = = = = ======================================================================== SUMMARY : (the commands, for easy to follow order) = = = = = = = = = = ======================================================================== = = = = = = = = = = ======================================================================== SUMMARY : (the commands, for easy to follow order) = = = = = = = = = = ======================================================================== ( 01 ) [2008.01.04](07:45PM) -> [username] ~ $ sudo port -v install mysql5 +server ( 02 ) [2008.01.04](07:58PM) -> [username] ~ $ sudo -u mysql mysql_install_db5 ( 03 ) [2008.01.04](08:01PM) -> [username] ~ $ sudo /opt/local/lib/ mysql5/bin/mysqld_safe & ( 04 ) [2008.01.04](08:01PM) -> [username] ~ $ ps aux | grep mysql DO EITHER STEP ( 07 ) OR ( 08 ), NOT BOTH ( 07 ) [2008.01.04](08:05PM) -> [username] ~ $ sudo /opt/local/lib/ mysql5/bin/mysql_secure_installation ( 08 ) [2008.01.04](08:06PM) -> [username] ~ $ /opt/local/lib/mysql5/ bin/mysqladmin -u root password '' ( 13 ) [2008.01.04](08:15PM) -> [username] ~ $ sudo cp /opt/local/ share/mysql5/mysql/my-medium.cnf /opt/local/etc/mysql5/my.cnf ( 14 ) [2008.01.04](08:16PM) -> [username] ~ $ sudo open -a / Applications/BBEdit.app /opt/local/etc/mysql5/my.cnf ( 15 ) [2008.01.04](08:17PM) -> [username] ~ $ echo $PATH ( 16 ) [2008.01.04](08:19PM) -> [username] ~ $ mysql5 -u root -p ( 17 ) [2008.01.04](08:21PM) -> [username] ~ $ sudo launchctl load -w / Library/LaunchDaemons/org.macports.mysql5.plist ---------------------------------------------------------------------------------- ---------------------------------------------------------------------------------- CAUTION : DO NOT DO STEP 18 UNTIL YOU READ THE NOTES BELOW ( 18 ) [2008.01.04](08:27PM) -> [username] ~ $ sudo cp /opt/local/etc/ php.ini-recommended /opt/local/etc/php.ini ---------------------------------------------------------------------------------- THESE STEPS ARE NOT NEEDED UNLESS YOU ARE FOLLOWING THE TUTORIAL ---------------------------------------------------------------------------------- ( 05 ) [2008.01.04](08:02PM) -> [username] ~ $ sudo find /opt -name mysql_secure_installation ( 06 ) [2008.01.04](08:05PM) -> [username] ~ $ sudo echo ( 09 ) [2008.01.04](08:07PM) -> [username] ~ $ /opt/local/lib/mysql5/ bin/mysqladmin -u root -h your_computer_name.local password '' ( 10 ) [2008.01.04](08:08PM) -> [username] ~ $ /opt/local/lib/mysql5/ bin/mysqladmin -u root -h your_computer_name.local -p password '' ( 11 ) [2008.01.04](08:10PM) -> [username] ~ $ sudo find / -name my.cnf ( 12 ) [2008.01.04](08:12PM) -> [username] ~ $ sudo find / -name my[^ \.]*\.cnf = = = = = = = = = = ======================================================================== COMMAND SUMMARY : (the bare commands, for easy copy paste, or script creation) = = = = = = = = = = ======================================================================== sudo port -v install mysql5 +server sudo -u mysql mysql_install_db5 sudo /opt/local/lib/mysql5/bin/mysqld_safe & ps aux | grep mysql DO EITHER THE mysql_secure_installation, or set the password, NOT BOTH sudo /opt/local/lib/mysql5/bin/mysql_secure_installation /opt/local/lib/mysql5/bin/mysqladmin -u root password '' sudo cp /opt/local/share/mysql5/mysql/my-medium.cnf /opt/local/etc/ mysql5/my.cnf sudo open -a /Applications/BBEdit.app /opt/local/etc/mysql5/my.cnf echo $PATH mysql5 -u root -p sudo launchctl load -w /Library/LaunchDaemons/org.macports.mysql5.plist = = = = = = = = = = ======================================================================== DETAILS : (a brief set of instructions, designed more as a tutorial) = = = = = = = = = = ======================================================================== If you follow (copy and paste) these instructions step by step from ( 01 ) thru ( 18 ), you should achieve the same exact outcome... ---------------------------------------------------------------------------------- ( 01 ) [2008.01.04](07:45PM) -> [username] ~ $ sudo port -v install mysql5 +server ---------------------------------------------------------------------------------- Password: --> Fetching zlib --> --> ... --> --> Creating launchd control script --> ########################################################### --> # A startup item has been generated that will aid in --> # starting mysql5 with launchd. It is disabled --> # by default. Execute the following command to start it, --> # and to cause it to launch at startup: --> # --> # sudo launchctl load -w /Library/LaunchDaemons/ org.macports.mysql5.plist --> ########################################################### --> --> ... --> --> Installing mysql5 5.0.51_0+server --> ****************************************************** --> * In order to setup the database, you might want to run --> * sudo -u mysql mysql_install_db5 --> * if this is a new install --> ****************************************************** --> Activating mysql5 5.0.51_0+server --> Cleaning mysql5 --> Removing build directory for mysql5 ---------------------------------------------------------------------------------- ( 02 ) [2008.01.04](07:58PM) -> [username] ~ $ sudo -u mysql mysql_install_db5 ---------------------------------------------------------------------------------- Password: --> Installing MySQL system tables... --> 080401 19:59:48 [Warning] Setting lower_case_table_names=2 because file system for /opt/local/var/db/mysql5/ is case insensitive --> OK --> Filling help tables... --> 080401 19:59:48 [Warning] Setting lower_case_table_names=2 because file system for /opt/local/var/db/mysql5/ is case insensitive --> OK --> --> To start mysqld at boot time you have to copy --> support-files/mysql.server to the right place for your system ------------------------------------------- NOTE : Here's where the SOCKET problem is generated you need to start the server (daemon) before you set the password for the mysql root user The order of these instructions is wrong. They should specify : Start the daemon first, make sure the server is running, then set the password... $ sudo /opt/local/lib/mysql5/bin/mysqld_safe & # (hit return twice) $ ps aux | grep mysql $ /opt/local/lib/mysql5/bin/mysqladmin -u root password 'new-password' ------------------------------------------- --> PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER ! --> To do so, start the server, then issue the following commands: --> /opt/local/lib/mysql5/bin/mysqladmin -u root password 'new-password' --> /opt/local/lib/mysql5/bin/mysqladmin -u root -h eagle.local password 'new-password' --> --> Alternatively you can run: --> /opt/local/lib/mysql5/bin/mysql_secure_installation --> --> which will also give you the option of removing the test --> databases and anonymous user created by default. This is --> strongly recommended for production servers. --> --> See the manual for more instructions. --> --> You can START the MySQL daemon with: --> cd /opt/local ; /opt/local/lib/mysql5/bin/mysqld_safe & --> --> You can test the MySQL daemon with mysql-test-run.pl --> cd mysql-test ; perl mysql-test-run.pl --> --> Please report any problems with the /opt/local/lib/mysql5/bin/ mysqlbug script! --> --> The latest information about MySQL is available on the web at --> http://www.mysql.com --> Support MySQL by buying support/licenses at http://shop.mysql.com ---------------------------------------------------------------------------------- ( 03 ) [2008.01.04](08:01PM) -> [username] ~ $ sudo /opt/local/lib/ mysql5/bin/mysqld_safe & ---------------------------------------------------------------------------------- ---------------------------------------------------------------------------------- ( 04 ) [2008.01.04](08:01PM) -> [username] ~ $ ps aux | grep mysql ---------------------------------------------------------------------------------- --> --> ... --> If everything went well, this command will show that MySQL-Server is running, and --> display 4-5 lines showing the associated processes, and some other useful information --> ... --> Let's look for the secure installation script... ---------------------------------------------------------------------------------- ( 05 ) [2008.01.04](08:02PM) -> [username] ~ $ sudo find /opt -name mysql_secure_installation ---------------------------------------------------------------------------------- --> /opt/local/lib/mysql5/bin/mysql_secure_installation --> /opt/local/var/macports/software/mysql5/5.0.51_0+server/opt/local/ lib/mysql5/bin/mysql_secure_installation The preferred way to set the is to run /opt/ local/lib/mysql5/bin/mysql_secure_installation After running "mysql_install_db5", the initial will be empty ---------------------------------------------------------------------------------- ( 06 ) [2008.01.04](08:05PM) -> [username] ~ $ sudo echo ---------------------------------------------------------------------------------- ( 07 ) [2008.01.04](08:05PM) -> [username] ~ $ sudo /opt/local/lib/ mysql5/bin/mysql_secure_installation ---------------------------------------------------------------------------------- Set the now that MySQL-Server is running ---------------------------------------------------------------------------------- ( 08 ) [2008.01.04](08:06PM) -> [username] ~ $ /opt/local/lib/mysql5/ bin/mysqladmin -u root password '' ---------------------------------------------------------------------------------- This worked fine, so the is now set correctly for the localhost. We will now try to set the host Rendevouz address, and steps ( 09 ) and ( 10 ) will generate an error until my.cnf is modified more than likely, that's the only thing I can figure out is causing the error, but for now it's unimportant, so continue with step ( 11 )... ---------------------------------------------------------------------------------- ( 09 ) [2008.01.04](08:07PM) -> [username] ~ $ /opt/local/lib/mysql5/ bin/mysqladmin -u root -h your_computer_name.local password '' ---------------------------------------------------------------------------------- --> /opt/local/lib/mysql5/bin/mysqladmin: connect to server at 'your_computer_name.local' failed --> error: 'Host '192.168.1.176' is not allowed to connect to this MySQL server' Here I will try with the "-p" switch to see if that helps... ---------------------------------------------------------------------------------- ( 10 ) [2008.01.04](08:08PM) -> [username] ~ $ /opt/local/lib/mysql5/ bin/mysqladmin -u root -h your_computer_name.local -p password '' ---------------------------------------------------------------------------------- --> Enter password: --> /opt/local/lib/mysql5/bin/mysqladmin: connect to server at 'your_computer_name.local' failed --> error: 'Host '192.168.1.176' is not allowed to connect to this MySQL server' NOPE, that didn't help, if you need to login this way you might want to read up on : # skip-networking # bind address I normally add all the user GRANTS using Navicat, so this isn't important to me at this point. Let's see if a valid my.cnf exists ---------------------------------------------------------------------------------- ( 11 ) [2008.01.04](08:10PM) -> [username] ~ $ sudo find / -name my.cnf ---------------------------------------------------------------------------------- --> /opt/local/var/macports/sources/rsync.macports.org/release/ports/ databases/mysql4/files/my.cnf A normal MySQL-Server install should have a file /etc/my.cnf, and for MacPorts the file should be /opt/local/etc/mysql5/my.cnf and there isn't one, so that pretty much tells us that MySQL-Server is using the defaults that it was configured with, hence the errors in steps ( 10 ) and ( 11 ). However we'll do a search to see if we find a standard config template, so we will broaden the search. ---------------------------------------------------------------------------------- ( 12 ) [2008.01.04](08:12PM) -> [username] ~ $ sudo find / -name my[^ \.]*\.cnf ---------------------------------------------------------------------------------- --> Password: --> --> /opt/local/share/mysql5/mysql/my-huge.cnf --> /opt/local/share/mysql5/mysql/my-innodb-heavy-4G.cnf --> /opt/local/share/mysql5/mysql/my-large.cnf --> /opt/local/share/mysql5/mysql/my-medium.cnf --> /opt/local/share/mysql5/mysql/my-small.cnf --> /opt/local/var/macports/software/mysql5/5.0.51_0+server/opt/local/ share/mysql5/mysql/my-huge.cnf --> /opt/local/var/macports/software/mysql5/5.0.51_0+server/opt/local/ share/mysql5/mysql/my-innodb-heavy-4G.cnf --> /opt/local/var/macports/software/mysql5/5.0.51_0+server/opt/local/ share/mysql5/mysql/my-large.cnf --> /opt/local/var/macports/software/mysql5/5.0.51_0+server/opt/local/ share/mysql5/mysql/my-medium.cnf --> /opt/local/var/macports/software/mysql5/5.0.51_0+server/opt/local/ share/mysql5/mysql/my-small.cnf Next we will copy a medium template to /opt/local/etc/mysql5/my.cnf ---------------------------------------------------------------------------------- ( 13 ) [2008.01.04](08:15PM) -> [username] ~ $ sudo cp /opt/local/ share/mysql5/mysql/my-medium.cnf /opt/local/etc/mysql5/my.cnf ---------------------------------------------------------------------------------- --> Password: We can edit the my.cnf file now... ---------------------------------------------------------------------------------- ( 14 ) [2008.01.04](08:16PM) -> [username] ~ $ sudo open -a / Applications/BBEdit.app /opt/local/etc/mysql5/my.cnf ---------------------------------------------------------------------------------- You might want to read up on : # skip-networking # bind address Just for grins, let's check the bash path... ---------------------------------------------------------------------------------- ( 15 ) [2008.01.04](08:17PM) -> [username] ~ $ echo $PATH ---------------------------------------------------------------------------------- --> /opt/local/sbin:/opt/local/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/ local/bin:/usr/local/sbin:/Developer/Tools The path shows that /opt/local/sbin:/opt/local/bin exist, which is very good... Let's try to use MySQL-Client to log into theMySQL-Server, and if that works let's tell the client to show us what databases are available, this will confirm, that life is as it should... ---------------------------------------------------------------------------------- ( 16 ) [2008.01.04](08:19PM) -> [username] ~ $ mysql5 -u root -p ---------------------------------------------------------------------------------- --> Enter password: --> --> Welcome to the MySQL monitor. Commands end with ; or \g. --> Your MySQL connection id is 5 --> Server version: 5.0.51 Source distribution --> --> Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> show databases ; --> --> +--------------------+ --> | Database | --> +--------------------+ --> | information_schema | --> | mysql | --> | test | --> +--------------------+ --> 3 rows in set (0.00 sec) --> mysql> quit --> Bye The server is running now, but we want to make sure it starts up every time we re-boot... ---------------------------------------------------------------------------------- ( 17 ) [2008.01.04](08:21PM) -> [username] ~ $ sudo launchctl load -w / Library/LaunchDaemons/org.macports.mysql5.plist ---------------------------------------------------------------------------------- --> Password: CAUTION - READ THIS STEP CAREFULLY, SO YOU DON'T OVERWRITE YOUR php.ini, UNLESS YOU NEED IT : CAUTION - SKIP step ( 18 ) if you already have a php.ini STEP ( 13 ) shows how to create "my.cnf" from the templates: STEP ( 18 ) shows how to create "php.ini" from the templates: If you have PHP installed, and don't have an existing /opt/local/etc/ php.ini, you can create one here: ---------------------------------------------------------------------------------- ( 18 ) [2008.01.04](08:27PM) -> [username] ~ $ sudo cp /opt/local/etc/ php.ini-recommended /opt/local/etc/php.ini ---------------------------------------------------------------------------------- ---------------------------------------------------------------------------------- STANDARD LOCATIONS : You need to be aware of three locations where you have to use matching values for the SOCKET : Normally these would be located at : (MacPorts puts them in a slightly different place as shown below) ( a ) /etc/my.cnf ( b ) /etc/php.ini ( c ) if using a GUI like Navicat the preferences have to be correct for the connection. MACPORTS LOCATIONS : ( a ) /opt/local/etc/mysql5/my.cnf ( b ) /opt/local/etc/php.ini ( c ) if using a GUI like Navicat the preferences have to be correct for the connection. ---------------------------------------------------------------------------------- ---------------------------------------------------------------------------------- Bill Hernandez Plano, Texas From ms at mac-specialist.com Wed Apr 2 09:46:30 2008 From: ms at mac-specialist.com (Bill Hernandez) Date: Wed Apr 2 09:45:27 2008 Subject: MACPORTS - mysql5 install on Leopard - step by step instructions In-Reply-To: <7C2795DB-20C8-4CF1-959E-7E5752224169@frognet.net> References: <7C2795DB-20C8-4CF1-959E-7E5752224169@frognet.net> Message-ID: On Apr 2, 2008, at 6:01 AM, sourceforge.rocks@xemaps.com wrote: > A step you may want to add is creating a symlink from /tmp/ > mysql.sock to /opt/local/var/run/mysql5/mysqld.sock: > > sudo ln -s /opt/local/var/run/mysql5/mysqld.sock /tmp/mysql.sock > > This is for people who want to use the MySQL Administrator and/or > MySQL Query Browser supplied by MySQL I have not used either, but I would imagine that MySQL Administrator and/or MySQL Query Browser probably have a connection profile that allows you to specify the correct socket in a similar fashion to the Navicat steps I listed below : Somewhere I was reading yesterday that there was vulnerability associated with '/tmp/mysql.sock', so setting the preferences in MySQL Administrator with the correct path might be a better solution than the soft link to a file that gets created and destroyed every time the MySQL-Server starts and stops. This is a little piece from a previous comment I posted: To avoid : Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) You will need to make sure MySQL-Server is running by using : $ ps aux | grep mysql You should also make sure that the two configuration files "my.cnf", and "php.ini" have the same path to where the socket file will be created when MySQL-Server starts up.. MACPORTS LOCATIONS : ( a ) /opt/local/etc/mysql5/my.cnf should contain something like : [mysqld] port = 3306 socket = /opt/local/var/run/mysql5/mysqld.sock ( b ) /opt/local/etc/php.ini should contain something like : [MySQL] mysql.default_socket = /opt/local/var/run/mysql5/mysqld.sock ( c ) if using a GUI like Navicat the preferences have to specify the correct path for the socket If using Navicat try the following : ( 1 ) Select a connection profile from the "Connections" portion (left side) of the Navicat window ( 2 ) Select "Connection --> Connetion Properties..." from the menubar ( 3 ) Select the "Advanced" tab ( 4 ) Check the "Use socket for localhost Connection" checkbox ( 5 ) Set the "Socket File Path :" field to "/opt/local/var/ run/mysql5/mysqld.sock" without the quotes ( 6 ) Click the "Test Connection" button, and if MySQL is running you should see "Connetion Successful" These are handy : ( 1 ) open -a /Applications/BBEdit.app /opt/local/etc/mysql5/my.cnf ( 2 ) open -a /Applications/BBEdit.app /opt/local/etc/php.ini ( 3 ) open /Applications/Navicat.app Best Regards, Bill Hernandez ms@mac-specialist.com From waterson at maubi.net Wed Apr 2 15:47:18 2008 From: waterson at maubi.net (Chris Waterson) Date: Wed Apr 2 15:46:09 2008 Subject: fftw-3, no .dylib? Message-ID: Was "--enabled-shared" left off on purpose in the Portfile for fftw-3? thanks! chris From kuepper.jochen at googlemail.com Wed Apr 2 23:29:06 2008 From: kuepper.jochen at googlemail.com (=?ISO-8859-1?Q?Jochen_K=FCpper?=) Date: Wed Apr 2 23:28:21 2008 Subject: fftw-3, no .dylib? In-Reply-To: References: Message-ID: <287D9ED4-0BB9-4C47-A2E4-75AD72D5357A@googlemail.com> On 03.04.2008, at 00:47, Chris Waterson wrote: > Was "--enabled-shared" left off on purpose in the Portfile for fftw-3? I don't see a reason, definitely we could at least have a variant for it... However, configure typically sets that by itself if it detects the system's ability... Is that different for fftw-3? Greetings, Jochen -- Einigkeit und Recht und Freiheit http://www.Jochen-Kuepper.de Libert?, ?galit?, Fraternit? GnuPG key: CC1B0B4D Sex, drugs and rock-n-roll -------------- next part -------------- A non-text attachment was scrubbed... Name: PGP.sig Type: application/pgp-signature Size: 194 bytes Desc: This is a digitally signed message part Url : http://lists.macosforge.org/pipermail/macports-users/attachments/20080403/49910bf1/PGP-0001.bin From marcuscalhounlopez at mac.com Thu Apr 3 07:54:18 2008 From: marcuscalhounlopez at mac.com (Marcus Calhoun-Lopez) Date: Thu Apr 3 07:53:18 2008 Subject: fftw-3, no .dylib? References: Message-ID: Chris Waterson maubi.net> writes: > > Was "--enabled-shared" left off on purpose in the Portfile for fftw-3? > > thanks! > chris > > I was able to successfully build fftw-3 with the "--enabled-shared" option. I submitted a ticket and patch to this effect: http://trac.macports.org/projects/macports/ticket/14914 From alejandro.aragon at gmail.com Thu Apr 3 13:01:35 2008 From: alejandro.aragon at gmail.com (Alejandro Aragon) Date: Thu Apr 3 13:00:25 2008 Subject: emacs variant? Message-ID: <76E2F4F2-1A05-4978-8499-8B72689244F8@uiuc.edu> Hi everyone, I looked at the emacs variants and there are just too many, so instead of installing and testing each one of those, I thought that it was better to ask because some of you have probably done that. So from the list aaragon@~/Workspace/mVAC/src$port variants emacs emacs has the variants: universal darwin_7 darwin_9 x11: Builds emacs as a X11 program with Lucid widgets motif: Builds emacs as an X11 program with Motif widgets gtk: Builds emacs as an X11 program with GTK+2 widgets carbon: Adds a Mac (Carbon) version of Emacs atsui: Adds a Mac (Carbon) version of Emacs that uses the ATSUI protocol What should I get installed? I'm on v10.5.2. Thank you all, aa From mvfranz at gmail.com Thu Apr 3 18:34:59 2008 From: mvfranz at gmail.com (Michael Franz) Date: Thu Apr 3 18:33:46 2008 Subject: Building MacPorts using MacPorts Message-ID: Hi, I am trying to use macport to build and install macports. I used sudo port -v build macports and get build errors. I find this strange since if I just download the source and compile with the instructions on the website it works without a problem. cc -dynamiclib -L/usr/local/lib registry.o util.o entry.o entryobj.o -o registry.dylib -L/System/Library/Frameworks/Tcl.framework/Versions/8.4 -ltclstub8.4 -arch ppc -arch i386 -L/usr/local/lib ../cregistry/cregistry.a -lsqlite3 ld: warning -L: directory name (/usr/local/lib) does not exist ld: warning -L: directory name (/usr/local/lib) does not exist ld: warning -L: directory name (/usr/local/lib) does not exist ld: warning -L: directory name (/usr/local/lib) does not exist ld: archive: ../cregistry/cregistry.a has no table of contents, add one with ranlib(1) (can't load from it) ld: archive: ../cregistry/cregistry.a has no table of contents, add one with ranlib(1) (can't load from it) /usr/libexec/gcc/i686-apple-darwin8/4.0.1/libtool: internal link edit command failed /usr/libexec/gcc/powerpc-apple-darwin8/4.0.1/libtool: internal link edit command failed lipo: can't figure out the architecture type of: /var/tmp//ccC9sGem.out make[2]: *** [registry.dylib] Error 1 make[1]: *** [all] Error 1 make: *** [all] Error 1 this is on tiger intel and it also fails on leopard. Is there a way to build macports with macports? Michael -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.macosforge.org/pipermail/macports-users/attachments/20080403/853db3c6/attachment.html From afb at macports.org Thu Apr 3 23:17:51 2008 From: afb at macports.org (=?ISO-8859-1?Q?Anders_F_Bj=F6rklund?=) Date: Thu Apr 3 23:16:47 2008 Subject: Building MacPorts using MacPorts In-Reply-To: References: Message-ID: Michael Franz wrote: > I am trying to use macport to build and install macports. I used > sudo port -v build macports and get build errors. I find this > strange since if I just download the source and compile with the > instructions on the website it works without a problem. > > cc -dynamiclib -L/usr/local/lib registry.o util.o entry.o > entryobj.o -o registry.dylib -L/System/Library/Frameworks/ > Tcl.framework/Versions/8.4 -ltclstub8.4 -arch ppc -arch i386 -L/usr/ > local/lib ../cregistry/cregistry.a -lsqlite3 > ld: warning -L: directory name (/usr/local/lib) does not exist > ld: warning -L: directory name (/usr/local/lib) does not exist > ld: warning -L: directory name (/usr/local/lib) does not exist > ld: warning -L: directory name (/usr/local/lib) does not exist > ld: archive: ../cregistry/cregistry.a has no table of contents, add > one with ranlib(1) (can't load from it) > ld: archive: ../cregistry/cregistry.a has no table of contents, add > one with ranlib(1) (can't load from it) > /usr/libexec/gcc/i686-apple-darwin8/4.0.1/libtool: internal link > edit command failed > /usr/libexec/gcc/powerpc-apple-darwin8/4.0.1/libtool: internal link > edit command failed > lipo: can't figure out the architecture type of: /var/tmp// > ccC9sGem.out > make[2]: *** [registry.dylib] Error 1 > make[1]: *** [all] Error 1 > make: *** [all] Error 1 > > this is on tiger intel and it also fails on leopard. > > Is there a way to build macports with macports? This is a bug in 1.6.0, fixed in 1.6.1 and later (unreleased). See http://trac.macports.org/projects/macports/changeset/32105 --anders From j.van_den_hoff at fzd.de Fri Apr 4 02:12:46 2008 From: j.van_den_hoff at fzd.de (Joerg van den Hoff) Date: Fri Apr 4 02:11:32 2008 Subject: xv and png Message-ID: <20080404091246.GB6715@marco.fz-rossendorf.de> dear all, standard `xv' does not have png support although patches seem to exist. `port info xv' lists `libpng' as one of the dependencies and PNG is explicitely mentioned under the supported file formats. therefore I installed it hoping for PNG support, but without success: no display of png images. any ideas? thanks joerg From barnracoon at gmail.com Fri Apr 4 05:20:56 2008 From: barnracoon at gmail.com (Ian) Date: Fri Apr 4 05:19:42 2008 Subject: Error installing Message-ID: <17a63c260804040520i6a21df6ar175aa1c62ad4f495@mail.gmail.com> Hi, I tried searching through the archives but couldnt find anyone with a resolution to the following problem. When trying to install MacPorts-1.6.0 i get the following error: "The following install step failed: run postflight script for MacPorts-1.6.0. Contact the software manufacturer for assistance." Any ideas how to fix it. I am running the following: Max OSX: 10.5.2 Xcode: 3.0 X11: 2.1.1 My "env" output: MANPATH=/usr/share/man:/usr/local/share/man:/usr/X11/man TERM_PROGRAM=Apple_Terminal TERM=xterm-color SHELL=/bin/bash TMPDIR=/var/folders/WH/WHJPAt05E0u-Gr+etwU4EE+++TI/-Tmp-/ Apple_PubSub_Socket_Render=/tmp/launch-KoQ9r3/Render TERM_PROGRAM_VERSION=240 USER=ian COMMAND_MODE=unix2003 SSH_AUTH_SOCK=/tmp/launch-lmgFT8/Listeners __CF_USER_TEXT_ENCODING=0x1F5:0:0 PATH=/opt/local/bin:/opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin PWD=/Users/ian SHLVL=1 HOME=/Users/ian LOGNAME=ian LC_CTYPE=UTF-8 DISPLAY=:0.0 SECURITYSESSIONID=9125e0 _=/usr/bin/env Funny thing is there was no /etc/X11 directory even though it is installed. I created it and linked my .profile to it: Macintosh:~ ian$ cat /etc/X11/xinit/xinitrc source ~/.profile Macintosh:~ ian$ Any ideas as to what im doing wrong? Thanks Ian From emer at emer.net Fri Apr 4 05:55:01 2008 From: emer at emer.net (Mark Anderson) Date: Fri Apr 4 05:53:48 2008 Subject: Ticket #14887 (tesseract) Message-ID: <5DFFCDF3-90B0-491A-88CD-BFCBFD8BAA92@emer.net> I posted a ticket with a Portfile for the tesseract OCR engine, can someone please commit it? Mark From macports.users at gmail.com Fri Apr 4 08:37:45 2008 From: macports.users at gmail.com (Charlse Darwin) Date: Fri Apr 4 08:36:43 2008 Subject: layout file for .tex files In-Reply-To: References: <58CFF930-E67A-47D8-A32C-57FA70FE8A90@gmail.com> <1fde5440804031107j6e9bf0f0n5ccb0a234892a4b8@mail.gmail.com> <041EA51C-97D6-4B35-9D86-71DDBDEB43DF@gmail.com> <1fde5440804040559r119bca40n4a960dd42585eb3a@mail.gmail.com> Message-ID: <31AB55CD-B332-4D0B-A64B-7BCF4908F65C@gmail.com> On Apr 4, 2008, at 11:22 AM, Bob Lounsbury wrote: On Fri, Apr 4, 2008 at 9:01 AM, Charlse Darwin wrote: > $ port installed | grep texlive > texlive_base @2007_1 (active) > texlive_texmf-minimal @2007_0 (active) > > > $ which latex > no latex in /opt/local/share /Users/pm/WebKit/WebKitTools/Scripts > /usr/local/bin /Users/pm/Documents/scripts/ /opt/local/bin /opt/ > local/sbin > /usr/bin /usr/sbin /bin /sbin /Users/pm/WebKit/WebKitTools/Scripts > /usr/local/bin /Users/pm/Documents/scripts/ /opt/local/bin /opt/ > local/sbin > /usr/bin /usr/sbin /bin /sbin /bin /sbin /usr/bin /usr/sbin > > Since I think his TeX distribution is fine. > > /Bob Strange. All I can say is you have the 'base' and the 'texmf-minimal' texlive packages installed and this does not seem to be a complete TeX distribution install. We've been Cc:ing, jmr@macports.org. Do they not have a recommendation of what macport packages are necessary for a complete TeX installation of texlive? $ port info lyx | grep Dep Library Dependencies: qt4-mac, texlive, ImageMagick, python25 I will forward a copy to macports' list. Either consider installing 'texlive' and/or 'texlive_texmf-full' from macports or whatever is recommended by the macport maintainers or install MacTeX as Bennett suggested. /Bob From macports.users at gmail.com Fri Apr 4 08:44:19 2008 From: macports.users at gmail.com (Charlse Darwin) Date: Fri Apr 4 08:43:14 2008 Subject: layout file for .tex files Message-ID: Begin forwarded message: From: "Bob Lounsbury" Date: April 3, 2008 9:40:14 AM EDT (CA) To: "Charlse Darwin" Cc: "LyX Users List" , rsorasen@broadpark.no Subject: Re: layout file for .tex files On Thu, Apr 3, 2008 at 4:13 AM, Charlse Darwin wrote: > Hi, > > It seems that I have textlive already installed. > > $ port installed | grep texlive > texlive_base @2007_1 (active) > texlive_texmf-minimal @2007_0 (active) > $ Before we try anything else. Open a shell as root and run 'texhash' this should refresh the LaTeX package database. Then open LyX and run Tools->Reconfigure and restart LyX, maybe run Reconfigure twice and restart LyX. Do you still receive the error message? /Bob Begin forwarded message: From: "Bob Lounsbury" Date: April 3, 2008 10:57:00 AM EDT (CA) To: "Charlse Darwin" Cc: "LyX Users List" , rsorasen@broadpark.no, jmr@macports.org Subject: Re: layout file for .tex files On Thu, Apr 3, 2008 at 8:31 AM, Charlse Darwin wrote: > > On Apr 3, 2008, at 8:40 AM, Bob Lounsbury wrote: > > On Thu, Apr 3, 2008 at 4:13 AM, Charlse Darwin > > wrote: > > >> Hi, >> >> It seems that I have textlive already installed. >> >> $ port installed | grep texlive >> texlive_base @2007_1 (active) >> texlive_texmf-minimal @2007_0 (active) >> $ >> >> > > > Before we try anything else. Open a shell as root and run 'texhash' > this should refresh the LaTeX package database. > > $ sudo texhash > texhash: Updating /opt/local/share/texmf/ls-R... > texhash: Updating /opt/local/share/texmf-dist/ls-R... > texhash: Updating /opt/local/share/texmf-var/ls-R... > texhash: Done. > $ > > > Then open LyX and run > Tools->Reconfigure and restart LyX, maybe run Reconfigure twice and > restart LyX. Do you still receive the error message? > > /Bob > > I have Tools->TeX Information here and then `LaTex classes' `Latex > styles' > `BibTex styles'. I Rescan them all (twice). > And also LyX->Reconfigure which I did and then it asked me to > restart the > LyX. > > Same error message pops-up! > > Here is the file that I am trying to open: In LyX Document->Settings->Document Class does 'article' show as 'Unavailable: article'? If so then either you don't have 'article.cls' installed on your computer through the texlive packages or LyX is not recognizing the path to texmf* folders. If you have article.cls installed in one of the /opt/local/share/texmf* directories then the path needs to be added to Tools->Preferences->Paths->PATH prefix so that LyX will recognize the files installed there. You should just need to add /opt/local/share to the list of paths separated by a semi-colon and then reconfigure LyX. /Bob Begin forwarded message: From: "Bob Lounsbury" Date: April 3, 2008 11:51:43 AM EDT (CA) To: "Charlse Darwin" Cc: "LyX Users List" , rsorasen@broadpark.no, jmr@macports.org Subject: Re: layout file for .tex files On Thu, Apr 3, 2008 at 9:23 AM, Charlse Darwin wrote: > In Lyx->Preference->Paths->PATH prefix I have >> /usr/texbin:/usr/local/gwTeX/bin/powerpc-apple-darwin-current:/usr/ >> local/gwTeX/bin/i386-apple-darwin-current:/usr/local/teTeX/bin/ >> powerpc-apple-darwin-current:/usr/local/teTeX/bin/i386-apple- >> darwin-current:/sw/bin:/sw/sbin:/opt/local/teTeX/bin:/opt/local/ >> bin:/usr/local/bin:/usr/bin:/usr/X11R6/bin:/usr/sbin:/sbin That's the problem then. You need to add the path to your paths :-}. So that LyX knows where all your LaTeX stuff is. This is what the LyX wiki says, http://wiki.lyx.org/Mac/Mac: To use other implementations of teTeX which do not install the binaries in /usr/texbin, /usr/local/teTeX/bin/powerpc-apple-darwin-current, /sw/bin, /opt/local/teTeX/bin, or /usr/local/bin, either link the teTeX binaries to one of those directories, or add the PATH of your teTeX binaries to the PATH prefix field in LyX -> Preferences -> Paths. I'm not exactly positive what path you need to add which would correspond to the teTeX binaries. I would just do a trial and error. First, just add /opt/local/share and then Reconfigure LyX and see if Document-Settings->Document Class has changed to "available". Bennett is the Mac expert but he hasn't responded yet. I'm sure he would have a more sophisticated approach. Cheers, /Bob Begin forwarded message: From: "Bennett Helm" Date: April 3, 2008 2:07:03 PM EDT (CA) To: "Bob Lounsbury" Cc: "Charlse Darwin" , "LyX Users List" , rsorasen@broadpark.no, jmr@macports.org Subject: Re: layout file for .tex files On Thu, Apr 3, 2008 at 11:51 AM, Bob Lounsbury wrote: On Thu, Apr 3, 2008 at 9:23 AM, Charlse Darwin wrote: > In Lyx->Preference->Paths->PATH prefix I have > >/usr/texbin:/usr/local/gwTeX/bin/powerpc-apple-darwin-current:/ usr/local/gwTeX/bin/i386-apple-darwin-current:/usr/local/teTeX/bin/ powerpc-apple-darwin-current:/usr/local/teTeX/bin/i386-apple-darwin- current:/sw/bin:/sw/sbin:/opt/local/teTeX/bin:/opt/local/bin:/usr/ local/bin:/usr/bin:/usr/X11R6/bin:/usr/sbin:/sbin That's the problem then. You need to add the path to your paths :-}. So that LyX knows where all your LaTeX stuff is. Yes. I'm not sure where macports puts its latex files, but you can find out by going to Terminal.app (Applications > Utilities) and typing: which latex which should return the path to latex. That path (minus the "latex" part) is what you need to add to the PATH prefix, as Bob indicated. So for me, "which latex" returns: /usr/texbin/latex and so I add to the beginning of PATH prefix just the "/usr/texbin" part, followed by a colon (":"). (Of course, in my case, "/usr/ texbin" is already there, which is why it works for me.) Then LyX should work for you. Please let us know what you have to add. I haven't used macports lately, so I'm not sure where they currently put the latex executables, but we should make sure that is a part of the default PATH prefix so that others don't have this problem. One final note: there's no reason to use macports to install LyX. They actually tend to be behind the current LyX binaries we post on the LyX website. All you need to do is download the binary, drag LyX.app wherever you want it, run the installer, and you're done. Bennett Begin forwarded message: From: "Bennett Helm" Date: April 4, 2008 8:59:28 AM EDT (CA) To: "Charlse Darwin" Cc: "Bob Lounsbury" , "LyX Users List" , rsorasen@broadpark.no, jmr@macports.org Subject: Re: layout file for .tex files On Fri, Apr 4, 2008 at 6:30 AM, Charlse Darwin wrote: $ which latex no latex in ~/WebKit/WebKitTools/Scripts /usr/local/bin ~/Documents/ scripts/ /opt/local/bin /opt/local/sbin /usr/bin /usr/sbin /bin / sbin /bin /sbin /usr/bin /usr/sbin $ port info lyx ? Library Dependencies: qt4-mac, texlive, ImageMagick, python25 $ Am I missing latex? And if so, where do I get it from? It certainly looks as though you're missing it. (My guess is that if you installed it via macports, it would be in /opt/local somewhere. It used to be in /opt/local/teTeX/bin, but maybe with a switch to TeXlive, that's changed to -- guessing here -- /opt/local/texlive/ bin. If so, it looks as though macports failed to set up your paths properly.) If you really don't have a TeX installation, I'd recommend getting MacTeX from: http://www.tug.org/mactex/ Bennett Begin forwarded message: From: "Bob Lounsbury" Date: April 4, 2008 9:41:44 AM EDT (CA) To: "Bennett Helm" Cc: "Charlse Darwin" , "LyX Users List" , rsorasen@broadpark.no, jmr@macports.org Subject: Re: layout file for .tex files On Fri, Apr 4, 2008 at 6:59 AM, Bennett Helm wrote: > > On Fri, Apr 4, 2008 at 6:30 AM, Charlse Darwin > > wrote: >> >> >> $ which latex >> no latex in ~/WebKit/WebKitTools/Scripts /usr/local/bin > ~/Documents/scripts/ /opt/local/bin /opt/local/sbin /usr/bin /usr/ > sbin /bin > /sbin /bin /sbin /usr/bin /usr/sbin >> $ port info lyx >> ? >> Library Dependencies: qt4-mac, texlive, ImageMagick, python25 >> $ >> >> Am I missing latex? And if so, where do I get it from? > > It certainly looks as though you're missing it. (My guess is that > if you > installed it via macports, it would be in /opt/local somewhere. It > used to > be in /opt/local/teTeX/bin, but maybe with a switch to TeXlive, that's > changed to -- guessing here -- /opt/local/texlive/bin. If so, it > looks as > though macports failed to set up your paths properly.) > > If you really don't have a TeX installation, I'd recommend getting > MacTeX > from: > > http://www.tug.org/mactex/ > > > Bennett Isn't there a way to add a PATH to the 'which latex' variable? I'm pretty sure that Charlse has TeX through the macports TeXlive packages because of this (that he posted): $ sudo texhash texhash: Updating /opt/local/share/texmf/ls-R... texhash: Updating /opt/local/share/texmf-dist/ls-R... texhash: Updating /opt/local/share/texmf-var/ls-R... texhash: Done. $ And this (now there is a macports texlive_full package if you have space): $ port installed | grep texlive texlive_base @2007_1 (active) texlive_texmf-minimal @2007_0 (active) $ And this (so I think the needed LaTeX packages are available): /opt/local/share/texmf-dist/tex/latex/base/article.cls It just seems to me that TeXlive has changed their paths and that hasn't affected the system properly (I'm a little oblivious to path stuff :-}). Does running 'latex' on a '.tex' file work in a shell? Even if it doesn't I think TeX is installed and Charlse only needs to add /opt/local/share to his LyX paths and LyX will work even if straight "latex" doesn't. Which brings me back to my first question isn't there a way to add /opt/local/share to the 'which latex' PATH? Since I think his TeX distribution is fine. /Bob Begin forwarded message: From: "Bob Lounsbury" Date: April 4, 2008 11:22:13 AM EDT (CA) To: "Charlse Darwin" Cc: "Bennett Helm" , "LyX Users List" , rsorasen@broadpark.no, jmr@macports.org Subject: Re: layout file for .tex files On Fri, Apr 4, 2008 at 9:01 AM, Charlse Darwin wrote: > $ port installed | grep texlive > texlive_base @2007_1 (active) > texlive_texmf-minimal @2007_0 (active) > > > $ which latex > no latex in /opt/local/share /Users/pm/WebKit/WebKitTools/Scripts > /usr/local/bin /Users/pm/Documents/scripts/ /opt/local/bin /opt/ > local/sbin > /usr/bin /usr/sbin /bin /sbin /Users/pm/WebKit/WebKitTools/Scripts > /usr/local/bin /Users/pm/Documents/scripts/ /opt/local/bin /opt/ > local/sbin > /usr/bin /usr/sbin /bin /sbin /bin /sbin /usr/bin /usr/sbin > > Since I think his TeX distribution is fine. > > /Bob Strange. All I can say is you have the 'base' and the 'texmf-minimal' texlive packages installed and this does not seem to be a complete TeX distribution install. We've been Cc:ing, jmr@macports.org. Do they not have a recommendation of what macport packages are necessary for a complete TeX installation of texlive? Either consider installing 'texlive' and/or 'texlive_texmf-full' from macports or whatever is recommended by the macport maintainers or install MacTeX as Bennett suggested. /Bob Begin forwarded message: From: "Bob Lounsbury" Date: April 2, 2008 10:08:12 PM EDT (CA) To: "LyX Users List" Subject: Re: layout file for .tex files On Wed, Apr 2, 2008 at 7:33 PM, Charlse Darwin wrote: > I just installed LyX via MacPorts and now have a newbie question > for you > all: > > I get following error message: > > ``The layout file requested by this document, article.layout, is not > usable. This is probably because a LaTeX class or style file > required by it > is not available. See the Customization documentation for more > information. > LyX will not be able to produce output.'' > > when I try to open a .tex file. What's going on and what are we > talking > about? > > $ uname -a > Darwin Mac.loc 8.11.0 Darwin Kernel Version 8.11.0: Wed Oct 10 > 18:26:00 PDT > 2007; root:xnu-792.24.17~1/RELEASE_PPC Power Macintosh powerpc > $ > Sounds like you haven't installed a TeX distribution. The distribution will contain article.cls which article.layout needs. I don't know much about Mac stuff, but I thought MacTeX was a popular option. I'm sure there are other ways. Actually, I just looked at MacPorts and they have TeXLive (this is the prefered distribution for Linux). You need to install TeXLive which is a TeX distribution. Cheers, /Bob From roger.hoover at gmail.com Fri Apr 4 09:58:31 2008 From: roger.hoover at gmail.com (Roger Hoover) Date: Fri Apr 4 09:57:15 2008 Subject: p5-test-harness conflict with perl5.8 @5.8.8_2 Message-ID: <44cb1ba30804040958p5603377oaba5c7da4a64256@mail.gmail.com> After upgrading my perl5.8 port to 5.8.8_2, I'm getting a conflict with the p5-test-harness port. Ultimately, I'm trying to install p5-dbi but the dependency chain breaks on p5-test-harness. Anyone else having this problem? sudo port install p5-test-harness ---> Fetching p5-test-harness ---> Verifying checksum(s) for p5-test-harness ---> Extracting p5-test-harness ---> Configuring p5-test-harness ---> Building p5-test-harness with target all ---> Staging p5-test-harness into destroot You must install or activate this package with '-f' (force) as it needs to overwrite files installed by the perl5.8 port ---> Installing p5-test-harness 2.64_1 ---> Activating p5-test-harness 2.64_1 Error: Target org.macports.activate returned: Image error: /opt/local/bin/prove is being used by the active perl5.8 port. Please deactivate this port first, or use the -f flag to force the activation. Error: Status 1 encountered during processing. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.macosforge.org/pipermail/macports-users/attachments/20080404/f0bdebba/attachment.html From macports.users at gmail.com Fri Apr 4 09:59:27 2008 From: macports.users at gmail.com (Charlse Darwin) Date: Fri Apr 4 09:58:18 2008 Subject: layout file for .tex files In-Reply-To: References: <58CFF930-E67A-47D8-A32C-57FA70FE8A90@gmail.com> <1fde5440804031107j6e9bf0f0n5ccb0a234892a4b8@mail.gmail.com> <041EA51C-97D6-4B35-9D86-71DDBDEB43DF@gmail.com> <1fde5440804040559r119bca40n4a960dd42585eb3a@mail.gmail.com> <31AB55CD-B332-4D0B-A64B-7BCF4908F65C@gmail.com> Message-ID: On Apr 4, 2008, at 12:25 PM, Bob Lounsbury wrote: On Fri, Apr 4, 2008 at 9:37 AM, Charlse Darwin wrote: > $ port info lyx | grep Dep > > Library Dependencies: qt4-mac, texlive, ImageMagick, python25 Since texlive is listed here, I would 'assume' that you need to install the macports texlive package to complete the TeX install. Cheers, /Bob I have it installed already. I wouldn't install the Lyx without first installing its dependencies. $ port installed | grep texlive texlive_base @2007_1 (active) texlive_texmf-minimal @2007_0 (active) From dluke at geeklair.net Fri Apr 4 10:14:19 2008 From: dluke at geeklair.net (Daniel J. Luke) Date: Fri Apr 4 10:13:02 2008 Subject: p5-test-harness conflict with perl5.8 @5.8.8_2 In-Reply-To: <44cb1ba30804040958p5603377oaba5c7da4a64256@mail.gmail.com> References: <44cb1ba30804040958p5603377oaba5c7da4a64256@mail.gmail.com> Message-ID: On Apr 4, 2008, at 12:58 PM, Roger Hoover wrote: > After upgrading my perl5.8 port to 5.8.8_2, I'm getting a conflict > with the p5-test-harness port. Ultimately, I'm trying to install p5- > dbi but the dependency chain breaks on p5-test-harness. Anyone else > having this problem? > > sudo port install p5-test-harness > ---> Fetching p5-test-harness > ---> Verifying checksum(s) for p5-test-harness > ---> Extracting p5-test-harness > ---> Configuring p5-test-harness > ---> Building p5-test-harness with target all > ---> Staging p5-test-harness into destroot > You must install or activate this package with '-f' (force) as it > needs to overwrite files installed by the perl5.8 port The answer you seek is in the line just above :) > ---> Installing p5-test-harness 2.64_1 > ---> Activating p5-test-harness 2.64_1 > Error: Target org.macports.activate returned: Image error: /opt/ > local/bin/prove is being used by the active perl5.8 port. Please > deactivate this port first, or use the -f flag to force the > activation. > Error: Status 1 encountered during processing. -- Daniel J. Luke +========================================================+ | *---------------- dluke@geeklair.net ----------------* | | *-------------- http://www.geeklair.net -------------* | +========================================================+ | Opinions expressed are mine and do not necessarily | | reflect the opinions of my employer. | +========================================================+ -------------- next part -------------- A non-text attachment was scrubbed... Name: PGP.sig Type: application/pgp-signature Size: 194 bytes Desc: This is a digitally signed message part Url : http://lists.macosforge.org/pipermail/macports-users/attachments/20080404/25264e08/PGP.bin From jf at gobinjf.be Fri Apr 4 10:24:36 2008 From: jf at gobinjf.be (=?ISO-8859-1?Q?Jean-Fran=E7ois_Gobin?=) Date: Fri Apr 4 10:23:37 2008 Subject: Error building "octave" from port Message-ID: <706F6B6C-3A51-47E9-84F0-3A4640C5A893@gobinjf.be> Hi, I'm trying to install octave. It chokes : make -C ../../scripts DOCSTRINGS make[4]: `DOCSTRINGS' is up to date. making arith.texi from arith.txi /bin/sh: line 1: 2592 Segmentation fault ./munge-texi -d ../../ src/DOCSTRINGS -d ../../scripts/DOCSTRINGS < arith.txi > arith.texi-t make[3]: *** [arith.texi] Error 139 make[2]: *** [interpreter] Error 2 make[1]: *** [doc] Error 2 make: *** [all] Error 2 Error: Status 1 encountered during processing. Version is octave-2.9.15 Going a bit deeper into what happens : jfg:interpreter jean-francoisgobin$ gdb munge-texi GNU gdb 6.3.50-20050815 (Apple version gdb-768) (Tue Oct 2 04:07:49 UTC 2007) Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-apple-darwin"...Reading symbols for shared libraries .... done (gdb) run -d ../../src/DOCSTRINGS -d ../../scripts/DOCSTRINGS < arith.txi > arith.texi-t Starting program: /opt/local/var/macports/build/ _opt_local_var_macports_sources_rsync .macports.org_release_ports_math_octave/work/octave-2.9.15/doc/ interpreter/munge-texi -d ../../src/DOCSTRINGS -d ../../scripts/ DOCSTRINGS < arith.txi > arith.texi-t Reading symbols for shared libraries +++. done Program received signal EXC_BAD_ACCESS, Could not access memory. Reason: 13 at address: 0x00000000 0x8fe18b42 in __dyld_misaligned_stack_error () Seems someone is trying to play with a null pointer jF From frstan at bellsouth.net Fri Apr 4 10:30:09 2008 From: frstan at bellsouth.net (William Davis) Date: Fri Apr 4 10:28:58 2008 Subject: p5-test-harness conflict with perl5.8 @5.8.8_2 In-Reply-To: <44cb1ba30804040958p5603377oaba5c7da4a64256@mail.gmail.com> References: <44cb1ba30804040958p5603377oaba5c7da4a64256@mail.gmail.com> Message-ID: <8DB24B10-CFFE-49AC-94B8-221D37AEBD8F@bellsouth.net> On Apr 4, 2008, at 12:58 PM, Roger Hoover wrote: > After upgrading my perl5.8 port to 5.8.8_2, I'm getting a conflict > with the p5-test-harness port. Ultimately, I'm trying to install p5- > dbi but the dependency chain breaks on p5-test-harness. Anyone else > having this problem? > > sudo port install p5-test-harness > ---> Fetching p5-test-harness > ---> Verifying checksum(s) for p5-test-harness > ---> Extracting p5-test-harness > ---> Configuring p5-test-harness > ---> Building p5-test-harness with target all > ---> Staging p5-test-harness into destroot > You must install or activate this package with '-f' (force) as it > needs to overwrite files installed by the perl5.8 port > ---> Installing p5-test-harness 2.64_1 > ---> Activating p5-test-harness 2.64_1 > Error: Target org.macports.activate returned: Image error: /opt/ > local/bin/prove is being used by the active perl5.8 port. Please > deactivate this port first, or use the -f flag to force the > activation. > Error: Status 1 encountered during processing. > > sudo port -df activate p5-test-harness that will "force" the activation. This is normal for pearl. There are a fair number of pearl modules that work this way. William Davis frstanATbellsouthDOTnet Mac OS X.5.2 Darwin 9.2.2 Xquartz 2.2.0 - (xorg-server 1.3.0-apple13) Mac Mini Intel Duo @ 1.86 GHz Mundus vult decepi, ego non From roger.hoover at gmail.com Fri Apr 4 11:04:26 2008 From: roger.hoover at gmail.com (Roger Hoover) Date: Fri Apr 4 11:03:11 2008 Subject: p5-test-harness conflict with perl5.8 @5.8.8_2 In-Reply-To: <8DB24B10-CFFE-49AC-94B8-221D37AEBD8F@bellsouth.net> References: <44cb1ba30804040958p5603377oaba5c7da4a64256@mail.gmail.com> <8DB24B10-CFFE-49AC-94B8-221D37AEBD8F@bellsouth.net> Message-ID: <44cb1ba30804041104n54f6a5c8gaebb296e09d09ea9@mail.gmail.com> OK. I didn't know this was the norm. Thanks! On Fri, Apr 4, 2008 at 10:30 AM, William Davis wrote: > > On Apr 4, 2008, at 12:58 PM, Roger Hoover wrote: > > After upgrading my perl5.8 port to 5.8.8_2, I'm getting a conflict with > > the p5-test-harness port. Ultimately, I'm trying to install p5-dbi but the > > dependency chain breaks on p5-test-harness. Anyone else having this > > problem? > > > > sudo port install p5-test-harness > > ---> Fetching p5-test-harness > > ---> Verifying checksum(s) for p5-test-harness > > ---> Extracting p5-test-harness > > ---> Configuring p5-test-harness > > ---> Building p5-test-harness with target all > > ---> Staging p5-test-harness into destroot > > You must install or activate this package with '-f' (force) as it needs > > to overwrite files installed by the perl5.8 port > > ---> Installing p5-test-harness 2.64_1 > > ---> Activating p5-test-harness 2.64_1 > > Error: Target org.macports.activate returned: Image error: > > /opt/local/bin/prove is being used by the active perl5.8 port. Please > > deactivate this port first, or use the -f flag to force the activation. > > Error: Status 1 encountered during processing. > > > > > > > sudo port -df activate p5-test-harness > > that will "force" the activation. This is normal for pearl. There are a > fair number of pearl modules that work this way. > > > > William Davis > frstanATbellsouthDOTnet > Mac OS X.5.2 Darwin 9.2.2 > Xquartz 2.2.0 - (xorg-server 1.3.0-apple13) > Mac Mini Intel Duo @ 1.86 GHz > > Mundus vult decepi, ego non > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.macosforge.org/pipermail/macports-users/attachments/20080404/e5b52cd7/attachment.html From waterson at maubi.net Fri Apr 4 11:07:19 2008 From: waterson at maubi.net (Chris Waterson) Date: Fri Apr 4 11:06:33 2008 Subject: Error building "octave" from port In-Reply-To: <706F6B6C-3A51-47E9-84F0-3A4640C5A893@gobinjf.be> References: <706F6B6C-3A51-47E9-84F0-3A4640C5A893@gobinjf.be> Message-ID: <8A0CDB97-D94B-4911-9823-B4CE22DDC3BC@maubi.net> On Apr 4, 2008, at 10:24 AM, Jean-Fran?ois Gobin wrote: > Hi, > > I'm trying to install octave. It chokes : > > make -C ../../scripts DOCSTRINGS > make[4]: `DOCSTRINGS' is up to date. > making arith.texi from arith.txi > /bin/sh: line 1: 2592 Segmentation fault ./munge-texi -d ../../ > src/DOCSTRINGS -d ../../scripts/DOCSTRINGS < arith.txi > arith.texi-t > make[3]: *** [arith.texi] Error 139 > make[2]: *** [interpreter] Error 2 > make[1]: *** [doc] Error 2 > make: *** [all] Error 2 > > Error: Status 1 encountered during processing. > > Version is octave-2.9.15 See . There's a portfile in that ticket that can be used to build octave-3.0.0. chris From milosh at macports.org Fri Apr 4 12:16:40 2008 From: milosh at macports.org (Emmanuel Hainry) Date: Fri Apr 4 12:15:23 2008 Subject: layout file for .tex files In-Reply-To: References: <1fde5440804031107j6e9bf0f0n5ccb0a234892a4b8@mail.gmail.com> <041EA51C-97D6-4B35-9D86-71DDBDEB43DF@gmail.com> <1fde5440804040559r119bca40n4a960dd42585eb3a@mail.gmail.com> <31AB55CD-B332-4D0B-A64B-7BCF4908F65C@gmail.com> Message-ID: <20080404191640.GA8870@velsheda.lateralis.org> Citando Charlse Darwin : > > On Apr 4, 2008, at 12:25 PM, Bob Lounsbury wrote: > On Fri, Apr 4, 2008 at 9:37 AM, Charlse Darwin > wrote: >> $ port info lyx | grep Dep >> >> Library Dependencies: qt4-mac, texlive, ImageMagick, python25 > > Since texlive is listed here, I would 'assume' that you need to > install the macports texlive package to complete the TeX install. > > Cheers, > /Bob > > I have it installed already. I wouldn't install the Lyx without first > installing its dependencies. > > $ port installed | grep texlive > texlive_base @2007_1 (active) > texlive_texmf-minimal @2007_0 (active) No you don't, you have texlive_base installed, but not texlive (which installs all the "binaries" in /opt/local/bin. For the fastest install, you can 'sudo port install +minimal'. If you want a more complete latex packages collection, forget about the +minimal. Best, Emmanuel From frstan at bellsouth.net Fri Apr 4 12:19:54 2008 From: frstan at bellsouth.net (William Davis) Date: Fri Apr 4 12:18:36 2008 Subject: gnucash-docs needs to drop scrollkeeper Message-ID: <36F49897-5D26-4AF6-9171-4328B15F666B@bellsouth.net> For gunucash-docs: the dependentcy on scrollkeeper needs to be removed and rarian substitued. William Davis frstanATbellsouthDOTnet Mac OS X.5.2 Darwin 9.2.2 Xquartz 2.2.0 - (xorg-server 1.3.0-apple13) Mac Mini Intel Duo @ 1.86 GHz Mundus vult decepi, ego non From macports.users at gmail.com Fri Apr 4 12:48:38 2008 From: macports.users at gmail.com (Charlse Darwin) Date: Fri Apr 4 14:15:35 2008 Subject: layout file for .tex files In-Reply-To: <20080404191640.GA8870@velsheda.lateralis.org> References: <1fde5440804031107j6e9bf0f0n5ccb0a234892a4b8@mail.gmail.com> <041EA51C-97D6-4B35-9D86-71DDBDEB43DF@gmail.com> <1fde5440804040559r119bca40n4a960dd42585eb3a@mail.gmail.com> <31AB55CD-B332-4D0B-A64B-7BCF4908F65C@gmail.com> <20080404191640.GA8870@velsheda.lateralis.org> Message-ID: <635B317C-4628-4ABD-BAE2-CC7866DFD01B@gmail.com> On Apr 4, 2008, at 3:16 PM, Emmanuel Hainry wrote: Citando Charlse Darwin : > > On Apr 4, 2008, at 12:25 PM, Bob Lounsbury wrote: > On Fri, Apr 4, 2008 at 9:37 AM, Charlse Darwin > wrote: >> $ port info lyx | grep Dep >> >> Library Dependencies: qt4-mac, texlive, ImageMagick, python25 > > Since texlive is listed here, I would 'assume' that you need to > install the macports texlive package to complete the TeX install. > > Cheers, > /Bob > > I have it installed already. I wouldn't install the Lyx without first > installing its dependencies. > > $ port installed | grep texlive > texlive_base @2007_1 (active) > texlive_texmf-minimal @2007_0 (active) No you don't, you have texlive_base installed, but not texlive (which installs all the "binaries" in /opt/local/bin. For the fastest install, you can 'sudo port install +minimal'. If you want a more complete latex packages collection, forget about the +minimal. Best, Emmanuel _______________________________________________ macports-users mailing list macports-users@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo/macports-users Thanks Emmanuel, `sudo port install texlive +minimal? worked the trick. $ which latex /opt/local/bin/latex $ From macports.users at gmail.com Fri Apr 4 14:43:09 2008 From: macports.users at gmail.com (Charlse Darwin) Date: Fri Apr 4 14:41:54 2008 Subject: No match for mactex found Message-ID: $ port search MacTeX No match for MacTeX found Can (should) I file a ticket? From james.sumners at gmail.com Fri Apr 4 16:07:59 2008 From: james.sumners at gmail.com (James Sumners) Date: Fri Apr 4 16:06:40 2008 Subject: No match for mactex found In-Reply-To: References: Message-ID: How about `port search teTeX`? On Fri, Apr 4, 2008 at 5:43 PM, Charlse Darwin wrote: > $ port search MacTeX > No match for MacTeX found > > Can (should) I file a ticket? -- James Sumners http://james.roomfullofmirrors.com/ "All governments suffer a recurring problem: Power attracts pathological personalities. It is not that power corrupts but that it is magnetic to the corruptible. Such people have a tendency to become drunk on violence, a condition to which they are quickly addicted." Missionaria Protectiva, Text QIV (decto) CH:D 59 From jkeen at verizon.net Fri Apr 4 16:47:44 2008 From: jkeen at verizon.net (James E Keenan) Date: Fri Apr 4 16:46:28 2008 Subject: p5-test-harness conflict with perl5.8 @5.8.8_2 In-Reply-To: <20080404230644.8F60723EC83@lists.macosforge.org> References: <20080404230644.8F60723EC83@lists.macosforge.org> Message-ID: <9153CFBE-8F30-41DF-A7FB-49A483899150@verizon.net> On Apr 4, 2008, at 7:06 PM, macports-users- request@lists.macosforge.org wrote: > Message: 1 > Date: Fri, 4 Apr 2008 13:30:09 -0400 > From: William Davis > Subject: Re: p5-test-harness conflict with perl5.8 @5.8.8_2 > To: Roger Hoover > Cc: macports-users@lists.macosforge.org > On Apr 4, 2008, at 12:58 PM, Roger Hoover wrote: > >> After upgrading my perl5.8 port to 5.8.8_2, I'm getting a conflict >> with the p5-test-harness port. Ultimately, I'm trying to install p5- >> dbi but the dependency chain breaks on p5-test-harness. Anyone else >> having this problem? >> >> sudo port install p5-test-harness >> ---> Fetching p5-test-harness >> ---> Verifying checksum(s) for p5-test-harness >> ---> Extracting p5-test-harness >> ---> Configuring p5-test-harness >> ---> Building p5-test-harness with target all >> ---> Staging p5-test-harness into destroot >> You must install or activate this package with '-f' (force) as it >> needs to overwrite files installed by the perl5.8 port >> ---> Installing p5-test-harness 2.64_1 >> ---> Activating p5-test-harness 2.64_1 >> Error: Target org.macports.activate returned: Image error: /opt/ >> local/bin/prove is being used by the active perl5.8 port. Please >> deactivate this port first, or use the -f flag to force the >> activation. >> Error: Status 1 encountered during processing. >> >> > > sudo port -df activate p5-test-harness > > that will "force" the activation. This is normal for pearl. There are > a fair number of pearl modules that work this way. > > s/pearl/perl/; I don't know enough about macports yet to comment on the macports- specific issues at hand. But let me note that Perl 5.8.0 was released in July 2002 and Test::Harness was one of its core modules. Both Perl and Test::Harness have evolved considerably since then. In particular, Test::Harness underwent a major change at version 2.64 -- precisely the version noted in the message above. The current stable release of Perl is 5.10 (released December 2007) and the version of Test::Harness that accompanied Perl 5.10 is basically the same as that in 2.64. From roger.hoover at gmail.com Fri Apr 4 16:54:44 2008 From: roger.hoover at gmail.com (Roger Hoover) Date: Fri Apr 4 16:53:25 2008 Subject: p5-test-harness conflict with perl5.8 @5.8.8_2 In-Reply-To: <9153CFBE-8F30-41DF-A7FB-49A483899150@verizon.net> References: <20080404230644.8F60723EC83@lists.macosforge.org> <9153CFBE-8F30-41DF-A7FB-49A483899150@verizon.net> Message-ID: <44cb1ba30804041654v37091dc3u31fdd52ff4b0dee3@mail.gmail.com> Thanks, James. On Fri, Apr 4, 2008 at 4:47 PM, James E Keenan wrote: > > On Apr 4, 2008, at 7:06 PM, macports-users-request@lists.macosforge.orgwrote: > > > Message: 1 > > Date: Fri, 4 Apr 2008 13:30:09 -0400 > > From: William Davis > > Subject: Re: p5-test-harness conflict with perl5.8 @5.8.8_2 > > To: Roger Hoover > > Cc: macports-users@lists.macosforge.org > > On Apr 4, 2008, at 12:58 PM, Roger Hoover wrote: > > > > After upgrading my perl5.8 port to 5.8.8_2, I'm getting a conflict > > > with the p5-test-harness port. Ultimately, I'm trying to install p5- > > > dbi but the dependency chain breaks on p5-test-harness. Anyone else > > > having this problem? > > > > > > sudo port install p5-test-harness > > > ---> Fetching p5-test-harness > > > ---> Verifying checksum(s) for p5-test-harness > > > ---> Extracting p5-test-harness > > > ---> Configuring p5-test-harness > > > ---> Building p5-test-harness with target all > > > ---> Staging p5-test-harness into destroot > > > You must install or activate this package with '-f' (force) as it > > > needs to overwrite files installed by the perl5.8 port > > > ---> Installing p5-test-harness 2.64_1 > > > ---> Activating p5-test-harness 2.64_1 > > > Error: Target org.macports.activate returned: Image error: /opt/ > > > local/bin/prove is being used by the active perl5.8 port. Please > > > deactivate this port first, or use the -f flag to force the > > > activation. > > > Error: Status 1 encountered during processing. > > > > > > > > > > > sudo port -df activate p5-test-harness > > > > that will "force" the activation. This is normal for pearl. There are > > a fair number of pearl modules that work this way. > > > > > > > s/pearl/perl/; > > I don't know enough about macports yet to comment on the macports-specific > issues at hand. But let me note that Perl 5.8.0 was released in July 2002 > and Test::Harness was one of its core modules. Both Perl and Test::Harness > have evolved considerably since then. In particular, Test::Harness > underwent a major change at version 2.64 -- precisely the version noted in > the message above. The current stable release of Perl is 5.10 (released > December 2007) and the version of Test::Harness that accompanied Perl 5.10 > is basically the same as that in 2.64. > > _______________________________________________ > macports-users mailing list > macports-users@lists.macosforge.org > http://lists.macosforge.org/mailman/listinfo/macports-users > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.macosforge.org/pipermail/macports-users/attachments/20080404/2f431c63/attachment.html From raimue at macports.org Fri Apr 4 17:39:41 2008 From: raimue at macports.org (=?ISO-8859-1?Q?Rainer_M=FCller?=) Date: Fri Apr 4 17:38:23 2008 Subject: xv and png In-Reply-To: <20080404091246.GB6715@marco.fz-rossendorf.de> References: <20080404091246.GB6715@marco.fz-rossendorf.de> Message-ID: <47F6CA4D.3000305@macports.org> Joerg van den Hoff wrote: > standard `xv' does not have png support although patches > seem to exist. The standard xv release does not support PNG images according to the homepage. Even if there are any patches available somewhere, they are not applied at the moment. There is an official patch on the downloads page, "Patch to read/write PNG files" [1]. The statement in the description is, "This version has been patched to support the PNG & PhotoCD image types." But it seems that it is just using the standard source distribution without additional patches. > `port info xv' lists `libpng' as one of the dependencies > and PNG is explicitely mentioned under the supported file > formats. therefore I installed it hoping for PNG support, > but without success: no display of png images. Strange enough, it is really linked against libpng. But it can't display PNG images for me neither. $ otool -L /opt/local/bin/xv /opt/local/bin/xv: [...] /opt/local/lib/libjpeg.62.dylib (compatibility version 63.0.0, current version 63.0.0) /opt/local/lib/libtiff.3.dylib (compatibility version 12.0.0, current version 12.2.0) /usr/X11/lib/libpng.3.dylib (compatibility version 4.0.0, current version 4.0.0) [...] Rainer [1] http://www.trilon.com/xv/downloads.html#png-patch From raimue at macports.org Fri Apr 4 17:46:49 2008 From: raimue at macports.org (=?ISO-8859-1?Q?Rainer_M=FCller?=) Date: Fri Apr 4 17:45:30 2008 Subject: Error installing In-Reply-To: <17a63c260804040520i6a21df6ar175aa1c62ad4f495@mail.gmail.com> References: <17a63c260804040520i6a21df6ar175aa1c62ad4f495@mail.gmail.com> Message-ID: <47F6CBF9.8030102@macports.org> Ian wrote: > When trying to install MacPorts-1.6.0 i get the following error: > > "The following install step failed: run postflight script for > MacPorts-1.6.0. Contact the software manufacturer for assistance." This is just a outstanding bug in the 1.6.0 installer. Run the following command to set up your .profile (the tinyurl links to [1]): $ curl -Lo postflight http://tinyurl.com/2qqbth && bash postflight > Funny thing is there was no /etc/X11 directory even though it is > installed. I created it and linked my .profile to it: > Macintosh:~ ian$ cat /etc/X11/xinit/xinitrc > source ~/.profile Don't try messing around with X11. There is no /etc/X11 in Leopard. All you need is to set up your .profile/.bashrc. Either automatically by the postflight script or manually as described in the guide [2] and you are done. Rainer [1] http://svn.macports.org/repository/macports/branches/release_1_6/base/portmgr/dmg/postflight [2] http://guide.macports.org/#installing.shell From raimue at macports.org Fri Apr 4 17:47:36 2008 From: raimue at macports.org (=?ISO-8859-1?Q?Rainer_M=FCller?=) Date: Fri Apr 4 17:46:18 2008 Subject: No match for mactex found In-Reply-To: References: Message-ID: <47F6CC28.5070406@macports.org> James Sumners wrote: > How about `port search teTeX`? teTeX is dead, use texlive. Rainer From james.sumners at gmail.com Fri Apr 4 17:58:39 2008 From: james.sumners at gmail.com (James Sumners) Date: Fri Apr 4 17:57:19 2008 Subject: No match for mactex found In-Reply-To: <47F6CC28.5070406@macports.org> References: <47F6CC28.5070406@macports.org> Message-ID: Right. I forgot. And I use texlive :) On Fri, Apr 4, 2008 at 8:47 PM, Rainer M?ller wrote: > James Sumners wrote: > > > How about `port search teTeX`? > > > > teTeX is dead, use texlive. > > Rainer > -- James Sumners http://james.roomfullofmirrors.com/ "All governments suffer a recurring problem: Power attracts pathological personalities. It is not that power corrupts but that it is magnetic to the corruptible. Such people have a tendency to become drunk on violence, a condition to which they are quickly addicted." Missionaria Protectiva, Text QIV (decto) CH:D 59 From ryandesign at macports.org Fri Apr 4 18:02:43 2008 From: ryandesign at macports.org (Ryan Schmidt) Date: Fri Apr 4 18:02:11 2008 Subject: xv and png In-Reply-To: <47F6CA4D.3000305@macports.org> References: <20080404091246.GB6715@marco.fz-rossendorf.de> <47F6CA4D.3000305@macports.org> Message-ID: <6AD183FE-A3F1-4A35-A7B3-0FD957BE3DCD@macports.org> On Apr 4, 2008, at 19:39, Rainer M?ller wrote: > Joerg van den Hoff wrote: > >> standard `xv' does not have png support although patches >> seem to exist. > > The standard xv release does not support PNG images according to > the homepage. Even if there are any patches available somewhere, > they are not applied at the moment. > > There is an official patch on the downloads page, "Patch to read/ > write PNG files" [1]. > > The statement in the description is, "This version has been patched > to support the PNG & PhotoCD image types." But it seems that it is > just using the standard source distribution without additional > patches. > >> `port info xv' lists `libpng' as one of the dependencies >> and PNG is explicitely mentioned under the supported file >> formats. therefore I installed it hoping for PNG support, >> but without success: no display of png images. > > Strange enough, it is really linked against libpng. But it can't > display PNG images for me neither. > > $ otool -L /opt/local/bin/xv > /opt/local/bin/xv: > [...] > /opt/local/lib/libjpeg.62.dylib (compatibility version > 63.0.0, current version 63.0.0) > /opt/local/lib/libtiff.3.dylib (compatibility version > 12.0.0, current version 12.2.0) > /usr/X11/lib/libpng.3.dylib (compatibility version 4.0.0, > current version 4.0.0) > [...] Looks like it's also linked against the system's libpng, not MacPorts' libpng, which is unfortunate and should be fixed. From ryandesign at macports.org Fri Apr 4 18:08:32 2008 From: ryandesign at macports.org (Ryan Schmidt) Date: Fri Apr 4 18:08:00 2008 Subject: gnucash-docs needs to drop scrollkeeper In-Reply-To: <36F49897-5D26-4AF6-9171-4328B15F666B@bellsouth.net> References: <36F49897-5D26-4AF6-9171-4328B15F666B@bellsouth.net> Message-ID: Please file a ticket if one does not already exist. On Apr 4, 2008, at 14:19, William Davis wrote: > For gunucash-docs: the dependentcy on scrollkeeper needs to be > removed and rarian substitued. From frstan at bellsouth.net Sat Apr 5 01:02:24 2008 From: frstan at bellsouth.net (William Davis) Date: Sat Apr 5 01:01:06 2008 Subject: gnucash-docs needs to drop scrollkeeper In-Reply-To: References: <36F49897-5D26-4AF6-9171-4328B15F666B@bellsouth.net> Message-ID: On Apr 4, 2008, at 9:08 PM, Ryan Schmidt wrote: > Please file a ticket if one does not already exist. > > > On Apr 4, 2008, at 14:19, William Davis wrote: > >> For gunucash-docs: the dependentcy on scrollkeeper needs to be >> removed and rarian substitued. > Ticket #14926 (new defect) Opened 3 seconds ago For gunucash-docs: the dependentcy on scrollkeeper needs to be removed and rarian substitued William Davis frstanATbellsouthDOTnet Mac OS X.5.2 Darwin 9.2.2 Xquartz 2.2.0 - (xorg-server 1.3.0-apple13) Mac Mini Intel Duo @ 1.86 GHz Mundus vult decepi, ego non -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.macosforge.org/pipermail/macports-users/attachments/20080405/3e0ed54f/attachment.html From randall.h.wood at alexandriasoftware.com Sat Apr 5 01:22:20 2008 From: randall.h.wood at alexandriasoftware.com (Randall Wood) Date: Sat Apr 5 01:20:59 2008 Subject: gnucash-docs needs to drop scrollkeeper In-Reply-To: References: <36F49897-5D26-4AF6-9171-4328B15F666B@bellsouth.net> Message-ID: In the future, a link to the ticket would be far more useful than cutting and pasting the ticket into email. On Sat, Apr 5, 2008 at 4:02 AM, William Davis wrote: > > > On Apr 4, 2008, at 9:08 PM, Ryan Schmidt wrote: > Please file a ticket if one does not already exist. > > > On Apr 4, 2008, at 14:19, William Davis wrote: > > For gunucash-docs: the dependentcy on scrollkeeper needs to be removed and > rarian substitued. > > > > > > > > > > Ticket #14926 (new defect) > > Opened 3 seconds ago > For gunucash-docs: the dependentcy on scrollkeeper needs to be removed and > rarian substitued > > > > > William Davis > frstanATbellsouthDOTnet > Mac OS X.5.2 Darwin 9.2.2 > Xquartz 2.2.0 - (xorg-server 1.3.0-apple13) > Mac Mini Intel Duo @ 1.86 GHz > > Mundus vult decepi, ego non > > _______________________________________________ > macports-users mailing list > macports-users@lists.macosforge.org > http://lists.macosforge.org/mailman/listinfo/macports-users > > -- Randall Wood randall.h.wood@alexandriasoftware.com "The rules are simple: The ball is round. The game lasts 90 minutes. All the rest is just philosophy." From milosh at