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 macports.org Sat Apr 5 01:52:40 2008 From: milosh at macports.org (Emmanuel Hainry) Date: Sat Apr 5 01:51:20 2008 Subject: No match for mactex found In-Reply-To: References: Message-ID: <20080405085240.GA3262@velsheda.lateralis.org> Citando Charlse Darwin : > $ port search MacTeX > No match for MacTeX found > > Can (should) I file a ticket? MacTeX is a texlive distribution specially designed for mac users. It provides TeXlive (provided in macports by the texlive port), ghostscript, ImageMagick, TeXshop (which are all available separately in macports) as well as some other programs such as bibdesk or LatexIt which are not in macports (to my knowledge). It would be hence conflicting with a lot of ports to provide it in macports. However, if some of the utilities mactex installs are useful to you, you can install them separately and file a request on trac for their inclusion in macports. Emmanuel From j.van_den_hoff at fzd.de Sat Apr 5 03:25:27 2008 From: j.van_den_hoff at fzd.de (Joerg van den Hoff) Date: Sat Apr 5 03:24:20 2008 Subject: xv and png In-Reply-To: <6AD183FE-A3F1-4A35-A7B3-0FD957BE3DCD@macports.org> References: <20080404091246.GB6715@marco.fz-rossendorf.de> <47F6CA4D.3000305@macports.org> <6AD183FE-A3F1-4A35-A7B3-0FD957BE3DCD@macports.org> Message-ID: <20080405102527.GH19868@claude.fz-rossendorf.de> On Fri, Apr 04, 2008 at 08:02:43PM -0500, Ryan Schmidt wrote: > 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. > is mr. nomaintainer informed? :-) and it would be really great, if the PNG patch could really be included: missing PNG support is the one big shortcoming of `xv'. as `xv' seems otherwise frozen since the mid nineties applying the patch seems a one time action. and for standard tasks `xv' still seems really superior to `ImageMagick' (standard operations such as edge detection run faster by a signifcant factor (5-10) and yield really much better results). joerg From raimue at macports.org Sat Apr 5 03:32:02 2008 From: raimue at macports.org (=?ISO-8859-1?Q?Rainer_M=FCller?=) Date: Sat Apr 5 03:30:51 2008 Subject: xv and png In-Reply-To: <6AD183FE-A3F1-4A35-A7B3-0FD957BE3DCD@macports.org> References: <20080404091246.GB6715@marco.fz-rossendorf.de> <47F6CA4D.3000305@macports.org> <6AD183FE-A3F1-4A35-A7B3-0FD957BE3DCD@macports.org> Message-ID: <47F75522.2040605@macports.org> Ryan Schmidt wrote: > Looks like it's also linked against the system's libpng, not > MacPorts' libpng, which is unfortunate and should be fixed. It has a dependency on lib:libpng.3:libpng, so this is intended. Rainer From raimue at macports.org Sat Apr 5 03:57:01 2008 From: raimue at macports.org (=?ISO-8859-15?Q?Rainer_M=FCller?=) Date: Sat Apr 5 03:58:35 2008 Subject: xv and png In-Reply-To: <20080405102527.GH19868@claude.fz-rossendorf.de> References: <20080404091246.GB6715@marco.fz-rossendorf.de> <47F6CA4D.3000305@macports.org> <6AD183FE-A3F1-4A35-A7B3-0FD957BE3DCD@macports.org> <20080405102527.GH19868@claude.fz-rossendorf.de> Message-ID: <47F75AFD.6050406@macports.org> Joerg van den Hoff wrote: > and it would be really great, if the PNG patch could really be > included: missing PNG support is the one big shortcoming of `xv'. > as `xv' seems otherwise frozen since the mid nineties applying the patch > seems a one time action. I will work on inclusion of this patch. Rainer From tom at tacocat.net Sat Apr 5 05:30:03 2008 From: tom at tacocat.net (Tom Allison) Date: Sat Apr 5 05:28:44 2008 Subject: postgresql82 Message-ID: <47F770CB.8080006@tacocat.net> I had some Apple upgrades come in recently and noticed a few things that were out of whack -- like I had some issues with the minimize feature not working. And then I realized that my database isn't running. How do I get this back into the sys_init process so it will run again? I don't see any errors in /opt/local/var/log/postgres82/postgres.log. These are the last lines: LOG: received smart shutdown request LOG: shutting down LOG: database system is shut down NOTE TO SELF -- add dates to config. I guess I can upgrade and maybe that will fix it. If I do: Do I have to migrate the databases? Do I need to dump them first and migrate manually (will version 8.2 be around) How do I NOT upgrade a package (and dependencies)? I want to keep RAILS at version 1.xxx From ryandesign at macports.org Sat Apr 5 06:53:58 2008 From: ryandesign at macports.org (Ryan Schmidt) Date: Sat Apr 5 06:53:24 2008 Subject: xv and png In-Reply-To: <47F75522.2040605@macports.org> References: <20080404091246.GB6715@marco.fz-rossendorf.de> <47F6CA4D.3000305@macports.org> <6AD183FE-A3F1-4A35-A7B3-0FD957BE3DCD@macports.org> <47F75522.2040605@macports.org> Message-ID: <4381A9A1-AE19-449A-9EE4-037F2AA9C703@macports.org> On Apr 5, 2008, at 05:32, Rainer M?ller wrote: > Ryan Schmidt wrote: > >> Looks like it's also linked against the system's libpng, not >> MacPorts' libpng, which is unfortunate and should be fixed. > > It has a dependency on lib:libpng.3:libpng, so this is intended. Well, that is contrary to the FAQ, which explains why MacPorts uses its own libraries in most cases. libpng is not a library for which we should be making an exception to this rule. From emer at emer.net Sat Apr 5 10:21:55 2008 From: emer at emer.net (Mark Anderson) Date: Sat Apr 5 10:20:40 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: I had this very same problem, check out this ticket: http://trac.macports.org/projects/macports/ticket/13686 I managed to get Octave 3.0.0 to build using the Portfile in this ticket. ?Mark On Apr 4, 2008, at 1:24 PM, 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 > > 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 > > > > _______________________________________________ > macports-users mailing list > macports-users@lists.macosforge.org > http://lists.macosforge.org/mailman/listinfo/macports-users From raimue at macports.org Sat Apr 5 11:06:09 2008 From: raimue at macports.org (=?ISO-8859-1?Q?Rainer_M=FCller?=) Date: Sat Apr 5 11:04:49 2008 Subject: xv and png In-Reply-To: <4381A9A1-AE19-449A-9EE4-037F2AA9C703@macports.org> References: <20080404091246.GB6715@marco.fz-rossendorf.de> <47F6CA4D.3000305@macports.org> <6AD183FE-A3F1-4A35-A7B3-0FD957BE3DCD@macports.org> <47F75522.2040605@macports.org> <4381A9A1-AE19-449A-9EE4-037F2AA9C703@macports.org> Message-ID: <47F7BF91.8040306@macports.org> Ryan Schmidt wrote: > Well, that is contrary to the FAQ, which explains why MacPorts uses > its own libraries in most cases. libpng is not a library for which we > should be making an exception to this rule. We have a lot of dependencies like this. That's why we have this lib: thing at all. If the maintainer wants to manage this, it is ok to use it. But there is no general rule to use stuff from outside or 'overwrite' dependencies. Rainer From diem at cs.vu.nl Sat Apr 5 11:33:45 2008 From: diem at cs.vu.nl (Dimitri Hendriks) Date: Sat Apr 5 11:32:25 2008 Subject: selfupdate fails Message-ID: <047794E4-0BE7-40BE-AF52-229DF1DA76EE@cs.vu.nl> Hi, I try to selfupdate macports on system 10.4.11, but it fails; see error message below. Does anyone know how to solve this? Thanks in advance, Dimitri diem@jarvis:~<513> sudo port selfupdate -dMacPorts base version 1.520 installed Downloaded MacPorts base version 1.600 Configuring, Building and Installing new MacPorts base Error: /opt/local/bin/port: selfupdate failed: Error installing new MacPorts base: shell command "cd /opt/local/var/macports/sources/ rsync.macports.org/release/base && ./configure --prefix=/opt/local -- with-install-user=root --with-install-group=admin --with-tclpackage=/ Library/Tcl && make && make install" returned error 2 Command output: registry.c:305: error: `errPtr' undeclared (first use in this function) registry.c:306: error: request for member `status' in something not a structure or unionregistry.c: At top level: registry.c:321: error: parse error before '*' token registry.c: In function `reg_start_write': registry.c:322: error: `errPtr' undeclared (first use in this function) registry.c:323: error: request for member `status' in something not a structure or union registry.c: At top level: registry.c:333: error: parse error before '*' token registry.c: In function `reg_end': registry.c:334: error: request for member `status' in something not a structure or union registry.c:335: error: `errPtr' undeclared (first use in this function) registry.c:341: error: request for member `db' in something not a structure or union registry.c:341: error: `query' undeclared (first use in this function) registry.c:342: error: `SQLITE_OK' undeclared (first use in this function) registry.c:345: error: `SQLITE_BUSY' undeclared (first use in this function) registry.c:346: error: request for member `db' in something not a structure or union registry.c: At top level: registry.c:359: error: parse error before '*' token registry.c: In function `reg_commit': registry.c:360: error: `errPtr' undeclared (first use in this function) registry.c:361: error: request for member `status' in something not a structure or union registry.c: At top level: registry.c:376: error: parse error before '*' token registry.c: In function `reg_rollback': registry.c:377: error: `errPtr' undeclared (first use in this function) registry.c:378: error: request for member `status' in something not a structure or unionmake[2]: *** [registry.o] Error 1make[1]: *** [all] Error 1make: *** [all] Error 1 From dgarza at speakeasy.net Sat Apr 5 14:23:15 2008 From: dgarza at speakeasy.net (David Garza) Date: Sat Apr 5 14:21:39 2008 Subject: Problem building gd2 on Leopard Message-ID: I'd like to install gd2, so I can then install Maxima, but the gd2 build is failing because it can't find xpm.h. I have a copy of xpm.h in both /Developer/SDKs/MacOSX10.5.sdk/usr/X11/include/X11 and / Developer/SDKs/MacOSX10.4u.sdk/usr/X11/include/X11, but the complier can't seem to find them. The command which fails is if /bin/sh ./libtool --tag=CC --mode=compile /usr/bin/gcc-4.0 - DHAVE_CONFIG_H -I. -I. -I. -I/opt/local/include/freetype2 -I/opt/ local/include -I/opt/local/include -I/usr/X11/include -O2 -MT gdxpm.lo -MD -MP -MF ".deps/gdxpm.Tpo" -c -o gdxpm.lo gdxpm.c; \ then mv -f ".deps/gdxpm.Tpo" ".deps/gdxpm.Plo"; else rm -f ".deps/ gdxpm.Tpo"; exit 1; fi /usr/bin/gcc-4.0 -DHAVE_CONFIG_H -I. -I. -I. -I/opt/local/include/ freetype2 -I/opt/local/include -I/opt/local/include -I/usr/X11/include -O2 -MT gdxpm.lo -MD -MP -MF .deps/gdxpm.Tpo -c gdxpm.c -fno-common - DPIC -o .libs/gdxpm.o Is there a problem with my X11 package? Should I just modify the portfile to point it to the correct directories? Thanks, David From iqgrande at gmail.com Sat Apr 5 15:03:03 2008 From: iqgrande at gmail.com (Anthony Michael Agelastos) Date: Sat Apr 5 15:01:58 2008 Subject: Problem building gd2 on Leopard In-Reply-To: References: Message-ID: <19EDEE01-96FB-423E-86B1-72851FA3C69F@gmail.com> Hello David, I assume that you are running the latest and greatest version of Leopard. If so, I recommend installing the "unofficial" X11 updates from http://trac.macosforge.org/projects/xquartz This allowed Maxima to build just fine for me. I hope this helps. Good luck. On Apr 5, 2008, at 5:23 PM, David Garza wrote: > I'd like to install gd2, so I can then install Maxima, but the gd2 > build is failing because it can't find xpm.h. I have a copy of > xpm.h in both /Developer/SDKs/MacOSX10.5.sdk/usr/X11/include/X11 > and /Developer/SDKs/MacOSX10.4u.sdk/usr/X11/include/X11, but the > complier can't seem to find them. The command which fails is > > if /bin/sh ./libtool --tag=CC --mode=compile /usr/bin/gcc-4.0 - > DHAVE_CONFIG_H -I. -I. -I. -I/opt/local/include/freetype2 -I/opt/ > local/include -I/opt/local/include -I/usr/X11/include -O2 -MT > gdxpm.lo -MD -MP -MF ".deps/gdxpm.Tpo" -c -o gdxpm.lo gdxpm.c; \ > then mv -f ".deps/gdxpm.Tpo" ".deps/gdxpm.Plo"; else rm -f ".deps/ > gdxpm.Tpo"; exit 1; fi > /usr/bin/gcc-4.0 -DHAVE_CONFIG_H -I. -I. -I. -I/opt/local/include/ > freetype2 -I/opt/local/include -I/opt/local/include -I/usr/X11/ > include -O2 -MT gdxpm.lo -MD -MP -MF .deps/gdxpm.Tpo -c gdxpm.c - > fno-common -DPIC -o .libs/gdxpm.o > > Is there a problem with my X11 package? Should I just modify the > portfile to point it to the correct directories? > > Thanks, > David > > _______________________________________________ > macports-users mailing list > macports-users@lists.macosforge.org > http://lists.macosforge.org/mailman/listinfo/macports-users From randy at psg.com Sat Apr 5 21:13:04 2008 From: randy at psg.com (Randy Bush) Date: Sat Apr 5 21:11:42 2008 Subject: using native python 2.5 as opposed to installing 2.4 Message-ID: <47F84DD0.7080102@psg.com> < insert old unix geek whining about macos and unsearchable mailman mailing list archives > trying to install rdiff-backup. it, and py-xattr want to install python 2.4 port when there is a perfectly good python 2.5 native in leopard. i can not find the equivalent of freebsd's /usr/local/etc/pkgtools.conf to whack the port's build parms. and doc reading does not give me a lot of clue. clue bat please. randy From killingorbit at gmail.com Sat Apr 5 21:37:50 2008 From: killingorbit at gmail.com (Sam Cook) Date: Sat Apr 5 21:36:28 2008 Subject: MacPorts missing Directories Message-ID: <5048907A-549C-43F8-A43B-5FCDDED8FDF7@gmail.com> Hello-- The Facts: I am using an intel MacBook with OS X 10.5.2. I am new to MacPorts. I recently downloaded MacPorts-1.6.0-10.5-Leopard.dmg. I still have not (third try) been able get MacPorts to install correctly. In particular, the directories /Applictions/MacPorts /Library/LaunchDaemons/org.macports.* and /etc/X11/xinit/xinitrc do not exist. The History: The first time I tried to install MacPorts, my .profile was not modified. I did it, and I also tried to modify /etc/X11/xinit/ xinitrc, which is when I noticed it isn't there. However, X11 did create /usr/X11/lib/X11/xinit/xinitrc when I installed it. Then I reran the installer. Progress, as the port command was now recognized. I tried to install my first port, gv 3.6.3. It did not work; it installed, but when I tried to execute the gv command, it would not run. I tried the whole process over. Now, MacPorts seems to be working, and so is gv! But the three directories listed above are still absent. Any advice? Thanks, Sam From frstan at bellsouth.net Sat Apr 5 22:49:30 2008 From: frstan at bellsouth.net (William Davis) Date: Sat Apr 5 22:48:11 2008 Subject: MacPorts missing Directories In-Reply-To: <5048907A-549C-43F8-A43B-5FCDDED8FDF7@gmail.com> References: <5048907A-549C-43F8-A43B-5FCDDED8FDF7@gmail.com> Message-ID: <6DD3F381-29FC-4DF9-AA46-D8910AEAA2DD@bellsouth.net> after you installed, did you run sudo port -d selfupdate ?? Did you have /opt/local/bin and /opt/local/sbin in your path? Do you have XCODE and the X11SDK installed? W.D. On Apr 6, 2008, at 12:37 AM, Sam Cook wrote: > Hello-- > > The Facts: I am using an intel MacBook with OS X 10.5.2. I am new to > MacPorts. I recently downloaded MacPorts-1.6.0-10.5-Leopard.dmg. I > still have not (third try) been able get MacPorts to install > correctly. In particular, the directories > > /Applictions/MacPorts > /Library/LaunchDaemons/org.macports.* > and > /etc/X11/xinit/xinitrc > > do not exist. > > The History: The first time I tried to install MacPorts, my .profile > was not modified. I did it, and I also tried to modify /etc/X11/ > xinit/xinitrc, which is when I noticed it isn't there. However, X11 > did create /usr/X11/lib/X11/xinit/xinitrc when I installed it. > > Then I reran the installer. Progress, as the port command was now > recognized. I tried to install my first port, gv 3.6.3. It did not > work; it installed, but when I tried to execute the gv command, it > would not run. > > I tried the whole process over. Now, MacPorts seems to be working, > and so is gv! But the three directories listed above are still > absent. Any advice? > > Thanks, > > Sam > _______________________________________________ > macports-users mailing list > macports-users@lists.macosforge.org > http://lists.macosforge.org/mailman/listinfo/macports-users 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 frstan at bellsouth.net Sat Apr 5 22:55:19 2008 From: frstan at bellsouth.net (William Davis) Date: Sat Apr 5 22:54:27 2008 Subject: scrollkeeper Message-ID: <51227A9E-9B73-4CE9-9B93-1F348D8F7029@bellsouth.net> dang it all you have fixed scrollkeeper so I cant re-install it but now I cant install half the gnome updates because they want scrollkeeper! Im disgussted........ Well I need some sleep. Ill try to write it all up tommorow because if I do it now Ill rant :/ 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 randall.h.wood at alexandriasoftware.com Sun Apr 6 01:26:12 2008 From: randall.h.wood at alexandriasoftware.com (Randall Wood) Date: Sun Apr 6 01:24:48 2008 Subject: scrollkeeper In-Reply-To: <51227A9E-9B73-4CE9-9B93-1F348D8F7029@bellsouth.net> References: <51227A9E-9B73-4CE9-9B93-1F348D8F7029@bellsouth.net> Message-ID: On Sun, Apr 6, 2008 at 1:55 AM, William Davis wrote: > dang it all > you have fixed scrollkeeper so I cant re-install it but now I cant install > half the gnome updates because they want scrollkeeper! > Im disgussted........ There are no ports that depend on scrollkeeper. None. Every port that had a dependency on scrollkeeper now has a dependency on rarian. Try sudo port selfupdate ; sudo port clean --all all ; sudo port upgrade outdated and see if that helps. > Well I need some sleep. Ill try to write it all up tommorow because if I do > it now Ill rant > > :/ > > > 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-dev mailing list > macports-dev@lists.macosforge.org > http://lists.macosforge.org/mailman/listinfo/macports-dev > -- 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 randall.h.wood at alexandriasoftware.com Sun Apr 6 02:17:36 2008 From: randall.h.wood at alexandriasoftware.com (Randall Wood) Date: Sun Apr 6 02:16:11 2008 Subject: Fwd: using native python 2.5 as opposed to installing 2.4 In-Reply-To: References: <47F84DD0.7080102@psg.com> Message-ID: Sorry. Failed to reply to the list as well. ---------- Forwarded message ---------- From: Randall Wood Date: Sun, Apr 6, 2008 at 5:16 AM Subject: Re: using native python 2.5 as opposed to installing 2.4 To: Randy Bush On Sun, Apr 6, 2008 at 12:13 AM, Randy Bush wrote: > < insert old unix geek whining about macos and unsearchable mailman > mailing list archives > > > trying to install rdiff-backup. it, and py-xattr want to install python > 2.4 port when there is a perfectly good python 2.5 native in leopard. i > can not find the equivalent of freebsd's /usr/local/etc/pkgtools.conf to > whack the port's build parms. and doc reading does not give me a lot of > clue. I can speak to why we don't use the system python, but not to rdiff-backup: The system python would have to be modified to see the MacPorts-installed python packages or MacPorts would have to stick those packages outside of its managed directory. MacPorts uses a single managed directory[1] to avoid collisions with other software that would break the ability to manage the ports. To avoid modifying the system python, MacPorts installs its own python as well. [1] /opt/local by default. There are some exceptions /Applications/MacPorts so that apps just work and are visible in the Applications directory and a couple of others related to bootstrapping in MacPorts to begin with. > clue bat please. > > randy > _______________________________________________ > 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." -- 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 tom at tacocat.net Sun Apr 6 03:42:34 2008 From: tom at tacocat.net (Tom Allison) Date: Sun Apr 6 03:41:10 2008 Subject: upgrade outdated conflicts Message-ID: <47F8A91A.1070801@tacocat.net> I'm struggling with the upgrade process right now. I've completed the following: selfupdate upgrade outdated But now I have soem mixed packages like: postgresql81 postgresql82 postgresql83 in addition to postgres 8.2 having three versions itself. There are mayby 50+ of these right now. port -u upgrade outdated never completed successfully because of dependencies. Question: I would like to remove as many of these old versions as I can but it seems that getting all the dependencies out of the way is going to take a while for all the packages to be updated by the maintainer. If I wait and just keep running '-u update outdated' will I eventually clean up all the old packages? And can someone make any suggestion on what to do with the version conflicts like perl5.8/perl5.10 and postgresql81..83. I eventually would like to migrate everything to a common package like perl 5.10 but I guess right now I really can't do that because of things like p5-dbd-pg still being tied back to 5.10... Will package upgrades like perl5.8 eventually upgrade themselves to perl5.10 once all the package dependencies are also upgrade? From raimue at macports.org Sun Apr 6 03:48:14 2008 From: raimue at macports.org (=?ISO-8859-1?Q?Rainer_M=FCller?=) Date: Sun Apr 6 03:46:52 2008 Subject: MacPorts missing Directories In-Reply-To: <5048907A-549C-43F8-A43B-5FCDDED8FDF7@gmail.com> References: <5048907A-549C-43F8-A43B-5FCDDED8FDF7@gmail.com> Message-ID: <47F8AA6E.4050704@macports.org> Sam Cook wrote: > /Applictions/MacPorts > /Library/LaunchDaemons/org.macports.* Those will be created once you install a port which installs files there. > and > /etc/X11/xinit/xinitrc /etc/X11 does not exist on Leopard. HTH, Rainer From tom at tacocat.net Sun Apr 6 03:50:40 2008 From: tom at tacocat.net (Tom Allison) Date: Sun Apr 6 03:49:17 2008 Subject: upgrade outdated example Message-ID: <47F8AB00.9080104@tacocat.net> sudo port -u upgrade outdated Password: ---> Activating apr 1.2.12_1 Error: Activating apr 1.2.12_1 failed: Image error: Another version of this port (apr @1.2.11_0) is already active. This is the kind up upgrade problems I run into. I manually deactivate/activate the packages? From randy at psg.com Sun Apr 6 03:55:41 2008 From: randy at psg.com (Randy Bush) Date: Sun Apr 6 03:54:20 2008 Subject: using native python 2.5 as opposed to installing 2.4 In-Reply-To: References: <47F84DD0.7080102@psg.com> Message-ID: <47F8AC2D.7010204@psg.com> Randall Wood wrote: > On Sun, Apr 6, 2008 at 12:13 AM, Randy Bush wrote: >> < insert old unix geek whining about macos and unsearchable mailman >> mailing list archives > >> >> trying to install rdiff-backup. it, and py-xattr want to install python >> 2.4 port when there is a perfectly good python 2.5 native in leopard. i >> can not find the equivalent of freebsd's /usr/local/etc/pkgtools.conf to >> whack the port's build parms. and doc reading does not give me a lot of >> clue. > > I can speak to why we don't use the system python, but not to rdiff-backup: > > The system python would have to be modified to see the > MacPorts-installed python packages or MacPorts would have to stick > those packages outside of its managed directory. MacPorts uses a > single managed directory[1] to avoid collisions with other software > that would break the ability to manage the ports. To avoid modifying > the system python, MacPorts installs its own python as well. > > [1] /opt/local by default. There are some exceptions > /Applications/MacPorts so that apps just work and are visible in the > Applications directory and a couple of others related to bootstrapping > in MacPorts to begin with. as i sit here watching a whole parallel universe of gnu utils, python, ... being built and installed, i am not comfortable. i know that i will now have to maintain this overbuilt universe as time passes. and then i get the appended and wonder how i scrape all this stuff i do not need out. sqlite? someone's kidding, right? sigh. randy --- ---> Fetching sqlite3 ---> Attempting to fetch sqlite-3.5.7.tar.gz from http://www.sqlite.org/ ---> Verifying checksum(s) for sqlite3 ---> Extracting sqlite3 ---> Configuring sqlite3 ---> Building sqlite3 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_databases_sqlite3/work/sqlite-3.5.7" && gnumake all " returned error 2 Command output: sed -e s/--VERS--/3.5.7/ ./src/sqlite.h.in | \ sed -e s/--VERSION-NUMBER--/3005007/ >sqlite3.h /usr/bin/gcc-4.0 -O2 -o mkkeywordhash ./tool/mkkeywordhash.c ./mkkeywordhash >keywordhash.h /usr/bin/gcc-4.0 -O2 -o lemon ./tool/lemon.c cp ./tool/lempar.c . cp ./src/parse.y . ./lemon parse.y mv parse.h parse.h.temp f ./addopcodes.awk parse.h.temp >parse.h /bin/sh: f: command not found gnumake: [parse.c] Error 127 (ignored) cat parse.h ./src/vdbe.c | -f ./mkopcodeh.awk >opcodes.h /bin/sh: -f: command not found cat: stdout: Broken pipe gnumake: *** [opcodes.h] Error 127 Error: The following dependencies failed to build: subversion apr-util sqlite3 neon Error: Status 1 encountered during processing. randy From frstan at bellsouth.net Sun Apr 6 07:48:55 2008 From: frstan at bellsouth.net (William Davis) Date: Sun Apr 6 07:47:32 2008 Subject: scrollkeeper In-Reply-To: References: <51227A9E-9B73-4CE9-9B93-1F348D8F7029@bellsouth.net> Message-ID: <03E7F2BB-F7DB-4E33-A83B-B656CE329B00@bellsouth.net> On Apr 6, 2008, at 4:26 AM, Randall Wood wrote: > On Sun, Apr 6, 2008 at 1:55 AM, William Davis > wrote: >> dang it all >> you have fixed scrollkeeper so I cant re-install it but now I cant >> install >> half the gnome updates because they want scrollkeeper! >> Im disgussted........ > > There are no ports that depend on scrollkeeper. None. Every port that > had a dependency on scrollkeeper now has a dependency on rarian. Try > > sudo port selfupdate ; sudo port clean --all all ; sudo port upgrade > outdated > > and see if that helps. > >> 1. Using $(sysconfdir)/gconf/schemas as install directory for schema files checking for scrollkeeper-config... no configure: error: Couldn't find scrollkeeper-config ./configure: line 4586: exit: please: numeric argument required ./configure: line 4586: exit: please: numeric argument required Warning: the following items did not execute (for bug-buddy): org.macports.destroot org.macports.configure org.macports.build DEBUG: Error: Unable to upgrade port: 1 2. checking for scrollkeeper-config... no configure: error: Couldn't find scrollkeeper-config ./configure: line 26210: exit: please: numeric argument required ./configure: line 26210: exit: please: numeric argument required Warning: the following items did not execute (for gnome-applets): org.macports.destroot org.macports.configure org.macports.build DEBUG: Error: Unable to upgrade port: 1 3. checking for scrollkeeper-config... no configure: error: Couldn't find scrollkeeper-config. Please install the scrollkeeper package Warning: the following items did not execute (for gnome-desktop): org.macports.destroot org.macports.configure org.macports.build DEBUG: Error: Unable to upgrade port: 1 macintosh:~ frstan$ 4. Making all in doc /bin/sh: scrollkeeper-config: command not found /bin/sh: scrollkeeper-config: command not found The file '/Templates/C/scrollkeeper_cl.xml' does not exist. Please check your ScrollKeeper installation. make[3]: *** [gnome-volume-control-C.omf] 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 gnome-media): org.macports.destroot org.macports.build DEBUG: Error: Unable to upgrade port: 1 5. Making all in it for file in gucharmap-it.omf; do \ scrollkeeper-preinstall /opt/local/share/gnome/help/gucharmap/it/ gucharmap.xml ./$file $file.out; \ done /bin/sh: scrollkeeper-preinstall: command not found make[3]: [omf_timestamp] Error 127 (ignored) touch omf_timestamp Making all in ja for file in gucharmap-ja.omf; do \ scrollkeeper-preinstall /opt/local/share/gnome/help/gucharmap/ja/ gucharmap.xml ./$file $file.out; \ done /bin/sh: scrollkeeper-preinstall: command not found make[3]: [omf_timestamp] Error 127 (ignored) touch omf_timestamp Making all in zh_CN for file in gucharmap-zh_CN.omf; do \ scrollkeeper-preinstall /opt/local/share/gnome/help/gucharmap/zh_CN/ gucharmap.xml ./$file $file.out; \ done /bin/sh: scrollkeeper-preinstall: command not found make[3]: [omf_timestamp] Error 127 (ignored) touch omf_timestamp Making all in zh_TW for file in gucharmap-zh_TW.omf; do \ scrollkeeper-preinstall /opt/local/share/gnome/help/gucharmap/zh_TW/ gucharmap.xml ./$file $file.out; \ done /bin/sh: scrollkeeper-preinstall: command not found make[3]: [omf_timestamp] Error 127 (ignored) touch omf_timestamp /snip/ install: gucharmap-it.omf.out: No such file or directory make[4]: *** [install-data-hook-omf] Error 71 make[3]: *** [install-data-am] Error 2 make[2]: *** [install-am] Error 2 make[1]: *** [install-recursive] Error 1 make: *** [install-recursive] Error 1 Warning: the following items did not execute (for gucharmap): org.macports.destroot DEBUG: Error: Unable to upgrade port: 1 6. others (such as yelp) attempt to use scrollkeeper which fails but the install completes Those are all I care to take time to bother to list. And yes I did selfupdate and clean --all : I do those regularly. Im very disapointed with the lack of quality in the MacPorts system and its undepedability. 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 ml-vic at de-martino.it Sun Apr 6 13:50:03 2008 From: ml-vic at de-martino.it (Vittorio) Date: Sun Apr 6 13:48:38 2008 Subject: Missing gconf-2 dep. Message-ID: <1F8FFCE5-4CD0-4A5E-953A-CACD567B6FB8@de-martino.it> I have some-year experience in building ports under freebsd. Now - as an absolute beginner - I've just installed macports & all the needed stuff according to the instructions. Now I want to install xsane but a dependency seems to be missing. Remembering I'm a beginner with macports, what shall I do? Ciao Vittorio Here the log of the session: ------------------------------------------------------------- MacBookVictor:~ victor$ sudo port install xsane Password: ---> Configuring gnome-keyring Error: 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_gnome_gnome-keyring/work/gnome- keyring-2.22.0" && ./configure --prefix=/opt/local " returned error 1 Command output: checking dynamic linker characteristics... darwin9.2.2 dyld checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for intltool >= 0.35.0... 0.36.2 found checking for perl... /opt/local/bin/perl checking for XML::Parser... ok checking for pkg-config... /opt/local/bin/pkg-config checking for pid_t... yes checking return type of signal handlers... void checking for size_t... yes checking for uid_t in sys/types.h... yes checking pkg-config is at least version 0.9.0... yes checking for GLIB... yes checking for GTHREAD... yes checking for GOBJECT... yes checking for GTK... yes ./configure: line 22021: gconftool-2: command not found Using config source for schema installation Using $(sysconfdir)/gconf/schemas as install directory for schema files checking for GCONF... configure: error: Package requirements (gconf-2.0) were not met: No package 'gconf-2.0' found Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables GCONF_CFLAGS and GCONF_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. Error: The following dependencies failed to build: gimp2 libgnomeui gnome-keyring libbonoboui dbus xmlto docbook-xml-4.2 dbus-glib gconf orbit2 libidl gnome-vfs desktop-file-utils popt gnome-mime-data openssl libbonobo libglade2 libgnome esound audiofile libgnomecanvas gail libgtkhtml libmng autoconf help2man p5-locale-gettext libtool m4 automake lcms librsvg libcroco libgsf libwmf poppler poppler-data py25- gtk py25-cairo py25-numpy fftw-3 g95 py25-hashlib py25-gobject sane- backends libusb Error: Status 1 encountered during processing. From velman at cox.net Sun Apr 6 14:28:54 2008 From: velman at cox.net (John Velman) Date: Sun Apr 6 14:19:47 2008 Subject: using native python 2.5 as opposed to installing 2.4 In-Reply-To: <47F8AC2D.7010204@psg.com> References: <47F84DD0.7080102@psg.com> <47F8AC2D.7010204@psg.com> Message-ID: <20080406212854.GA264@cox.net> On Sun, Apr 06, 2008 at 07:55:41PM +0900, Randy Bush wrote: > Randall Wood wrote: > > On Sun, Apr 6, 2008 at 12:13 AM, Randy Bush wrote: > >> < insert old unix geek whining about macos and unsearchable mailman > >> mailing list archives > > >> > >> trying to install rdiff-backup. it, and py-xattr want to install python > >> 2.4 port when there is a perfectly good python 2.5 native in leopard. i > >> can not find the equivalent of freebsd's /usr/local/etc/pkgtools.conf to > >> whack the port's build parms. and doc reading does not give me a lot of > >> clue. > > > > I can speak to why we don't use the system python, but not to rdiff-backup: > > > > The system python would have to be modified to see the > > MacPorts-installed python packages or MacPorts would have to stick > > those packages outside of its managed directory. MacPorts uses a > > single managed directory[1] to avoid collisions with other software > > that would break the ability to manage the ports. To avoid modifying > > the system python, MacPorts installs its own python as well. > > > > [1] /opt/local by default. There are some exceptions > > /Applications/MacPorts so that apps just work and are visible in the > > Applications directory and a couple of others related to bootstrapping > > in MacPorts to begin with. > > as i sit here watching a whole parallel universe of gnu utils, python, > ... being built and installed, i am not comfortable. i know that i will > now have to maintain this overbuilt universe as time passes. > > and then i get the appended and wonder how i scrape all this stuff i do > not need out. sqlite? someone's kidding, right? > > sigh. > > randy > > --- > Three parallel universes! I've also got Fink, but I don't remember why! As an old Unix/Linux user (not expert, but journeyman) I went over to Mac when my 8 year old PC (with slackware) seemed too difficult for some new things, and Leopard + the new iMac was a package I couldn't not try. Reading up before hand I found advice to install either or both of MacPorts and Fink. I didn't at first, but the SWI prolog Mac community seemed to be using MacPorts, so I got it. Also wanted gvim, so got vim package from MacPorts. And so on. I've now got 35M in my /opt/local/bin file, and 6.5M in my sw/bin file. I would have even more if I hadn't removed some things, for example, MacPorts Vim. I found MacVim, which is a native Quartz translation of Vim, with very nice GUI features. I use PostgreSQL rather than SQLite, and it compiled nicely out of the box without any MacPorts or Fink. So did Mutt. On the other hand, there are a few things that have been very handy, and might have been a problem to build myself. I'm thinking specifically of gphoto2 and pam which installed from MacPorts with zero problem, and solved an "unusual digital camera" problem I couldn't seem to solve otherwise. Oh, by the way. I'm now foregoing the X11 interface to SWI Prolog (which I seldom used anyway), and keeping up with the latest releases by compiling with the standard OS X Leopard tools. So my original two incentives for getting MacPorts are gone. But I did get Pam and gphoto2 as a benefit I didn't expect! This is not really a complaint, tho I'm afraid it may sound like it. MacPorts (and Fink) are valuable projects, but much more useful to some than others, obviously. Unfortunately, not interfering with the Mac directory architecture carries some penalties. It would be nice if these could be ameliorated. But it would be worse to mess with the native Mac directory architecture. Best, John V. > ---> Fetching sqlite3 > ---> Attempting to fetch sqlite-3.5.7.tar.gz from http://www.sqlite.org/ > ---> Verifying checksum(s) for sqlite3 > ---> Extracting sqlite3 > ---> Configuring sqlite3 > ---> Building sqlite3 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_databases_sqlite3/work/sqlite-3.5.7" > && gnumake all " returned error 2 > Command output: sed -e s/--VERS--/3.5.7/ ./src/sqlite.h.in | \ > sed -e s/--VERSION-NUMBER--/3005007/ >sqlite3.h > /usr/bin/gcc-4.0 -O2 -o mkkeywordhash ./tool/mkkeywordhash.c > ./mkkeywordhash >keywordhash.h > /usr/bin/gcc-4.0 -O2 -o lemon ./tool/lemon.c > cp ./tool/lempar.c . > cp ./src/parse.y . > ./lemon parse.y > mv parse.h parse.h.temp > f ./addopcodes.awk parse.h.temp >parse.h > /bin/sh: f: command not found > gnumake: [parse.c] Error 127 (ignored) > cat parse.h ./src/vdbe.c | -f ./mkopcodeh.awk >opcodes.h > /bin/sh: -f: command not found > cat: stdout: Broken pipe > gnumake: *** [opcodes.h] Error 127 > > Error: The following dependencies failed to build: subversion apr-util > sqlite3 neon > Error: Status 1 encountered during processing. > > > randy > > _______________________________________________ > macports-users mailing list > macports-users@lists.macosforge.org > http://lists.macosforge.org/mailman/listinfo/macports-users From ryandesign at macports.org Sun Apr 6 16:18:25 2008 From: ryandesign at macports.org (Ryan Schmidt) Date: Sun Apr 6 16:17:42 2008 Subject: upgrade outdated example In-Reply-To: <47F8AB00.9080104@tacocat.net> References: <47F8AB00.9080104@tacocat.net> Message-ID: <623D3FDD-47E1-4D71-A27B-421EF0A58F95@macports.org> On Apr 6, 2008, at 05:50, Tom Allison wrote: > sudo port -u upgrade outdated > Password: > ---> Activating apr 1.2.12_1 > Error: Activating apr 1.2.12_1 failed: Image error: Another version > of this port (apr @1.2.11_0) is already active. > > This is the kind up upgrade problems I run into. > I manually deactivate/activate the packages? Other ports probably depend on apr. Therefore, asking port to uninstall apr will fail. "port -u upgrade" means "port upgrade" and then "port uninstall" therefore you'll run into the error. Since you're upgrading to a new version of apr, uninstalling the old one is fine. MacPorts just doesn't know that. So you have to tell it, by forcing the uninstall of the old version: sudo port -f uninstall apr @1.2.11_0 sudo port activate apr @1.2.12_1 In the future, here's some pseudocode for a nice way to upgrade all your ports and uninstall the old versions: while there exist an outdated port do let foo be an outdated port sudo port upgrade foo loop sudo port -f uninstall inactive Thanks to Emmanuel Hainry for this. See his suggestion here, and see the rest of the thread for other alternatives that don't work, and explanation of why this one does: http://lists.macosforge.org/pipermail/macports-users/2007-October/ 005844.html From randy at psg.com Sun Apr 6 16:21:59 2008 From: randy at psg.com (Randy Bush) Date: Sun Apr 6 16:20:33 2008 Subject: upgrade outdated example In-Reply-To: <623D3FDD-47E1-4D71-A27B-421EF0A58F95@macports.org> References: <47F8AB00.9080104@tacocat.net> <623D3FDD-47E1-4D71-A27B-421EF0A58F95@macports.org> Message-ID: <47F95B17.3060101@psg.com> > while there exist an outdated port and how do i know the list of outdated ports? randy From ryandesign at macports.org Sun Apr 6 16:25:18 2008 From: ryandesign at macports.org (Ryan Schmidt) Date: Sun Apr 6 16:24:36 2008 Subject: MacPorts missing Directories In-Reply-To: <5048907A-549C-43F8-A43B-5FCDDED8FDF7@gmail.com> References: <5048907A-549C-43F8-A43B-5FCDDED8FDF7@gmail.com> Message-ID: <9007A495-7CBD-44C3-9488-EF8B65ED5BF6@macports.org> On Apr 5, 2008, at 23:37, Sam Cook wrote: > The Facts: I am using an intel MacBook with OS X 10.5.2. I am new > to MacPorts. I recently downloaded MacPorts-1.6.0-10.5-Leopard.dmg. > I still have not (third try) been able get MacPorts to install > correctly. In particular, the directories > > /Applictions/MacPorts > /Library/LaunchDaemons/org.macports.* > and > /etc/X11/xinit/xinitrc > > do not exist. > > The History: The first time I tried to install MacPorts, > my .profile was not modified. I did it, and I also tried to modify / > etc/X11/xinit/xinitrc, which is when I noticed it isn't there. > However, X11 did create /usr/X11/lib/X11/xinit/xinitrc when I > installed it. > > Then I reran the installer. Progress, as the port command was now > recognized. I tried to install my first port, gv 3.6.3. It did not > work; it installed, but when I tried to execute the gv command, it > would not run. > > I tried the whole process over. Now, MacPorts seems to be working, > and so is gv! But the three directories listed above are still > absent. Any advice? Apologies; there is a bug in the 1.6.0 installer which causes the .profile not to get created/modified. You have to set it up yourself, for this particular version of MacPorts. Earlier versions set it up correctly, and the fix has already been committed so that future versions will again work correctly. /Applications/MacPorts will be created when any port tries to install there. Most ports install into /opt/local, not /Applications/ MacPorts. The exception are most of the ports in the "aqua" category, and some others. org.macports.*.plist files get installed into /Library/LaunchDaemons by ports which need to run daemon processes on your computer. Most ports don't need to do that. Some ports that do are "apache2", "lighttpd", "mysql5" (if you select the +server variant). I don't know what /etc/X11/xinit/xinitrc is all about. That file is not part of the MacPorts setup instructions. If the "port" or "gv" commands would not run, then probably your PATH was not set up correctly. If they work now, then your PATH is probably set up correctly now. From ryandesign at macports.org Sun Apr 6 16:36:59 2008 From: ryandesign at macports.org (Ryan Schmidt) Date: Sun Apr 6 16:36:16 2008 Subject: upgrade outdated conflicts In-Reply-To: <47F8A91A.1070801@tacocat.net> References: <47F8A91A.1070801@tacocat.net> Message-ID: <1B4DFD29-531A-466A-B6CF-AECEFCE4D4F4@macports.org> On Apr 6, 2008, at 05:42, Tom Allison wrote: > I'm struggling with the upgrade process right now. > > I've completed the following: > selfupdate > upgrade outdated > > But now I have soem mixed packages like: > postgresql81 > postgresql82 > postgresql83 > > in addition to postgres 8.2 having three versions itself. > > There are mayby 50+ of these right now. > > port -u upgrade outdated never completed successfully because of > dependencies. > > Question: I would like to remove as many of these old versions as > I can but it seems that getting all the dependencies out of the way > is going to take a while for all the packages to be updated by the > maintainer. If I wait and just keep running '-u update outdated' > will I eventually clean up all the old packages? Yeah, "port -u upgrade outdated" isn't a great command, it seems. See my other reply to you a moment ago about a better set of commands. > And can someone make any suggestion on what to do with the version > conflicts like perl5.8/perl5.10 and postgresql81..83. I eventually > would like to migrate everything to a common package like perl 5.10 > but I guess right now I really can't do that because of things like > p5-dbd-pg still being tied back to 5.10... > > Will package upgrades like perl5.8 eventually upgrade themselves to > perl5.10 once all the package dependencies are also upgrade? I do not know what our plan is with regard to perl5.8/perl5.10. Ideally, each port that depends on perl would declare the dependency in such a way that either port would satisfy the dependency. That is, instead of writing "depends_lib port:perl5.8", ports could write "depends_lib path:${prefix}/bin/perl:perl5.8"; that way, if a perl is already installed (by either perl5.8 or perl5.10), then the dependency is satisfied, otherwise perl5.8 is installed. But at this time, it looks like we have about 86 ports that depend on "port:perl5.8", 2 that depend on "port:perl5.10", and 6 that use the "path:" syntax. As for postgresql, I understand that each major version is incompatible with the last. That is, a database that works with 8.1 does not work with 8.2 until you manually upgrade it, at which point it doesn't work with 8.1 anymore. Therefore, separate ports, to give users the choice of when to upgrade to newer versions. If you find ports that depend only on a specific version of postgresql, and do not give you variants to let you choose which version you would like to use, please file enhancement request tickets against those ports. From ryandesign at macports.org Sun Apr 6 16:37:28 2008 From: ryandesign at macports.org (Ryan Schmidt) Date: Sun Apr 6 16:36:44 2008 Subject: upgrade outdated example In-Reply-To: <47F95B17.3060101@psg.com> References: <47F8AB00.9080104@tacocat.net> <623D3FDD-47E1-4D71-A27B-421EF0A58F95@macports.org> <47F95B17.3060101@psg.com> Message-ID: On Apr 6, 2008, at 18:21, Randy Bush wrote: >> while there exist an outdated port > > and how do i know the list of outdated ports? "port outdated" will give it to you. From ryandesign at macports.org Sun Apr 6 16:54:30 2008 From: ryandesign at macports.org (Ryan Schmidt) Date: Sun Apr 6 16:53:46 2008 Subject: using native python 2.5 as opposed to installing 2.4 In-Reply-To: <20080406212854.GA264@cox.net> References: <47F84DD0.7080102@psg.com> <47F8AC2D.7010204@psg.com> <20080406212854.GA264@cox.net> Message-ID: On Apr 6, 2008, at 16:28, John Velman wrote: > On Sun, Apr 06, 2008 at 07:55:41PM +0900, Randy Bush wrote: >> Randall Wood wrote: >>> On Sun, Apr 6, 2008 at 12:13 AM, Randy Bush wrote: >>>> < insert old unix geek whining about macos and unsearchable mailman >>>> mailing list archives > I search it using Google, e.g.: http://www.google.com/search?hl=en&safe=off&q=site% 3Alists.macosforge.org+foo&btnG=Search >>>> trying to install rdiff-backup. it, and py-xattr want to >>>> install python >>>> 2.4 port when there is a perfectly good python 2.5 native in >>>> leopard. i >>>> can not find the equivalent of freebsd's /usr/local/etc/ >>>> pkgtools.conf to >>>> whack the port's build parms. and doc reading does not give me >>>> a lot of >>>> clue. >>> >>> I can speak to why we don't use the system python, but not to >>> rdiff-backup: >>> >>> The system python would have to be modified to see the >>> MacPorts-installed python packages or MacPorts would have to stick >>> those packages outside of its managed directory. MacPorts uses a >>> single managed directory[1] to avoid collisions with other software >>> that would break the ability to manage the ports. To avoid modifying >>> the system python, MacPorts installs its own python as well. >>> >>> [1] /opt/local by default. There are some exceptions >>> /Applications/MacPorts so that apps just work and are visible in the >>> Applications directory and a couple of others related to >>> bootstrapping >>> in MacPorts to begin with. >> >> as i sit here watching a whole parallel universe of gnu utils, >> python, >> ... being built and installed, i am not comfortable. i know that >> i will >> now have to maintain this overbuilt universe as time passes. Sorry you're not comfortable with it, but MacPorts is designed to use its own libraries, not system libraries, wherever possible. See the FAQ: http://trac.macports.org/projects/macports/wiki/ FAQ#WhyisMacPortsusingitsownlibraries >> and then i get the appended and wonder how i scrape all this stuff >> i do >> not need out. sqlite? someone's kidding, right? sqlite3 is currently an indirect dependency of subversion. I guess you either asked to install subversion, or something else that you asked to install required subversion in order to download its source. I can tell you how to build subversion 1.4.6 without sqlite3. However, note that as of subversion 1.5.0, sqlite3 will be required by subversion itself and will therefore no longer be optional. To build subversion without sqlite3: sudo port clean --work apr-util subversion sudo port install apr-util +no_sqlite sudo port install subversion To discover this, examine the available variants of the ports. For example: port variants apr-util apr-util has the variants: universal: Build for multiple architectures no_bdb: Build without BerkeleyDB support no_sqlite: Build without sqlite support openldap: Build with OpenLDAP support postgresql82: Build with postgres support (using postgresql v8.2) >> ---> Fetching sqlite3 >> ---> Attempting to fetch sqlite-3.5.7.tar.gz from http:// >> www.sqlite.org/ >> ---> Verifying checksum(s) for sqlite3 >> ---> Extracting sqlite3 >> ---> Configuring sqlite3 >> ---> Building sqlite3 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_data >> bases_sqlite3/work/sqlite-3.5.7" >> && gnumake all " returned error 2 >> Command output: sed -e s/--VERS--/3.5.7/ ./src/sqlite.h.in | \ >> sed -e s/--VERSION-NUMBER--/3005007/ >sqlite3.h >> /usr/bin/gcc-4.0 -O2 -o mkkeywordhash ./tool/mkkeywordhash.c >> ./mkkeywordhash >keywordhash.h >> /usr/bin/gcc-4.0 -O2 -o lemon ./tool/lemon.c >> cp ./tool/lempar.c . >> cp ./src/parse.y . >> ./lemon parse.y >> mv parse.h parse.h.temp >> f ./addopcodes.awk parse.h.temp >parse.h >> /bin/sh: f: command not found >> gnumake: [parse.c] Error 127 (ignored) >> cat parse.h ./src/vdbe.c | -f ./mkopcodeh.awk >opcodes.h >> /bin/sh: -f: command not found >> cat: stdout: Broken pipe >> gnumake: *** [opcodes.h] Error 127 >> >> Error: The following dependencies failed to build: subversion apr- >> util >> sqlite3 neon >> Error: Status 1 encountered during processing. This bug has been reported here: http://trac.macosforge.org/projects/macports/ticket/14938 I've added you to the Cc list so you'll be informed of its progress. The message "f: command not found" suggests to me that it could not find some program that it needed, whose name should have appeared before "f". It may help if you clean ("sudo port clean --work sqlite3") and then build again with debug output enabled ("sudo port - d install sqlite3") and attach that output to the ticket, to assist the maintainer in finding a solution. > Three parallel universes! I've also got Fink, but I don't remember > why! > As an old Unix/Linux user (not expert, but journeyman) I went over > to Mac > when my 8 year old PC (with slackware) seemed too difficult for > some new > things, and Leopard + the new iMac was a package I couldn't not try. > > Reading up before hand I found advice to install either or both of > MacPorts > and Fink. I didn't at first, but the SWI prolog Mac community > seemed to be > using MacPorts, so I got it. Also wanted gvim, so got vim package > from > MacPorts. And so on. I've now got 35M in my /opt/local/bin file, > and 6.5M > in my sw/bin file. Installing MacPorts and Fink at the same time is not supported. Software from the one might start linking with libraries from the other. When you run into problems because of this, nobody here will be able to help you with it. If there is something you need which is in Fink but not in MacPorts, please let us know by filing a port request ticket so that it can be added to MacPorts. From ryandesign at macports.org Sun Apr 6 16:57:06 2008 From: ryandesign at macports.org (Ryan Schmidt) Date: Sun Apr 6 16:56:24 2008 Subject: Missing gconf-2 dep. In-Reply-To: <1F8FFCE5-4CD0-4A5E-953A-CACD567B6FB8@de-martino.it> References: <1F8FFCE5-4CD0-4A5E-953A-CACD567B6FB8@de-martino.it> Message-ID: <017B5208-203E-4982-9EB4-77313F071F71@macports.org> It sounds like the port gnome-keyring is broken. Could you please file a ticket for this? Instructions for filing tickets are found here: http://guide.macports.org/#project.tickets On Apr 6, 2008, at 15:50, Vittorio wrote: > I have some-year experience in building ports under freebsd. Now - > as an absolute beginner - I've just installed macports & all the > needed stuff according to the instructions. Now I want to install > xsane but a dependency seems to be missing. > > Remembering I'm a beginner with macports, what shall I do? > > Ciao > Vittorio > > Here the log of the session: > ------------------------------------------------------------- > MacBookVictor:~ victor$ sudo port install xsane > Password: > ---> Configuring gnome-keyring > Error: 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_gnome > _gnome-keyring/work/gnome-keyring-2.22.0" && ./configure --prefix=/ > opt/local " returned error 1 > Command output: checking dynamic linker characteristics... > darwin9.2.2 dyld > checking how to hardcode library paths into programs... immediate > appending configuration tag "F77" to libtool > checking for intltool >= 0.35.0... 0.36.2 found > checking for perl... /opt/local/bin/perl > checking for XML::Parser... ok > checking for pkg-config... /opt/local/bin/pkg-config > checking for pid_t... yes > checking return type of signal handlers... void > checking for size_t... yes > checking for uid_t in sys/types.h... yes > checking pkg-config is at least version 0.9.0... yes > checking for GLIB... yes > checking for GTHREAD... yes > checking for GOBJECT... yes > checking for GTK... yes > ./configure: line 22021: gconftool-2: command not found > Using config source for schema installation > Using $(sysconfdir)/gconf/schemas as install directory for schema > files > checking for GCONF... configure: error: Package requirements > (gconf-2.0) were not met: > > No package 'gconf-2.0' found > > Consider adjusting the PKG_CONFIG_PATH environment variable if you > installed software in a non-standard prefix. > > Alternatively, you may set the environment variables GCONF_CFLAGS > and GCONF_LIBS to avoid the need to call pkg-config. > See the pkg-config man page for more details. > > > Error: The following dependencies failed to build: gimp2 libgnomeui > gnome-keyring libbonoboui dbus xmlto docbook-xml-4.2 dbus-glib > gconf orbit2 libidl gnome-vfs desktop-file-utils popt gnome-mime- > data openssl libbonobo libglade2 libgnome esound audiofile > libgnomecanvas gail libgtkhtml libmng autoconf help2man p5-locale- > gettext libtool m4 automake lcms librsvg libcroco libgsf libwmf > poppler poppler-data py25-gtk py25-cairo py25-numpy fftw-3 g95 py25- > hashlib py25-gobject sane-backends libusb > Error: Status 1 encountered during processing. From randall.h.wood at alexandriasoftware.com Sun Apr 6 17:14:53 2008 From: randall.h.wood at alexandriasoftware.com (Randall Wood) Date: Sun Apr 6 17:13:39 2008 Subject: scrollkeeper In-Reply-To: <03E7F2BB-F7DB-4E33-A83B-B656CE329B00@bellsouth.net> References: <51227A9E-9B73-4CE9-9B93-1F348D8F7029@bellsouth.net> <03E7F2BB-F7DB-4E33-A83B-B656CE329B00@bellsouth.net> Message-ID: On Sun, Apr 6, 2008 at 10:48 AM, William Davis wrote: > > On Apr 6, 2008, at 4:26 AM, Randall Wood wrote: > > > > On Sun, Apr 6, 2008 at 1:55 AM, William Davis > wrote: > > > > > dang it all > > > you have fixed scrollkeeper so I cant re-install it but now I cant > install > > > half the gnome updates because they want scrollkeeper! > > > Im disgussted........ > > > > > > > There are no ports that depend on scrollkeeper. None. Every port that > > had a dependency on scrollkeeper now has a dependency on rarian. Try > > > > sudo port selfupdate ; sudo port clean --all all ; sudo port upgrade > outdated > > > > and see if that helps. > > > > > > > > > > > > > > 1. > Using $(sysconfdir)/gconf/schemas as install directory for schema files > checking for scrollkeeper-config... no > configure: error: Couldn't find scrollkeeper-config > ./configure: line 4586: exit: please: numeric argument required > ./configure: line 4586: exit: please: numeric argument required > > Warning: the following items did not execute (for bug-buddy): > org.macports.destroot org.macports.configure org.macports.build > DEBUG: > Error: Unable to upgrade port: 1 > 2. > checking for scrollkeeper-config... no > configure: error: Couldn't find scrollkeeper-config > ./configure: line 26210: exit: please: numeric argument required > ./configure: line 26210: exit: please: numeric argument required > > Warning: the following items did not execute (for gnome-applets): > org.macports.destroot org.macports.configure org.macports.build > DEBUG: > Error: Unable to upgrade port: 1 > 3. > checking for scrollkeeper-config... no > configure: error: Couldn't find scrollkeeper-config. Please install the > scrollkeeper package > > Warning: the following items did not execute (for gnome-desktop): > org.macports.destroot org.macports.configure org.macports.build > DEBUG: > Error: Unable to upgrade port: 1 > macintosh:~ frstan$ > 4. > Making all in doc > /bin/sh: scrollkeeper-config: command not found > /bin/sh: scrollkeeper-config: command not found > The file '/Templates/C/scrollkeeper_cl.xml' does not exist. > Please check your ScrollKeeper installation. > make[3]: *** [gnome-volume-control-C.omf] 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 gnome-media): > org.macports.destroot org.macports.build > DEBUG: > Error: Unable to upgrade port: 1 > 5. > Making all in it > for file in gucharmap-it.omf; do \ > scrollkeeper-preinstall > /opt/local/share/gnome/help/gucharmap/it/gucharmap.xml ./$file $file.out; \ > done > /bin/sh: scrollkeeper-preinstall: command not found > make[3]: [omf_timestamp] Error 127 (ignored) > touch omf_timestamp > Making all in ja > for file in gucharmap-ja.omf; do \ > scrollkeeper-preinstall > /opt/local/share/gnome/help/gucharmap/ja/gucharmap.xml ./$file $file.out; \ > done > /bin/sh: scrollkeeper-preinstall: command not found > make[3]: [omf_timestamp] Error 127 (ignored) > touch omf_timestamp > Making all in zh_CN > for file in gucharmap-zh_CN.omf; do \ > scrollkeeper-preinstall > /opt/local/share/gnome/help/gucharmap/zh_CN/gucharmap.xml ./$file $file.out; > \ > done > /bin/sh: scrollkeeper-preinstall: command not found > make[3]: [omf_timestamp] Error 127 (ignored) > touch omf_timestamp > Making all in zh_TW > for file in gucharmap-zh_TW.omf; do \ > scrollkeeper-preinstall > /opt/local/share/gnome/help/gucharmap/zh_TW/gucharmap.xml ./$file $file.out; > \ > done > /bin/sh: scrollkeeper-preinstall: command not found > make[3]: [omf_timestamp] Error 127 (ignored) > touch omf_timestamp > > /snip/ > > install: gucharmap-it.omf.out: No such file or directory > make[4]: *** [install-data-hook-omf] Error 71 > make[3]: *** [install-data-am] Error 2 > make[2]: *** [install-am] Error 2 > make[1]: *** [install-recursive] Error 1 > make: *** [install-recursive] Error 1 > > Warning: the following items did not execute (for gucharmap): > org.macports.destroot > DEBUG: > Error: Unable to upgrade port: 1 > > 6. > others (such as yelp) attempt to use scrollkeeper which fails but the > install completes The current version of yelp breaks if scrollkeeper is installed. This is a deliberate decision on the upstream maintainers of that package for the GNOME project. They provide a package called rarian that is a drop-in replacement for scrollkeeper with extended capabilities to support internationalization needs, as scrollkeeper has not been updated by its maintainers for a few years now. > Those are all I care to take time to bother to list. Did you perhaps bother to read the notes in the scrollkeeper port when it aborts the installation, or bother to my original reply to your message. The port named "rarian" is the port you want to use. Every port that did depend on scrollkeeper (or on a port that depended on scrollkeeper) no w depends on the port named "rarian" (or on a port that depends on "rarian"). Every problem you list is the result of not having the port named "rarian" installed. The scrollkeeper port is explicit: you should use the port rarian instead of it. > And yes I did selfupdate and clean --all : I do those regularly. > > Im very disapointed with the lack of quality in the MacPorts system and its > undepedability. ... > 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 > > -- 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 ryandesign at macports.org Sun Apr 6 17:20:53 2008 From: ryandesign at macports.org (Ryan Schmidt) Date: Sun Apr 6 17:20:10 2008 Subject: postgresql82 In-Reply-To: <47F770CB.8080006@tacocat.net> References: <47F770CB.8080006@tacocat.net> Message-ID: <5D57A9F0-8F38-47E3-8EB5-443A60A1C184@macports.org> On Apr 5, 2008, at 07:30, Tom Allison wrote: > I had some Apple upgrades come in recently and noticed a few things > that were out of whack -- like I had some issues with the minimize > feature not working. > > And then I realized that my database isn't running. > > How do I get this back into the sys_init process so it will run again? > I don't see any errors in /opt/local/var/log/postgres82/ > postgres.log. These are the last lines: > > LOG: received smart shutdown request > LOG: shutting down > LOG: database system is shut down Install the port postgresql82-server. This will install a launchd plist for starting and stopping the server. The port will tell you how to use the plist after it's been installed. Once you start it, it'll stay running(across restarts) until you stop it . > NOTE TO SELF -- add dates to config. > > > I guess I can upgrade and maybe that will fix it. > > If I do: > Do I have to migrate the databases? > Do I need to dump them first and migrate manually (will version 8.2 > be around) > > How do I NOT upgrade a package (and dependencies)? > I want to keep RAILS at version 1.xxx As I understand it, upgrades between major versions of postgresql (e.g. from 8.1 to 8.2) require database migration. I don't know how to do that but I imagine the postgresql documentation would tell you. If you don't want to upgrade a port foo, don't run "sudo port upgrade foo"? Or maybe you mean, foo depends on bar, foo and bar are outdated, and you want to upgrade foo but not bar. In that case, use "sudo port -n upgrade foo"; "-n" means "non-recursive". This is not guaranteed to work, of course; the new version of foo may depend on features in the new version of bar. But you can give it a try. From tom at tacocat.net Sun Apr 6 17:32:34 2008 From: tom at tacocat.net (Tom Allison) Date: Sun Apr 6 17:31:51 2008 Subject: upgrade outdated example In-Reply-To: <47F95B17.3060101@psg.com> References: <47F8AB00.9080104@tacocat.net> <623D3FDD-47E1-4D71-A27B-421EF0A58F95@macports.org> <47F95B17.3060101@psg.com> Message-ID: <47F96BA2.7020307@tacocat.net> Randy Bush wrote: >> while there exist an outdated port > > and how do i know the list of outdated ports? > > randy port outdated in theory the upgrade process is: port upgrade outdated or port -u upgrade outdated (uninstall old versions) But I have a lot of stuff that I couldn't release. So I did a number of them as port -f uninstall... But that just sounds like I'm waiting to break something doing this. From tom at tacocat.net Sun Apr 6 17:35:44 2008 From: tom at tacocat.net (Tom Allison) Date: Sun Apr 6 17:34:53 2008 Subject: upgrade outdated conflicts In-Reply-To: <1B4DFD29-531A-466A-B6CF-AECEFCE4D4F4@macports.org> References: <47F8A91A.1070801@tacocat.net> <1B4DFD29-531A-466A-B6CF-AECEFCE4D4F4@macports.org> Message-ID: <47F96C60.6010405@tacocat.net> I'm not certain about the incompatibility of postgres versions. It is a case by case issue, but generally the practice is to dump/upgrade/restore if there is any doubt. For my development box, it's not an issue. As for perl -- can you specific a minimum version requirement (>= 5.8) instead of tagging it to a version. This is something I've seen in Debian, but I'm not familiar with the details of how they do it. Ryan Schmidt wrote: > > On Apr 6, 2008, at 05:42, Tom Allison wrote: > >> I'm struggling with the upgrade process right now. >> >> I've completed the following: >> selfupdate >> upgrade outdated >> >> But now I have soem mixed packages like: >> postgresql81 >> postgresql82 >> postgresql83 >> >> in addition to postgres 8.2 having three versions itself. >> >> There are mayby 50+ of these right now. >> >> port -u upgrade outdated never completed successfully because of >> dependencies. >> >> Question: I would like to remove as many of these old versions as I >> can but it seems that getting all the dependencies out of the way is >> going to take a while for all the packages to be updated by the >> maintainer. If I wait and just keep running '-u update outdated' will >> I eventually clean up all the old packages? > > Yeah, "port -u upgrade outdated" isn't a great command, it seems. See my > other reply to you a moment ago about a better set of commands. > >> And can someone make any suggestion on what to do with the version >> conflicts like perl5.8/perl5.10 and postgresql81..83. I eventually >> would like to migrate everything to a common package like perl 5.10 >> but I guess right now I really can't do that because of things like >> p5-dbd-pg still being tied back to 5.10... >> >> Will package upgrades like perl5.8 eventually upgrade themselves to >> perl5.10 once all the package dependencies are also upgrade? > > I do not know what our plan is with regard to perl5.8/perl5.10. Ideally, > each port that depends on perl would declare the dependency in such a > way that either port would satisfy the dependency. That is, instead of > writing "depends_lib port:perl5.8", ports could write "depends_lib > path:${prefix}/bin/perl:perl5.8"; that way, if a perl is already > installed (by either perl5.8 or perl5.10), then the dependency is > satisfied, otherwise perl5.8 is installed. But at this time, it looks > like we have about 86 ports that depend on "port:perl5.8", 2 that depend > on "port:perl5.10", and 6 that use the "path:" syntax. > > As for postgresql, I understand that each major version is incompatible > with the last. That is, a database that works with 8.1 does not work > with 8.2 until you manually upgrade it, at which point it doesn't work > with 8.1 anymore. Therefore, separate ports, to give users the choice of > when to upgrade to newer versions. If you find ports that depend only on > a specific version of postgresql, and do not give you variants to let > you choose which version you would like to use, please file enhancement > request tickets against those ports. > From ryandesign at macports.org Sun Apr 6 18:11:33 2008 From: ryandesign at macports.org (Ryan Schmidt) Date: Sun Apr 6 18:10:49 2008 Subject: upgrade outdated example In-Reply-To: <47F96BA2.7020307@tacocat.net> References: <47F8AB00.9080104@tacocat.net> <623D3FDD-47E1-4D71-A27B-421EF0A58F95@macports.org> <47F95B17.3060101@psg.com> <47F96BA2.7020307@tacocat.net> Message-ID: <2C9AA429-7CC6-4098-B060-7AE5BBAF5902@macports.org> On Apr 6, 2008, at 19:32, Tom Allison wrote: > Randy Bush wrote: >>> while there exist an outdated port >> and how do i know the list of outdated ports? >> randy > > > port outdated > > in theory the upgrade process is: > > port upgrade outdated > or > port -u upgrade outdated (uninstall old versions) > > > But I have a lot of stuff that I couldn't release. > So I did a number of them as port -f uninstall... > > But that just sounds like I'm waiting to break something doing this. It is currently necessary to force the uninstall of ports on which other ports depend. From ryandesign at macports.org Sun Apr 6 18:12:44 2008 From: ryandesign at macports.org (Ryan Schmidt) Date: Sun Apr 6 18:12:01 2008 Subject: upgrade outdated conflicts In-Reply-To: <47F96C60.6010405@tacocat.net> References: <47F8A91A.1070801@tacocat.net> <1B4DFD29-531A-466A-B6CF-AECEFCE4D4F4@macports.org> <47F96C60.6010405@tacocat.net> Message-ID: On Apr 6, 2008, at 19:35, Tom Allison wrote: > I'm not certain about the incompatibility of postgres versions. It > is a case by case issue, but generally the practice is to dump/ > upgrade/restore if there is any doubt. For my development box, > it's not an issue. > > As for perl -- can you specific a minimum version requirement (>= > 5.8) instead of tagging it to a version. This is something I've > seen in Debian, but I'm not familiar with the details of how they > do it. No. You cannot declare a dependency on a version of a port. You can only declare a dependency on a port. Therefore there are separate ports for the different versions of software, for the cases where we want users to be able to choose which version. From mvfranz at gmail.com Sun Apr 6 18:43:16 2008 From: mvfranz at gmail.com (Michael Franz) Date: Sun Apr 6 18:41:48 2008 Subject: Help With Link Parameters Message-ID: Hi, I am having problems converting the linux linking command to a OS X equivalent. Can anyone here help? echo | $(CC) $(CFLAGS) -fpic -shared \ -o $$shared_object \ -Wl,-soname,$$shared_object -xc - ; My attempt is like this: echo | $(CC) $(CFLAGS) -fPIC -dynamiclib \ -o $$shared_object \ -Wl,-dynamic $$shared_object -xc - ; The purpose it to generate empty shared libraries. Thanks for any help you can offer on this. Michael PS. I had this working but lost the code since I removed the wrong directory. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.macosforge.org/pipermail/macports-users/attachments/20080406/f62bacf2/attachment.html From ktan at realityartisans.com Sun Apr 6 20:31:52 2008 From: ktan at realityartisans.com (Kok-Yong Tan) Date: Sun Apr 6 20:30:29 2008 Subject: Error in macports upgrade build Message-ID: <9F8CA7D9-8C13-4020-90DD-82DC9263CE8F@realityartisans.com> In the midsts of a "sudo port -vR upgrade installed" command on a dual 2GHz PowerMac G5 OS 10.4.11 system, it reported this error: Error: Target org.macports.checksum returned: Could not open file: / opt/local/var/macports/distfiles/libxslt/libxslt/libxslt/libxslt/ libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ libxslt/libxslt/libxslt/libxslt/libxslt-1.1.22.tar.gzWarning: the following items did not execute (for libxslt): org.macports.activate org.macports.extract org.macports.checksum org.macports.patch org.macports.configure org.macports.build org.macports.destroot org.macports.installError: The following dependencies failed to build: gtk-doc scrollkeeper libxslt p5-xml-parserError: Unable to upgrade port: 1 I looked at /opt/local/var/macports/distfiles/libxslt/ and libxslt-1.1.22.tar.gz is certainly there. Why is there the extraneous additions of libxslt in the above absolute file path and how can I fix it (where's the makefile or whatever it uses)? -- Reality Artisans, Inc. # Network Wrangling and Delousing P.O. Box 565, Gracie Station # Apple Certified Help Desk Specialist New York, NY 10028-0019 # Apple Consultants Network member # Apple Developer Connection member (212) 369-4876 (Voice) # (212) 860-4325 (Fax) From frstan at bellsouth.net Sun Apr 6 23:20:22 2008 From: frstan at bellsouth.net (William Davis) Date: Sun Apr 6 23:18:56 2008 Subject: scrollkeeper In-Reply-To: References: <51227A9E-9B73-4CE9-9B93-1F348D8F7029@bellsouth.net> <03E7F2BB-F7DB-4E33-A83B-B656CE329B00@bellsouth.net> Message-ID: <9E73F335-C690-4FB8-B749-9FBF269B6B5C@bellsouth.net> On Apr 6, 2008, at 8:14 PM, Randall Wood wrote: > On Sun, Apr 6, 2008 at 10:48 AM, William Davis > wrote: >> >> On Apr 6, 2008, at 4:26 AM, Randall Wood wrote: >> >> >>> On Sun, Apr 6, 2008 at 1:55 AM, William Davis >> wrote: >>> >>>> dang it all >>>> you have fixed scrollkeeper so I cant re-install it but now I cant >> install >>>> half the gnome updates because they want scrollkeeper! >>>> Im disgussted........ >>>> >>> >>> There are no ports that depend on scrollkeeper. None. Every port >>> that >>> had a dependency on scrollkeeper now has a dependency on rarian. Try >>> >>> sudo port selfupdate ; sudo port clean --all all ; sudo port upgrade >> outdated >>> >>> and see if that helps. >>> >>> >>>> >>>> >>> >> >> 1. >> Using $(sysconfdir)/gconf/schemas as install directory for schema >> files >> checking for scrollkeeper-config... no >> configure: error: Couldn't find scrollkeeper-config >> ./configure: line 4586: exit: please: numeric argument required >> ./configure: line 4586: exit: please: numeric argument required >> >> Warning: the following items did not execute (for bug-buddy): >> org.macports.destroot org.macports.configure org.macports.build >> DEBUG: >> Error: Unable to upgrade port: 1 >> 2. >> checking for scrollkeeper-config... no >> configure: error: Couldn't find scrollkeeper-config >> ./configure: line 26210: exit: please: numeric argument required >> ./configure: line 26210: exit: please: numeric argument required >> >> Warning: the following items did not execute (for gnome-applets): >> org.macports.destroot org.macports.configure org.macports.build >> DEBUG: >> Error: Unable to upgrade port: 1 >> 3. >> checking for scrollkeeper-config... no >> configure: error: Couldn't find scrollkeeper-config. Please install >> the >> scrollkeeper package >> >> Warning: the following items did not execute (for gnome-desktop): >> org.macports.destroot org.macports.configure org.macports.build >> DEBUG: >> Error: Unable to upgrade port: 1 >> macintosh:~ frstan$ >> 4. >> Making all in doc >> /bin/sh: scrollkeeper-config: command not found >> /bin/sh: scrollkeeper-config: command not found >> The file '/Templates/C/scrollkeeper_cl.xml' does not exist. >> Please check your ScrollKeeper installation. >> make[3]: *** [gnome-volume-control-C.omf] 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 gnome-media): >> org.macports.destroot org.macports.build >> DEBUG: >> Error: Unable to upgrade port: 1 >> 5. >> Making all in it >> for file in gucharmap-it.omf; do \ >> scrollkeeper-preinstall >> /opt/local/share/gnome/help/gucharmap/it/gucharmap.xml ./$file >> $file.out; \ >> done >> /bin/sh: scrollkeeper-preinstall: command not found >> make[3]: [omf_timestamp] Error 127 (ignored) >> touch omf_timestamp >> Making all in ja >> for file in gucharmap-ja.omf; do \ >> scrollkeeper-preinstall >> /opt/local/share/gnome/help/gucharmap/ja/gucharmap.xml ./$file >> $file.out; \ >> done >> /bin/sh: scrollkeeper-preinstall: command not found >> make[3]: [omf_timestamp] Error 127 (ignored) >> touch omf_timestamp >> Making all in zh_CN >> for file in gucharmap-zh_CN.omf; do \ >> scrollkeeper-preinstall >> /opt/local/share/gnome/help/gucharmap/zh_CN/gucharmap.xml ./$file >> $file.out; >> \ >> done >> /bin/sh: scrollkeeper-preinstall: command not found >> make[3]: [omf_timestamp] Error 127 (ignored) >> touch omf_timestamp >> Making all in zh_TW >> for file in gucharmap-zh_TW.omf; do \ >> scrollkeeper-preinstall >> /opt/local/share/gnome/help/gucharmap/zh_TW/gucharmap.xml ./$file >> $file.out; >> \ >> done >> /bin/sh: scrollkeeper-preinstall: command not found >> make[3]: [omf_timestamp] Error 127 (ignored) >> touch omf_timestamp >> >> /snip/ >> >> install: gucharmap-it.omf.out: No such file or directory >> make[4]: *** [install-data-hook-omf] Error 71 >> make[3]: *** [install-data-am] Error 2 >> make[2]: *** [install-am] Error 2 >> make[1]: *** [install-recursive] Error 1 >> make: *** [install-recursive] Error 1 >> >> Warning: the following items did not execute (for gucharmap): >> org.macports.destroot >> DEBUG: >> Error: Unable to upgrade port: 1 >> >> 6. >> others (such as yelp) attempt to use scrollkeeper which fails but the >> install completes > > The current version of yelp breaks if scrollkeeper is installed. This > is a deliberate decision on the upstream maintainers of that package > for the GNOME project. They provide a package called rarian that is a > drop-in replacement for scrollkeeper with extended capabilities to > support internationalization needs, as scrollkeeper has not been > updated by its maintainers for a few years now. > >> Those are all I care to take time to bother to list. > > Did you perhaps bother to read the notes in the scrollkeeper port when > it aborts the installation, or bother to my original reply to your > message. The port named "rarian" is the port you want to use. Every > port that did depend on scrollkeeper (or on a port that depended on > scrollkeeper) no w depends on the port named "rarian" (or on a port > that depends on "rarian"). > > Every problem you list is the result of not having the port named > "rarian" installed. The scrollkeeper port is explicit: you should use > the port rarian instead of it. > >> And yes I did selfupdate and clean --all : I do those regularly. >> >> Im very disapointed with the lack of quality in the MacPorts system >> and its >> undepedability. > > ... > >> 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 >> >> > > > > -- > 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." And I find your presumption of ignorance of basics on my part instead of looking at the problem rather inept. macintosh:~ frstan$ port installed rarian The following ports are currently installed: rarian @0.8.0_0 (active) macintosh:~ frstan$ OF COURSE I HAD PREVIOUSLY INSTALLED RARIAN! What's your excuse going to be this time? 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 zavpublic at mac.com Sun Apr 6 23:29:34 2008 From: zavpublic at mac.com (Alex Zavatone) Date: Sun Apr 6 23:28:09 2008 Subject: scrollkeeper In-Reply-To: <9E73F335-C690-4FB8-B749-9FBF269B6B5C@bellsouth.net> References: <51227A9E-9B73-4CE9-9B93-1F348D8F7029@bellsouth.net> <03E7F2BB-F7DB-4E33-A83B-B656CE329B00@bellsouth.net> <9E73F335-C690-4FB8-B749-9FBF269B6B5C@bellsouth.net> Message-ID: <473CD7A6-411D-4B2E-9EB6-079050AED4FE@mac.com> Yo yo! Hey kids, please calm down a little. I mean, it's almost like I can't feel the love in this room anymore. - Zav Valium. It's not just for breakfast anymore. > And I find your presumption of ignorance of basics on my part > instead of looking at the problem rather inept. > macintosh:~ frstan$ port installed rarian > The following ports are currently installed: > rarian @0.8.0_0 (active) > macintosh:~ frstan$ > > OF COURSE I HAD PREVIOUSLY INSTALLED RARIAN! > > What's your excuse going to be this time? > > 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 From guido.soranzio at gmail.com Sun Apr 6 23:59:48 2008 From: guido.soranzio at gmail.com (Guido Soranzio) Date: Sun Apr 6 23:58:25 2008 Subject: scrollkeeper In-Reply-To: <9E73F335-C690-4FB8-B749-9FBF269B6B5C@bellsouth.net> References: <51227A9E-9B73-4CE9-9B93-1F348D8F7029@bellsouth.net> <03E7F2BB-F7DB-4E33-A83B-B656CE329B00@bellsouth.net> <9E73F335-C690-4FB8-B749-9FBF269B6B5C@bellsouth.net> Message-ID: On Apr 7, 2008, at 8:20 AM, William Davis wrote: > > macintosh:~ frstan$ port installed rarian > The following ports are currently installed: > rarian @0.8.0_0 (active) > macintosh:~ frstan$ > > OF COURSE I HAD PREVIOUSLY INSTALLED RARIAN! Then "port contents rarian" should provide: Port rarian contains: /opt/local/bin/rarian-example /opt/local/bin/rarian-sk-config [...] /opt/local/bin/scrollkeeper-config /opt/local/bin/scrollkeeper-extract [...] /opt/local/bin/scrollkeeper-update [...] bug-buddy already use system "${prefix}/bin/scrollkeeper-update" instead of the simpler system "scrollkeeper-update" but this wouldn't be the cause of the error, since MacPorts assumes that ${prefix}/bin is in your $PATH. Please, investigate further and send us more logs through Trac (http://trac.macports.org/projects/macports/newticket): it's improbable that was "port upgrade" to have screwed your configuration. -Guido From frstan at bellsouth.net Mon Apr 7 00:10:24 2008 From: frstan at bellsouth.net (William Davis) Date: Mon Apr 7 00:08:58 2008 Subject: scrollkeeper In-Reply-To: References: <51227A9E-9B73-4CE9-9B93-1F348D8F7029@bellsouth.net> <03E7F2BB-F7DB-4E33-A83B-B656CE329B00@bellsouth.net> Message-ID: <0C4CB21E-3413-467B-93D4-BD3E67A8F556@bellsouth.net> On Apr 6, 2008, at 8:14 PM, Randall Wood wrote: >>>> >>> >>> There are no ports that depend on scrollkeeper. None. Every port >>> that >>> had a dependency on scrollkeeper now has a dependency on rarian. Try >>> >>> sudo port selfupdate ; sudo port clean --all all ; sudo port upgrade >> outdated >>> >>> and see if that helps. >>> >>> >>>> >>>> >>> >> >> 1. >> Using $(sysconfdir)/gconf/schemas as install directory for schema >> files >> checking for scrollkeeper-config... no >> configure: error: Couldn't find scrollkeeper-config >> ./configure: line 4586: exit: please: numeric argument required >> ./configure: line 4586: exit: please: numeric argument required >> >> Warning: the following items did not execute (for bug-buddy): >> org.macports.destroot org.macports.configure org.macports.build >> DEBUG: >> Error: Unable to upgrade port: 1 >> 2. >> checking for scrollkeeper-config... no >> configure: error: Couldn't find scrollkeeper-config >> ./configure: line 26210: exit: please: numeric argument required >> ./configure: line 26210: exit: please: numeric argument required >> >> Warning: the following items did not execute (for gnome-applets): >> org.macports.destroot org.macports.configure org.macports.build >> DEBUG: >> Error: Unable to upgrade port: 1 >> 3. >> checking for scrollkeeper-config... no >> configure: error: Couldn't find scrollkeeper-config. Please install >> the >> scrollkeeper package >> >> Warning: the following items did not execute (for gnome-desktop): >> org.macports.destroot org.macports.configure org.macports.build >> DEBUG: >> Error: Unable to upgrade port: 1 >> macintosh:~ frstan$ >> 4. >> Making all in doc >> /bin/sh: scrollkeeper-config: command not found >> /bin/sh: scrollkeeper-config: command not found >> The file '/Templates/C/scrollkeeper_cl.xml' does not exist. >> Please check your ScrollKeeper installation. >> make[3]: *** [gnome-volume-control-C.omf] 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 gnome-media): >> org.macports.destroot org.macports.build >> DEBUG: >> Error: Unable to upgrade port: 1 >> 5. >> Making all in it >> for file in gucharmap-it.omf; do \ >> scrollkeeper-preinstall >> /opt/local/share/gnome/help/gucharmap/it/gucharmap.xml ./$file >> $file.out; \ >> done >> /bin/sh: scrollkeeper-preinstall: command not found >> make[3]: [omf_timestamp] Error 127 (ignored) >> touch omf_timestamp >> Making all in ja >> for file in gucharmap-ja.omf; do \ >> scrollkeeper-preinstall >> /opt/local/share/gnome/help/gucharmap/ja/gucharmap.xml ./$file >> $file.out; \ >> done >> /bin/sh: scrollkeeper-preinstall: command not found >> make[3]: [omf_timestamp] Error 127 (ignored) >> touch omf_timestamp >> Making all in zh_CN >> for file in gucharmap-zh_CN.omf; do \ >> scrollkeeper-preinstall >> /opt/local/share/gnome/help/gucharmap/zh_CN/gucharmap.xml ./$file >> $file.out; >> \ >> done >> /bin/sh: scrollkeeper-preinstall: command not found >> make[3]: [omf_timestamp] Error 127 (ignored) >> touch omf_timestamp >> Making all in zh_TW >> for file in gucharmap-zh_TW.omf; do \ >> scrollkeeper-preinstall >> /opt/local/share/gnome/help/gucharmap/zh_TW/gucharmap.xml ./$file >> $file.out; >> \ >> done >> /bin/sh: scrollkeeper-preinstall: command not found >> make[3]: [omf_timestamp] Error 127 (ignored) >> touch omf_timestamp >> >> /snip/ >> >> install: gucharmap-it.omf.out: No such file or directory >> make[4]: *** [install-data-hook-omf] Error 71 >> make[3]: *** [install-data-am] Error 2 >> make[2]: *** [install-am] Error 2 >> make[1]: *** [install-recursive] Error 1 >> make: *** [install-recursive] Error 1 >> >> Warning: the following items did not execute (for gucharmap): >> org.macports.destroot >> DEBUG: >> Error: Unable to upgrade port: 1 >> >> 6. >> others (such as yelp) attempt to use scrollkeeper which fails but the >> install completes > > The current version of yelp breaks if scrollkeeper is installed. This > is a deliberate decision on the upstream maintainers of that package > for the GNOME project. They provide a package called rarian that is a > drop-in replacement for scrollkeeper with extended capabilities to > support internationalization needs, as scrollkeeper has not been > updated by its maintainers for a few years now. > >> Those are all I care to take time to bother to list. > > Did you perhaps bother to read the notes in the scrollkeeper port when > it aborts the installation, or bother to my original reply to your > message. The port named "rarian" is the port you want to use. Every > port that did depend on scrollkeeper (or on a port that depended on > scrollkeeper) no w depends on the port named "rarian" (or on a port > that depends on "rarian"). > > Every problem you list is the result of not having the port named > "rarian" installed. The scrollkeeper port is explicit: you should use > the port rarian instead of it. > As I previously reported: I did (and still do) have rarian installed. and I can now add: 7. DEBUG: Executing proc-post-org.macports.activate-activate-0 DEBUG: Updating scrollkeeper database... sh: /opt/local/bin/scrollkeeper-update: No such file or directory Error: Target org.macports.activate returned: shell command "/opt/ local/bin/scrollkeeper-update" returned error 127 Command output: sh: /opt/local/bin/scrollkeeper-update: No such file or directory Warning: the following items did not execute (for gtk-doc): org.macports.activate macintosh:~ frstan$ 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 guido.soranzio at gmail.com Mon Apr 7 00:25:30 2008 From: guido.soranzio at gmail.com (Guido Soranzio) Date: Mon Apr 7 00:24:04 2008 Subject: scrollkeeper In-Reply-To: <0C4CB21E-3413-467B-93D4-BD3E67A8F556@bellsouth.net> References: <51227A9E-9B73-4CE9-9B93-1F348D8F7029@bellsouth.net> <03E7F2BB-F7DB-4E33-A83B-B656CE329B00@bellsouth.net> <0C4CB21E-3413-467B-93D4-BD3E67A8F556@bellsouth.net> Message-ID: <32EAF10B-6505-42AA-963D-25DE698DE5B2@gmail.com> On Apr 7, 2008, at 9:10 AM, William Davis wrote: > > As I previously reported: I did (and still do) have rarian installed. Have you already tried to reinstall it with "sudo port -f uninstall rarian ; sudo port install rarian" ? -Guido From randall.h.wood at alexandriasoftware.com Mon Apr 7 01:08:50 2008 From: randall.h.wood at alexandriasoftware.com (Randall Wood) Date: Mon Apr 7 01:07:26 2008 Subject: scrollkeeper In-Reply-To: <32EAF10B-6505-42AA-963D-25DE698DE5B2@gmail.com> References: <51227A9E-9B73-4CE9-9B93-1F348D8F7029@bellsouth.net> <03E7F2BB-F7DB-4E33-A83B-B656CE329B00@bellsouth.net> <0C4CB21E-3413-467B-93D4-BD3E67A8F556@bellsouth.net> <32EAF10B-6505-42AA-963D-25DE698DE5B2@gmail.com> Message-ID: On Mon, Apr 7, 2008 at 3:25 AM, Guido Soranzio wrote: > On Apr 7, 2008, at 9:10 AM, William Davis wrote: > > > > > As I previously reported: I did (and still do) have rarian installed. > > > > > Have you already tried to reinstall it with > > "sudo port -f uninstall rarian ; sudo port install rarian" ? I think I might understand the problem now. At some point port may have attempted to activate, and been blocked by the then active scrollkeeper port. Upgrading scrollkeeper may have deactivated scrollkeeper without activating rarian, leading to the empty state that William saw. Is rarian active? If "port list active | grep rarian" does not return "rarian @0.8.0 textproc/rarian" then a "sudo port activate rarian" should do the trick. > -Guido > -- 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 raimue at macports.org Mon Apr 7 07:34:40 2008 From: raimue at macports.org (=?ISO-8859-1?Q?Rainer_M=FCller?=) Date: Mon Apr 7 07:33:14 2008 Subject: selfupdate fails In-Reply-To: <047794E4-0BE7-40BE-AF52-229DF1DA76EE@cs.vu.nl> References: <047794E4-0BE7-40BE-AF52-229DF1DA76EE@cs.vu.nl> Message-ID: <47FA3100.6000407@macports.org> Dimitri Hendriks wrote: > Hi, > > I try to selfupdate macports on system 10.4.11, > but it fails; see error message below. > Does anyone know how to solve this? No idea. Try installing from the disk image as a workaround. Rainer From frstan at bellsouth.net Mon Apr 7 07:46:12 2008 From: frstan at bellsouth.net (William Davis) Date: Mon Apr 7 07:44:46 2008 Subject: scrollkeeper In-Reply-To: References: <51227A9E-9B73-4CE9-9B93-1F348D8F7029@bellsouth.net> <03E7F2BB-F7DB-4E33-A83B-B656CE329B00@bellsouth.net> <0C4CB21E-3413-467B-93D4-BD3E67A8F556@bellsouth.net> <32EAF10B-6505-42AA-963D-25DE698DE5B2@gmail.com> Message-ID: <4D1A7AA6-7A06-4538-8EA2-9A3333E47108@bellsouth.net> On Apr 7, 2008, at 4:08 AM, Randall Wood wrote: > On Mon, Apr 7, 2008 at 3:25 AM, Guido Soranzio > wrote: >> On Apr 7, 2008, at 9:10 AM, William Davis wrote: >> >>> >>> As I previously reported: I did (and still do) have rarian >>> installed. >>> >> >> >> Have you already tried to reinstall it with >> >> "sudo port -f uninstall rarian ; sudo port install rarian" ? > > I think I might understand the problem now. At some point port may > have attempted to activate, and been blocked by the then active > scrollkeeper port. Upgrading scrollkeeper may have deactivated > scrollkeeper without activating rarian, leading to the empty state > that William saw. > > Is rarian active? If "port list active | grep rarian" does not return > "rarian @0.8.0 textproc/rarian" then a "sudo port activate rarian" > should do the trick. > >> -Guido >> > > > > -- > 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." macintosh:~ frstan$ port list active | grep rarian rarian @0.8.0 textproc/rarian macintosh:~ frstan$ and I previously reported: macintosh:~ frstan$ port installed rarian The following ports are currently installed: rarian @0.8.0_0 (active) macintosh:~ frstan$ which runs somewhat faster btw. ok,I tried Guido's suggestion and uninstalled (-f) rarian and reinstalled it. Now both bug-buddy and gnome-applets upgrade ok! THANK YOU GUIDO :D I'll go on with my upgrades of the other 5 programs I previously reported but so far this does seem to fix the problem. Im sorry to have been so "persnickkidy" Randall. I know you do a LOT of work for the MacPorts system, and I appreciate that. Still and all, can you imagine how frustrated I felt when after doing "what I was told to do" suddenly program after program would not upgrade AND the path back to the old system was blocked? AND nobody seemed to believe there was a real problem? best regards 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 raimue at macports.org Mon Apr 7 09:36:05 2008 From: raimue at macports.org (=?ISO-8859-15?Q?Rainer_M=FCller?=) Date: Mon Apr 7 09:34:36 2008 Subject: xv and png In-Reply-To: <47F75AFD.6050406@macports.org> References: <20080404091246.GB6715@marco.fz-rossendorf.de> <47F6CA4D.3000305@macports.org> <6AD183FE-A3F1-4A35-A7B3-0FD957BE3DCD@macports.org> <20080405102527.GH19868@claude.fz-rossendorf.de> <47F75AFD.6050406@macports.org> Message-ID: <47FA4D75.4020605@macports.org> Rainer M?ller wrote: > Joerg van den Hoff wrote: >> and it would be really great, if the PNG patch could really be >> included: missing PNG support is the one big shortcoming of `xv'. >> as `xv' seems otherwise frozen since the mid nineties applying the patch >> seems a one time action. > > I will work on inclusion of this patch. As may have already noticed, I committed an update with PNG support in r35810 [1]. Rainer http://trac.macosforge.org/projects/macports/changeset/35810 From raimue at macports.org Mon Apr 7 10:13:02 2008 From: raimue at macports.org (=?ISO-8859-1?Q?Rainer_M=FCller?=) Date: Mon Apr 7 10:11:33 2008 Subject: Error in macports upgrade build In-Reply-To: <9F8CA7D9-8C13-4020-90DD-82DC9263CE8F@realityartisans.com> References: <9F8CA7D9-8C13-4020-90DD-82DC9263CE8F@realityartisans.com> Message-ID: <47FA561E.90308@macports.org> Kok-Yong Tan wrote: > In the midsts of a "sudo port -vR upgrade installed" command on a > dual 2GHz PowerMac G5 OS 10.4.11 system, it reported this error: > > Error: Target org.macports.checksum returned: Could not open file: / > opt/local/var/macports/distfiles/libxslt/libxslt/libxslt/libxslt/ > libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ > libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ > libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ > libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ > libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ > libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ > libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ > libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ > libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ > libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ > libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ > libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ > libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ > libxslt/libxslt/libxslt/libxslt/libxslt-1.1.22.tar.gzWarning: the > following items did not execute (for libxslt): org.macports.activate > org.macports.extract org.macports.checksum org.macports.patch > org.macports.configure org.macports.build org.macports.destroot > org.macports.installError: The following dependencies failed to > build: gtk-doc scrollkeeper libxslt p5-xml-parserError: Unable to > upgrade port: 1 Very strange error. Building libxslt works fine for me. > I looked at /opt/local/var/macports/distfiles/libxslt/ and > libxslt-1.1.22.tar.gz is certainly there. Why is there the > extraneous additions of libxslt in the above absolute file path and > how can I fix it (where's the makefile or whatever it uses)? MacPorts uses Portfiles as described in our guide [1]. You can find it with the command 'port file libxslt'. I can't find anything wrong in the Portfile which could cause such an error on upgrading. Rainer [1] http://guide.macports.org/#development.introduction From ryandesign at macports.org Mon Apr 7 11:53:59 2008 From: ryandesign at macports.org (Ryan Schmidt) Date: Mon Apr 7 11:53:14 2008 Subject: Error in macports upgrade build In-Reply-To: <9F8CA7D9-8C13-4020-90DD-82DC9263CE8F@realityartisans.com> References: <9F8CA7D9-8C13-4020-90DD-82DC9263CE8F@realityartisans.com> Message-ID: On Apr 6, 2008, at 22:31, Kok-Yong Tan wrote: > In the midsts of a "sudo port -vR upgrade installed" command on a > dual 2GHz PowerMac G5 OS 10.4.11 system, it reported this error: > > Error: Target org.macports.checksum returned: Could not open file: / > opt/local/var/macports/distfiles/libxslt/libxslt/libxslt/libxslt/ > libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ > libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ > libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ > libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ > libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ > libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ > libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ > libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ > libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ > libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ > libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ > libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ > libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ > libxslt/libxslt/libxslt/libxslt/libxslt-1.1.22.tar.gzWarning: the > following items did not execute (for libxslt): > org.macports.activate org.macports.extract org.macports.checksum > org.macports.patch org.macports.configure org.macports.build > org.macports.destroot org.macports.installError: The following > dependencies failed to build: gtk-doc scrollkeeper libxslt p5-xml- > parserError: Unable to upgrade port: 1 > > I looked at /opt/local/var/macports/distfiles/libxslt/ and > libxslt-1.1.22.tar.gz is certainly there. Why is there the > extraneous additions of libxslt in the above absolute file path and > how can I fix it (where's the makefile or whatever it uses)? I have seen this problem myself, but never could determine what caused it. I don't use the -R option. Maybe you should not use it either. The problem is not the libxslt Makefile, or any other Makefile; there must be a problem in MacPorts base. If anyone can find a consistent way to reproduce this duplicated distfile directory issue, please file a bug. From ryandesign at macports.org Mon Apr 7 11:56:54 2008 From: ryandesign at macports.org (Ryan Schmidt) Date: Mon Apr 7 11:58:19 2008 Subject: xv and png In-Reply-To: <47F7BF91.8040306@macports.org> References: <20080404091246.GB6715@marco.fz-rossendorf.de> <47F6CA4D.3000305@macports.org> <6AD183FE-A3F1-4A35-A7B3-0FD957BE3DCD@macports.org> <47F75522.2040605@macports.org> <4381A9A1-AE19-449A-9EE4-037F2AA9C703@macports.org> <47F7BF91.8040306@macports.org> Message-ID: <5744B355-F3AF-4962-8A80-8FD508782229@macports.org> On Apr 5, 2008, at 13:06, Rainer M?ller wrote: > Ryan Schmidt wrote: > >> Well, that is contrary to the FAQ, which explains why MacPorts >> uses its own libraries in most cases. libpng is not a library for >> which we should be making an exception to this rule. > > We have a lot of dependencies like this. That's why we have this > lib: thing at all. If the maintainer wants to manage this, it is ok > to use it. But there is no general rule to use stuff from outside > or 'overwrite' dependencies. Then we have a lot of ports that are in violation of this guideline and should be updated. Using the "lib:" style of dependency used to be preferred. Now it is not. But since half of our ports are not maintained, many ports have not received the necessary love to change this and many other things. From ktan at realityartisans.com Mon Apr 7 12:04:35 2008 From: ktan at realityartisans.com (Kok-Yong Tan) Date: Mon Apr 7 12:05:42 2008 Subject: Error in macports upgrade build In-Reply-To: References: <9F8CA7D9-8C13-4020-90DD-82DC9263CE8F@realityartisans.com> Message-ID: On Apr 7, 2008, at 14:53, Ryan Schmidt wrote: > > On Apr 6, 2008, at 22:31, Kok-Yong Tan wrote: > >> In the midsts of a "sudo port -vR upgrade installed" command on a >> dual 2GHz PowerMac G5 OS 10.4.11 system, it reported this error: >> >> Error: Target org.macports.checksum returned: Could not open >> file: /opt/local/var/macports/distfiles/libxslt/libxslt/libxslt/ >> libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ >> libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ >> libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ >> libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ >> libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ >> libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ >> libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ >> libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ >> libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ >> libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ >> libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ >> libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ >> libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ >> libxslt/libxslt/libxslt/libxslt/libxslt/ >> libxslt-1.1.22.tar.gzWarning: the following items did not execute >> (for libxslt): org.macports.activate org.macports.extract >> org.macports.checksum org.macports.patch org.macports.configure >> org.macports.build org.macports.destroot >> org.macports.installError: The following dependencies failed to >> build: gtk-doc scrollkeeper libxslt p5-xml-parserError: Unable to >> upgrade port: 1 >> >> I looked at /opt/local/var/macports/distfiles/libxslt/ and >> libxslt-1.1.22.tar.gz is certainly there. Why is there the >> extraneous additions of libxslt in the above absolute file path >> and how can I fix it (where's the makefile or whatever it uses)? > > I have seen this problem myself, but never could determine what > caused it. I don't use the -R option. Maybe you should not use it > either. Ummm...this suggestion is less than useful. The -R flag means to recursively check to make sure that whatever you're upgrading is also based on an upgraded dependent (after all, you wouldn't want to build a new building on a rotten or outdated foundation, especially if the new building needs things not available in the outdated or rotten foundation, right?) > The problem is not the libxslt Makefile, or any other Makefile; > there must be a problem in MacPorts base. If anyone can find a > consistent way to reproduce this duplicated distfile directory > issue, please file a bug. See my next post. I think I may have found the issue. I'm awaiting to see if my rebuild is successful before I comment further. In either case, I will post my results. -- Reality Artisans, Inc. # Network Wrangling and Delousing P.O. Box 565, Gracie Station # Apple Certified Help Desk Specialist New York, NY 10028-0019 # Apple Consultants Network member # Apple Developer Connection member (212) 369-4876 (Voice) # (212) 860-4325 (Fax) From guy.linton at gmail.com Mon Apr 7 15:46:52 2008 From: guy.linton at gmail.com (Tim Lyons) Date: Mon Apr 7 15:45:34 2008 Subject: Why does link pick up wrong library Message-ID: I must be missing something very elementary here! I am trying to install gnome-python-extras, but the configure step fails. So I have extracted out the failing part, and it fails trying to link because it can't find /usr/local/lib/libfreetype.6.dylib, which isn't surprising as there is no such file. However, I don't understand why it is even looking for this file, because the link parameters specify that the search path should be / opt/local/lib, and /opt/local/lib/libfreetype.6.dylib does exist. Below is the trace of the link run. The application is one of the conftest applications, in this case; #include #include int main () { return ((gtk_major_version) || (gtk_minor_version) || (gtk_micro_version)); ; return 0; } The link specifies -L/opt/local/lib, and libfreetype is there. The trace shows that the library is found, but then otool -L shows that the link is to /usr/local/lib instead. Note that otool says that libfreetype is version 10.16.0, but actually the version in /opt/ local/lib is version 6.3.16! I don't know where 10.16.0 comes from. Regards, Tim Lyons Hidden G5:/opt/local/var/macports/build/ _opt_local_var_macports_sources_rsync.macports.org_release_ports_gnome_g nome-python-extras/work/gnome-python-extras-2.19.1 tim$ /usr/bin/ gcc-4.0 -o conftest -O2 -DXTHREADS -I/opt/local/include/gtk-2.0 -I/ opt/local/lib/gtk-2.0/include -I/opt/local/include/atk-1.0 -I/opt/ local/include/cairo -I/opt/local/include/pango-1.0 -I/opt/local/ include/glib-2.0 -I/opt/local/lib/glib-2.0/include -I/opt/local/ include -I/opt/local/include/freetype2 -I/opt/local/include/libpng12 - I/usr/X11R6/include -I/opt/local/include -L/opt/local/lib conftest.c -Wl,-framework,CoreServices,- framework,ApplicationServices -L/opt/local/lib -L/usr/X11R6/lib -lgtk- x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lpangocairo-1.0 - lpango-1.0 -lcairo -lSM -lICE -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 - lintl -liconv -lfreetype -lz -lfontconfig -lexpat -lpng12 -g -v -Wl,- t -lXrender -lX11 Using built-in specs. Target: powerpc-apple-darwin8 Configured with: /private/var/tmp/gcc/gcc-5367.obj~1/src/configure -- disable-checking -enable-werror --prefix=/usr --mandir=/share/man -- enable-languages=c,objc,c++,obj-c++ --program-transform-name=/^[cg] [^.-]*$/s/$/-4.0/ --with-gxx-include-dir=/include/c++/4.0.0 --with- slibdir=/usr/lib --build=powerpc-apple-darwin8 --host=powerpc-apple- darwin8 --target=powerpc-apple-darwin8 Thread model: posix gcc version 4.0.1 (Apple Computer, Inc. build 5367) /usr/libexec/gcc/powerpc-apple-darwin8/4.0.1/cc1 -quiet -v -I/opt/ local/include/gtk-2.0 -I/opt/local/lib/gtk-2.0/include -I/opt/local/ include/atk-1.0 -I/opt/local/include/cairo -I/opt/local/include/ pango-1.0 -I/opt/local/include/glib-2.0 -I/opt/local/lib/glib-2.0/ include -I/opt/local/include -I/opt/local/include/freetype2 -I/opt/ local/include/libpng12 -I/usr/X11R6/include -I/opt/local/include - D__DYNAMIC__ -DXTHREADS conftest.c -feliminate-unused-debug-symbols - fPIC -quiet -dumpbase conftest.c -auxbase conftest -g -O2 -version - o /var/tmp//ccWW7Vnn.s ignoring nonexistent directory "/usr/local/include" ignoring nonexistent directory "/usr/lib/gcc/powerpc-apple- darwin8/4.0.1/../../../../powerpc-apple-darwin8/include" ignoring duplicate directory "/opt/local/include" #include "..." search starts here: #include <...> search starts here: /opt/local/include/gtk-2.0 /opt/local/lib/gtk-2.0/include /opt/local/include/atk-1.0 /opt/local/include/cairo /opt/local/include/pango-1.0 /opt/local/include/glib-2.0 /opt/local/lib/glib-2.0/include /opt/local/include /opt/local/include/freetype2 /opt/local/include/libpng12 /usr/X11R6/include /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/include /usr/include /System/Library/Frameworks /Library/Frameworks End of search list. GNU C version 4.0.1 (Apple Computer, Inc. build 5367) (powerpc-apple- darwin8) compiled by GNU C version 4.0.1 (Apple Computer, Inc. build 5367). GGC heuristics: --param ggc-min-expand=100 --param ggc-min- heapsize=131072 Compiler executable checksum: 7c4b1a9419006811b85a8b298cb6b120 as -arch ppc -o /var/tmp//ccBnx9aY.o /var/tmp//ccWW7Vnn.s /usr/libexec/gcc/powerpc-apple-darwin8/4.0.1/collect2 -dynamic -arch ppc -weak_reference_mismatches non-weak -o conftest -lcrt1.o /usr/lib/ gcc/powerpc-apple-darwin8/4.0.1/crt2.o -L/opt/local/lib -L/opt/local/ lib -L/usr/X11R6/lib -L/usr/lib/gcc/powerpc-apple-darwin8/4.0.1 -L/ usr/lib/gcc/powerpc-apple-darwin8/4.0.1 -L/usr/lib/gcc/powerpc-apple- darwin8/4.0.1/../../.. /var/tmp//ccBnx9aY.o -framework CoreServices - framework ApplicationServices -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 - lgdk_pixbuf-2.0 -lpangocairo-1.0 -lpango-1.0 -lcairo -lSM -lICE - lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -liconv -lfreetype -lz - lfontconfig -lexpat -lpng12 -t -lXrender -lX11 -lgcc -lSystemStubs - lSystem /usr/bin/ld: Pass 1 /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../crt1.o /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/crt2.o /var/tmp//ccBnx9aY.o /System/Library/Frameworks/CoreServices.framework/CoreServices /System/Library/Frameworks/ApplicationServices.framework/ ApplicationServices /opt/local/lib/libgtk-x11-2.0.dylib /opt/local/lib/libgdk-x11-2.0.dylib /opt/local/lib/libatk-1.0.dylib /opt/local/lib/libgdk_pixbuf-2.0.dylib /opt/local/lib/libpangocairo-1.0.dylib /opt/local/lib/libpango-1.0.dylib /opt/local/lib/libcairo.dylib /usr/X11R6/lib/libSM.dylib /usr/X11R6/lib/libICE.dylib /opt/local/lib/libgobject-2.0.dylib /opt/local/lib/libgmodule-2.0.dylib /opt/local/lib/libglib-2.0.dylib /opt/local/lib/libintl.dylib /opt/local/lib/libiconv.dylib /opt/local/lib/libfreetype.dylib /opt/local/lib/libz.dylib /opt/local/lib/libfontconfig.dylib /opt/local/lib/libexpat.dylib /opt/local/lib/libpng12.dylib /opt/local/lib/libXrender.dylib /usr/X11R6/lib/libX11.dylib /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib /usr/lib/system/libmathCommon.A.dylib /System/Library/Frameworks/CoreServices.framework/Versions/A/ Frameworks/CarbonCore.framework/Versions/A/CarbonCore /System/Library/Frameworks/CoreFoundation.framework/Versions/A/ CoreFoundation /System/Library/Frameworks/CoreServices.framework/Versions/A/ Frameworks/OSServices.framework/Versions/A/OSServices /System/Library/Frameworks/CoreServices.framework/Versions/A/ Frameworks/CFNetwork.framework/Versions/A/CFNetwork /System/Library/Frameworks/CoreServices.framework/Versions/A/ Frameworks/WebServicesCore.framework/Versions/A/WebServicesCore /System/Library/Frameworks/CoreServices.framework/Versions/A/ Frameworks/SearchKit.framework/Versions/A/SearchKit /System/Library/Frameworks/CoreServices.framework/Versions/A/ Frameworks/Metadata.framework/Versions/A/Metadata /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/AE.framework/Versions/A/AE /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/ATS.framework/Versions/A/ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/ColorSync.framework/Versions/A/ColorSync /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/CoreText.framework/Versions/A/CoreText /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/PrintCore.framework/Versions/A/PrintCore /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/QD.framework/Versions/A/QD /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/HIServices.framework/Versions/A/HIServices /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/FindByContent.framework/Versions/A/FindByContent /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/LaunchServices.framework/Versions/A/LaunchServices /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/ImageIO.framework/Versions/A/ImageIO /opt/local/lib/libpangoft2-1.0.0.dylib /opt/local/lib/libfreetype.6.dylib /opt/local/lib/libtiff.3.dylib /opt/local/lib/libjpeg.62.dylib /usr/X11R6/lib/libXrandr.2.dylib /usr/X11R6/lib/libXinerama.1.dylib /usr/X11R6/lib/libXext.6.dylib /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon /usr/lib/libgcc_s.1.dylib /usr/lib/libz.1.dylib /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit /usr/lib/libicucore.A.dylib /System/Library/Frameworks/Security.framework/Versions/A/Security /System/Library/Frameworks/DiskArbitration.framework/Versions/A/ DiskArbitration /usr/lib/libauto.dylib /usr/lib/libobjc.A.dylib /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/ SystemConfiguration /usr/lib/libcrypto.0.9.7.dylib /usr/lib/libbsm.dylib /usr/lib/libcups.2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/ImageIO.framework/Versions/A/Resources/libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate /usr/X11R6/lib/libXrender.1.dylib /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ ImageCapture.framework/Versions/A/ImageCapture /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ SpeechRecognition.framework/Versions/A/SpeechRecognition /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ SecurityHI.framework/Versions/A/SecurityHI /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ Ink.framework/Versions/A/Ink /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ Help.framework/Versions/A/Help /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ OpenScripting.framework/Versions/A/OpenScripting /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ Print.framework/Versions/A/Print /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ HTMLRendering.framework/Versions/A/HTMLRendering /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ NavigationServices.framework/Versions/A/NavigationServices /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ CarbonSound.framework/Versions/A/CarbonSound /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ CommonPanels.framework/Versions/A/CommonPanels /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ HIToolbox.framework/Versions/A/HIToolbox /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/ vImage.framework/Versions/A/vImage /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/ vecLib.framework/Versions/A/vecLib /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/ Versions/A/DesktopServicesPriv /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/ vecLib.framework/Versions/A/libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/ vecLib.framework/Versions/A/libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/ vecLib.framework/Versions/A/libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/ vecLib.framework/Versions/A/libLAPACK.dylib /usr/lib/libxml2.2.dylib /usr/lib/libiconv.2.dylib /usr/bin/ld: Pass 2 /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../crt1.o /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/crt2.o /var/tmp//ccBnx9aY.o /System/Library/Frameworks/CoreServices.framework/CoreServices /System/Library/Frameworks/ApplicationServices.framework/ ApplicationServices /opt/local/lib/libgtk-x11-2.0.dylib /opt/local/lib/libgdk-x11-2.0.dylib /opt/local/lib/libatk-1.0.dylib /opt/local/lib/libgdk_pixbuf-2.0.dylib /opt/local/lib/libpangocairo-1.0.dylib /opt/local/lib/libpango-1.0.dylib /opt/local/lib/libcairo.dylib /usr/X11R6/lib/libSM.dylib /usr/X11R6/lib/libICE.dylib /opt/local/lib/libgobject-2.0.dylib /opt/local/lib/libgmodule-2.0.dylib /opt/local/lib/libglib-2.0.dylib /opt/local/lib/libintl.dylib /opt/local/lib/libiconv.dylib /opt/local/lib/libfreetype.dylib /opt/local/lib/libz.dylib /opt/local/lib/libfontconfig.dylib /opt/local/lib/libexpat.dylib /opt/local/lib/libpng12.dylib /opt/local/lib/libXrender.dylib /usr/X11R6/lib/libX11.dylib /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib /usr/lib/system/libmathCommon.A.dylib /System/Library/Frameworks/CoreServices.framework/Versions/A/ Frameworks/CarbonCore.framework/Versions/A/CarbonCore /System/Library/Frameworks/CoreFoundation.framework/Versions/A/ CoreFoundation /System/Library/Frameworks/CoreServices.framework/Versions/A/ Frameworks/OSServices.framework/Versions/A/OSServices /System/Library/Frameworks/CoreServices.framework/Versions/A/ Frameworks/CFNetwork.framework/Versions/A/CFNetwork /System/Library/Frameworks/CoreServices.framework/Versions/A/ Frameworks/WebServicesCore.framework/Versions/A/WebServicesCore /System/Library/Frameworks/CoreServices.framework/Versions/A/ Frameworks/SearchKit.framework/Versions/A/SearchKit /System/Library/Frameworks/CoreServices.framework/Versions/A/ Frameworks/Metadata.framework/Versions/A/Metadata /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/AE.framework/Versions/A/AE /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/ATS.framework/Versions/A/ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/ColorSync.framework/Versions/A/ColorSync /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/CoreText.framework/Versions/A/CoreText /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/PrintCore.framework/Versions/A/PrintCore /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/QD.framework/Versions/A/QD /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/HIServices.framework/Versions/A/HIServices /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/FindByContent.framework/Versions/A/FindByContent /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/LaunchServices.framework/Versions/A/LaunchServices /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/ImageIO.framework/Versions/A/ImageIO /opt/local/lib/libpangoft2-1.0.0.dylib /opt/local/lib/libfreetype.6.dylib /opt/local/lib/libtiff.3.dylib /opt/local/lib/libjpeg.62.dylib /usr/X11R6/lib/libXrandr.2.dylib /usr/X11R6/lib/libXinerama.1.dylib /usr/X11R6/lib/libXext.6.dylib /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon /usr/lib/libgcc_s.1.dylib /usr/lib/libz.1.dylib /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit /usr/lib/libicucore.A.dylib /System/Library/Frameworks/Security.framework/Versions/A/Security /System/Library/Frameworks/DiskArbitration.framework/Versions/A/ DiskArbitration /usr/lib/libauto.dylib /usr/lib/libobjc.A.dylib /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/ SystemConfiguration /usr/lib/libcrypto.0.9.7.dylib /usr/lib/libbsm.dylib /usr/lib/libcups.2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/ImageIO.framework/Versions/A/Resources/libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate /usr/X11R6/lib/libXrender.1.dylib /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ ImageCapture.framework/Versions/A/ImageCapture /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ SpeechRecognition.framework/Versions/A/SpeechRecognition /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ SecurityHI.framework/Versions/A/SecurityHI /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ Ink.framework/Versions/A/Ink /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ Help.framework/Versions/A/Help /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ OpenScripting.framework/Versions/A/OpenScripting /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ Print.framework/Versions/A/Print /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ HTMLRendering.framework/Versions/A/HTMLRendering /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ NavigationServices.framework/Versions/A/NavigationServices /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ CarbonSound.framework/Versions/A/CarbonSound /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ CommonPanels.framework/Versions/A/CommonPanels /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ HIToolbox.framework/Versions/A/HIToolbox /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/ vImage.framework/Versions/A/vImage /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/ vecLib.framework/Versions/A/vecLib /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/ Versions/A/DesktopServicesPriv /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/ vecLib.framework/Versions/A/libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/ vecLib.framework/Versions/A/libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/ vecLib.framework/Versions/A/libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/ vecLib.framework/Versions/A/libLAPACK.dylib /usr/lib/libxml2.2.dylib /usr/lib/libiconv.2.dylib /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (keymgr.o) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (dylib1.o) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (link editor) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (pthread.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (_eprintf.o) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (init_cpu_capabilities.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (get_cpu_capabilities.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (atexit.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (errno_.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (exit.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (mach_init.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (other_libc_init.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (xlocale.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (table.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (none.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (collate.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (setlocale.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (lmessages.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (ldpart.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (lmonetary.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (lnumeric.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (timelocal.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (setrunelocale.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (big5.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (euc.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (gb18030.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (gb2312.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (gbk.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (mskanji.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (utf2.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (utf8.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (mbsnrtowcs.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (wcsnrtombs.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (runedepreciated.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (dyldAPIsInLibSystem.o) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (dyldLock.o) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (abort.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (malloc.So) /opt/local/lib/libgtk-x11-2.0.dylib(gtkmain.o) /opt/local/lib/libgtk-x11-2.0.dylib(gtkaccelmap.o) /opt/local/lib/libgtk-x11-2.0.dylib(gtkaccelgroup.o) /opt/local/lib/libgtk-x11-2.0.dylib(gtkaccellabel.o) /opt/local/lib/libgtk-x11-2.0.dylib(dylib1.o) /opt/local/lib/libgtk-x11-2.0.dylib(link editor) /opt/local/lib/libgtk-x11-2.0.dylib(gtkmarshalers.o) /opt/local/lib/libgtk-x11-2.0.dylib(gtkwindow.o) /opt/local/lib/libgtk-x11-2.0.dylib(gtkcontainer.o) /opt/local/lib/libgtk-x11-2.0.dylib(gtkwidget.o) /opt/local/lib/libgtk-x11-2.0.dylib(gtkbindings.o) /opt/local/lib/libgtk-x11-2.0.dylib(gtkkeyhash.o) /opt/local/lib/libgtk-x11-2.0.dylib(gtkrc.o) /opt/local/lib/libgtk-x11-2.0.dylib(gtkmodules.o) /opt/local/lib/libgtk-x11-2.0.dylib(gtkiconfactory.o) /opt/local/lib/libgtk-x11-2.0.dylib(gtkicontheme.o) /opt/local/lib/libgtk-x11-2.0.dylib(gtkiconcache.o) /opt/local/lib/libgtk-x11-2.0.dylib(gtksettings.o) /opt/local/lib/libgtk-x11-2.0.dylib(gtkstyle.o) /opt/local/lib/libgtk-x11-2.0.dylib(darwin-fpsave.o) /opt/local/lib/libgtk-x11-2.0.dylib(gtkbuilder.o) /opt/local/lib/libgtk-x11-2.0.dylib(gtkbuilderparser.o) /opt/local/lib/libgtk-x11-2.0.dylib(gtkselection.o) /opt/local/lib/libgtk-x11-2.0.dylib(gtksizegroup.o) /opt/local/lib/libgtk-x11-2.0.dylib(gtktooltip.o) /opt/local/lib/libgtk-x11-2.0.dylib(gtkmnemonichash.o) /opt/local/lib/libgtk-x11-2.0.dylib(gtkclipboard.o) /opt/local/lib/libgtk-x11-2.0.dylib(gtkdnd.o) /opt/local/lib/libgtk-x11-2.0.dylib(gtkrecentmanager.o) /opt/local/lib/libgtk-x11-2.0.dylib(xdgmime.o) /opt/local/lib/libgtk-x11-2.0.dylib(_eprintf.o) /opt/local/lib/libgtk-x11-2.0.dylib(xdgmimealias.o) /opt/local/lib/libgtk-x11-2.0.dylib(s_printf.o) /opt/local/lib/libgtk-x11-2.0.dylib(getrealaddr.o) /opt/local/lib/libgtk-x11-2.0.dylib(xdgmimecache.o) /opt/local/lib/libgtk-x11-2.0.dylib(xdgmimeint.o) /opt/local/lib/libgtk-x11-2.0.dylib(xdgmimeglob.o) /opt/local/lib/libgtk-x11-2.0.dylib(xdgmimemagic.o) /opt/local/lib/libgtk-x11-2.0.dylib(xdgmimeparent.o) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (OSAtomic.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (getsecbyname.o) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (pthread_getspecific.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (pthread_tsd.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (pthread_mutex.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (errno.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (_pthread_kill.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (pthread_set_self.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (findfp.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (thread_setup.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (lock.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (fprintf.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (mach_hostUser.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (mach_error_string.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (error_codes.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (mach_msg.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (mach_portUser.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (memset.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (mig_support.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (printf.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (pthread_self.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (taskUser.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (semaphore.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (mach_traps.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (syscall.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (sysctl.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (thread_actUser.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (mach_init_ports.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (vm_mapUser.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (fflush.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (_exit.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (bcopy.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (strchr.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (strcmp.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (strlen.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (memchr.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (fclose.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (fopen.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (fread.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (getprogname.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (reallocf.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (strcat.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (strcpy.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (strdup.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (strerror.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (strncmp.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (write.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (getenv.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (issetugid.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (strlcpy.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (close.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (fstat.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (open.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (read.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (fix_grouping.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (strtol.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (rune.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (mbrtowc.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (wcrtomb.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (crt_externs.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (strrchr.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (raise.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (sigaction.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (sigprocmask.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (simple_dprintf.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (_udivdi3.o) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (_umoddi3.o) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (scalable_malloc.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (fcntl.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (getpid.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (sleep.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (stack_logging.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (strtoul.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (swap.o) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (cerror.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (stdio.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (fwalk.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (getdtablesize.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (vfprintf.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (_divdi3.o) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (_moddi3.o) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (mig_strncpy.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (_sysctl.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (_flock_stub.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (flags.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (refill.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (strlcat.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (errlst.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (runetype.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (fileno.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (memcmp.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (rewind.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (kill.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (sigtramp.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (nanosleep.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (_cmpdi2.o) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (_fixunsdfdi.o) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (_floatdidf.o) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (cprocs.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (lseek.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (gdtoa-dtoa.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (gdtoa-dmisc.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (_hdtoa.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (darwin-ldouble.o) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (_ldbl_util.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (_ldtoa.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (fvwrite.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (wsetup.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (asprintf.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (localeconv.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (wcsrtombs.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (makebuf.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (fseek.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (mach_absolute_time.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (__pthread_canceled.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (gdtoa-misc.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (fpmacros.o) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (gdtoa-gdtoa.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (isatty.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (ftell.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (glue.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (fabs.o) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (frexpldexp.o) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (gdtoa-gmisc.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (ioctl.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (termios.So) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (scalb.o) /usr/lib/gcc/powerpc-apple-darwin8/4.0.1/../../../libSystem.dylib (select.So) link editor Hidden G5:/opt/local/var/macports/build/ _opt_local_var_macports_sources_rsync.macports.org_release_ports_gnome_g nome-python-extras/work/gnome-python-extras-2.19.1 tim$ otool -L conftestconftest: /System/Library/Frameworks/ CoreServices.framework/Versions/A/CoreServices (compatibility version 1.0.0, current version 18.0.0) /System/Library/Frameworks/ ApplicationServices.framework/Versions/A/ApplicationServices (compatibility version 1.0.0, current version 22.0.0) /opt/ local/lib/libgtk-x11-2.0.0.dylib (compatibility version 1201.0.0, current version 1201.9.0) /opt/local/lib/libgdk-x11-2.0.0.dylib (compatibility version 1201.0.0, current version 1201.9.0) /opt/local/lib/libatk-1.0.0.dylib (compatibility version 2210.0.0, current version 2210.1.0) /opt/local/lib/libgdk_pixbuf-2.0.0.dylib (compatibility version 1201.0.0, current version 1201.9.0) /opt/local/lib/libpangocairo-1.0.0.dylib (compatibility version 2001.0.0, current version 2001.0.0) /opt/local/lib/libpango-1.0.0.dylib (compatibility version 2001.0.0, current version 2001.0.0) /opt/local/lib/libcairo.2.dylib (compatibility version 14.0.0, current version 14.7.0) /usr/X11R6/lib/libSM.6.dylib (compatibility version 6.0.0, current version 6.0.0) /usr/X11R6/lib/libICE.6.dylib (compatibility version 6.3.0, current version 6.3.0) /opt/local/lib/libgobject-2.0.0.dylib (compatibility version 1601.0.0, current version 1601.1.0) /opt/local/lib/libgmodule-2.0.0.dylib (compatibility version 1601.0.0, current version 1601.1.0) /opt/local/lib/libglib-2.0.0.dylib (compatibility version 1601.0.0, current version 1601.1.0) /opt/local/lib/libintl.8.dylib (compatibility version 9.0.0, current version 9.2.0) /opt/local/lib/libiconv.2.dylib (compatibility version 7.0.0, current version 7.0.0) /usr/local/lib/libfreetype.6.dylib (compatibility version 10.0.0, current version 10.16.0) /opt/local/lib/libz.1.dylib (compatibility version 1.0.0, current version 1.2.3) /opt/local/lib/libfontconfig.1.dylib (compatibility version 5.0.0, current version 5.0.0) /opt/local/lib/libexpat.1.dylib (compatibility version 7.0.0, current version 7.2.0) /opt/local/lib/libpng12.0.dylib (compatibility version 26.0.0, current version 26.0.0) /opt/local/lib/libXrender.1.dylib (compatibility version 5.0.0, current version 5.0.0) /usr/X11R6/lib/libX11.6.dylib (compatibility version 6.2.0, current version 6.2.0) /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 88.1.7) Hidden G5:/opt/local/var/macports/build/ _opt_local_var_macports_sources_rsync.macports.org_release_ports_gnome_g nome-python-extras/work/gnome-python-extras-2.19.1 tim$ From frstan at bellsouth.net Mon Apr 7 16:35:44 2008 From: frstan at bellsouth.net (William Davis) Date: Mon Apr 7 16:35:15 2008 Subject: Error in macports upgrade build In-Reply-To: References: <9F8CA7D9-8C13-4020-90DD-82DC9263CE8F@realityartisans.com> Message-ID: <70FDE594-4C93-4566-9191-BD87C654B6D4@bellsouth.net> On Apr 7, 2008, at 2:53 PM, Ryan Schmidt wrote: > > On Apr 6, 2008, at 22:31, Kok-Yong Tan wrote: > >> In the midsts of a "sudo port -vR upgrade installed" command on a >> dual 2GHz PowerMac G5 OS 10.4.11 system, it reported this error: >> >> Error: Target org.macports.checksum returned: Could not open file: / >> opt/local/var/macports/distfiles/libxslt/libxslt/libxslt/libxslt/ >> libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ >> libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ >> libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ >> libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ >> libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ >> libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ >> libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ >> libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ >> libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ >> libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ >> libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ >> libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ >> libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/ >> libxslt/libxslt/libxslt/libxslt/libxslt-1.1.22.tar.gzWarning: the >> following items did not execute (for libxslt): >> org.macports.activate org.macports.extract org.macports.checksum >> org.macports.patch org.macports.configure org.macports.build >> org.macports.destroot org.macports.installError: The following >> dependencies failed to build: gtk-doc scrollkeeper libxslt p5-xml- >> parserError: Unable to upgrade port: 1 >> >> I looked at /opt/local/var/macports/distfiles/libxslt/ and >> libxslt-1.1.22.tar.gz is certainly there. Why is there the >> extraneous additions of libxslt in the above absolute file path and >> how can I fix it (where's the makefile or whatever it uses)? > > I have seen this problem myself, but never could determine what > caused it. I don't use the -R option. Maybe you should not use it > either. > > The problem is not the libxslt Makefile, or any other Makefile; > there must be a problem in MacPorts base. If anyone can find a > consistent way to reproduce this duplicated distfile directory > issue, please file a bug. > I think the problem is connected with multiple listings of dependency on port being installed. You are installing or upgrading Port A. The register lists the ports that depend on A thus: Port B Port C Port D Port C Port C Port B Port E Port B Port C etc etc This list appears to lengthen every time you do sudo port -dfun upgrade PortA. Since the same things happen with other Ports, the process of doing a sudo port -dfunR upgrade PortA and upgrading all its dependents gets very complex and time consuming with the same port(s) being re-installed many many times. Perhaps circular dependents get created. In any event, we need (pending a real fix that eliminates multiple entires for the same dependent) a tool to purge duplicates from the Registry entries for depends of the same port. I did write this up at some point and file a ticket. Never heard anything back. Just to be clear: Im talking about the Ports that depend on Port A and NOT the Ports that Port A depends upon to install. 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 luis.beca at gmail.com Mon Apr 7 16:50:22 2008 From: luis.beca at gmail.com (=?ISO-8859-1?Q?Lu=EDs_Be=E7a?=) Date: Mon Apr 7 16:48:55 2008 Subject: CLN and GiNaC Message-ID: Could someone please update CLN from 1.1.13 to 1.2.2 and GiNaC from 1.3.7 to 1.4.3? Thanks in advance. -Lu?s From alejandro.aragon at gmail.com Mon Apr 7 20:15:37 2008 From: alejandro.aragon at gmail.com (Alejandro Aragon) Date: Mon Apr 7 20:14:06 2008 Subject: building doxygen with wizard variant fails Message-ID: Hello everyone, I tried to build doxygen with the doxywizard variant, which depends on qt and I had these errors: aaragon@~$sudo port install doxygen +wizard ---> Fetching doxygen ---> Verifying checksum(s) for doxygen ---> Extracting doxygen ---> Applying patches to doxygen ---> Configuring doxygen ---> Building doxygen with target all pdf Error: Target org.macports.build returned: shell command " cd "/opt/ local/var/macports/build/ _opt_local_var_macports_sources_rsync .macports.org_release_ports_textproc_doxygen/work/doxygen-1.5.4" && make all pdf " returned error 2 Command output: doxywizard.cpp:1414: error: 'fn' was not declared in this scope doxywizard.cpp:1416: error: 'QFile' was not declared in this scope doxywizard.cpp:1416: error: expected `;' before 'f' doxywizard.cpp:1417: error: 'f' was not declared in this scope doxywizard.cpp:1417: error: 'IO_WriteOnly' was not declared in this scope doxywizard.cpp:1419: error: 'QTextStream' was not declared in this scope doxywizard.cpp:1419: error: expected `;' before 't' doxywizard.cpp:1420: error: 't' was not declared in this scope doxywizard.cpp:1420: error: invalid use of undefined type 'struct QTextEdit' doxywizard.h:15: error: forward declaration of 'struct QTextEdit' doxywizard.cpp:1421: error: 'statusBar' was not declared in this scope doxywizard.cpp:1425: error: 'QMessageBox' has not been declared doxywizard.cpp:1426: error: 'warning' was not declared in this scope doxywizard.cpp: In function 'int main(int, char**)': doxywizard.cpp:1435: error: 'QApplication' was not declared in this scope doxywizard.cpp:1435: error: expected `;' before 'a' doxywizard.cpp:850: error: 'MainWidget::~MainWidget()' is private doxywizard.cpp:1436: error: within this context doxywizard.cpp:1119: error: 'void MainWidget::loadConfigFromFile(int)' is private doxywizard.cpp:1439: error: within this context doxywizard.cpp:1439: error: invalid conversion from 'char*' to 'int' doxywizard.cpp:1439: error: initializing argument 1 of 'void MainWidget::loadConfigFromFile(int)' doxywizard.cpp:1443: error: 'printf' was not declared in this scope doxywizard.cpp:1446: error: 'a' was not declared in this scope doxywizard.cpp:1447: error: 'class MainWidget' has no member named 'show' gmake[2]: *** [obj/doxywizard.o] Error 1 gmake[2]: Leaving directory `/opt/local/var/macports/build/ _opt_local_var_macports_sources_rsync .macports.org_release_ports_textproc_doxygen/work/doxygen-1.5.4/addon/ doxywizard' gmake[1]: *** [all] Error 2 gmake[1]: Leaving directory `/opt/local/var/macports/build/ _opt_local_var_macports_sources_rsync .macports.org_release_ports_textproc_doxygen/work/doxygen-1.5.4/addon/ doxywizard' make: *** [all] Error 2 aa From killingorbit at gmail.com Mon Apr 7 20:48:59 2008 From: killingorbit at gmail.com (Sam Cook) Date: Mon Apr 7 20:47:28 2008 Subject: MacPorts missing Directories In-Reply-To: <9007A495-7CBD-44C3-9488-EF8B65ED5BF6@macports.org> References: <5048907A-549C-43F8-A43B-5FCDDED8FDF7@gmail.com> <9007A495-7CBD-44C3-9488-EF8B65ED5BF6@macports.org> Message-ID: <63DC4E2E-B6A0-4D46-8799-E074EE96329E@gmail.com> Hi Ryan-- Thanks for your response. It seems this was pretty much a non-issue. I was worried about the missing directories since the uninstall instructions said to remove them. After the first failed attempt at installing MacPorts, I uninstalled according to the guide, and then tried again. I was looking for /etc/ X11/xinit/xinitrc since it is mentioned in the guide in section 2.1.1 of http://guide.macports.org/. I guess the default location for this file changed in Leopard. In any case, things seem to be working great now. Thanks for your help. Thanks also to Rainer and William; apparently my replies didn't get posted to the whole group. Cheers, Sam On Apr 6, 2008, at 4:25 PM, Ryan Schmidt wrote: > On Apr 5, 2008, at 23:37, Sam Cook wrote: > >> The Facts: I am using an intel MacBook with OS X 10.5.2. I am new >> to MacPorts. I recently downloaded MacPorts-1.6.0-10.5-Leopard.dmg. >> I still have not (third try) been able get MacPorts to install >> correctly. In particular, the directories >> >> /Applictions/MacPorts >> /Library/LaunchDaemons/org.macports.* >> and >> /etc/X11/xinit/xinitrc >> >> do not exist. >> >> The History: The first time I tried to install MacPorts, >> my .profile was not modified. I did it, and I also tried to modify / >> etc/X11/xinit/xinitrc, which is when I noticed it isn't there. >> However, X11 did create /usr/X11/lib/X11/xinit/xinitrc when I >> installed it. >> >> Then I reran the installer. Progress, as the port command was now >> recognized. I tried to install my first port, gv 3.6.3. It did not >> work; it installed, but when I tried to execute the gv command, it >> would not run. >> >> I tried the whole process over. Now, MacPorts seems to be working, >> and so is gv! But the three directories listed above are still >> absent. Any advice? > > Apologies; there is a bug in the 1.6.0 installer which causes > the .profile not to get created/modified. You have to set it up > yourself, for this particular version of MacPorts. Earlier versions > set it up correctly, and the fix has already been committed so that > future versions will again work correctly. > > /Applications/MacPorts will be created when any port tries to > install there. Most ports install into /opt/local, not /Applications/ > MacPorts. The exception are most of the ports in the "aqua" > category, and some others. > > org.macports.*.plist files get installed into /Library/LaunchDaemons > by ports which need to run daemon processes on your computer. Most > ports don't need to do that. Some ports that do are "apache2", > "lighttpd", "mysql5" (if you select the +server variant). > > I don't know what /etc/X11/xinit/xinitrc is all about. That file is > not part of the MacPorts setup instructions. > > If the "port" or "gv" commands would not run, then probably your > PATH was not set up correctly. If they work now, then your PATH is > probably set up correctly now. > From peter at pogma.com Mon Apr 7 21:10:02 2008 From: peter at pogma.com (Peter O'Gorman) Date: Mon Apr 7 21:08:31 2008 Subject: Why does link pick up wrong library In-Reply-To: References: Message-ID: <47FAF01A.8000304@pogma.com> Tim Lyons wrote: > I must be missing something very elementary here! > > I am trying to install gnome-python-extras, but the configure step > fails. So I have extracted out the failing part, and it fails trying to > link because it can't find /usr/local/lib/libfreetype.6.dylib, which > isn't surprising as there is no such file. Check that /opt/local/lib/libfreetype.dylib has the correct install_name: otool -D /opt/local/lib/libfreetype.dylib Peter -- Peter O'Gorman http://pogma.com From marcuscalhounlopez at mac.com Mon Apr 7 21:21:27 2008 From: marcuscalhounlopez at mac.com (Marcus Calhoun-Lopez) Date: Mon Apr 7 21:19:59 2008 Subject: building doxygen with wizard variant fails In-Reply-To: References: Message-ID: <4991429C-0F66-40D1-BFF1-13B2D00D6EE2@mac.com> There is some discussion about this issue (as well as a patch) on the ticket: http://trac.macports.org/projects/macports/ticket/14603 -Marcus On Apr 7, 2008, at 9:15 PM, Alejandro Aragon wrote: > Hello everyone, > > I tried to build doxygen with the doxywizard variant, which depends > on qt and I had these errors: > > aaragon@~$sudo port install doxygen +wizard > ---> Fetching doxygen > ---> Verifying checksum(s) for doxygen > ---> Extracting doxygen > ---> Applying patches to doxygen > ---> Configuring doxygen > ---> Building doxygen with target all pdf > Error: Target org.macports.build returned: shell command " cd "/opt/ > local/var/macports/build/ > _opt_local_var_macports_sources_rsync > .macports.org_release_ports_textproc_doxygen/work/doxygen-1.5.4" && > make all pdf " returned error 2 > Command output: doxywizard.cpp:1414: error: 'fn' was not declared in > this scope > doxywizard.cpp:1416: error: 'QFile' was not declared in this scope > doxywizard.cpp:1416: error: expected `;' before 'f' > doxywizard.cpp:1417: error: 'f' was not declared in this scope > doxywizard.cpp:1417: error: 'IO_WriteOnly' was not declared in this > scope > doxywizard.cpp:1419: error: 'QTextStream' was not declared in this > scope > doxywizard.cpp:1419: error: expected `;' before 't' > doxywizard.cpp:1420: error: 't' was not declared in this scope > doxywizard.cpp:1420: error: invalid use of undefined type 'struct > QTextEdit' > doxywizard.h:15: error: forward declaration of 'struct QTextEdit' > doxywizard.cpp:1421: error: 'statusBar' was not declared in this scope > doxywizard.cpp:1425: error: 'QMessageBox' has not been declared > doxywizard.cpp:1426: error: 'warning' was not declared in this scope > doxywizard.cpp: In function 'int main(int, char**)': > doxywizard.cpp:1435: error: 'QApplication' was not declared in this > scope > doxywizard.cpp:1435: error: expected `;' before 'a' > doxywizard.cpp:850: error: 'MainWidget::~MainWidget()' is private > doxywizard.cpp:1436: error: within this context > doxywizard.cpp:1119: error: 'void > MainWidget::loadConfigFromFile(int)' is private > doxywizard.cpp:1439: error: within this context > doxywizard.cpp:1439: error: invalid conversion from 'char*' to 'int' > doxywizard.cpp:1439: error: initializing argument 1 of 'void > MainWidget::loadConfigFromFile(int)' > doxywizard.cpp:1443: error: 'printf' was not declared in this scope > doxywizard.cpp:1446: error: 'a' was not declared in this scope > doxywizard.cpp:1447: error: 'class MainWidget' has no member named > 'show' > gmake[2]: *** [obj/doxywizard.o] Error 1 > gmake[2]: Leaving directory `/opt/local/var/macports/build/ > _opt_local_var_macports_sources_rsync > .macports.org_release_ports_textproc_doxygen/work/doxygen-1.5.4/ > addon/doxywizard' > gmake[1]: *** [all] Error 2 > gmake[1]: Leaving directory `/opt/local/var/macports/build/ > _opt_local_var_macports_sources_rsync > .macports.org_release_ports_textproc_doxygen/work/doxygen-1.5.4/ > addon/doxywizard' > make: *** [all] Error 2 > > aa > > _______________________________________________ > macports-users mailing list > macports-users@lists.macosforge.org > http://lists.macosforge.org/mailman/listinfo/macports-users From alejandro.aragon at gmail.com Mon Apr 7 22:12:45 2008 From: alejandro.aragon at gmail.com (Alejandro Aragon) Date: Mon Apr 7 22:11:17 2008 Subject: building doxygen with wizard variant fails In-Reply-To: <4991429C-0F66-40D1-BFF1-13B2D00D6EE2@mac.com> References: <4991429C-0F66-40D1-BFF1-13B2D00D6EE2@mac.com> Message-ID: I downloaded the .diff file and applied the patch manually. Then: aaragon@/opt/local/var/macports/sources/rsync.macports.org/release/ ports/textproc/doxygen$sudo port -v install doxygen +wizard ---> Fetching doxygen ---> qfiledefs_p.patch doesn't seem to exist in /opt/local/var/ macports/distfiles/doxygen ---> Attempting to fetch qfiledefs_p.patch from http://svn.macports.org/repository/macports/distfiles/doxygen % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 ---> Attempting to fetch qfiledefs_p.patch from http://svn.macports.org/repository/macports/distfiles/general/ % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 ---> Attempting to fetch qfiledefs_p.patch from http://svn.macports.org/repository/macports/downloads/doxygen % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 Error: Target org.macports.fetch returned: fetch failed Warning: the following items did not execute (for doxygen): org.macports.activate org.macports.fetch org.macports.extract org.macports.checksum org.macports.patch org.macports.configure org.macports.build org.macports.destroot org.macports.install Error: Status 1 encountered during processing. and the same with the wizardapp variant. I went to that location in the repository and doxygen does not exist. Am I doing something wrong here or the patch is not good? aa On Apr 7, 2008, at 11:21 PM, Marcus Calhoun-Lopez wrote: > There is some discussion about this issue (as well as a patch) on > the ticket: > http://trac.macports.org/projects/macports/ticket/14603 > > -Marcus > > On Apr 7, 2008, at 9:15 PM, Alejandro Aragon wrote: >> Hello everyone, >> >> I tried to build doxygen with the doxywizard variant, which depends >> on qt and I had these errors: >> >> aaragon@~$sudo port install doxygen +wizard >> ---> Fetching doxygen >> ---> Verifying checksum(s) for doxygen >> ---> Extracting doxygen >> ---> Applying patches to doxygen >> ---> Configuring doxygen >> ---> Building doxygen with target all pdf >> Error: Target org.macports.build returned: shell command " cd "/opt/ >> local/var/macports/build/ >> _opt_local_var_macports_sources_rsync >> .macports.org_release_ports_textproc_doxygen/work/doxygen-1.5.4" && >> make all pdf " returned error 2 >> Command output: doxywizard.cpp:1414: error: 'fn' was not declared >> in this scope >> doxywizard.cpp:1416: error: 'QFile' was not declared in this scope >> doxywizard.cpp:1416: error: expected `;' before 'f' >> doxywizard.cpp:1417: error: 'f' was not declared in this scope >> doxywizard.cpp:1417: error: 'IO_WriteOnly' was not declared in this >> scope >> doxywizard.cpp:1419: error: 'QTextStream' was not declared in this >> scope >> doxywizard.cpp:1419: error: expected `;' before 't' >> doxywizard.cpp:1420: error: 't' was not declared in this scope >> doxywizard.cpp:1420: error: invalid use of undefined type 'struct >> QTextEdit' >> doxywizard.h:15: error: forward declaration of 'struct QTextEdit' >> doxywizard.cpp:1421: error: 'statusBar' was not declared in this >> scope >> doxywizard.cpp:1425: error: 'QMessageBox' has not been declared >> doxywizard.cpp:1426: error: 'warning' was not declared in this scope >> doxywizard.cpp: In function 'int main(int, char**)': >> doxywizard.cpp:1435: error: 'QApplication' was not declared in this >> scope >> doxywizard.cpp:1435: error: expected `;' before 'a' >> doxywizard.cpp:850: error: 'MainWidget::~MainWidget()' is private >> doxywizard.cpp:1436: error: within this context >> doxywizard.cpp:1119: error: 'void >> MainWidget::loadConfigFromFile(int)' is private >> doxywizard.cpp:1439: error: within this context >> doxywizard.cpp:1439: error: invalid conversion from 'char*' to 'int' >> doxywizard.cpp:1439: error: initializing argument 1 of 'void >> MainWidget::loadConfigFromFile(int)' >> doxywizard.cpp:1443: error: 'printf' was not declared in this scope >> doxywizard.cpp:1446: error: 'a' was not declared in this scope >> doxywizard.cpp:1447: error: 'class MainWidget' has no member named >> 'show' >> gmake[2]: *** [obj/doxywizard.o] Error 1 >> gmake[2]: Leaving directory `/opt/local/var/macports/build/ >> _opt_local_var_macports_sources_rsync >> .macports.org_release_ports_textproc_doxygen/work/doxygen-1.5.4/ >> addon/doxywizard' >> gmake[1]: *** [all] Error 2 >> gmake[1]: Leaving directory `/opt/local/var/macports/build/ >> _opt_local_var_macports_sources_rsync >> .macports.org_release_ports_textproc_doxygen/work/doxygen-1.5.4/ >> addon/doxywizard' >> make: *** [all] Error 2 >> >> aa >> >> _______________________________________________ >> macports-users mailing list >> macports-users@lists.macosforge.org >> http://lists.macosforge.org/mailman/listinfo/macports-users > From marcuscalhounlopez at mac.com Mon Apr 7 23:48:56 2008 From: marcuscalhounlopez at mac.com (Marcus Calhoun-Lopez) Date: Mon Apr 7 23:47:37 2008 Subject: building doxygen with wizard variant fails In-Reply-To: References: <4991429C-0F66-40D1-BFF1-13B2D00D6EE2@mac.com> Message-ID: <1692BB0C-F8EE-4303-8A5D-B51B68EADDF9@mac.com> In the same directory as the Portfile, there is a directory called files. Put the file qfiledefs_p.patch (downloaded from the Ticket page) into the files directory. Since it is not there now, MacPorts is trying (unsuccessfully) to download it. On Leopard, I have the wizard variant working but not the wizardapp variant. -Marcus On Apr 7, 2008, at 11:12 PM, Alejandro Aragon wrote: > I downloaded the .diff file and applied the patch manually. Then: > > aaragon@/opt/local/var/macports/sources/rsync.macports.org/release/ > ports/textproc/doxygen$sudo port -v install doxygen +wizard > ---> Fetching doxygen > ---> qfiledefs_p.patch doesn't seem to exist in /opt/local/var/ > macports/distfiles/doxygen > ---> Attempting to fetch qfiledefs_p.patch from http://svn.macports.org/repository/macports/distfiles/doxygen > % Total % Received % Xferd Average Speed Time Time > Time Current > Dload Upload Total Spent > Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- > --:--:-- 0 > ---> Attempting to fetch qfiledefs_p.patch from http://svn.macports.org/repository/macports/distfiles/general/ > % Total % Received % Xferd Average Speed Time Time > Time Current > Dload Upload Total Spent > Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- > --:--:-- 0 > ---> Attempting to fetch qfiledefs_p.patch from http://svn.macports.org/repository/macports/downloads/doxygen > % Total % Received % Xferd Average Speed Time Time > Time Current > Dload Upload Total Spent > Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- > --:--:-- 0 > Error: Target org.macports.fetch returned: fetch failed > Warning: the following items did not execute (for doxygen): > org.macports.activate org.macports.fetch org.macports.extract > org.macports.checksum org.macports.patch org.macports.configure > org.macports.build org.macports.destroot org.macports.install > Error: Status 1 encountered during processing. > > and the same with the wizardapp variant. I went to that location in > the repository and doxygen does not exist. > > Am I doing something wrong here or the patch is not good? > > aa > > On Apr 7, 2008, at 11:21 PM, Marcus Calhoun-Lopez wrote: > >> There is some discussion about this issue (as well as a patch) on >> the ticket: >> http://trac.macports.org/projects/macports/ticket/14603 >> >> -Marcus >> >> On Apr 7, 2008, at 9:15 PM, Alejandro Aragon wrote: >>> Hello everyone, >>> >>> I tried to build doxygen with the doxywizard variant, which >>> depends on qt and I had these errors: >>> >>> aaragon@~$sudo port install doxygen +wizard >>> ---> Fetching doxygen >>> ---> Verifying checksum(s) for doxygen >>> ---> Extracting doxygen >>> ---> Applying patches to doxygen >>> ---> Configuring doxygen >>> ---> Building doxygen with target all pdf >>> Error: Target org.macports.build returned: shell command " cd "/ >>> opt/local/var/macports/build/ >>> _opt_local_var_macports_sources_rsync >>> .macports.org_release_ports_textproc_doxygen/work/doxygen-1.5.4" >>> && make all pdf " returned error 2 >>> Command output: doxywizard.cpp:1414: error: 'fn' was not declared >>> in this scope >>> doxywizard.cpp:1416: error: 'QFile' was not declared in this scope >>> doxywizard.cpp:1416: error: expected `;' before 'f' >>> doxywizard.cpp:1417: error: 'f' was not declared in this scope >>> doxywizard.cpp:1417: error: 'IO_WriteOnly' was not declared in >>> this scope >>> doxywizard.cpp:1419: error: 'QTextStream' was not declared in this >>> scope >>> doxywizard.cpp:1419: error: expected `;' before 't' >>> doxywizard.cpp:1420: error: 't' was not declared in this scope >>> doxywizard.cpp:1420: error: invalid use of undefined type 'struct >>> QTextEdit' >>> doxywizard.h:15: error: forward declaration of 'struct QTextEdit' >>> doxywizard.cpp:1421: error: 'statusBar' was not declared in this >>> scope >>> doxywizard.cpp:1425: error: 'QMessageBox' has not been declared >>> doxywizard.cpp:1426: error: 'warning' was not declared in this scope >>> doxywizard.cpp: In function 'int main(int, char**)': >>> doxywizard.cpp:1435: error: 'QApplication' was not declared in >>> this scope >>> doxywizard.cpp:1435: error: expected `;' before 'a' >>> doxywizard.cpp:850: error: 'MainWidget::~MainWidget()' is private >>> doxywizard.cpp:1436: error: within this context >>> doxywizard.cpp:1119: error: 'void >>> MainWidget::loadConfigFromFile(int)' is private >>> doxywizard.cpp:1439: error: within this context >>> doxywizard.cpp:1439: error: invalid conversion from 'char*' to 'int' >>> doxywizard.cpp:1439: error: initializing argument 1 of 'void >>> MainWidget::loadConfigFromFile(int)' >>> doxywizard.cpp:1443: error: 'printf' was not declared in this scope >>> doxywizard.cpp:1446: error: 'a' was not declared in this scope >>> doxywizard.cpp:1447: error: 'class MainWidget' has no member named >>> 'show' >>> gmake[2]: *** [obj/doxywizard.o] Error 1 >>> gmake[2]: Leaving directory `/opt/local/var/macports/build/ >>> _opt_local_var_macports_sources_rsync >>> .macports.org_release_ports_textproc_doxygen/work/doxygen-1.5.4/ >>> addon/doxywizard' >>> gmake[1]: *** [all] Error 2 >>> gmake[1]: Leaving directory `/opt/local/var/macports/build/ >>> _opt_local_var_macports_sources_rsync >>> .macports.org_release_ports_textproc_doxygen/work/doxygen-1.5.4/ >>> addon/doxywizard' >>> make: *** [all] Error 2 >>> >>> aa >>> >>> _______________________________________________ >>> macports-users mailing list >>> macports-users@lists.macosforge.org >>> http://lists.macosforge.org/mailman/listinfo/macports-users >> > From alejandro.aragon at gmail.com Tue Apr 8 08:38:04 2008 From: alejandro.aragon at gmail.com (Alejandro Aragon) Date: Tue Apr 8 08:36:34 2008 Subject: how can I return a port to its original state? Message-ID: <78F126A3-46BB-4F67-985E-E7636B3292AE@uiuc.edu> Hello everyone, After playing with patch files for a while, now it seems that the doxygen port is completely corrupted. Is there a way to return everything to what it was before I started messing around with the Portfile? I tried clean, clean --all, uninstall, everything, but nothing seems to work. Thank you all, aa From raimue at macports.org Tue Apr 8 08:58:59 2008 From: raimue at macports.org (=?ISO-8859-1?Q?Rainer_M=FCller?=) Date: Tue Apr 8 08:57:28 2008 Subject: how can I return a port to its original state? In-Reply-To: <78F126A3-46BB-4F67-985E-E7636B3292AE@uiuc.edu> References: <78F126A3-46BB-4F67-985E-E7636B3292AE@uiuc.edu> Message-ID: <47FB9643.9030508@macports.org> Alejandro Aragon wrote: > After playing with patch files for a while, now it seems that the > doxygen port is completely corrupted. Is there a way to return > everything to what it was before I started messing around with the > Portfile? I tried clean, clean --all, uninstall, everything, but > nothing seems to work. This should get the latest version from rsync: $ sudo port sync Rainer From alejandro.aragon at gmail.com Tue Apr 8 09:08:16 2008 From: alejandro.aragon at gmail.com (Alejandro Aragon) Date: Tue Apr 8 09:06:43 2008 Subject: how can I return a port to its original state? In-Reply-To: <47FB9643.9030508@macports.org> References: <78F126A3-46BB-4F67-985E-E7636B3292AE@uiuc.edu> <47FB9643.9030508@macports.org> Message-ID: <05A6AC5A-EED9-497D-8625-BBE4F21BB7AD@gmail.com> Wow! I think I'm really in trouble! aaragon@~$sudo port sync Password: port sync failed: Synchronization the local ports tree failed doing rsync aaragon@~$sudo port selfupdate Password: Error: /opt/local/bin/port: port selfupdate failed: Couldn't sync the ports tree: Synchronization the local ports tree failed doing rsync On Apr 8, 2008, at 10:58 AM, Rainer M?ller wrote: > Alejandro Aragon wrote: >> After playing with patch files for a while, now it seems that the >> doxygen port is completely corrupted. Is there a way to return >> everything to what it was before I started messing around with the >> Portfile? I tried clean, clean --all, uninstall, everything, but >> nothing seems to work. > > This should get the latest version from rsync: > $ sudo port sync > > Rainer From raimue at macports.org Tue Apr 8 09:09:30 2008 From: raimue at macports.org (=?ISO-8859-1?Q?Rainer_M=FCller?=) Date: Tue Apr 8 09:07:57 2008 Subject: how can I return a port to its original state? In-Reply-To: <05A6AC5A-EED9-497D-8625-BBE4F21BB7AD@gmail.com> References: <78F126A3-46BB-4F67-985E-E7636B3292AE@uiuc.edu> <47FB9643.9030508@macports.org> <05A6AC5A-EED9-497D-8625-BBE4F21BB7AD@gmail.com> Message-ID: <47FB98BA.7030300@macports.org> Alejandro Aragon wrote: > Wow! I think I'm really in trouble! > > aaragon@~$sudo port sync > Password: > port sync failed: Synchronization the local ports tree failed doing > rsync > aaragon@~$sudo port selfupdate > Password: > Error: /opt/local/bin/port: port selfupdate failed: Couldn't sync the > ports tree: Synchronization the local ports tree failed doing rsync What is the output of this? $ sudo port -d sync (-d for debug) Rainer From alejandro.aragon at gmail.com Tue Apr 8 09:12:53 2008 From: alejandro.aragon at gmail.com (Alejandro Aragon) Date: Tue Apr 8 09:11:20 2008 Subject: how can I return a port to its original state? In-Reply-To: <47FB98BA.7030300@macports.org> References: <78F126A3-46BB-4F67-985E-E7636B3292AE@uiuc.edu> <47FB9643.9030508@macports.org> <05A6AC5A-EED9-497D-8625-BBE4F21BB7AD@gmail.com> <47FB98BA.7030300@macports.org> Message-ID: <28BB8243-5ED9-4D15-9534-02BF4E396EDB@gmail.com> The output is DEBUG: Synchronizing ports tree(s) Synchronizing local ports tree from rsync://rsync.macports.org/release/ ports/ DEBUG: /usr/bin/rsync -rtzv --delete-after rsync://rsync.macports.org/ release/ports/ /opt/local/var/macports/sources/rsync.macports.org/ release/ports rsync: failed to connect to rsync.macports.org: Operation timed out (60) rsync error: error in socket IO (code 10) at /SourceCache/rsync/ rsync-31/rsync/clientserver.c(94) DEBUG: Synchronization the local ports tree failed doing rsync while executing "mportsync" port sync failed: Synchronization the local ports tree failed doing rsync aa On Apr 8, 2008, at 11:09 AM, Rainer M?ller wrote: > Alejandro Aragon wrote: >> Wow! I think I'm really in trouble! >> aaragon@~$sudo port sync >> Password: >> port sync failed: Synchronization the local ports tree failed >> doing rsync >> aaragon@~$sudo port selfupdate >> Password: >> Error: /opt/local/bin/port: port selfupdate failed: Couldn't sync >> the ports tree: Synchronization the local ports tree failed doing >> rsync > > What is the output of this? > $ sudo port -d sync > (-d for debug) > > Rainer From raimue at macports.org Tue Apr 8 09:17:25 2008 From: raimue at macports.org (=?ISO-8859-1?Q?Rainer_M=FCller?=) Date: Tue Apr 8 09:15:55 2008 Subject: how can I return a port to its original state? In-Reply-To: <28BB8243-5ED9-4D15-9534-02BF4E396EDB@gmail.com> References: <78F126A3-46BB-4F67-985E-E7636B3292AE@uiuc.edu> <47FB9643.9030508@macports.org> <05A6AC5A-EED9-497D-8625-BBE4F21BB7AD@gmail.com> <47FB98BA.7030300@macports.org> <28BB8243-5ED9-4D15-9534-02BF4E396EDB@gmail.com> Message-ID: <47FB9A95.8030304@macports.org> Alejandro Aragon wrote: > The output is > > DEBUG: Synchronizing ports tree(s) > Synchronizing local ports tree from rsync://rsync.macports.org/release/ > ports/ > DEBUG: /usr/bin/rsync -rtzv --delete-after rsync://rsync.macports.org/ > release/ports/ /opt/local/var/macports/sources/rsync.macports.org/ > release/ports > rsync: failed to connect to rsync.macports.org: Operation timed out (60) > rsync error: error in socket IO (code 10) at /SourceCache/rsync/ > rsync-31/rsync/clientserver.c(94) > DEBUG: Synchronization the local ports tree failed doing rsync > while executing > "mportsync" > port sync failed: Synchronization the local ports tree failed doing > rsync Is there any firewall blocking access to rsync.macports.org on port 873/tcp? rsync works fine for me, so this is not a server issue. For the time being, just download [1] and put it into the doxygen directory (see 'port dir doxygen') to get back the original doxygen Portfile. Rainer [1] http://svn.macosforge.org/repository/macports/trunk/dports/textproc/doxygen/Portfile From alejandro.aragon at gmail.com Tue Apr 8 09:20:22 2008 From: alejandro.aragon at gmail.com (Alejandro Aragon) Date: Tue Apr 8 09:18:48 2008 Subject: how can I return a port to its original state? In-Reply-To: <47FB9A95.8030304@macports.org> References: <78F126A3-46BB-4F67-985E-E7636B3292AE@uiuc.edu> <47FB9643.9030508@macports.org> <05A6AC5A-EED9-497D-8625-BBE4F21BB7AD@gmail.com> <47FB98BA.7030300@macports.org> <28BB8243-5ED9-4D15-9534-02BF4E396EDB@gmail.com> <47FB9A95.8030304@macports.org> Message-ID: <0AE1CD7E-3EF3-4630-BF9F-65C83BCF607A@gmail.com> Thanks Rainer... On Apr 8, 2008, at 11:17 AM, Rainer M?ller wrote: > Alejandro Aragon wrote: >> The output is >> DEBUG: Synchronizing ports tree(s) >> Synchronizing local ports tree from rsync://rsync.macports.org/ >> release/ ports/ >> DEBUG: /usr/bin/rsync -rtzv --delete-after rsync:// >> rsync.macports.org/ release/ports/ /opt/local/var/macports/sources/ >> rsync.macports.org/ release/ports >> rsync: failed to connect to rsync.macports.org: Operation timed out >> (60) >> rsync error: error in socket IO (code 10) at /SourceCache/rsync/ >> rsync-31/rsync/clientserver.c(94) >> DEBUG: Synchronization the local ports tree failed doing rsync >> while executing >> "mportsync" >> port sync failed: Synchronization the local ports tree failed >> doing rsync > > Is there any firewall blocking access to rsync.macports.org on port > 873/tcp? rsync works fine for me, so this is not a server issue. > > For the time being, just download [1] and put it into the doxygen > directory (see 'port dir doxygen') to get back the original doxygen > Portfile. > > Rainer > > [1] http://svn.macosforge.org/repository/macports/trunk/dports/textproc/doxygen/Portfile From alejandro.aragon at gmail.com Tue Apr 8 14:38:45 2008 From: alejandro.aragon at gmail.com (Alejandro Aragon) Date: Tue Apr 8 14:37:29 2008 Subject: building doxygen with wizard variant fails In-Reply-To: <1692BB0C-F8EE-4303-8A5D-B51B68EADDF9@mac.com> References: <4991429C-0F66-40D1-BFF1-13B2D00D6EE2@mac.com> <1692BB0C-F8EE-4303-8A5D-B51B68EADDF9@mac.com> Message-ID: <2A1E32EB-F33E-401B-80BA-16F9E0B207DA@gmail.com> Hi Marcus, I did what you mentioned and the installation went fine this time. However, just before it finished, it had an error: $sudo port install doxygen +wizard ---> Fetching doxygen ---> Attempting to fetch doxygen-1.5.5.src.tar.gz from ftp://ftp.stack.nl/pub/users/dimitri/ ---> Verifying checksum(s) for doxygen ---> Extracting doxygen ---> Applying patches to doxygen ---> Configuring doxygen ---> Building doxygen with target all pdf ---> Staging doxygen into destroot ---> Installing doxygen 1.5.5_0+darwin_9+wizard ---> Activating doxygen 1.5.5_0+darwin_9+wizard Error: Target org.macports.activate returned: Image error: /opt/local/ bin/doxygen already exists and does not belong to a registered port. Unable to activate port doxygen. Error: Status 1 encountered during processing. I made sure that doxygen was not installed before this. Is this something that needs to be fixed? aa On Apr 8, 2008, at 1:48 AM, Marcus Calhoun-Lopez wrote: > In the same directory as the Portfile, there is a directory called > files. > Put the file qfiledefs_p.patch (downloaded from the Ticket page) > into the files directory. > > Since it is not there now, MacPorts is trying (unsuccessfully) to > download it. > > On Leopard, I have the wizard variant working but not the wizardapp > variant. > > -Marcus > > On Apr 7, 2008, at 11:12 PM, Alejandro Aragon wrote: >> I downloaded the .diff file and applied the patch manually. Then: >> >> aaragon@/opt/local/var/macports/sources/rsync.macports.org/release/ >> ports/textproc/doxygen$sudo port -v install doxygen +wizard >> ---> Fetching doxygen >> ---> qfiledefs_p.patch doesn't seem to exist in /opt/local/var/ >> macports/distfiles/doxygen >> ---> Attempting to fetch qfiledefs_p.patch from http://svn.macports.org/repository/macports/distfiles/doxygen >> % Total % Received % Xferd Average Speed Time Time >> Time Current >> Dload Upload Total Spent >> Left Speed >> 0 0 0 0 0 0 0 0 --:--:-- --:--:-- >> --:--:-- 0 >> ---> Attempting to fetch qfiledefs_p.patch from http://svn.macports.org/repository/macports/distfiles/general/ >> % Total % Received % Xferd Average Speed Time Time >> Time Current >> Dload Upload Total Spent >> Left Speed >> 0 0 0 0 0 0 0 0 --:--:-- --:--:-- >> --:--:-- 0 >> ---> Attempting to fetch qfiledefs_p.patch from http://svn.macports.org/repository/macports/downloads/doxygen >> % Total % Received % Xferd Average Speed Time Time >> Time Current >> Dload Upload Total Spent >> Left Speed >> 0 0 0 0 0 0 0 0 --:--:-- --:--:-- >> --:--:-- 0 >> Error: Target org.macports.fetch returned: fetch failed >> Warning: the following items did not execute (for doxygen): >> org.macports.activate org.macports.fetch org.macports.extract >> org.macports.checksum org.macports.patch org.macports.configure >> org.macports.build org.macports.destroot org.macports.install >> Error: Status 1 encountered during processing. >> >> and the same with the wizardapp variant. I went to that location in >> the repository and doxygen does not exist. >> >> Am I doing something wrong here or the patch is not good? >> >> aa >> >> On Apr 7, 2008, at 11:21 PM, Marcus Calhoun-Lopez wrote: >> >>> There is some discussion about this issue (as well as a patch) on >>> the ticket: >>> http://trac.macports.org/projects/macports/ticket/14603 >>> >>> -Marcus >>> >>> On Apr 7, 2008, at 9:15 PM, Alejandro Aragon wrote: >>>> Hello everyone, >>>> >>>> I tried to build doxygen with the doxywizard variant, which >>>> depends on qt and I had these errors: >>>> >>>> aaragon@~$sudo port install doxygen +wizard >>>> ---> Fetching doxygen >>>> ---> Verifying checksum(s) for doxygen >>>> ---> Extracting doxygen >>>> ---> Applying patches to doxygen >>>> ---> Configuring doxygen >>>> ---> Building doxygen with target all pdf >>>> Error: Target org.macports.build returned: shell command " cd "/ >>>> opt/local/var/macports/build/ >>>> _opt_local_var_macports_sources_rsync >>>> .macports.org_release_ports_textproc_doxygen/work/doxygen-1.5.4" >>>> && make all pdf " returned error 2 >>>> Command output: doxywizard.cpp:1414: error: 'fn' was not declared >>>> in this scope >>>> doxywizard.cpp:1416: error: 'QFile' was not declared in this scope >>>> doxywizard.cpp:1416: error: expected `;' before 'f' >>>> doxywizard.cpp:1417: error: 'f' was not declared in this scope >>>> doxywizard.cpp:1417: error: 'IO_WriteOnly' was not declared in >>>> this scope >>>> doxywizard.cpp:1419: error: 'QTextStream' was not declared in >>>> this scope >>>> doxywizard.cpp:1419: error: expected `;' before 't' >>>> doxywizard.cpp:1420: error: 't' was not declared in this scope >>>> doxywizard.cpp:1420: error: invalid use of undefined type 'struct >>>> QTextEdit' >>>> doxywizard.h:15: error: forward declaration of 'struct QTextEdit' >>>> doxywizard.cpp:1421: error: 'statusBar' was not declared in this >>>> scope >>>> doxywizard.cpp:1425: error: 'QMessageBox' has not been declared >>>> doxywizard.cpp:1426: error: 'warning' was not declared in this >>>> scope >>>> doxywizard.cpp: In function 'int main(int, char**)': >>>> doxywizard.cpp:1435: error: 'QApplication' was not declared in >>>> this scope >>>> doxywizard.cpp:1435: error: expected `;' before 'a' >>>> doxywizard.cpp:850: error: 'MainWidget::~MainWidget()' is private >>>> doxywizard.cpp:1436: error: within this context >>>> doxywizard.cpp:1119: error: 'void >>>> MainWidget::loadConfigFromFile(int)' is private >>>> doxywizard.cpp:1439: error: within this context >>>> doxywizard.cpp:1439: error: invalid conversion from 'char*' to >>>> 'int' >>>> doxywizard.cpp:1439: error: initializing argument 1 of 'void >>>> MainWidget::loadConfigFromFile(int)' >>>> doxywizard.cpp:1443: error: 'printf' was not declared in this scope >>>> doxywizard.cpp:1446: error: 'a' was not declared in this scope >>>> doxywizard.cpp:1447: error: 'class MainWidget' has no member >>>> named 'show' >>>> gmake[2]: *** [obj/doxywizard.o] Error 1 >>>> gmake[2]: Leaving directory `/opt/local/var/macports/build/ >>>> _opt_local_var_macports_sources_rsync >>>> .macports.org_release_ports_textproc_doxygen/work/doxygen-1.5.4/ >>>> addon/doxywizard' >>>> gmake[1]: *** [all] Error 2 >>>> gmake[1]: Leaving directory `/opt/local/var/macports/build/ >>>> _opt_local_var_macports_sources_rsync >>>> .macports.org_release_ports_textproc_doxygen/work/doxygen-1.5.4/ >>>> addon/doxywizard' >>>> make: *** [all] Error 2 >>>> >>>> aa >>>> >>>> _______________________________________________ >>>> macports-users mailing list >>>> macports-users@lists.macosforge.org >>>> http://lists.macosforge.org/mailman/listinfo/macports-users >>> >> > From pgijnxn02 at sneakemail.com Tue Apr 8 14:46:34 2008 From: pgijnxn02 at sneakemail.com (Joel Thibault (MacPorts)) Date: Tue Apr 8 14:45:02 2008 Subject: Error in macports upgrade build In-Reply-To: <9F8CA7D9-8C13-4020-90DD-82DC9263CE8F@realityartisans.com> References: <9F8CA7D9-8C13-4020-90DD-82DC9263CE8F@realityartisans.com> Message-ID: <7a665ffc0804081446s76696473xf6cec3d8a8574661@mail.gmail.com> On Sun, Apr 6, 2008 at 11:31 PM, Kok-Yong Tan ktan-at-realityartisans.comwrote: > In the midsts of a "sudo port -vR upgrade installed" command on a dual > 2GHz PowerMac G5 OS 10.4.11 system, it reported this error: > > Error: Target org.macports.checksum returned: Could not open file: > /opt/local/var/macports/distfiles/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt/libxslt-1.1.22.tar.gzWarning: > the following items did not execute (for libxslt): org.macports.activate > org.macports.extract org.macports.checksum org.macports.patch > org.macports.configure org.macports.build org.macports.destroot > org.macports.installError: The following dependencies failed to build: > gtk-doc scrollkeeper libxslt p5-xml-parserError: Unable to upgrade port: 1 > > I looked at /opt/local/var/macports/distfiles/libxslt/ and > libxslt-1.1.22.tar.gz is certainly there. Why is there the extraneous > additions of libxslt in the above absolute file path and how can I fix it > (where's the makefile or whatever it uses)? > > I have seen something like this before, and it seemed to be something funny with the filesystem. I was able to recover this way: Delete /opt/local/var/macports/distfiles/libxslt/ Run port selfupdate Run port clean --all libxslt Then I was able to go back to my upgrade. -- Joel Thibault [AIM: Jole Tebo] Software Engineer in Boston -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.macosforge.org/pipermail/macports-users/attachments/20080408/ce94a340/attachment-0001.html From alterego at stephanjaeger.eu Tue Apr 8 14:53:06 2008 From: alterego at stephanjaeger.eu (Stephan Jaeger) Date: Tue Apr 8 14:51:32 2008 Subject: MacPorts & perl path Message-ID: <9F6D302C-D35F-409A-8F61-C98266B0A85C@stephanjaeger.eu> Hiya, I just installed via macports the ports apache2, mysql5, php5 and perl5.8.8 on my computer. The reason for doing so is to set up a local development server for my MovableType development. When I run a check (mt-check.cgi) in order to see which perl modules I have to install, the module DBD::mysql is listed as "not installed", although I installed it explicitly. The above mentioned check lists the Perl include path: plugins/WXRImporter/lib plugins/WidgetManager/lib plugins/Textile/lib plugins/StyleCatcher/lib plugins/spamlookup/lib plugins/SimplyThreaded/lib plugins/PhotoGallery/lib plugins/MultiBlog/lib plugins/FireEagle/lib plugins/feeds-app-lite/lib plugins/ActionStreams/lib /opt/local/www/www.stephanjaeger.eu/cgi-bin/mt/addons/Commercial.pack/lib /opt/local/www/www.stephanjaeger.eu/cgi-bin/mt/extlib /opt/local/www/www.stephanjaeger.eu/cgi-bin/mt/extlib /opt/local/www/www.stephanjaeger.eu/cgi-bin/mt/lib /System/Library/Perl/5.8.8/darwin-thread-multi-2level /System/Library/Perl/5.8.8 /Library/Perl/5.8.8/darwin-thread-multi-2level /Library/Perl/5.8.8 /Library/Perl /Network/Library/Perl/5.8.8/darwin-thread-multi-2level /Network/Library/Perl/5.8.8 /Network/Library/Perl /System/Library/Perl/Extras/5.8.8/darwin-thread-multi-2level /System/Library/Perl/Extras/5.8.8 /Library/Perl/5.8.6 /Library/Perl/5.8.1 Funnily enough, the MacPorts-related Perl path is not listed. Could someone let me know what I am doing wrong? Where do I have to define the perl path? Should I define it in /Library/Perl/5.8.8/AppendToPath? Another question I have is, if someone could verify that /Library/Perl/5.8.6 /Library/Perl/5.8.1 are listed per default in /Library/Perl/5.8.8/AppendToPath? The reason why I ask is that I moved from Fink to MacPorts, and I wonder if those paths are left-overs from Fink. Thanks in advance for your help. Best regards Stephan Jaeger Hiya, I just installed via macports the ports apache2, mysql5, php5 and perl5.8.8 on my computer. The reason for doing so is to set up a local development server for my MovableType development. When I run a check (mt-check.cgi) in order to see which perl modules I have to install, the module DBD::mysql is listed as "not installed", although I installed it explicitly. The above mentioned check lists the Perl include path: plugins/WXRImporter/lib plugins/WidgetManager/lib plugins/Textile/lib plugins/StyleCatcher/lib plugins/spamlookup/lib plugins/SimplyThreaded/lib plugins/PhotoGallery/lib plugins/MultiBlog/lib plugins/FireEagle/lib plugins/feeds-app-lite/lib plugins/ActionStreams/lib /opt/local/www/www.stephanjaeger.eu/cgi-bin/mt/addons/Commercial.pack/lib /opt/local/www/www.stephanjaeger.eu/cgi-bin/mt/extlib /opt/local/www/www.stephanjaeger.eu/cgi-bin/mt/extlib /opt/local/www/www.stephanjaeger.eu/cgi-bin/mt/lib /System/Library/Perl/5.8.8/darwin-thread-multi-2level /System/Library/Perl/5.8.8 /Library/Perl/5.8.8/darwin-thread-multi-2level /Library/Perl/5.8.8 /Library/Perl /Network/Library/Perl/5.8.8/darwin-thread-multi-2level /Network/Library/Perl/5.8.8 /Network/Library/Perl /System/Library/Perl/Extras/5.8.8/darwin-thread-multi-2level /System/Library/Perl/Extras/5.8.8 /Library/Perl/5.8.6 /Library/Perl/5.8.1 Funnily enough, the MacPorts-related Perl path is not listed. Could someone let me know what I am doing wrong? Where do I have to define the perl path? Should I define it in /Library/Perl/5.8.8/AppendToPath? Another question I have is, if someone could verify that /Library/Perl/5.8.6 /Library/Perl/5.8.1 are listed per default in /Library/Perl/5.8.8/AppendToPath? The reason why I ask is that I moved from Fink to MacPorts, and I wonder if those paths are left-overs from Fink. Thanks in advance for your help. Best regards Stephan Jaeger From guy.linton at gmail.com Tue Apr 8 15:08:02 2008 From: guy.linton at gmail.com (Tim Lyons) Date: Tue Apr 8 15:06:44 2008 Subject: Why does link pick up wrong library In-Reply-To: <47FAF01A.8000304@pogma.com> References: <47FAF01A.8000304@pogma.com> Message-ID: Thanks for the reply. On 8 Apr 2008, at 05:10, Peter O'Gorman wrote: > Tim Lyons wrote: >> I must be missing something very elementary here! >> >> I am trying to install gnome-python-extras, but the configure step >> fails. So I have extracted out the failing part, and it fails >> trying to >> link because it can't find /usr/local/lib/libfreetype.6.dylib, which >> isn't surprising as there is no such file. > > Check that /opt/local/lib/libfreetype.dylib has the correct > install_name: > > otool -D /opt/local/lib/libfreetype.dylib > This gives tim$ otool -D libfreetype.dylib libfreetype.dylib: /usr/local/lib/libfreetype.6.dylib So the 'install name' of the library is /usr/local/lib/libfreetype. 6.dylib. But what does this mean? When I try to run the application, it still says dyld: Library not loaded: /usr/local/lib/libfreetype.6.dylib Referenced from: /opt/local/var/macports/build/ _opt_local_var_macports_sources_rsync.macports.org_release_ports_gnome_g nome-python-extras/work/gnome-python-extras-2.19.1/./conftest Reason: image not found Trace/BPT trap Is libfreetype built wrongly? What should I do to correct it? freetype was installed using MacPorts, and seemed to install successfully. ---> Fetching freetype ---> Attempting to fetch freetype-2.3.5.tar.bz2 from http:// download.savannah.gnu.org/releases/freetype/ ---> Verifying checksum(s) for freetype ---> Extracting freetype ---> Applying patches to freetype ---> Configuring freetype ---> Building freetype with target all ---> Staging freetype into destroot ---> Installing freetype 2.3.5_1 ---> Activating freetype 2.3.5_1 ---> Cleaning freetype I don't understand why it refers to 10.16.0, when the build was 2.3.5. The otool for libfreetype is: tim$ otool -L libfreetype.dylib libfreetype.dylib: /usr/local/lib/libfreetype.6.dylib (compatibility version 10.0.0, current version 10.16.0) /usr/lib/libz.1.dylib (compatibility version 1.0.0, current version 1.2.3) /System/Library/Frameworks/CoreServices.framework/Versions/A/ CoreServices (compatibility version 1.0.0, current version 18.0.0) /System/Library/Frameworks/ApplicationServices.framework/ Versions/A/ApplicationServices (compatibility version 1.0.0, current version 22.0.0) /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 88.1.7) Regards, Tim Lyons > Peter > -- > Peter O'Gorman > http://pogma.com From dluke at geeklair.net Tue Apr 8 15:41:37 2008 From: dluke at geeklair.net (Daniel J. Luke) Date: Tue Apr 8 15:40:08 2008 Subject: MacPorts & perl path In-Reply-To: <9F6D302C-D35F-409A-8F61-C98266B0A85C@stephanjaeger.eu> References: <9F6D302C-D35F-409A-8F61-C98266B0A85C@stephanjaeger.eu> Message-ID: On Apr 8, 2008, at 5:53 PM, Stephan Jaeger wrote: > I just installed via macports the ports apache2, mysql5, php5 and > perl5.8.8 on my computer. > The reason for doing so is to set up a local development server for > my MovableType development. > > When I run a check (mt-check.cgi) in order to see which perl modules > I have to install, the module DBD::mysql is listed as "not > installed", although I installed it explicitly. The moveabletype scripts all unfortunately have #!/usr/bin/perl at the top, so they run the system perl instead of the macports perl. You can either change them all to #!/opt/local/bin/perl (or whatever your macports ${prefix} is set to) or #!/usr/bin/env perl (and then set up the script environment so that the macports perl is first in the path search). -- 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/20080408/ae614669/PGP.bin From marcuscalhounlopez at mac.com Tue Apr 8 17:52:51 2008 From: marcuscalhounlopez at mac.com (Marcus Calhoun-Lopez) Date: Tue Apr 8 17:51:27 2008 Subject: building doxygen with wizard variant fails In-Reply-To: <2A1E32EB-F33E-401B-80BA-16F9E0B207DA@gmail.com> References: <4991429C-0F66-40D1-BFF1-13B2D00D6EE2@mac.com> <1692BB0C-F8EE-4303-8A5D-B51B68EADDF9@mac.com> <2A1E32EB-F33E-401B-80BA-16F9E0B207DA@gmail.com> Message-ID: <7C84224A-9F43-4AC0-93A8-430FE94C4075@mac.com> There may be a bug in the Portfile, but it has been working for me. I have also had this problem after I interrupted an installation during the Activation phase. Since /opt/local/bin/doxygen does not belong to any port, I would remove it manually. Once doxygen is installed, you can make sure that it is not a bug with the command: port provides /opt/local/bin/doxygen If all went well, this should belong to the port doxygen. -Marcus On Apr 8, 2008, at 3:38 PM, Alejandro Aragon wrote: > Hi Marcus, > > I did what you mentioned and the installation went fine this time. > However, just before it finished, it had an error: > > $sudo port install doxygen +wizard > ---> Fetching doxygen > ---> Attempting to fetch doxygen-1.5.5.src.tar.gz from ftp://ftp.stack.nl/pub/users/dimitri/ > ---> Verifying checksum(s) for doxygen > ---> Extracting doxygen > ---> Applying patches to doxygen > ---> Configuring doxygen > ---> Building doxygen with target all pdf > ---> Staging doxygen into destroot > ---> Installing doxygen 1.5.5_0+darwin_9+wizard > ---> Activating doxygen 1.5.5_0+darwin_9+wizard > Error: Target org.macports.activate returned: Image error: /opt/ > local/bin/doxygen already exists and does not belong to a registered > port. Unable to activate port doxygen. > Error: Status 1 encountered during processing. > > > I made sure that doxygen was not installed before this. Is this > something that needs to be fixed? > > aa > > On Apr 8, 2008, at 1:48 AM, Marcus Calhoun-Lopez wrote: > >> In the same directory as the Portfile, there is a directory called >> files. >> Put the file qfiledefs_p.patch (downloaded from the Ticket page) >> into the files directory. >> >> Since it is not there now, MacPorts is trying (unsuccessfully) to >> download it. >> >> On Leopard, I have the wizard variant working but not the wizardapp >> variant. >> >> -Marcus >> >> On Apr 7, 2008, at 11:12 PM, Alejandro Aragon wrote: >>> I downloaded the .diff file and applied the patch manually. Then: >>> >>> aaragon@/opt/local/var/macports/sources/rsync.macports.org/release/ >>> ports/textproc/doxygen$sudo port -v install doxygen +wizard >>> ---> Fetching doxygen >>> ---> qfiledefs_p.patch doesn't seem to exist in /opt/local/var/ >>> macports/distfiles/doxygen >>> ---> Attempting to fetch qfiledefs_p.patch from http://svn.macports.org/repository/macports/distfiles/doxygen >>> % Total % Received % Xferd Average Speed Time Time >>> Time Current >>> Dload Upload Total Spent >>> Left Speed >>> 0 0 0 0 0 0 0 0 --:--:-- --:--:-- >>> --:--:-- 0 >>> ---> Attempting to fetch qfiledefs_p.patch from http://svn.macports.org/repository/macports/distfiles/general/ >>> % Total % Received % Xferd Average Speed Time Time >>> Time Current >>> Dload Upload Total Spent >>> Left Speed >>> 0 0 0 0 0 0 0 0 --:--:-- --:--:-- >>> --:--:-- 0 >>> ---> Attempting to fetch qfiledefs_p.patch from http://svn.macports.org/repository/macports/downloads/doxygen >>> % Total % Received % Xferd Average Speed Time Time >>> Time Current >>> Dload Upload Total Spent >>> Left Speed >>> 0 0 0 0 0 0 0 0 --:--:-- --:--:-- >>> --:--:-- 0 >>> Error: Target org.macports.fetch returned: fetch failed >>> Warning: the following items did not execute (for doxygen): >>> org.macports.activate org.macports.fetch org.macports.extract >>> org.macports.checksum org.macports.patch org.macports.configure >>> org.macports.build org.macports.destroot org.macports.install >>> Error: Status 1 encountered during processing. >>> >>> and the same with the wizardapp variant. I went to that location >>> in the repository and doxygen does not exist. >>> >>> Am I doing something wrong here or the patch is not good? >>> >>> aa >>> >>> On Apr 7, 2008, at 11:21 PM, Marcus Calhoun-Lopez wrote: >>> >>>> There is some discussion about this issue (as well as a patch) on >>>> the ticket: >>>> http://trac.macports.org/projects/macports/ticket/14603 >>>> >>>> -Marcus >>>> >>>> On Apr 7, 2008, at 9:15 PM, Alejandro Aragon wrote: >>>>> Hello everyone, >>>>> >>>>> I tried to build doxygen with the doxywizard variant, which >>>>> depends on qt and I had these errors: >>>>> >>>>> aaragon@~$sudo port install doxygen +wizard >>>>> ---> Fetching doxygen >>>>> ---> Verifying checksum(s) for doxygen >>>>> ---> Extracting doxygen >>>>> ---> Applying patches to doxygen >>>>> ---> Configuring doxygen >>>>> ---> Building doxygen with target all pdf >>>>> Error: Target org.macports.build returned: shell command " cd "/ >>>>> opt/local/var/macports/build/ >>>>> _opt_local_var_macports_sources_rsync >>>>> .macports.org_release_ports_textproc_doxygen/work/doxygen-1.5.4" >>>>> && make all pdf " returned error 2 >>>>> Command output: doxywizard.cpp:1414: error: 'fn' was not >>>>> declared in this scope >>>>> doxywizard.cpp:1416: error: 'QFile' was not declared in this scope >>>>> doxywizard.cpp:1416: error: expected `;' before 'f' >>>>> doxywizard.cpp:1417: error: 'f' was not declared in this scope >>>>> doxywizard.cpp:1417: error: 'IO_WriteOnly' was not declared in >>>>> this scope >>>>> doxywizard.cpp:1419: error: 'QTextStream' was not declared in >>>>> this scope >>>>> doxywizard.cpp:1419: error: expected `;' before 't' >>>>> doxywizard.cpp:1420: error: 't' was not declared in this scope >>>>> doxywizard.cpp:1420: error: invalid use of undefined type >>>>> 'struct QTextEdit' >>>>> doxywizard.h:15: error: forward declaration of 'struct QTextEdit' >>>>> doxywizard.cpp:1421: error: 'statusBar' was not declared in this >>>>> scope >>>>> doxywizard.cpp:1425: error: 'QMessageBox' has not been declared >>>>> doxywizard.cpp:1426: error: 'warning' was not declared in this >>>>> scope >>>>> doxywizard.cpp: In function 'int main(int, char**)': >>>>> doxywizard.cpp:1435: error: 'QApplication' was not declared in >>>>> this scope >>>>> doxywizard.cpp:1435: error: expected `;' before 'a' >>>>> doxywizard.cpp:850: error: 'MainWidget::~MainWidget()' is private >>>>> doxywizard.cpp:1436: error: within this context >>>>> doxywizard.cpp:1119: error: 'void >>>>> MainWidget::loadConfigFromFile(int)' is private >>>>> doxywizard.cpp:1439: error: within this context >>>>> doxywizard.cpp:1439: error: invalid conversion from 'char*' to >>>>> 'int' >>>>> doxywizard.cpp:1439: error: initializing argument 1 of 'void >>>>> MainWidget::loadConfigFromFile(int)' >>>>> doxywizard.cpp:1443: error: 'printf' was not declared in this >>>>> scope >>>>> doxywizard.cpp:1446: error: 'a' was not declared in this scope >>>>> doxywizard.cpp:1447: error: 'class MainWidget' has no member >>>>> named 'show' >>>>> gmake[2]: *** [obj/doxywizard.o] Error 1 >>>>> gmake[2]: Leaving directory `/opt/local/var/macports/build/ >>>>> _opt_local_var_macports_sources_rsync >>>>> .macports.org_release_ports_textproc_doxygen/work/doxygen-1.5.4/ >>>>> addon/doxywizard' >>>>> gmake[1]: *** [all] Error 2 >>>>> gmake[1]: Leaving directory `/opt/local/var/macports/build/ >>>>> _opt_local_var_macports_sources_rsync >>>>> .macports.org_release_ports_textproc_doxygen/work/doxygen-1.5.4/ >>>>> addon/doxywizard' >>>>> make: *** [all] Error 2 >>>>> >>>>> aa >>>>> >>>>> _______________________________________________ >>>>> macports-users mailing list >>>>> macports-users@lists.macosforge.org >>>>> http://lists.macosforge.org/mailman/listinfo/macports-users >>>> >>> >> > From alejandro.aragon at gmail.com Tue Apr 8 18:05:52 2008 From: alejandro.aragon at gmail.com (Alejandro Aragon) Date: Tue Apr 8 18:06:22 2008 Subject: building doxygen with wizard variant fails In-Reply-To: <7C84224A-9F43-4AC0-93A8-430FE94C4075@mac.com> References: <4991429C-0F66-40D1-BFF1-13B2D00D6EE2@mac.com> <1692BB0C-F8EE-4303-8A5D-B51B68EADDF9@mac.com> <2A1E32EB-F33E-401B-80BA-16F9E0B207DA@gmail.com> <7C84224A-9F43-4AC0-93A8-430FE94C4075@mac.com> Message-ID: <0F86087B-7F07-444D-B50E-0CE4555FF570@gmail.com> Marcus, I uninstalled doxygen, deleted files doxygen, doxytag and doxywizard from /opt/local. Reinstalled doxygen with wizard option, and now the installation went smoothly. Now: aaragon@/opt/local/bin$port provides doxygen /opt/local/bin/doxygen is provided by: doxygen so I guess everything is fine. I would like to ask you also what is the difference between wizard and wizard-app? and why the wizard-app does not work? aa On Apr 8, 2008, at 7:52 PM, Marcus Calhoun-Lopez wrote: > There may be a bug in the Portfile, but it has been working for me. > I have also had this problem after I interrupted an installation > during the Activation phase. > > Since /opt/local/bin/doxygen does not belong to any port, I would > remove it manually. > Once doxygen is installed, you can make sure that it is not a bug > with the command: > port provides /opt/local/bin/doxygen > > If all went well, this should belong to the port doxygen. > > -Marcus > > On Apr 8, 2008, at 3:38 PM, Alejandro Aragon wrote: >> Hi Marcus, >> >> I did what you mentioned and the installation went fine this time. >> However, just before it finished, it had an error: >> >> $sudo port install doxygen +wizard >> ---> Fetching doxygen >> ---> Attempting to fetch doxygen-1.5.5.src.tar.gz from ftp://ftp.stack.nl/pub/users/dimitri/ >> ---> Verifying checksum(s) for doxygen >> ---> Extracting doxygen >> ---> Applying patches to doxygen >> ---> Configuring doxygen >> ---> Building doxygen with target all pdf >> ---> Staging doxygen into destroot >> ---> Installing doxygen 1.5.5_0+darwin_9+wizard >> ---> Activating doxygen 1.5.5_0+darwin_9+wizard >> Error: Target org.macports.activate returned: Image error: /opt/ >> local/bin/doxygen already exists and does not belong to a >> registered port. Unable to activate port doxygen. >> Error: Status 1 encountered during processing. >> >> >> I made sure that doxygen was not installed before this. Is this >> something that needs to be fixed? >> >> aa >> >> On Apr 8, 2008, at 1:48 AM, Marcus Calhoun-Lopez wrote: >> >>> In the same directory as the Portfile, there is a directory called >>> files. >>> Put the file qfiledefs_p.patch (downloaded from the Ticket page) >>> into the files directory. >>> >>> Since it is not there now, MacPorts is trying (unsuccessfully) to >>> download it. >>> >>> On Leopard, I have the wizard variant working but not the >>> wizardapp variant. >>> >>> -Marcus >>> >>> On Apr 7, 2008, at 11:12 PM, Alejandro Aragon wrote: >>>> I downloaded the .diff file and applied the patch manually. Then: >>>> >>>> aaragon@/opt/local/var/macports/sources/rsync.macports.org/ >>>> release/ports/textproc/doxygen$sudo port -v install doxygen +wizard >>>> ---> Fetching doxygen >>>> ---> qfiledefs_p.patch doesn't seem to exist in /opt/local/var/ >>>> macports/distfiles/doxygen >>>> ---> Attempting to fetch qfiledefs_p.patch from http://svn.macports.org/repository/macports/distfiles/doxygen >>>> % Total % Received % Xferd Average Speed Time Time >>>> Time Current >>>> Dload Upload Total Spent >>>> Left Speed >>>> 0 0 0 0 0 0 0 0 --:--:-- --:--:-- >>>> --:--:-- 0 >>>> ---> Attempting to fetch qfiledefs_p.patch from http://svn.macports.org/repository/macports/distfiles/general/ >>>> % Total % Received % Xferd Average Speed Time Time >>>> Time Current >>>> Dload Upload Total Spent >>>> Left Speed >>>> 0 0 0 0 0 0 0 0 --:--:-- --:--:-- >>>> --:--:-- 0 >>>> ---> Attempting to fetch qfiledefs_p.patch from http://svn.macports.org/repository/macports/downloads/doxygen >>>> % Total % Received % Xferd Average Speed Time Time >>>> Time Current >>>> Dload Upload Total Spent >>>> Left Speed >>>> 0 0 0 0 0 0 0 0 --:--:-- --:--:-- >>>> --:--:-- 0 >>>> Error: Target org.macports.fetch returned: fetch failed >>>> Warning: the following items did not execute (for doxygen): >>>> org.macports.activate org.macports.fetch org.macports.extract >>>> org.macports.checksum org.macports.patch org.macports.configure >>>> org.macports.build org.macports.destroot org.macports.install >>>> Error: Status 1 encountered during processing. >>>> >>>> and the same with the wizardapp variant. I went to that location >>>> in the repository and doxygen does not exist. >>>> >>>> Am I doing something wrong here or the patch is not good? >>>> >>>> aa >>>> >>>> On Apr 7, 2008, at 11:21 PM, Marcus Calhoun-Lopez wrote: >>>> >>>>> There is some discussion about this issue (as well as a patch) >>>>> on the ticket: >>>>> http://trac.macports.org/projects/macports/ticket/14603 >>>>> >>>>> -Marcus >>>>> >>>>> On Apr 7, 2008, at 9:15 PM, Alejandro Aragon wrote: >>>>>> Hello everyone, >>>>>> >>>>>> I tried to build doxygen with the doxywizard variant, which >>>>>> depends on qt and I had these errors: >>>>>> >>>>>> aaragon@~$sudo port install doxygen +wizard >>>>>> ---> Fetching doxygen >>>>>> ---> Verifying checksum(s) for doxygen >>>>>> ---> Extracting doxygen >>>>>> ---> Applying patches to doxygen >>>>>> ---> Configuring doxygen >>>>>> ---> Building doxygen with target all pdf >>>>>> Error: Target org.macports.build returned: shell command " cd "/ >>>>>> opt/local/var/macports/build/ >>>>>> _opt_local_var_macports_sources_rsync >>>>>> .macports.org_release_ports_textproc_doxygen/work/ >>>>>> doxygen-1.5.4" && make all pdf " returned error 2 >>>>>> Command output: doxywizard.cpp:1414: error: 'fn' was not >>>>>> declared in this scope >>>>>> doxywizard.cpp:1416: error: 'QFile' was not declared in this >>>>>> scope >>>>>> doxywizard.cpp:1416: error: expected `;' before 'f' >>>>>> doxywizard.cpp:1417: error: 'f' was not declared in this scope >>>>>> doxywizard.cpp:1417: error: 'IO_WriteOnly' was not declared in >>>>>> this scope >>>>>> doxywizard.cpp:1419: error: 'QTextStream' was not declared in >>>>>> this scope >>>>>> doxywizard.cpp:1419: error: expected `;' before 't' >>>>>> doxywizard.cpp:1420: error: 't' was not declared in this scope >>>>>> doxywizard.cpp:1420: error: invalid use of undefined type >>>>>> 'struct QTextEdit' >>>>>> doxywizard.h:15: error: forward declaration of 'struct QTextEdit' >>>>>> doxywizard.cpp:1421: error: 'statusBar' was not declared in >>>>>> this scope >>>>>> doxywizard.cpp:1425: error: 'QMessageBox' has not been declared >>>>>> doxywizard.cpp:1426: error: 'warning' was not declared in this >>>>>> scope >>>>>> doxywizard.cpp: In function 'int main(int, char**)': >>>>>> doxywizard.cpp:1435: error: 'QApplication' was not declared in >>>>>> this scope >>>>>> doxywizard.cpp:1435: error: expected `;' before 'a' >>>>>> doxywizard.cpp:850: error: 'MainWidget::~MainWidget()' is private >>>>>> doxywizard.cpp:1436: error: within this context >>>>>> doxywizard.cpp:1119: error: 'void >>>>>> MainWidget::loadConfigFromFile(int)' is private >>>>>> doxywizard.cpp:1439: error: within this context >>>>>> doxywizard.cpp:1439: error: invalid conversion from 'char*' to >>>>>> 'int' >>>>>> doxywizard.cpp:1439: error: initializing argument 1 of 'void >>>>>> MainWidget::loadConfigFromFile(int)' >>>>>> doxywizard.cpp:1443: error: 'printf' was not declared in this >>>>>> scope >>>>>> doxywizard.cpp:1446: error: 'a' was not declared in this scope >>>>>> doxywizard.cpp:1447: error: 'class MainWidget' has no member >>>>>> named 'show' >>>>>> gmake[2]: *** [obj/doxywizard.o] Error 1 >>>>>> gmake[2]: Leaving directory `/opt/local/var/macports/build/ >>>>>> _opt_local_var_macports_sources_rsync >>>>>> .macports.org_release_ports_textproc_doxygen/work/doxygen-1.5.4/ >>>>>> addon/doxywizard' >>>>>> gmake[1]: *** [all] Error 2 >>>>>> gmake[1]: Leaving directory `/opt/local/var/macports/build/ >>>>>> _opt_local_var_macports_sources_rsync >>>>>> .macports.org_release_ports_textproc_doxygen/work/doxygen-1.5.4/ >>>>>> addon/doxywizard' >>>>>> make: *** [all] Error 2 >>>>>> >>>>>> aa >>>>>> >>>>>> _______________________________________________ >>>>>> macports-users mailing list >>>>>> macports-users@lists.macosforge.org >>>>>> http://lists.macosforge.org/mailman/listinfo/macports-users >>>>> >>>> >>> >> > From marcuscalhounlopez at mac.com Tue Apr 8 18:21:41 2008 From: marcuscalhounlopez at mac.com (Marcus Calhoun-Lopez) Date: Tue Apr 8 18:22:07 2008 Subject: building doxygen with wizard variant fails In-Reply-To: <0F86087B-7F07-444D-B50E-0CE4555FF570@gmail.com> References: <4991429C-0F66-40D1-BFF1-13B2D00D6EE2@mac.com> <1692BB0C-F8EE-4303-8A5D-B51B68EADDF9@mac.com> <2A1E32EB-F33E-401B-80BA-16F9E0B207DA@gmail.com> <7C84224A-9F43-4AC0-93A8-430FE94C4075@mac.com> <0F86087B-7F07-444D-B50E-0CE4555FF570@gmail.com> Message-ID: Excellent. The variant wizard builds doxywizard, which is an X11 program build with qt3. The variant wizardapp builds a regular double clickable Mac OS application (Doxywizard.app in /Applications/MacPorts) which then in turn runs doxywizard. wizardapp used to work, but it broke some time ago (either because of a doxygen upgrade or an OS upgrade). The error on Leopard is "LSOpenFromURLSpec() failed with error -10810". Neither I, nor the maintainer, nor anyone else has put in the effort to make it work again. No one seems to have a strong incentive to get it to work. -Marcus On Apr 8, 2008, at 7:05 PM, Alejandro Aragon wrote: > Marcus, > > I uninstalled doxygen, deleted files doxygen, doxytag and doxywizard > from /opt/local. Reinstalled doxygen with wizard option, and now the > installation went smoothly. Now: > > aaragon@/opt/local/bin$port provides doxygen > /opt/local/bin/doxygen is provided by: doxygen > > so I guess everything is fine. I would like to ask you also what is > the difference between wizard and wizard-app? and why the wizard-app > does not work? > > aa > > On Apr 8, 2008, at 7:52 PM, Marcus Calhoun-Lopez wrote: > >> There may be a bug in the Portfile, but it has been working for me. >> I have also had this problem after I interrupted an installation >> during the Activation phase. >> >> Since /opt/local/bin/doxygen does not belong to any port, I would >> remove it manually. >> Once doxygen is installed, you can make sure that it is not a bug >> with the command: >> port provides /opt/local/bin/doxygen >> >> If all went well, this should belong to the port doxygen. >> >> -Marcus >> >> On Apr 8, 2008, at 3:38 PM, Alejandro Aragon wrote: >>> Hi Marcus, >>> >>> I did what you mentioned and the installation went fine this time. >>> However, just before it finished, it had an error: >>> >>> $sudo port install doxygen +wizard >>> ---> Fetching doxygen >>> ---> Attempting to fetch doxygen-1.5.5.src.tar.gz from ftp://ftp.stack.nl/pub/users/dimitri/ >>> ---> Verifying checksum(s) for doxygen >>> ---> Extracting doxygen >>> ---> Applying patches to doxygen >>> ---> Configuring doxygen >>> ---> Building doxygen with target all pdf >>> ---> Staging doxygen into destroot >>> ---> Installing doxygen 1.5.5_0+darwin_9+wizard >>> ---> Activating doxygen 1.5.5_0+darwin_9+wizard >>> Error: Target org.macports.activate returned: Image error: /opt/ >>> local/bin/doxygen already exists and does not belong to a >>> registered port. Unable to activate port doxygen. >>> Error: Status 1 encountered during processing. >>> >>> >>> I made sure that doxygen was not installed before this. Is this >>> something that needs to be fixed? >>> >>> aa >>> >>> On Apr 8, 2008, at 1:48 AM, Marcus Calhoun-Lopez wrote: >>> >>>> In the same directory as the Portfile, there is a directory >>>> called files. >>>> Put the file qfiledefs_p.patch (downloaded from the Ticket page) >>>> into the files directory. >>>> >>>> Since it is not there now, MacPorts is trying (unsuccessfully) to >>>> download it. >>>> >>>> On Leopard, I have the wizard variant working but not the >>>> wizardapp variant. >>>> >>>> -Marcus >>>> >>>> On Apr 7, 2008, at 11:12 PM, Alejandro Aragon wrote: >>>>> I downloaded the .diff file and applied the patch manually. Then: >>>>> >>>>> aaragon@/opt/local/var/macports/sources/rsync.macports.org/ >>>>> release/ports/textproc/doxygen$sudo port -v install doxygen >>>>> +wizard >>>>> ---> Fetching doxygen >>>>> ---> qfiledefs_p.patch doesn't seem to exist in /opt/local/var/ >>>>> macports/distfiles/doxygen >>>>> ---> Attempting to fetch qfiledefs_p.patch from http://svn.macports.org/repository/macports/distfiles/doxygen >>>>> % Total % Received % Xferd Average Speed Time Time >>>>> Time Current >>>>> Dload Upload Total Spent >>>>> Left Speed >>>>> 0 0 0 0 0 0 0 0 --:--:-- --:--:-- >>>>> --:--:-- 0 >>>>> ---> Attempting to fetch qfiledefs_p.patch from http://svn.macports.org/repository/macports/distfiles/general/ >>>>> % Total % Received % Xferd Average Speed Time Time >>>>> Time Current >>>>> Dload Upload Total Spent >>>>> Left Speed >>>>> 0 0 0 0 0 0 0 0 --:--:-- --:--:-- >>>>> --:--:-- 0 >>>>> ---> Attempting to fetch qfiledefs_p.patch from http://svn.macports.org/repository/macports/downloads/doxygen >>>>> % Total % Received % Xferd Average Speed Time Time >>>>> Time Current >>>>> Dload Upload Total Spent >>>>> Left Speed >>>>> 0 0 0 0 0 0 0 0 --:--:-- --:--:-- >>>>> --:--:-- 0 >>>>> Error: Target org.macports.fetch returned: fetch failed >>>>> Warning: the following items did not execute (for doxygen): >>>>> org.macports.activate org.macports.fetch org.macports.extract >>>>> org.macports.checksum org.macports.patch org.macports.configure >>>>> org.macports.build org.macports.destroot org.macports.install >>>>> Error: Status 1 encountered during processing. >>>>> >>>>> and the same with the wizardapp variant. I went to that location >>>>> in the repository and doxygen does not exist. >>>>> >>>>> Am I doing something wrong here or the patch is not good? >>>>> >>>>> aa >>>>> >>>>> On Apr 7, 2008, at 11:21 PM, Marcus Calhoun-Lopez wrote: >>>>> >>>>>> There is some discussion about this issue (as well as a patch) >>>>>> on the ticket: >>>>>> http://trac.macports.org/projects/macports/ticket/14603 >>>>>> >>>>>> -Marcus >>>>>> >>>>>> On Apr 7, 2008, at 9:15 PM, Alejandro Aragon wrote: >>>>>>> Hello everyone, >>>>>>> >>>>>>> I tried to build doxygen with the doxywizard variant, which >>>>>>> depends on qt and I had these errors: >>>>>>> >>>>>>> aaragon@~$sudo port install doxygen +wizard >>>>>>> ---> Fetching doxygen >>>>>>> ---> Verifying checksum(s) for doxygen >>>>>>> ---> Extracting doxygen >>>>>>> ---> Applying patches to doxygen >>>>>>> ---> Configuring doxygen >>>>>>> ---> Building doxygen with target all pdf >>>>>>> Error: Target org.macports.build returned: shell command " cd >>>>>>> "/opt/local/var/macports/build/ >>>>>>> _opt_local_var_macports_sources_rsync >>>>>>> .macports.org_release_ports_textproc_doxygen/work/ >>>>>>> doxygen-1.5.4" && make all pdf " returned error 2 >>>>>>> Command output: doxywizard.cpp:1414: error: 'fn' was not >>>>>>> declared in this scope >>>>>>> doxywizard.cpp:1416: error: 'QFile' was not declared in this >>>>>>> scope >>>>>>> doxywizard.cpp:1416: error: expected `;' before 'f' >>>>>>> doxywizard.cpp:1417: error: 'f' was not declared in this scope >>>>>>> doxywizard.cpp:1417: error: 'IO_WriteOnly' was not declared in >>>>>>> this scope >>>>>>> doxywizard.cpp:1419: error: 'QTextStream' was not declared in >>>>>>> this scope >>>>>>> doxywizard.cpp:1419: error: expected `;' before 't' >>>>>>> doxywizard.cpp:1420: error: 't' was not declared in this scope >>>>>>> doxywizard.cpp:1420: error: invalid use of undefined type >>>>>>> 'struct QTextEdit' >>>>>>> doxywizard.h:15: error: forward declaration of 'struct >>>>>>> QTextEdit' >>>>>>> doxywizard.cpp:1421: error: 'statusBar' was not declared in >>>>>>> this scope >>>>>>> doxywizard.cpp:1425: error: 'QMessageBox' has not been declared >>>>>>> doxywizard.cpp:1426: error: 'warning' was not declared in this >>>>>>> scope >>>>>>> doxywizard.cpp: In function 'int main(int, char**)': >>>>>>> doxywizard.cpp:1435: error: 'QApplication' was not declared in >>>>>>> this scope >>>>>>> doxywizard.cpp:1435: error: expected `;' before 'a' >>>>>>> doxywizard.cpp:850: error: 'MainWidget::~MainWidget()' is >>>>>>> private >>>>>>> doxywizard.cpp:1436: error: within this context >>>>>>> doxywizard.cpp:1119: error: 'void >>>>>>> MainWidget::loadConfigFromFile(int)' is private >>>>>>> doxywizard.cpp:1439: error: within this context >>>>>>> doxywizard.cpp:1439: error: invalid conversion from 'char*' to >>>>>>> 'int' >>>>>>> doxywizard.cpp:1439: error: initializing argument 1 of 'void >>>>>>> MainWidget::loadConfigFromFile(int)' >>>>>>> doxywizard.cpp:1443: error: 'printf' was not declared in this >>>>>>> scope >>>>>>> doxywizard.cpp:1446: error: 'a' was not declared in this scope >>>>>>> doxywizard.cpp:1447: error: 'class MainWidget' has no member >>>>>>> named 'show' >>>>>>> gmake[2]: *** [obj/doxywizard.o] Error 1 >>>>>>> gmake[2]: Leaving directory `/opt/local/var/macports/build/ >>>>>>> _opt_local_var_macports_sources_rsync >>>>>>> .macports.org_release_ports_textproc_doxygen/work/ >>>>>>> doxygen-1.5.4/addon/doxywizard' >>>>>>> gmake[1]: *** [all] Error 2 >>>>>>> gmake[1]: Leaving directory `/opt/local/var/macports/build/ >>>>>>> _opt_local_var_macports_sources_rsync >>>>>>> .macports.org_release_ports_textproc_doxygen/work/ >>>>>>> doxygen-1.5.4/addon/doxywizard' >>>>>>> make: *** [all] Error 2 >>>>>>> >>>>>>> aa >>>>>>> >>>>>>> _______________________________________________ >>>>>>> macports-users mailing list >>>>>>> macports-users@lists.macosforge.org >>>>>>> http://lists.macosforge.org/mailman/listinfo/macports-users >>>>>> >>>>> >>>> >>> >> > From alejandro.aragon at gmail.com Tue Apr 8 18:26:55 2008 From: alejandro.aragon at gmail.com (Alejandro Aragon) Date: Tue Apr 8 18:25:33 2008 Subject: building doxygen with wizard variant fails In-Reply-To: References: <4991429C-0F66-40D1-BFF1-13B2D00D6EE2@mac.com> <1692BB0C-F8EE-4303-8A5D-B51B68EADDF9@mac.com> <2A1E32EB-F33E-401B-80BA-16F9E0B207DA@gmail.com> <7C84224A-9F43-4AC0-93A8-430FE94C4075@mac.com> <0F86087B-7F07-444D-B50E-0CE4555FF570@gmail.com> Message-ID: Well, if you tell me what to do, I could give it a try. Also, now that the Portfile builds doxygen with the doxywizard, is it going to be updated? Something I don't really understand is that when you run port sync or port selfupdate, the doxygen port will be replaced by the one in the server, which is the old one, right? So how to get around this? aa On Apr 8, 2008, at 8:21 PM, Marcus Calhoun-Lopez wrote: > Excellent. > > The variant wizard builds doxywizard, which is an X11 program build > with qt3. > The variant wizardapp builds a regular double clickable Mac OS > application > (Doxywizard.app in /Applications/MacPorts) which then in turn runs > doxywizard. > > wizardapp used to work, but it broke some time ago (either because > of a doxygen upgrade or an OS upgrade). > The error on Leopard is "LSOpenFromURLSpec() failed with error > -10810". > Neither I, nor the maintainer, nor anyone else has put in the effort > to make it work again. > No one seems to have a strong incentive to get it to work. > > -Marcus > > On Apr 8, 2008, at 7:05 PM, Alejandro Aragon wrote: >> Marcus, >> >> I uninstalled doxygen, deleted files doxygen, doxytag and >> doxywizard from /opt/local. Reinstalled doxygen with wizard option, >> and now the installation went smoothly. Now: >> >> aaragon@/opt/local/bin$port provides doxygen >> /opt/local/bin/doxygen is provided by: doxygen >> >> so I guess everything is fine. I would like to ask you also what is >> the difference between wizard and wizard-app? and why the wizard- >> app does not work? >> >> aa >> >> On Apr 8, 2008, at 7:52 PM, Marcus Calhoun-Lopez wrote: >> >>> There may be a bug in the Portfile, but it has been working for me. >>> I have also had this problem after I interrupted an installation >>> during the Activation phase. >>> >>> Since /opt/local/bin/doxygen does not belong to any port, I would >>> remove it manually. >>> Once doxygen is installed, you can make sure that it is not a bug >>> with the command: >>> port provides /opt/local/bin/doxygen >>> >>> If all went well, this should belong to the port doxygen. >>> >>> -Marcus >>> >>> On Apr 8, 2008, at 3:38 PM, Alejandro Aragon wrote: >>>> Hi Marcus, >>>> >>>> I did what you mentioned and the installation went fine this >>>> time. However, just before it finished, it had an error: >>>> >>>> $sudo port install doxygen +wizard >>>> ---> Fetching doxygen >>>> ---> Attempting to fetch doxygen-1.5.5.src.tar.gz from ftp://ftp.stack.nl/pub/users/dimitri/ >>>> ---> Verifying checksum(s) for doxygen >>>> ---> Extracting doxygen >>>> ---> Applying patches to doxygen >>>> ---> Configuring doxygen >>>> ---> Building doxygen with target all pdf >>>> ---> Staging doxygen into destroot >>>> ---> Installing doxygen 1.5.5_0+darwin_9+wizard >>>> ---> Activating doxygen 1.5.5_0+darwin_9+wizard >>>> Error: Target org.macports.activate returned: Image error: /opt/ >>>> local/bin/doxygen already exists and does not belong to a >>>> registered port. Unable to activate port doxygen. >>>> Error: Status 1 encountered during processing. >>>> >>>> >>>> I made sure that doxygen was not installed before this. Is this >>>> something that needs to be fixed? >>>> >>>> aa >>>> >>>> On Apr 8, 2008, at 1:48 AM, Marcus Calhoun-Lopez wrote: >>>> >>>>> In the same directory as the Portfile, there is a directory >>>>> called files. >>>>> Put the file qfiledefs_p.patch (downloaded from the Ticket page) >>>>> into the files directory. >>>>> >>>>> Since it is not there now, MacPorts is trying (unsuccessfully) >>>>> to download it. >>>>> >>>>> On Leopard, I have the wizard variant working but not the >>>>> wizardapp variant. >>>>> >>>>> -Marcus >>>>> >>>>> On Apr 7, 2008, at 11:12 PM, Alejandro Aragon wrote: >>>>>> I downloaded the .diff file and applied the patch manually. Then: >>>>>> >>>>>> aaragon@/opt/local/var/macports/sources/rsync.macports.org/ >>>>>> release/ports/textproc/doxygen$sudo port -v install doxygen >>>>>> +wizard >>>>>> ---> Fetching doxygen >>>>>> ---> qfiledefs_p.patch doesn't seem to exist in /opt/local/var/ >>>>>> macports/distfiles/doxygen >>>>>> ---> Attempting to fetch qfiledefs_p.patch from http://svn.macports.org/repository/macports/distfiles/doxygen >>>>>> % Total % Received % Xferd Average Speed Time Time >>>>>> Time Current >>>>>> Dload Upload Total Spent >>>>>> Left Speed >>>>>> 0 0 0 0 0 0 0 0 --:--:-- --:--:-- >>>>>> --:--:-- 0 >>>>>> ---> Attempting to fetch qfiledefs_p.patch from http://svn.macports.org/repository/macports/distfiles/general/ >>>>>> % Total % Received % Xferd Average Speed Time Time >>>>>> Time Current >>>>>> Dload Upload Total Spent >>>>>> Left Speed >>>>>> 0 0 0 0 0 0 0 0 --:--:-- --:--:-- >>>>>> --:--:-- 0 >>>>>> ---> Attempting to fetch qfiledefs_p.patch from http://svn.macports.org/repository/macports/downloads/doxygen >>>>>> % Total % Received % Xferd Average Speed Time Time >>>>>> Time Current >>>>>> Dload Upload Total Spent >>>>>> Left Speed >>>>>> 0 0 0 0 0 0 0 0 --:--:-- --:--:-- >>>>>> --:--:-- 0 >>>>>> Error: Target org.macports.fetch returned: fetch failed >>>>>> Warning: the following items did not execute (for doxygen): >>>>>> org.macports.activate org.macports.fetch org.macports.extract >>>>>> org.macports.checksum org.macports.patch org.macports.configure >>>>>> org.macports.build org.macports.destroot org.macports.install >>>>>> Error: Status 1 encountered during processing. >>>>>> >>>>>> and the same with the wizardapp variant. I went to that >>>>>> location in the repository and doxygen does not exist. >>>>>> >>>>>> Am I doing something wrong here or the patch is not good? >>>>>> >>>>>> aa >>>>>> >>>>>> On Apr 7, 2008, at 11:21 PM, Marcus Calhoun-Lopez wrote: >>>>>> >>>>>>> There is some discussion about this issue (as well as a patch) >>>>>>> on the ticket: >>>>>>> http://trac.macports.org/projects/macports/ticket/14603 >>>>>>> >>>>>>> -Marcus >>>>>>> >>>>>>> On Apr 7, 2008, at 9:15 PM, Alejandro Aragon wrote: >>>>>>>> Hello everyone, >>>>>>>> >>>>>>>> I tried to build doxygen with the doxywizard variant, which >>>>>>>> depends on qt and I had these errors: >>>>>>>> >>>>>>>> aaragon@~$sudo port install doxygen +wizard >>>>>>>> ---> Fetching doxygen >>>>>>>> ---> Verifying checksum(s) for doxygen >>>>>>>> ---> Extracting doxygen >>>>>>>> ---> Applying patches to doxygen >>>>>>>> ---> Configuring doxygen >>>>>>>> ---> Building doxygen with target all pdf >>>>>>>> Error: Target org.macports.build returned: shell command " cd >>>>>>>> "/opt/local/var/macports/build/ >>>>>>>> _opt_local_var_macports_sources_rsync >>>>>>>> .macports.org_release_ports_textproc_doxygen/work/ >>>>>>>> doxygen-1.5.4" && make all pdf " returned error 2 >>>>>>>> Command output: doxywizard.cpp:1414: error: 'fn' was not >>>>>>>> declared in this scope >>>>>>>> doxywizard.cpp:1416: error: 'QFile' was not declared in this >>>>>>>> scope >>>>>>>> doxywizard.cpp:1416: error: expected `;' before 'f' >>>>>>>> doxywizard.cpp:1417: error: 'f' was not declared in this scope >>>>>>>> doxywizard.cpp:1417: error: 'IO_WriteOnly' was not declared >>>>>>>> in this scope >>>>>>>> doxywizard.cpp:1419: error: 'QTextStream' was not declared in >>>>>>>> this scope >>>>>>>> doxywizard.cpp:1419: error: expected `;' before 't' >>>>>>>> doxywizard.cpp:1420: error: 't' was not declared in this scope >>>>>>>> doxywizard.cpp:1420: error: invalid use of undefined type >>>>>>>> 'struct QTextEdit' >>>>>>>> doxywizard.h:15: error: forward declaration of 'struct >>>>>>>> QTextEdit' >>>>>>>> doxywizard.cpp:1421: error: 'statusBar' was not declared in >>>>>>>> this scope >>>>>>>> doxywizard.cpp:1425: error: 'QMessageBox' has not been declared >>>>>>>> doxywizard.cpp:1426: error: 'warning' was not declared in >>>>>>>> this scope >>>>>>>> doxywizard.cpp: In function 'int main(int, char**)': >>>>>>>> doxywizard.cpp:1435: error: 'QApplication' was not declared >>>>>>>> in this scope >>>>>>>> doxywizard.cpp:1435: error: expected `;' before 'a' >>>>>>>> doxywizard.cpp:850: error: 'MainWidget::~MainWidget()' is >>>>>>>> private >>>>>>>> doxywizard.cpp:1436: error: within this context >>>>>>>> doxywizard.cpp:1119: error: 'void >>>>>>>> MainWidget::loadConfigFromFile(int)' is private >>>>>>>> doxywizard.cpp:1439: error: within this context >>>>>>>> doxywizard.cpp:1439: error: invalid conversion from 'char*' >>>>>>>> to 'int' >>>>>>>> doxywizard.cpp:1439: error: initializing argument 1 of >>>>>>>> 'void MainWidget::loadConfigFromFile(int)' >>>>>>>> doxywizard.cpp:1443: error: 'printf' was not declared in this >>>>>>>> scope >>>>>>>> doxywizard.cpp:1446: error: 'a' was not declared in this scope >>>>>>>> doxywizard.cpp:1447: error: 'class MainWidget' has no member >>>>>>>> named 'show' >>>>>>>> gmake[2]: *** [obj/doxywizard.o] Error 1 >>>>>>>> gmake[2]: Leaving directory `/opt/local/var/macports/build/ >>>>>>>> _opt_local_var_macports_sources_rsync >>>>>>>> .macports.org_release_ports_textproc_doxygen/work/ >>>>>>>> doxygen-1.5.4/addon/doxywizard' >>>>>>>> gmake[1]: *** [all] Error 2 >>>>>>>> gmake[1]: Leaving directory `/opt/local/var/macports/build/ >>>>>>>> _opt_local_var_macports_sources_rsync >>>>>>>> .macports.org_release_ports_textproc_doxygen/work/ >>>>>>>> doxygen-1.5.4/addon/doxywizard' >>>>>>>> make: *** [all] Error 2 >>>>>>>> >>>>>>>> aa >>>>>>>> >>>>>>>> _______________________________________________ >>>>>>>> macports-users mailing list >>>>>>>> macports-users@lists.macosforge.org >>>>>>>> http://lists.macosforge.org/mailman/listinfo/macports-users >>>>>>> >>>>>> >>>>> >>>> >>> >> > From marcuscalhounlopez at mac.com Tue Apr 8 18:37:27 2008 From: marcuscalhounlopez at mac.com (Marcus Calhoun-Lopez) Date: Tue Apr 8 18:36:44 2008 Subject: building doxygen with wizard variant fails In-Reply-To: References: <4991429C-0F66-40D1-BFF1-13B2D00D6EE2@mac.com> <1692BB0C-F8EE-4303-8A5D-B51B68EADDF9@mac.com> <2A1E32EB-F33E-401B-80BA-16F9E0B207DA@gmail.com> <7C84224A-9F43-4AC0-93A8-430FE94C4075@mac.com> <0F86087B-7F07-444D-B50E-0CE4555FF570@gmail.com> Message-ID: <3A3D7607-237F-479B-B933-39D0CD29FC5B@mac.com> To keep your changes from being clobbered the next time you run selfupdate, you need to create a local repository. It is not too difficult, and there is some fine documentation at: http://guide.macports.org/#development.local-repositories As for fixing the wizardapp, I really am not sure where to begin. It has something to do with the Info.plist, but that is where my knowledge on the subject ends. -Marcus On Apr 8, 2008, at 7:26 PM, Alejandro Aragon wrote: > Well, if you tell me what to do, I could give it a try. Also, now > that the Portfile builds doxygen with the doxywizard, is it going to > be updated? Something I don't really understand is that when you run > port sync or port selfupdate, the doxygen port will be replaced by > the one in the server, which is the old one, right? So how to get > around this? > > aa > > On Apr 8, 2008, at 8:21 PM, Marcus Calhoun-Lopez wrote: > >> Excellent. >> >> The variant wizard builds doxywizard, which is an X11 program build >> with qt3. >> The variant wizardapp builds a regular double clickable Mac OS >> application >> (Doxywizard.app in /Applications/MacPorts) which then in turn runs >> doxywizard. >> >> wizardapp used to work, but it broke some time ago (either because >> of a doxygen upgrade or an OS upgrade). >> The error on Leopard is "LSOpenFromURLSpec() failed with error >> -10810". >> Neither I, nor the maintainer, nor anyone else has put in the >> effort to make it work again. >> No one seems to have a strong incentive to get it to work. >> >> -Marcus >> >> On Apr 8, 2008, at 7:05 PM, Alejandro Aragon wrote: >>> Marcus, >>> >>> I uninstalled doxygen, deleted files doxygen, doxytag and >>> doxywizard from /opt/local. Reinstalled doxygen with wizard >>> option, and now the installation went smoothly. Now: >>> >>> aaragon@/opt/local/bin$port provides doxygen >>> /opt/local/bin/doxygen is provided by: doxygen >>> >>> so I guess everything is fine. I would like to ask you also what >>> is the difference between wizard and wizard-app? and why the >>> wizard-app does not work? >>> >>> aa >>> >>> On Apr 8, 2008, at 7:52 PM, Marcus Calhoun-Lopez wrote: >>> >>>> There may be a bug in the Portfile, but it has been working for me. >>>> I have also had this problem after I interrupted an installation >>>> during the Activation phase. >>>> >>>> Since /opt/local/bin/doxygen does not belong to any port, I would >>>> remove it manually. >>>> Once doxygen is installed, you can make sure that it is not a bug >>>> with the command: >>>> port provides /opt/local/bin/doxygen >>>> >>>> If all went well, this should belong to the port doxygen. >>>> >>>> -Marcus >>>> >>>> On Apr 8, 2008, at 3:38 PM, Alejandro Aragon wrote: >>>>> Hi Marcus, >>>>> >>>>> I did what you mentioned and the installation went fine this >>>>> time. However, just before it finished, it had an error: >>>>> >>>>> $sudo port install doxygen +wizard >>>>> ---> Fetching doxygen >>>>> ---> Attempting to fetch doxygen-1.5.5.src.tar.gz from ftp://ftp.stack.nl/pub/users/dimitri/ >>>>> ---> Verifying checksum(s) for doxygen >>>>> ---> Extracting doxygen >>>>> ---> Applying patches to doxygen >>>>> ---> Configuring doxygen >>>>> ---> Building doxygen with target all pdf >>>>> ---> Staging doxygen into destroot >>>>> ---> Installing doxygen 1.5.5_0+darwin_9+wizard >>>>> ---> Activating doxygen 1.5.5_0+darwin_9+wizard >>>>> Error: Target org.macports.activate returned: Image error: /opt/ >>>>> local/bin/doxygen already exists and does not belong to a >>>>> registered port. Unable to activate port doxygen. >>>>> Error: Status 1 encountered during processing. >>>>> >>>>> >>>>> I made sure that doxygen was not installed before this. Is this >>>>> something that needs to be fixed? >>>>> >>>>> aa >>>>> >>>>> On Apr 8, 2008, at 1:48 AM, Marcus Calhoun-Lopez wrote: >>>>> >>>>>> In the same directory as the Portfile, there is a directory >>>>>> called files. >>>>>> Put the file qfiledefs_p.patch (downloaded from the Ticket >>>>>> page) into the files directory. >>>>>> >>>>>> Since it is not there now, MacPorts is trying (unsuccessfully) >>>>>> to download it. >>>>>> >>>>>> On Leopard, I have the wizard variant working but not the >>>>>> wizardapp variant. >>>>>> >>>>>> -Marcus >>>>>> >>>>>> On Apr 7, 2008, at 11:12 PM, Alejandro Aragon wrote: >>>>>>> I downloaded the .diff file and applied the patch manually. >>>>>>> Then: >>>>>>> >>>>>>> aaragon@/opt/local/var/macports/sources/rsync.macports.org/ >>>>>>> release/ports/textproc/doxygen$sudo port -v install doxygen >>>>>>> +wizard >>>>>>> ---> Fetching doxygen >>>>>>> ---> qfiledefs_p.patch doesn't seem to exist in /opt/local/ >>>>>>> var/macports/distfiles/doxygen >>>>>>> ---> Attempting to fetch qfiledefs_p.patch from http://svn.macports.org/repository/macports/distfiles/doxygen >>>>>>> % Total % Received % Xferd Average Speed Time >>>>>>> Time Time Current >>>>>>> Dload Upload Total Spent >>>>>>> Left Speed >>>>>>> 0 0 0 0 0 0 0 0 --:--:-- --:--:-- >>>>>>> --:--:-- 0 >>>>>>> ---> Attempting to fetch qfiledefs_p.patch from http://svn.macports.org/repository/macports/distfiles/general/ >>>>>>> % Total % Received % Xferd Average Speed Time >>>>>>> Time Time Current >>>>>>> Dload Upload Total Spent >>>>>>> Left Speed >>>>>>> 0 0 0 0 0 0 0 0 --:--:-- --:--:-- >>>>>>> --:--:-- 0 >>>>>>> ---> Attempting to fetch qfiledefs_p.patch from http://svn.macports.org/repository/macports/downloads/doxygen >>>>>>> % Total % Received % Xferd Average Speed Time >>>>>>> Time Time Current >>>>>>> Dload Upload Total Spent >>>>>>> Left Speed >>>>>>> 0 0 0 0 0 0 0 0 --:--:-- --:--:-- >>>>>>> --:--:-- 0 >>>>>>> Error: Target org.macports.fetch returned: fetch failed >>>>>>> Warning: the following items did not execute (for doxygen): >>>>>>> org.macports.activate org.macports.fetch org.macports.extract >>>>>>> org.macports.checksum org.macports.patch >>>>>>> org.macports.configure org.macports.build >>>>>>> org.macports.destroot org.macports.install >>>>>>> Error: Status 1 encountered during processing. >>>>>>> >>>>>>> and the same with the wizardapp variant. I went to that >>>>>>> location in the repository and doxygen does not exist. >>>>>>> >>>>>>> Am I doing something wrong here or the patch is not good? >>>>>>> >>>>>>> aa >>>>>>> >>>>>>> On Apr 7, 2008, at 11:21 PM, Marcus Calhoun-Lopez wrote: >>>>>>> >>>>>>>> There is some discussion about this issue (as well as a >>>>>>>> patch) on the ticket: >>>>>>>> http://trac.macports.org/projects/macports/ticket/14603 >>>>>>>> >>>>>>>> -Marcus >>>>>>>> >>>>>>>> On Apr 7, 2008, at 9:15 PM, Alejandro Aragon wrote: >>>>>>>>> Hello everyone, >>>>>>>>> >>>>>>>>> I tried to build doxygen with the doxywizard variant, which >>>>>>>>> depends on qt and I had these errors: >>>>>>>>> >>>>>>>>> aaragon@~$sudo port install doxygen +wizard >>>>>>>>> ---> Fetching doxygen >>>>>>>>> ---> Verifying checksum(s) for doxygen >>>>>>>>> ---> Extracting doxygen >>>>>>>>> ---> Applying patches to doxygen >>>>>>>>> ---> Configuring doxygen >>>>>>>>> ---> Building doxygen with target all pdf >>>>>>>>> Error: Target org.macports.build returned: shell command " >>>>>>>>> cd "/opt/local/var/macports/build/ >>>>>>>>> _opt_local_var_macports_sources_rsync >>>>>>>>> .macports.org_release_ports_textproc_doxygen/work/ >>>>>>>>> doxygen-1.5.4" && make all pdf " returned error 2 >>>>>>>>> Command output: doxywizard.cpp:1414: error: 'fn' was not >>>>>>>>> declared in this scope >>>>>>>>> doxywizard.cpp:1416: error: 'QFile' was not declared in this >>>>>>>>> scope >>>>>>>>> doxywizard.cpp:1416: error: expected `;' before 'f' >>>>>>>>> doxywizard.cpp:1417: error: 'f' was not declared in this scope >>>>>>>>> doxywizard.cpp:1417: error: 'IO_WriteOnly' was not declared >>>>>>>>> in this scope >>>>>>>>> doxywizard.cpp:1419: error: 'QTextStream' was not declared >>>>>>>>> in this scope >>>>>>>>> doxywizard.cpp:1419: error: expected `;' before 't' >>>>>>>>> doxywizard.cpp:1420: error: 't' was not declared in this scope >>>>>>>>> doxywizard.cpp:1420: error: invalid use of undefined type >>>>>>>>> 'struct QTextEdit' >>>>>>>>> doxywizard.h:15: error: forward declaration of 'struct >>>>>>>>> QTextEdit' >>>>>>>>> doxywizard.cpp:1421: error: 'statusBar' was not declared in >>>>>>>>> this scope >>>>>>>>> doxywizard.cpp:1425: error: 'QMessageBox' has not been >>>>>>>>> declared >>>>>>>>> doxywizard.cpp:1426: error: 'warning' was not declared in >>>>>>>>> this scope >>>>>>>>> doxywizard.cpp: In function 'int main(int, char**)': >>>>>>>>> doxywizard.cpp:1435: error: 'QApplication' was not declared >>>>>>>>> in this scope >>>>>>>>> doxywizard.cpp:1435: error: expected `;' before 'a' >>>>>>>>> doxywizard.cpp:850: error: 'MainWidget::~MainWidget()' is >>>>>>>>> private >>>>>>>>> doxywizard.cpp:1436: error: within this context >>>>>>>>> doxywizard.cpp:1119: error: 'void >>>>>>>>> MainWidget::loadConfigFromFile(int)' is private >>>>>>>>> doxywizard.cpp:1439: error: within this context >>>>>>>>> doxywizard.cpp:1439: error: invalid conversion from 'char*' >>>>>>>>> to 'int' >>>>>>>>> doxywizard.cpp:1439: error: initializing argument 1 of >>>>>>>>> 'void MainWidget::loadConfigFromFile(int)' >>>>>>>>> doxywizard.cpp:1443: error: 'printf' was not declared in >>>>>>>>> this scope >>>>>>>>> doxywizard.cpp:1446: error: 'a' was not declared in this scope >>>>>>>>> doxywizard.cpp:1447: error: 'class MainWidget' has no member >>>>>>>>> named 'show' >>>>>>>>> gmake[2]: *** [obj/doxywizard.o] Error 1 >>>>>>>>> gmake[2]: Leaving directory `/opt/local/var/macports/build/ >>>>>>>>> _opt_local_var_macports_sources_rsync >>>>>>>>> .macports.org_release_ports_textproc_doxygen/work/ >>>>>>>>> doxygen-1.5.4/addon/doxywizard' >>>>>>>>> gmake[1]: *** [all] Error 2 >>>>>>>>> gmake[1]: Leaving directory `/opt/local/var/macports/build/ >>>>>>>>> _opt_local_var_macports_sources_rsync >>>>>>>>> .macports.org_release_ports_textproc_doxygen/work/ >>>>>>>>> doxygen-1.5.4/addon/doxywizard' >>>>>>>>> make: *** [all] Error 2 >>>>>>>>> >>>>>>>>> aa >>>>>>>>> >>>>>>>>> _______________________________________________ >>>>>>>>> macports-users mailing list >>>>>>>>> macports-users@lists.macosforge.org >>>>>>>>> http://lists.macosforge.org/mailman/listinfo/macports-users >>>>>>>> >>>>>>> >>>>>> >>>>> >>>> >>> >> > From alterego at stephanjaeger.eu Tue Apr 8 21:05:08 2008 From: alterego at stephanjaeger.eu (Stephan Jaeger) Date: Tue Apr 8 21:03:33 2008 Subject: MacPorts & perl path In-Reply-To: References: <9F6D302C-D35F-409A-8F61-C98266B0A85C@stephanjaeger.eu> Message-ID: <07661BB8-E7E8-428A-822C-76C7CEB00CAE@stephanjaeger.eu> Thanks a million, Luke! On 08 Apr 2008, at 23:41, Daniel J. Luke wrote: > On Apr 8, 2008, at 5:53 PM, Stephan Jaeger wrote: >> I just installed via macports the ports apache2, mysql5, php5 and >> perl5.8.8 on my computer. >> The reason for doing so is to set up a local development server for >> my MovableType development. >> >> When I run a check (mt-check.cgi) in order to see which perl >> modules I have to install, the module DBD::mysql is listed as "not >> installed", although I installed it explicitly. > > > The moveabletype scripts all unfortunately have #!/usr/bin/perl at > the top, so they run the system perl instead of the macports perl. > > You can either change them all to #!/opt/local/bin/perl (or whatever > your macports ${prefix} is set to) or #!/usr/bin/env perl (and then > set up the script environment so that the macports perl is first in > the path search). > I will change the perl scripts to begin with #!/usr/bin/env perl Best regards Stephan Jaeger From peter at pogma.com Tue Apr 8 21:38:11 2008 From: peter at pogma.com (Peter O'Gorman) Date: Tue Apr 8 21:36:35 2008 Subject: Why does link pick up wrong library In-Reply-To: References: <47FAF01A.8000304@pogma.com> Message-ID: <47FC4833.8000801@pogma.com> Hi Tim, Tim Lyons wrote: >> Check that /opt/local/lib/libfreetype.dylib has the correct install_name: >> >> otool -D /opt/local/lib/libfreetype.dylib >> > This gives > tim$ otool -D libfreetype.dylib > libfreetype.dylib: > /usr/local/lib/libfreetype.6.dylib > > So the 'install name' of the library is > /usr/local/lib/libfreetype.6.dylib. But what does this mean? The dynamic linker, dyld, will look for /usr/local/lib/libfreetype.6.dylib when it tries to run an application which has been linked against this library. It will not find it and will exit the app like below. > dyld: Library not loaded: /usr/local/lib/libfreetype.6.dylib > Referenced from: > /opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_gnome_gnome-python-extras/work/gnome-python-extras-2.19.1/./conftest > > Reason: image not found > Trace/BPT trap > > Is libfreetype built wrongly? What should I do to correct it? freetype > was installed using MacPorts, and seemed to install successfully. Rebuild freetype, if it still has the same install_name, file a bug. When it has a correct install_name, you will, unfortunately, have to rebuild everything that uses freetype. > I don't understand why it refers to 10.16.0, when the build was 2.3.5. The versions of libraries do not need to match the package version. Hope this helps, Peter -- Peter O'Gorman http://pogma.com From alterego at stephanjaeger.eu Tue Apr 8 22:43:45 2008 From: alterego at stephanjaeger.eu (Stephan Jaeger) Date: Tue Apr 8 22:42:08 2008 Subject: /opt/local/www vs. /opt/local/apache2/htdocs Message-ID: Hiya, I just installed apache2 and phpmyadmin, and was wondering why I couldn't get phpmyadmin up and running. Then I realised that phpmyadmin was installed into /opt/local/www, whereas the DocumentRoot in apache2 was defined as /opt/local/apache2/ htdocs. No problem to adjust the DocumentRoot to /opt/local/www, but wouldn't it be better to define the DocumentRoot per default to /opt/local/www, especially if this directory is defined in the documentation as default directory? Thanks in advance for any clarification. Best regards Stephan Hiya, I just installed apache2 and phpmyadmin, and was wondering why I couldn't get phpmyadmin up and running. Then I realised that phpmyadmin was installed into /opt/local/www, whereas the DocumentRoot in apache2 was defined as /opt/local/apache2/ htdocs. No problem to adjust the DocumentRoot to /opt/local/www, but wouldn't it be better to define the DocumentRoot per default to /opt/local/www, especially if this directory is defined in the documentation as default directory? Thanks in advance for any clarification. Best regards Stephan Jaeger From Rasmus.Mackeprang at cern.ch Wed Apr 9 02:30:21 2008 From: Rasmus.Mackeprang at cern.ch (Rasmus Mackeprang) Date: Wed Apr 9 02:28:45 2008 Subject: Installer fails but claim to succeed Message-ID: <46B384451BBB0A4CB3B34C856624419820B4D3@cernxchg41.cern.ch> Hi there I am a new mac user (Linux -> Mac). I run OS-X 10.5.2. When installing macports the promised .profile does not show up in my home dir. Furthermore, when trying to uninstall as per the instructions (http://guide.macports.org/#installing.uninstalling), the locations /Applications/MacPorts/ and /Library/LaunchDaemons/org.macports.* do not exist. Naively I would conjecture that the installer fails but claims to succeed. The machine is brand new with Xcode 3.0 and the two X11 packages in place. Any suggestions? Cheers, Rasmus Mackeprang -- Research fellow CERN PH-ADT, CH-1211, Geneve 23, Switzerland Phone: +41 22 767 07 49 Mobile: +41 76 242 54 47 "Do not be tricked into equating unbiased thinking with uncritical thinking." - L. Kovar -- From frstan at bellsouth.net Wed Apr 9 02:46:28 2008 From: frstan at bellsouth.net (William Davis) Date: Wed Apr 9 02:44:50 2008 Subject: Installer fails but claim to succeed In-Reply-To: <46B384451BBB0A4CB3B34C856624419820B4D3@cernxchg41.cern.ch> References: <46B384451BBB0A4CB3B34C856624419820B4D3@cernxchg41.cern.ch> Message-ID: <03CEEF4A-1296-4CFB-933A-ED9E29CCE22C@bellsouth.net> just add the .profile path your self. export $PATH=/opt/local/bin:/opt/local/sbin:$PATH the other directories you name will be added when a port that uses them is installed. On Apr 9, 2008, at 5:30 AM, Rasmus Mackeprang wrote: > Hi there > > I am a new mac user (Linux -> Mac). I run OS-X 10.5.2. When > installing macports the promised .profile does not show up in my > home dir. Furthermore, when trying to uninstall as per the > instructions (http://guide.macports.org/#installing.uninstalling), > the locations > > /Applications/MacPorts/ > and > /Library/LaunchDaemons/org.macports.* > > do not exist. > > Naively I would conjecture that the installer fails but claims to > succeed. The machine is brand new with Xcode 3.0 and the two X11 > packages in place. Any suggestions? > > Cheers, > Rasmus Mackeprang > > -- > Research fellow > CERN PH-ADT, CH-1211, Geneve 23, Switzerland > Phone: +41 22 767 07 49 > Mobile: +41 76 242 54 47 > "Do not be tricked into equating unbiased thinking > with uncritical thinking." - L. Kovar > -- > _______________________________________________ > macports-users mailing list > macports-users@lists.macosforge.org > http://lists.macosforge.org/mailman/listinfo/macports-users 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 frstan at bellsouth.net Wed Apr 9 02:47:47 2008 From: frstan at bellsouth.net (William Davis) Date: Wed Apr 9 02:46:08 2008 Subject: Growl update needed Message-ID: an upgrade is available for Growl. For some reason I cant log into Trac to make a ticket. 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 Rasmus.Mackeprang at cern.ch Wed Apr 9 03:50:54 2008 From: Rasmus.Mackeprang at cern.ch (Rasmus Mackeprang) Date: Wed Apr 9 03:49:31 2008 Subject: Installer fails but claim to succeed In-Reply-To: <03CEEF4A-1296-4CFB-933A-ED9E29CCE22C@bellsouth.net> References: <46B384451BBB0A4CB3B34C856624419820B4D3@cernxchg41.cern.ch> <03CEEF4A-1296-4CFB-933A-ED9E29CCE22C@bellsouth.net> Message-ID: OK, thanks. I did think it was an odd error to have in an install script. Cheers, /R :-) On Apr 9, 2008, at 11:46 AM, William Davis wrote: > just add the .profile path your self. > export $PATH=/opt/local/bin:/opt/local/sbin:$PATH > > the other directories you name > will be added when a port that uses them is installed. > > On Apr 9, 2008, at 5:30 AM, Rasmus Mackeprang wrote: > >> Hi there >> >> I am a new mac user (Linux -> Mac). I run OS-X 10.5.2. When >> installing macports the promised .profile does not show up in my >> home dir. Furthermore, when trying to uninstall as per the >> instructions (http://guide.macports.org/#installing.uninstalling), >> the locations >> >> /Applications/MacPorts/ >> and >> /Library/LaunchDaemons/org.macports.* >> >> do not exist. >> >> Naively I would conjecture that the installer fails but claims to >> succeed. The machine is brand new with Xcode 3.0 and the two X11 >> packages in place. Any suggestions? >> >> Cheers, >> Rasmus Mackeprang >> >> -- >> Research fellow >> CERN PH-ADT, CH-1211, Geneve 23, Switzerland >> Phone: +41 22 767 07 49 >> Mobile: +41 76 242 54 47 >> "Do not be tricked into equating unbiased thinking >> with uncritical thinking." - L. Kovar >> -- >> _______________________________________________ >> macports-users mailing list >> macports-users@lists.macosforge.org >> http://lists.macosforge.org/mailman/listinfo/macports-users > > > > 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 From frstan at bellsouth.net Wed Apr 9 07:06:02 2008 From: frstan at bellsouth.net (William Davis) Date: Wed Apr 9 07:04:24 2008 Subject: Installer fails but claim to succeed In-Reply-To: References: <46B384451BBB0A4CB3B34C856624419820B4D3@cernxchg41.cern.ch> <03CEEF4A-1296-4CFB-933A-ED9E29CCE22C@bellsouth.net> Message-ID: On Apr 9, 2008, at 6:50 AM, Rasmus Mackeprang wrote: > OK, thanks. I did think it was an odd error to have in an install > script. > > Cheers, > /R :-) yep, you'd think we could have gotten out a version 1.61 by now. > > On Apr 9, 2008, at 11:46 AM, William Davis wrote: > >> just add the .profile path your self. >> export $PATH=/opt/local/bin:/opt/local/sbin:$PATH >> >> the other directories you name >> will be added when a port that uses them is installed. >> >> On Apr 9, 2008, at 5:30 AM, Rasmus Mackeprang wrote: >> >>> Hi there >>> >>> I am a new mac user (Linux -> Mac). I run OS-X 10.5.2. When >>> installing macports the promised .profile does not show up in my >>> home dir. Furthermore, when trying to uninstall as per the >>> instructions (http://guide.macports.org/#installing.uninstalling), >>> the locations >>> >>> /Applications/MacPorts/ >>> and >>> /Library/LaunchDaemons/org.macports.* >>> >>> do not exist. >>> >>> Naively I would conjecture that the installer fails but claims to >>> succeed. The machine is brand new with Xcode 3.0 and the two X11 >>> packages in place. Any suggestions? >>> >>> Cheers, >>> Rasmus Mackeprang >>> >>> -- >>> Research fellow >>> CERN PH-ADT, CH-1211, Geneve 23, Switzerland >>> Phone: +41 22 767 07 49 >>> Mobile: +41 76 242 54 47 >>> "Do not be tricked into equating unbiased thinking >>> with uncritical thinking." - L. Kovar >>> -- >>> _______________________________________________ >>> macports-users mailing list >>> macports-users@lists.macosforge.org >>> http://lists.macosforge.org/mailman/listinfo/macports-users >> >> >> >> 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 > 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 grimm at grimmwerks.com Wed Apr 9 21:05:05 2008 From: grimm at grimmwerks.com (grimmwerks) Date: Wed Apr 9 21:04:06 2008 Subject: mercurial, leopard, python24 and openssl Message-ID: <24719687-CEF6-428E-8CD7-D124311A9FDE@grimmwerks.com> I've lost my setup because of a bad harddrive and trying to get my macbook back up and running. I _thought_ I installed everything properly but when trying to run mercurial now I get: abort: Python support for SSL and HTTPS is not installed But when I've tried to install py-openssl: Skipping org.macports.activate (py-openssl ) since this port is already active ---> Cleaning py-openssl I _really_ need to get this up and running. Is Mercurial still dependant to python2.4? For more info: The following ports are currently installed: expat @2.0.1_0 (active) gettext @0.17_3 (active) libiconv @1.12_0 (active) mercurial @1.0_0 (active) mysql5 @5.0.51_0+server (active) ncurses @5.6_0 (active) ncursesw @5.6_1 (active) openssl @0.9.8g_0 (active) py-openssl @0.6_2 (active) py25-hashlib @2.5.2_0 (active) py25-zlib @2.5.2_0 (active) python24 @2.4.5_0+darwin_9 (active) python25 @2.5.2_1+darwin_9 rb-mysql @2.7.3_1 (active) readline @5.2.007_0+darwin_9 (active) ruby @1.8.6-p111_1+darwin_9+thread_hooks (active) zlib @1.2.3_1 (active) From grimm at grimmwerks.com Wed Apr 9 21:06:14 2008 From: grimm at grimmwerks.com (grimmwerks) Date: Wed Apr 9 21:04:52 2008 Subject: python mercurial redux Message-ID: <5D2DB9D2-FF84-4B90-BF0B-FD4E41046934@grimmwerks.com> Ah - it turns out I had installed python25 as well. So I deactivated python25 -- but now I get: -bash: /opt/local/bin/hg: /opt/local/bin/python2.5: bad interpreter: No such file or directory Any idea how to fix this? From grimm at grimmwerks.com Wed Apr 9 21:30:51 2008 From: grimm at grimmwerks.com (grimmwerks) Date: Wed Apr 9 21:29:13 2008 Subject: fixed Message-ID: <021E9B9E-AC42-4592-B66B-8BA07500F3FF@grimmwerks.com> Hey - read about Mercurial_Python diff and using Py25 now -- reinstalled it, then py25-socket-ssl -- installed it and it's all good. From randall.h.wood at alexandriasoftware.com Thu Apr 10 02:35:53 2008 From: randall.h.wood at alexandriasoftware.com (Randall Wood) Date: Thu Apr 10 02:34:13 2008 Subject: scrollkeeper and rarian Message-ID: Everyone: Recently, the GNOME developers wrote a replacement for scrollkeeper named rarian. rarian is a drop-in replacement for scrollkeeper with the advantage of continuing active development and support as well as other under-the-hood improvements. Unfortunately, it has caused some problems on MacPorts, in that rarian and scrollkeeper conflict on our system. Here is a workaround: 1) make sure everything is update in the ports tree: sudo port sync 2) determine the state of these ports on your system: port installed rarian scrollkeeper If everything is as it should be, you'll see this: The following ports are currently installed: rarian @0.8.0_0 (active) scrollkeeper @0.3.14_6 or this: The following ports are currently installed: rarian @0.8.0_0 (active) or this: None of the specified ports are installed. 3) If you see anything other than those three statements, copy the following command to a terminal window and run it: sudo port -f uninstall scrollkeeper ; sudo port install rarian ; sudo port activate rarian NOTE: Once rarian is installed and active, scrollkeeper may be safely removed at any time -- 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 stefan.schwarzer at grid.unep.ch Thu Apr 10 05:16:10 2008 From: stefan.schwarzer at grid.unep.ch (Stefan Schwarzer) Date: Thu Apr 10 05:14:31 2008 Subject: Postgis Problems Message-ID: Hi there, anybody having problems with postgis? Installation works fine, but whatever I try to import either shapefiles or dumps, the server either craches or - when using shp2pgsql comes always with the help... Thanks for any help, Stef From paulbeard at gmail.com Thu Apr 10 13:38:26 2008 From: paulbeard at gmail.com (paul beard) Date: Thu Apr 10 13:36:49 2008 Subject: seahorse build issues (I would have used trac, spelled c-r-a-p, but can't get a working password.) Message-ID: /usr/bin/gcc-4.0 -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. -DXTHREADS -I/opt/local/include/nautilus -I/opt/local/include/glib-2.0 -I/opt/local/lib/glib-2.0/include -I/opt/local/include -I/opt/local/include/gtk-2.0 -I/opt/local/lib/gtk-2.0/include -I/opt/local/include/atk-1.0 -I/opt/local/include/cairo -I/opt/local/include/pango-1.0 -I/opt/local/include/freetype2 -I/opt/local/include/libpng12 -I/usr/X11R6/include -DGNOMELOCALEDIR=\"/opt/local/share/locale\" -I/opt/local/include -O2 -MT seahorse-nautilus.lo -MD -MP -MF .deps/seahorse-nautilus.Tpo -c seahorse-nautilus.c -fno-common -DPIC -o .libs/seahorse-nautilus.o seahorse-nautilus.c:27:41: error: libgnomevfs/gnome-vfs-utils.h: No such file or directory seahorse-nautilus.c:28:45: error: libgnomevfs/gnome-vfs-file-info.h: No such file or directory seahorse-nautilus.c:29:39: error: libgnomevfs/gnome-vfs-ops.h: No such file or directory make[3]: *** [seahorse-nautilus.lo] Error 1 make[2]: *** [all-recursive] Error 1 make[1]: *** [all-recursive] Error 1 make: *** [all] Error 2 kitchen:~ root# locate gnome-vfs-file-info.h /opt/local/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-info.h /opt/local/share/gtk-doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-file-info.html /opt/local/var/macports/software/gnome-vfs/2.20.1_1/opt/local/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-info.h /opt/local/var/macports/software/gnome-vfs/2.20.1_1/opt/local/share/gtk-doc/html/gnome-vfs-2.0/gnome-vfs-20-gnome-vfs-file-info.html kitchen:~ root# port provides /opt/local/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-info.h /opt/local/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-file-info.h is provided by: gnome-vfs and I reinstalled gnome-vfs already today to ensure it was all up to date. -- Paul Beard / www.paulbeard.org/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.macosforge.org/pipermail/macports-users/attachments/20080410/c39c9287/attachment.html From kuepper.jochen at googlemail.com Thu Apr 10 23:20:37 2008 From: kuepper.jochen at googlemail.com (=?ISO-8859-1?Q?Jochen_K=FCpper?=) Date: Thu Apr 10 23:18:58 2008 Subject: Compiling hdf5 1.6.7 with gcc43 Message-ID: <7209C220-C330-4F2E-A94D-C06EF8281060@googlemail.com> Skipped content of type multipart/mixed-------------- 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/20080411/9f06585b/PGP.bin From kuepper.jochen at googlemail.com Fri Apr 11 00:22:21 2008 From: kuepper.jochen at googlemail.com (=?ISO-8859-1?Q?Jochen_K=FCpper?=) Date: Fri Apr 11 00:20:37 2008 Subject: Compiling hdf5 1.6.7 with gcc43 In-Reply-To: <5C2076DE-7CF7-4807-8EF6-07950688FB87@mac.com> References: <7209C220-C330-4F2E-A94D-C06EF8281060@googlemail.com> <5C2076DE-7CF7-4807-8EF6-07950688FB87@mac.com> Message-ID: <22A2469E-D6B2-4DDB-B2AB-9E8F64160F5F@googlemail.com> On 11.04.2008, at 09:17, Marcus Calhoun-Lopez wrote: > I believe this was fixed a couple of days ago in MacPorts (http://trac.macports.org/projects/macports/changeset/35904 > ). Yes, that was me;-) However, it should be changed upstream in hdf5 directly. > On Apr 11, 2008, at 12:20 AM, Jochen K?pper wrote: >> To whom it may concern. >> When compiling hdf5-1.6.7 on Mac OS X using gcc-4.3 with C++ >> support an include for cstdlib is missing, see attached patch. >> >> Greetings, >> Jochen >> -- >> Einigkeit und Recht und Freiheit http://www.Jochen-Kuepper.de >> Libert?, ?galit?, Fraternit? GnuPG key: CC1B0B4D >> Sex, drugs and rock-n-roll >> >> Sch?ne Gr??e, Jochen -- A: Yes. > Q: Are you sure? >> A: Because it reverses the logical flow of conversation. >>> Q: Why is top posting frowned upon? -------------- 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/20080411/9c2d5222/PGP.bin From cssdev at mac.com Sat Apr 12 06:15:27 2008 From: cssdev at mac.com (cssdev@mac.com) Date: Sat Apr 12 06:13:40 2008 Subject: building doxygen with wizard variant fails In-Reply-To: <3A3D7607-237F-479B-B933-39D0CD29FC5B@mac.com> References: <4991429C-0F66-40D1-BFF1-13B2D00D6EE2@mac.com> <1692BB0C-F8EE-4303-8A5D-B51B68EADDF9@mac.com> <2A1E32EB-F33E-401B-80BA-16F9E0B207DA@gmail.com> <7C84224A-9F43-4AC0-93A8-430FE94C4075@mac.com> <0F86087B-7F07-444D-B50E-0CE4555FF570@gmail.com> <3A3D7607-237F-479B-B933-39D0CD29FC5B@mac.com> Message-ID: <0233DA29-399C-4E88-9CC2-EE359262EE76@mac.com> > On Apr 8, 2008, at 9:37 PM, Marcus Calhoun-Lopez wrote: >> >> As for fixing the wizardapp, I really am not sure where to begin. >> It has something to do with the Info.plist, but that is where my >> knowledge on the subject ends. The seems to be an upstream mess with doxygen versus iconv-Tiger and iconv-Leopard. The changes Apple made to the iconv header make things a real pain. The current ticket's patch doesn't build on Tiger (all I have access to for now. Hopefully this will get fixed properly upstream, as it's an annoying issue to chase down with each update. I created a patch that builds the command line doxygen on Tiger ... could someone verify that it works for Leopard? I want to commit that before turning attention back to the wizard. Chris From iqgrande at gmail.com Sat Apr 12 11:38:10 2008 From: iqgrande at gmail.com (Anthony Agelastos) Date: Sat Apr 12 11:36:30 2008 Subject: Font Issues with GD2 Message-ID: <3411539A-F1AB-4189-92E4-2086926CAD80@gmail.com> Hello, I was trying to create a PNG file from gnuplot and the following was written to the terminal for all of the text within the plot. Does anyone have any ideas what could be causing this and how to fix it? Thanks. $ gnuplot gnuplot.commands gdImageStringFT: Could not find/open font while printing string 0 with font arial gdImageStringFT: Could not find/open font while printing string 10 with font arial Regards, Anthony MacBook Pro Mac OS X 10.5.2 Xcode 3.0 XQuartz 2.1.4 Latest MacPorts & Ports From lambda at continuation.org Sat Apr 12 15:17:53 2008 From: lambda at continuation.org (Brian Campbell) Date: Sat Apr 12 15:16:00 2008 Subject: MzScheme framework path Message-ID: <77DB7E76-1EB5-486D-9297-9DD94AF1CAF4@continuation.org> I'm trying to use the MzScheme port (I've actually updated the portfile to the latest 372 version, but otherwise left it unchanged), and it builds and installs just fine, but when I try to run it, I get an error about it not being able to find the MzScheme framework: $ mzscheme dyld: Library not loaded: PLT_MzScheme.framework/Versions/372_3m/ PLT_MzScheme Referenced from: /opt/local/bin/mzscheme Reason: image not found Trace/BPT trap If I set the environment variable DYLD_FRAMEWORK_PATH to /opt/local/ Library/Frameworks, then mzscheme works just fine. I'm just wondering if this is the correct way to do this, or if there's something else that should be set up to get this to work properly. If I later run something from the GUI that needs to access the MzScheme framework instead of the command line, this environment variable won't be set; in that case, how do I make sure it looks in /opt/local/Library/ Frameworks? From mllists at arc.co.uk Sun Apr 13 10:00:21 2008 From: mllists at arc.co.uk (Mark Lucas) Date: Sun Apr 13 09:58:27 2008 Subject: PPC Wireshark 1.0 won't display interfaces Message-ID: On a PPC machine running 10.5.2, having done a clean install of MacPorts and then Wireshark 1.0.0_0+darwin_9, Wireshark fails to display any interfaces in the Interfaces dialog or any other preferences dialog . dumpcap -D and wireshark - D from the command line both list all the interfaces. When I try to capture I get a dialog saying ;- Couldn't run /opt/local/share/dumpcap in child process. No such file or directory From sbranzo at gmail.com Sun Apr 13 13:48:17 2008 From: sbranzo at gmail.com (Sbranzo) Date: Sun Apr 13 13:46:25 2008 Subject: PPC Wireshark 1.0 won't display interfaces In-Reply-To: References: Message-ID: <20080413204817.GA3365@sbranzo.camunia> On 13/04/08 18:00, Mark Lucas wrote: > On a PPC machine running 10.5.2, having done a clean install of > MacPorts and then Wireshark 1.0.0_0+darwin_9, Wireshark fails to > display any interfaces in the Interfaces dialog or any other > preferences dialog . > > dumpcap -D and wireshark - D from the command line both list all the interfaces. > > When I try to capture I get a dialog saying ;- > Couldn't run /opt/local/share/dumpcap in child process. No such file or directory Wireshark must be run via sudo to sniff interfaces. Gufo From cczona at gmail.com Sun Apr 13 22:13:00 2008 From: cczona at gmail.com (Carina C. Zona) Date: Sun Apr 13 22:11:02 2008 Subject: malloc error can't allocate region, when installing ruby port Message-ID: <7bf843f90804132213u7d54660ey93665d163046ea1c@mail.gmail.com> I'm having problems during the installation phase of 'port install ruby'. Even after nuking the entire /opt directory and installing/updating a fresh copy of macports, it's still bailing out with a bunch of malloc errors. Googling and the FAQ don't turn up an obvious solution. Any ideas? (OS X 10.5.2, MacPorts 1.600) $ sudo port install ruby ---> Fetching libiconv ---> Attempting to fetch libiconv-1.12.tar.gz from http://ftp.gnu.org/gnu/libiconv ---> Verifying checksum(s) for libiconv ---> Extracting libiconv ---> Applying patches to libiconv ---> Configuring libiconv ---> Building libiconv with target all ---> Staging libiconv into destroot ---> Installing libiconv 1.12_0 ---> Activating libiconv 1.12_0 ---> Cleaning libiconv ---> Fetching ncursesw ---> Attempting to fetch ncurses-5.6.tar.gz from http://ftp.gnu.org/gnu/ncurses ---> Verifying checksum(s) for ncursesw ---> Extracting ncursesw ---> Applying patches to ncursesw ---> Configuring ncursesw ---> Building ncursesw with target all ---> Staging ncursesw into destroot ---> Installing ncursesw 5.6_1 ---> Activating ncursesw 5.6_1 ---> Cleaning ncursesw ---> Fetching ncurses ---> Verifying checksum(s) for ncurses ---> Extracting ncurses ---> Applying patches to ncurses ---> Configuring ncurses ---> Building ncurses with target all ---> Staging ncurses into destroot ---> Installing ncurses 5.6_0 ---> Activating ncurses 5.6_0 ---> Cleaning ncurses ---> Fetching zlib ---> Attempting to fetch zlib-1.2.3.tar.bz2 from http://www.zlib.net/ ---> Verifying checksum(s) for zlib ---> Extracting zlib ---> Applying patches to zlib ---> Configuring zlib ---> Building zlib with target all ---> Staging zlib into destroot ---> Installing zlib 1.2.3_1 ---> Activating zlib 1.2.3_1 ---> Cleaning zlib ---> Fetching openssl ---> Attempting to fetch openssl-0.9.8g.tar.gz from http://www.openssl.org/source/ ---> Verifying checksum(s) for openssl ---> Extracting openssl ---> Applying patches to openssl ---> Configuring openssl ---> Building openssl with target all ---> Staging openssl into destroot ---> Installing openssl 0.9.8g_0 ---> Activating openssl 0.9.8g_0 ---> Cleaning openssl ---> Fetching readline ---> Attempting to fetch readline52-001 from http://ftp.gnu.org/gnu/readline/readline-5.2-patches/ ---> Attempting to fetch readline52-002 from http://ftp.gnu.org/gnu/readline/readline-5.2-patches/ ---> Attempting to fetch readline52-003 from http://ftp.gnu.org/gnu/readline/readline-5.2-patches/ ---> Attempting to fetch readline52-004 from http://ftp.gnu.org/gnu/readline/readline-5.2-patches/ ---> Attempting to fetch readline52-005 from http://ftp.gnu.org/gnu/readline/readline-5.2-patches/ ---> Attempting to fetch readline52-006 from http://ftp.gnu.org/gnu/readline/readline-5.2-patches/ ---> Attempting to fetch readline52-007 from http://ftp.gnu.org/gnu/readline/readline-5.2-patches/ ---> Attempting to fetch readline-5.2.tar.gz from http://ftp.gnu.org/gnu/readline ---> Verifying checksum(s) for readline ---> Extracting readline ---> Applying patches to readline ---> Configuring readline ---> Building readline with target all ---> Staging readline into destroot ---> Installing readline 5.2.007_0+darwin_9 ---> Activating readline 5.2.007_0+darwin_9 ---> Cleaning readline ---> Fetching ruby ---> Attempting to fetch ruby-1.8.6-p111.tar.gz from http://www.ibiblio.org/pub/languages/ruby/1.8 ---> Verifying checksum(s) for ruby ---> Extracting ruby ---> Applying patches to ruby ---> Configuring ruby ---> Building ruby with target all ---> Staging ruby into destroot ---> Installing ruby 1.8.6-p111_1+darwin_9+thread_hooks tclsh(81836,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81837,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81838,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81839,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81840,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81841,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81842,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81843,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81844,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81845,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81846,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81847,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81848,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81849,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81850,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81851,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81852,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81853,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81854,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81855,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81856,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81857,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81858,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81859,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81860,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81861,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81862,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81863,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81864,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81865,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81866,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81867,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81868,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81869,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81870,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81871,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81872,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81873,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81874,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81875,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81876,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81877,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81878,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81879,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(81881,0x80254fa0) malloc: *** mmap(size=65536) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug tclsh(55731,0xa09c3074) malloc: *** mmap(size=16384) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug unable to alloc 4096 bytes Abort trap -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.macosforge.org/pipermail/macports-users/attachments/20080413/b2d61c4b/attachment-0001.html From mllists at arc.co.uk Sun Apr 13 23:29:18 2008 From: mllists at arc.co.uk (Mark Lucas) Date: Sun Apr 13 23:27:33 2008 Subject: PPC Wireshark 1.0 won't display interfaces In-Reply-To: <20080413204817.GA3365@sbranzo.camunia> References: <20080413204817.GA3365@sbranzo.camunia> Message-ID: >On 13/04/08 18:00, Mark Lucas wrote: >> On a PPC machine running 10.5.2, having done a clean install of >> MacPorts and then Wireshark 1.0.0_0+darwin_9, Wireshark fails to >> display any interfaces in the Interfaces dialog or any other >> preferences dialog . >> >> dumpcap -D and wireshark - D from the command line both list all the interfaces. >> >> When I try to capture I get a dialog saying ;- >> Couldn't run /opt/local/share/dumpcap in child process. No such file or directory > >Wireshark must be run via sudo to sniff interfaces. > >Gufo Thanks, yes I know. sudo -b wireshark has always worked for me. I have wireshark 1.0 working on an intel iMac so I'm assuming this is a problem specific to PPC. the point is my PPC version of Wireshark simply does not list any of the available interfaces in any of its config windows. From paulbeard at gmail.com Sun Apr 13 23:33:01 2008 From: paulbeard at gmail.com (paul beard) Date: Sun Apr 13 23:31:06 2008 Subject: ruby malloc errors Message-ID: On Sun, Apr 13, 2008 at 10:11 PM, < macports-users-request@lists.macosforge.org> wrote: > ---> Attempting to fetch ruby-1.8.6-p111.tar.gz from > http://www.ibiblio.org/pub/languages/ruby/1.8 > ---> Verifying checksum(s) for ruby > ---> Extracting ruby > ---> Applying patches to ruby > ---> Configuring ruby > ---> Building ruby with target all > ---> Staging ruby into destroot > ---> Installing ruby 1.8.6-p111_1+darwin_9+thread_hooks > tclsh(81836,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81837,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81838,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81839,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81840,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81841,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81842,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81843,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81844,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81845,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81846,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81847,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81848,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81849,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81850,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81851,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81852,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81853,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81854,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81855,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81856,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81857,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81858,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81859,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81860,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81861,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81862,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81863,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81864,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81865,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81866,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81867,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81868,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81869,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81870,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81871,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81872,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81873,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81874,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81875,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81876,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81877,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81878,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81879,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(81881,0x80254fa0) malloc: *** mmap(size=65536) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > tclsh(55731,0xa09c3074) malloc: *** mmap(size=16384) failed (error > code=12) > *** error: can't allocate region > *** set a breakpoint in malloc_error_break to debug > unable to alloc 4096 bytes > Abort trap How much RAM do you have installed? -- Paul Beard / www.paulbeard.org/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.macosforge.org/pipermail/macports-users/attachments/20080413/68cedfdf/attachment.html From jschnide at umn.edu Mon Apr 14 08:32:13 2008 From: jschnide at umn.edu (Joe Schnide) Date: Mon Apr 14 08:30:21 2008 Subject: gtk-doc issue Message-ID: Hello, Have been getting an error similiar to what is below for over a week when trying to do a port upgrade installed. So I tried my old faithful process of uninstalling macports with the command rm -rf /opt/local /Applications/MacPorts /Library/Tcl/macports1.0 /Library/LaunchDaemons/org.macports.* /Library/StartupItems/DarwinPortsStartup Does macports leave anything enywhere beyond the directories listed above? Besides a specified download directory, are there other places individual ports could be leaving files and/or directories? After removing macports with the command above, macports was installed from the downloadable dmg. Then port -d selfupdate was run and I started with an install of wireshark. The packages required for wireshark were installing fine until py25-hashlib. I did a port clean installed, continued with port install wireshark and py25-hashlib installed fine. The install continued until an error with py25-libxml2, did another port clean installed, ran port install wireshark and py25-libxml2 installed fine. The next failure was gtk-doc. I did a port clean installed, then a port clean --all gtk-doc and then port install wireshark. root# port install wireshark ---> Configuring gtk-doc Error: 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_gnome_gtk-doc/work/gtk-doc-1.10" && ./configure --prefix=/opt/local --with-xml-catalog=/opt/local/etc/xml/catalog " returned error 1 Command output: configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by /usr/bin/g++-4.0... /usr/libexec/gcc/i686-apple-darwin9/4.0.1/ld checking if the linker (/usr/libexec/gcc/i686-apple-darwin9/4.0.1/ld) is GNU ld... no checking whether the /usr/bin/g++-4.0 linker (/usr/libexec/gcc/i686-apple-darwin9/4.0.1/ld) supports shared libraries... yes checking for /usr/bin/g++-4.0 option to produce PIC... -fno-common checking if /usr/bin/g++-4.0 PIC flag -fno-common works... yes checking if /usr/bin/g++-4.0 static flag -static works... no checking if /usr/bin/g++-4.0 supports -c -o file.o... yes checking whether the /usr/bin/g++-4.0 linker (/usr/libexec/gcc/i686-apple-darwin9/4.0.1/ld) supports shared libraries... yes checking dynamic linker characteristics... darwin9.2.2 dyld checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for pkg-config... /opt/local/bin/pkg-config checking pkg-config is at least version 0.19... yes checking for perl... /opt/local/bin/perl checking if Perl version >= 5.6.0... yes checking whether /opt/local/bin/python2.5 version >= 2.3... yes checking for /opt/local/bin/python2.5 version... 2.5 checking for /opt/local/bin/python2.5 platform... darwin checking for /opt/local/bin/python2.5 script directory... ${prefix}/lib/python2.5/site-packages checking for /opt/local/bin/python2.5 extension module directory... ${exec_prefix}/lib/python2.5/site-packages checking for openjade... no checking for jade... no configure: WARNING: Could not find openjade or jade, so SGML is not supported checking for xsltproc... /opt/local/bin/xsltproc checking for XML catalog (/opt/local/etc/xml/catalog)... found checking for xmlcatalog... /opt/local/bin/xmlcatalog checking for DocBook XML DTD V4.1.2 in XML catalog... not found configure: error: could not find DocBook XML DTD V4.1.2 in XML catalog Error: The following dependencies failed to build: gtk2 gtk-doc jpeg pango Xft2 xorg-xproto xorg-util-macros shared-mime-info tiff libpcap Error: Status 1 encountered during processing. I can not get past this error to finish the wireshark install and continue with other port installs. Please let me know if I can provide further information. Any assistance would be appreciated. Thanks Joe -- ------- jschnide@umn.edu From sbranzo at gmail.com Mon Apr 14 08:59:41 2008 From: sbranzo at gmail.com (Sbranzo) Date: Mon Apr 14 08:57:46 2008 Subject: PPC Wireshark 1.0 won't display interfaces In-Reply-To: References: <20080413204817.GA3365@sbranzo.camunia> Message-ID: <20080414155941.GA6475@sbranzo.zucchinia> On 14/04/08 07:29, Mark Lucas wrote: >>Wireshark must be run via sudo to sniff interfaces. > Thanks, yes I know. sudo -b wireshark has always worked for me. I have > wireshark 1.0 working on an intel iMac so I'm assuming this is a > problem specific to PPC. the point is my PPC version of Wireshark > simply does not list any of the available interfaces in any of its > config windows. Sorry for the misunderstanding, BTW I'm using wireshark 1.0 on 10.5.2 PPC without problems, so it's not likely a macports' issue. Gufo From emer at emer.net Mon Apr 14 10:30:45 2008 From: emer at emer.net (Mark Anderson) Date: Mon Apr 14 10:29:58 2008 Subject: gEDA ports Message-ID: <2cf4100f0804141030g7a21bd31sbd49011cfb3acb15@mail.gmail.com> I have some Portfiles that install gEDA(http://geda.seul.org). Before I submit a ticket to add them, I have a question. Should I separate the Portfiles for each component, (e.g. geda-libgeda , geda-gschem) or one big port file that installs the whole thing? (e.g. geda) ?Mark From cczona at gmail.com Mon Apr 14 10:35:00 2008 From: cczona at gmail.com (Carina C. Zona) Date: Mon Apr 14 10:58:22 2008 Subject: ruby malloc errors Message-ID: <7bf843f90804141035m6d108c9esc36cbef45aa4cd57@mail.gmail.com> > > How much RAM do you have installed? 3GB total, 1.4GB free -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.macosforge.org/pipermail/macports-users/attachments/20080414/765d3749/attachment.html From peter at asgalon.net Mon Apr 14 10:45:14 2008 From: peter at asgalon.net (Peter Koellner) Date: Mon Apr 14 11:37:25 2008 Subject: upgrade outdated: strange loop Message-ID: Hi! I started an "upgrade outdated", and am experiencing a very strange behaviour. The process seems to loop around, reinstalling perl5.8.8 and other packages again and again and again. It started with a few compilation and activation problems, so I did a few activate -f underway. I have attached the console output until now. Sometimes it has a +darwin9 variant, other times not. I don't know if this is the cause or an effect of another underlying problem. Any tips how to kick that back into the rails? -- peter koellner -------------- next part -------------- A non-text attachment was scrubbed... Name: upgradeport.log Type: application/octet-stream Size: 214529 bytes Desc: console output until now Url : http://lists.macosforge.org/pipermail/macports-users/attachments/20080414/9773b156/upgradeport-0001.obj From sequethin at gmail.com Mon Apr 14 11:48:23 2008 From: sequethin at gmail.com (Michael Hernandez) Date: Mon Apr 14 12:17:03 2008 Subject: upgrade outdated: strange loop In-Reply-To: References: Message-ID: On Apr 14, 2008, at 1:45 PM, Peter Koellner wrote: > Hi! > > I started an "upgrade outdated", and am experiencing a very strange > behaviour. The process seems to loop around, reinstalling perl5.8.8 > and other packages again and again and again. > It started with a few compilation and activation problems, so I did a > few activate -f underway. > I have attached the console output until now. Sometimes it has a > +darwin9 variant, other times not. I don't know if this is the cause > or an effect of another underlying problem. Any tips how to kick that > back into the rails? > This also happens to me if I "upgrade installed". I think it's the "force" option - seems to tell macports to rebuild every dependency during each iteration which, since everything seems to depend on everything else (generally speaking), can lead to a never ending cycle of "rebuilding this because you told me to rebuild the dependencies via the use of the force option". At least that's the way it appears to me... --Mike H From diem at cs.vu.nl Mon Apr 14 14:18:34 2008 From: diem at cs.vu.nl (Dimitri Hendriks) Date: Mon Apr 14 14:16:37 2008 Subject: xfig fails to build Message-ID: I just reinstalled macports, from the Tiger disk image. This seemed to work fine. However, the first port I want to install fails, see bleow (sorry, mac mail seems not to preserve line breaks). Anyone a clue? diem@jarvis:~<503> sudo port install xfig---> Fetching Xaw3d---> Attempting to fetch Xaw3d-1.5E.tar.gz from ftp://ftp.FreeBSD.org/pub/ FreeBSD/ports/distfiles/---> Verifying checksum(s) for Xaw3d---> Extracting Xaw3d---> Configuring Xaw3d---> Building Xaw3d with target all SHLIBGLOBALSFLAGS=-L/usr/X11R6/lib INCDIR=/opt/local/ include SHLIBDIR=/opt/local/lib USRLIBDIR=/opt/local/libError: Target org.macports.build returned: shell command " cd "/opt/local/var/ macports/build/ _opt_local_var_macports_sources_rsync.macports.org_release_ports_x11_Xaw 3d/work/xc/lib/Xaw3d" && make all SHLIBGLOBALSFLAGS=-L/usr/X11R6/lib INCDIR=/opt/local/include SHLIBDIR=/opt/local/lib USRLIBDIR=/opt/ local/lib " returned error 2Command output: XawIm.c:1549: warning: implicit declaration of function `_XtCountVaList'XawIm.c:1554: warning: implicit declaration of function `_XtVaToArgList'rm -f XawIm.o/usr/bin/cc -c -g -Os -Wall -Wpointer-arith -no-cpp-precomp - fno-common -I. -I/usr/X11R6/include - D__DARWIN__ -DNO_ALLOCA - DCSRG_BASED -dynamic XawIm.cXawIm.c: In function `SetValues':XawIm.c:1093: warning: implicit declaration of function `_XtCopyFromArg'XawIm.c: In function `Initialize':XawIm.c:1334: warning: unused variable `i'XawIm.c: In function `_XawImVASetValues':XawIm.c:1549: warning: implicit declaration of function `_XtCountVaList'XawIm.c:1554: warning: implicit declaration of function `_XtVaToArgList'rm -f XawI18n.o unshared/XawI18n.o/usr/ bin/cc -c -Wall -Wpointer-arith -no-cpp-precomp -fno-common -I. -I/ usr/X11R6/include -D__DARWIN__ - DNO_ALLOCA -DCSRG_BASED -g -Os XawI18n.c -o unshared/ XawI18n.oXawI18n.c: In function `_Xaw_atowc':XawI18n.c:75: warning: implicit declaration of function `mbtowc'rm -f XawI18n.o/usr/bin/cc - c -g -Os -Wall -Wpointer-arith -no-cpp-precomp -fno-common -I. -I/ usr/X11R6/include -D__DARWIN__ - DNO_ALLOCA -DCSRG_BASED -dynamic XawI18n.cXawI18n.c: In function `_Xaw_atowc':XawI18n.c:75: warning: implicit declaration of function `mbtowc'rm -f libXaw3d.7.0.dylib~+ cd .+ /usr/bin/cc -o ./ libXaw3d.7.0.dylib~ -dynamiclib -L/usr/X11R6/lib -install_name /opt/ local/lib/libXaw3d.7.dylib -current_version 7.0 - compatibility_version 7.0 -seg_addr_table_filename /opt/local/lib/ libXaw3d.7.0.dylib AllWidgets.o AsciiSink.o AsciiSrc.o AsciiText.o Box.o Command.o Dialog.o Form.o Grip.o Label.o Layout.o List.o MenuButton.o Paned.o Panner.o Porthole.o Repeater.o Scrollbar.o Simple.o SimpleMenu.o Sme.o SmeBSB.o SmeLine.o SmeThreeD.o StripChart.o Text.o TextSink.o TextSrc.o TextAction.o TextPop.o TextTr.o ThreeD.o Tip.o Toggle.o Tree.o Vendor.o Viewport.o Xaw3dP.o XawInit.o laygram.o laylex.o MultiSrc.o MultiSink.o XawIm.o XawI18n.o -L/opt/local/lib -lXmu -lXt -lSM -lICE -lXext -lX11 -lXt -lSM -lICE - lXpm -lXext -lX11/usr/bin/libtool: for architecture: cputype (16777234) cpusubtype (0) file: -lSystem is not an object file (not allowed in a library)+ rm -f libXaw3d.7.dylib+ ln -s libXaw3d. 7.0.dylib libXaw3d.7.dylib+ truerm -f libXaw3d.7.0.dylibmv -f libXaw3d.7.0.dylib~ libXaw3d.7.0.dylibmv: rename libXaw3d.7.0.dylib~ to libXaw3d.7.0.dylib: No such file or directorymake: *** [libXaw3d. 7.0.dylib] Error 1 Error: The following dependencies failed to build: Xaw3d ghostscript expat fontconfig freetype zlib libiconv jpeg libpngError: Status 1 encountered during processing. From ryandesign at macports.org Mon Apr 14 16:10:12 2008 From: ryandesign at macports.org (Ryan Schmidt) Date: Mon Apr 14 16:08:16 2008 Subject: upgrade outdated: strange loop In-Reply-To: References: Message-ID: On Apr 14, 2008, at 12:45 PM, Peter Koellner wrote: > I started an "upgrade outdated", and am experiencing a very strange > behaviour. The process seems to loop around, reinstalling perl5.8.8 > and other packages again and again and again. > It started with a few compilation and activation problems, so I did a > few activate -f underway. That is what -f does. So you probably never want to use -f with port upgrade. > I have attached the console output until now. Sometimes it has a > +darwin9 variant, other times not. I don't know if this is the cause > or an effect of another underlying problem. Any tips how to kick that > back into the rails? A +darwin_9 variant will appear for ports which want or need some special behavior on Leopard, and will be absent for those that do not. Nothing to worry about. From ryandesign at macports.org Mon Apr 14 16:15:23 2008 From: ryandesign at macports.org (Ryan Schmidt) Date: Mon Apr 14 16:13:28 2008 Subject: upgrade outdated: strange loop In-Reply-To: References: Message-ID: On Apr 14, 2008, at 6:10 PM, Ryan Schmidt wrote: > On Apr 14, 2008, at 12:45 PM, Peter Koellner wrote: > >> I started an "upgrade outdated", and am experiencing a very strange >> behaviour. The process seems to loop around, reinstalling perl5.8.8 >> and other packages again and again and again. >> It started with a few compilation and activation problems, so I did a >> few activate -f underway. > > That is what -f does. So you probably never want to use -f with > port upgrade. Never want to use -f with port upgrade alone, I mean. Using it with the -n (nonrecursive) flag is fine and I do that often. See the bottom of this message for a better way to upgrade outdated ports: http://lists.macosforge.org/pipermail/macports-users/2008-April/ 009840.html From ryandesign at macports.org Mon Apr 14 16:20:59 2008 From: ryandesign at macports.org (Ryan Schmidt) Date: Mon Apr 14 16:19:03 2008 Subject: xfig fails to build In-Reply-To: References: Message-ID: <69EA1CFE-3BC0-4C14-A309-E38805807793@macports.org> On Apr 14, 2008, at 4:18 PM, Dimitri Hendriks wrote: > I just reinstalled macports, from the Tiger disk image. > This seemed to work fine. However, the first port I want > to install fails, see bleow (sorry, mac mail seems not > to preserve line breaks). Anyone a clue? That's really unreadable. The Mac OS X Mail program surely does preserve line breaks, but if it's not working for you, perhaps you can attach your output as file, or better yet, file a bug in the issue tracker and attach your output there. In any case your issue seems to be a problem building Xaw3d, not xfig. Have you installed X11 app from the Tiger disk, and also the X11SDK from the Xcode 2.5 disk image, and also the X11 update 1.1.3 from software update? > diem@jarvis:~<503> sudo port install xfig---> Fetching Xaw3d---> > Attempting to fetch Xaw3d-1.5E.tar.gz from ftp://ftp.FreeBSD.org/ > pub/FreeBSD/ports/distfiles/---> Verifying checksum(s) for Xaw3d--- > > Extracting Xaw3d---> Configuring Xaw3d---> Building Xaw3d with > target all SHLIBGLOBALSFLAGS=-L/usr/X11R6/lib INCDIR=/opt/local/ > include SHLIBDIR=/opt/local/lib USRLIBDIR=/opt/local/libError: > Target org.macports.build returned: shell command " cd "/opt/local/ > var/macports/build/ > _opt_local_var_macports_sources_rsync.macports.org_release_ports_x11_X > aw3d/work/xc/lib/Xaw3d" && make all SHLIBGLOBALSFLAGS=-L/usr/X11R6/ > lib INCDIR=/opt/local/include SHLIBDIR=/opt/local/lib USRLIBDIR=/ > opt/local/lib " returned error 2Command output: XawIm.c:1549: > warning: implicit declaration of function `_XtCountVaList'XawIm.c: > 1554: warning: implicit declaration of function `_XtVaToArgList'rm - > f XawIm.o/usr/bin/cc -c -g -Os -Wall -Wpointer-arith -no-cpp- > precomp -fno-common -I. -I/usr/X11R6/include - > D__DARWIN__ -DNO_ALLOCA - > DCSRG_BASED -dynamic XawIm.cXawIm.c: In function > `SetValues':XawIm.c:1093: warning: implicit declaration of function > `_XtCopyFromArg'XawIm.c: In function `Initialize':XawIm.c:1334: > warning: unused variable `i'XawIm.c: In function > `_XawImVASetValues':XawIm.c:1549: warning: implicit declaration of > function `_XtCountVaList'XawIm.c:1554: warning: implicit > declaration of function `_XtVaToArgList'rm -f XawI18n.o unshared/ > XawI18n.o/usr/bin/cc -c -Wall -Wpointer-arith -no-cpp-precomp -fno- > common -I. -I/usr/X11R6/include - > D__DARWIN__ -DNO_ALLOCA - > DCSRG_BASED -g -Os XawI18n.c -o unshared/ > XawI18n.oXawI18n.c: In function `_Xaw_atowc':XawI18n.c:75: warning: > implicit declaration of function `mbtowc'rm -f XawI18n.o/usr/bin/cc > -c -g -Os -Wall -Wpointer-arith -no-cpp-precomp -fno-common -I. - > I/usr/X11R6/include -D__DARWIN__ > -DNO_ALLOCA -DCSRG_BASED -dynamic XawI18n.cXawI18n.c: In > function `_Xaw_atowc':XawI18n.c:75: warning: implicit declaration > of function `mbtowc'rm -f libXaw3d.7.0.dylib~+ cd .+ /usr/bin/cc - > o ./libXaw3d.7.0.dylib~ -dynamiclib -L/usr/X11R6/lib -install_name / > opt/local/lib/libXaw3d.7.dylib -current_version 7.0 - > compatibility_version 7.0 -seg_addr_table_filename /opt/local/lib/ > libXaw3d.7.0.dylib AllWidgets.o AsciiSink.o AsciiSrc.o AsciiText.o > Box.o Command.o Dialog.o Form.o Grip.o Label.o Layout.o List.o > MenuButton.o Paned.o Panner.o Porthole.o Repeater.o Scrollbar.o > Simple.o SimpleMenu.o Sme.o SmeBSB.o SmeLine.o SmeThreeD.o > StripChart.o Text.o TextSink.o TextSrc.o TextAction.o TextPop.o > TextTr.o ThreeD.o Tip.o Toggle.o Tree.o Vendor.o Viewport.o > Xaw3dP.o XawInit.o laygram.o laylex.o MultiSrc.o MultiSink.o > XawIm.o XawI18n.o -L/opt/local/lib -lXmu -lXt -lSM -lICE -lXext - > lX11 -lXt -lSM -lICE -lXpm -lXext -lX11/usr/bin/libtool: for > architecture: cputype (16777234) cpusubtype (0) file: -lSystem is > not an object file (not allowed in a library)+ rm -f libXaw3d. > 7.dylib+ ln -s libXaw3d.7.0.dylib libXaw3d.7.dylib+ truerm -f > libXaw3d.7.0.dylibmv -f libXaw3d.7.0.dylib~ libXaw3d.7.0.dylibmv: > rename libXaw3d.7.0.dylib~ to libXaw3d.7.0.dylib: No such file or > directorymake: *** [libXaw3d.7.0.dylib] Error 1 > Error: The following dependencies failed to build: Xaw3d > ghostscript expat fontconfig freetype zlib libiconv jpeg > libpngError: Status 1 encountered during processing. From ryandesign at macports.org Mon Apr 14 21:42:51 2008 From: ryandesign at macports.org (Ryan Schmidt) Date: Mon Apr 14 21:40:51 2008 Subject: gEDA ports In-Reply-To: <2cf4100f0804141030g7a21bd31sbd49011cfb3acb15@mail.gmail.com> References: <2cf4100f0804141030g7a21bd31sbd49011cfb3acb15@mail.gmail.com> Message-ID: <73F4BB30-2443-4C64-9D32-C5AB7D750F76@macports.org> On Apr 14, 2008, at 12:30 PM, Mark Anderson wrote: > I have some Portfiles that install gEDA(http://geda.seul.org). Before > I submit a ticket to add them, I have a question. > > Should I separate the Portfiles for each component, (e.g. geda-libgeda > , geda-gschem) or one big port file that installs the whole thing? > (e.g. geda) I'm not familiar with the software, so here's some general guidelines: Reasons to make separate portfiles: - each component comes as its own distfile (like a separate .tar.bz2 file to download for each component) - each component has its own configure / make / make install sequence Reasons to make a single mega-port: - everything comes in a single distfile and is built with a single configure / make / make install invocation (possibly with additional configure flags to build the components) If you go for a single port, then the question is whether to always build each component, or whether to create a variant for all or some components to enable them. Reasons to add variants: - an infrequently-used component has dependencies on additional ports Reasons to skip the variants and just always include a component: - a user of the software would reasonably expect the component to be present - the component has no other dependencies, or only dependencies on one or two small ports which will build quickly From dan.iancu at gmail.com Tue Apr 15 07:53:30 2008 From: dan.iancu at gmail.com (Dan Iancu) Date: Tue Apr 15 07:51:48 2008 Subject: error installing xfig (jpeg) Message-ID: <39AD04E9-A736-457E-BD11-C2DA4677FEB4@gmail.com> Hi all, I am new to mac ports, so this question might be very simple... I have been trying to install xfig on my Intel Mac, and most of the installation goes well, but when trying to fetch 'jpeg', it fails. I have pasted below an attempt to install again (also failing at jpeg...). Could it be that the 'jpeg' package is simply inexistent? Or the servers having it are ALL down? Any help would be highly appreciated. Thanks, -Dan daniancu> sudo port -dv install xfig DEBUG: Found port in file:///opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/graphics/xfig DEBUG: Changing to port directory: /opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/graphics/xfig DEBUG: Requested variant darwin is not provided by port xfig. DEBUG: Requested variant i386 is not provided by port xfig. DEBUG: Requested variant macosx is not provided by port xfig. DEBUG: Found port in file:///opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/x11/Xaw3d DEBUG: Changing to port directory: /opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/x11/Xaw3d DEBUG: Searching for dependency: Xaw3d DEBUG: Found Dependency: receipt exists for Xaw3d DEBUG: Found port in file:///opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/graphics/libpng DEBUG: Changing to port directory: /opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/graphics/libpng DEBUG: Searching for dependency: libpng DEBUG: Found Dependency: receipt exists for libpng DEBUG: Found port in file:///opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/graphics/jpeg DEBUG: Changing to port directory: /opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/graphics/jpeg DEBUG: Searching for dependency: jpeg DEBUG: Didn't find receipt, going to depspec regex for: jpeg DEBUG: Found port in file:///opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/print/ghostscript DEBUG: Changing to port directory: /opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/print/ghostscript DEBUG: Searching for dependency: ghostscript DEBUG: Found Dependency: receipt exists for ghostscript DEBUG: Found port in file:///opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/print/transfig DEBUG: Changing to port directory: /opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/print/transfig DEBUG: Searching for dependency: transfig DEBUG: Didn't find receipt, going to depspec regex for: transfig DEBUG: Found port in file:///opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/graphics/libpng DEBUG: Searching for dependency: libpng DEBUG: Found Dependency: receipt exists for libpng DEBUG: Found port in file:///opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/graphics/netpbm DEBUG: Changing to port directory: /opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/graphics/netpbm DEBUG: Searching for dependency: netpbm DEBUG: Didn't find receipt, going to depspec regex for: netpbm DEBUG: Found port in file:///opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/archivers/zlib DEBUG: Changing to port directory: /opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/archivers/zlib DEBUG: Searching for dependency: zlib DEBUG: Found Dependency: receipt exists for zlib DEBUG: Found port in file:///opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/graphics/jpeg DEBUG: Searching for dependency: jpeg DEBUG: Didn't find receipt, going to depspec regex for: jpeg DEBUG: Found port in file:///opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/graphics/tiff DEBUG: Changing to port directory: /opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/graphics/tiff DEBUG: Searching for dependency: tiff DEBUG: Didn't find receipt, going to depspec regex for: tiff DEBUG: Found port in file:///opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/graphics/libpng DEBUG: Searching for dependency: libpng DEBUG: Found Dependency: receipt exists for libpng DEBUG: Found port in file:///opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/graphics/jasper DEBUG: Changing to port directory: /opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/graphics/jasper DEBUG: Searching for dependency: jasper DEBUG: Didn't find receipt, going to depspec regex for: jasper DEBUG: Found port in file:///opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/graphics/jpeg DEBUG: Searching for dependency: jpeg DEBUG: Didn't find receipt, going to depspec regex for: jpeg DEBUG: Found port in file:///opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/archivers/zlib DEBUG: Searching for dependency: zlib DEBUG: Found Dependency: receipt exists for zlib DEBUG: Found port in file:///opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/graphics/jpeg DEBUG: Searching for dependency: jpeg DEBUG: Didn't find receipt, going to depspec regex for: jpeg DEBUG: Requested variant darwin is not provided by port jpeg. DEBUG: Requested variant i386 is not provided by port jpeg. DEBUG: Requested variant macosx is not provided by port jpeg. DEBUG: Skipping completed com.apple.main (jpeg) ---> Fetching jpeg DEBUG: Executing com.apple.fetch (jpeg) ---> jpegsrc.v6b.tar.gz doesn't seem to exist in /opt/local/var/db/ dports/distfiles/jpeg ---> Attempting to fetch jpegsrc.v6b.tar.gz from http://www.ijg.org/ files DEBUG: Fetching failed:: couldn't connect to server ---> Attempting to fetch jpegsrc.v6b.tar.gz from ftp://ftp.uu.net/ graphics/jpeg DEBUG: Fetching failed:: FTP: login denied ---> Attempting to fetch jpegsrc.v6b.tar.gz from http://distfiles- od.opendarwin.org/jpeg DEBUG: Fetching failed:: couldn't connect to server ---> Attempting to fetch jpegsrc.v6b.tar.gz from http://distfiles- msn.opendarwin.org/jpeg % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 DEBUG: Fetching failed:: HTTP response code said error ---> Attempting to fetch jpegsrc.v6b.tar.gz from http://distfiles- bay13.opendarwin.org/jpeg DEBUG: Fetching failed:: couldn't connect to server ---> Attempting to fetch jpegsrc.v6b.tar.gz from http://distfiles- od.opendarwin.org/ DEBUG: Fetching failed:: couldn't connect to server ---> Attempting to fetch jpegsrc.v6b.tar.gz from http://distfiles- msn.opendarwin.org/ % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 DEBUG: Fetching failed:: HTTP response code said error ---> Attempting to fetch jpegsrc.v6b.tar.gz from http://distfiles- bay13.opendarwin.org/ DEBUG: Fetching failed:: couldn't connect to server Error: Target com.apple.fetch returned: fetch failed Warning: the following items did not execute (for jpeg): com.apple.activate com.apple.fetch com.apple.extract com.apple.checksum com.apple.patch com.apple.configure com.apple.build com.apple.destroot com.apple.install Error: The following dependencies failed to build: jpeg transfig netpbm jasper tiff Error: Status 1 encountered during processing. From ryandesign at macports.org Tue Apr 15 13:55:11 2008 From: ryandesign at macports.org (Ryan Schmidt) Date: Tue Apr 15 13:54:18 2008 Subject: error fetching jpeg (was: Re: error installing xfig (jpeg)) In-Reply-To: <39AD04E9-A736-457E-BD11-C2DA4677FEB4@gmail.com> References: <39AD04E9-A736-457E-BD11-C2DA4677FEB4@gmail.com> Message-ID: On Apr 15, 2008, at 9:53 AM, Dan Iancu wrote: > I am new to mac ports, so this question might be very simple... I > have been trying to install xfig on my Intel Mac, and most of the > installation goes well, but when trying to fetch 'jpeg', it fails. > I have pasted below an attempt to install again (also failing at > jpeg...). Could it be that the 'jpeg' package is simply inexistent? > Or the servers having it are ALL down? Any help would be highly > appreciated. Thanks, > -Dan > > daniancu> sudo port -dv install xfig [snip] > ---> Fetching jpeg > DEBUG: Executing com.apple.fetch (jpeg) > ---> jpegsrc.v6b.tar.gz doesn't seem to exist in /opt/local/var/db/ > dports/distfiles/jpeg > ---> Attempting to fetch jpegsrc.v6b.tar.gz from http:// > www.ijg.org/files > > DEBUG: Fetching failed:: couldn't connect to server www.ijg.org appears to be down. > ---> Attempting to fetch jpegsrc.v6b.tar.gz from ftp://ftp.uu.net/ > graphics/jpeg > > DEBUG: Fetching failed:: FTP: login denied ftp.uu.net works for me. Maybe they had a temporary problem or there were too many users connected. Please try again. > ---> Attempting to fetch jpegsrc.v6b.tar.gz from http://distfiles- > od.opendarwin.org/jpeg > > DEBUG: Fetching failed:: couldn't connect to server > ---> Attempting to fetch jpegsrc.v6b.tar.gz from http://distfiles- > msn.opendarwin.org/jpeg > % Total % Received % Xferd Average Speed Time Time > Time Current > Dload Upload Total Spent > Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- > --:--:-- 0 > DEBUG: Fetching failed:: HTTP response code said error > ---> Attempting to fetch jpegsrc.v6b.tar.gz from http://distfiles- > bay13.opendarwin.org/jpeg > > DEBUG: Fetching failed:: couldn't connect to server > ---> Attempting to fetch jpegsrc.v6b.tar.gz from http://distfiles- > od.opendarwin.org/ > > DEBUG: Fetching failed:: couldn't connect to server > ---> Attempting to fetch jpegsrc.v6b.tar.gz from http://distfiles- > msn.opendarwin.org/ > % Total % Received % Xferd Average Speed Time Time > Time Current > Dload Upload Total Spent > Left Speed > 0 0 0 0 0 0 0 0 --:--:-- --:--:-- > --:--:-- 0 > DEBUG: Fetching failed:: HTTP response code said error > ---> Attempting to fetch jpegsrc.v6b.tar.gz from http://distfiles- > bay13.opendarwin.org/ > > DEBUG: Fetching failed:: couldn't connect to server opendarwin.org no longer exists. The OpenDarwin project shut down a long time ago. Not sure why it's still trying to fetch from there. Is your MacPorts up to date? Please run "sudo port selfupdate" to update it. > Error: Target com.apple.fetch returned: fetch failed > Warning: the following items did not execute (for jpeg): > com.apple.activate com.apple.fetch com.apple.extract > com.apple.checksum com.apple.patch com.apple.configure > com.apple.build com.apple.destroot com.apple.install > Error: The following dependencies failed to build: jpeg transfig > netpbm jasper tiff > Error: Status 1 encountered during processing. As a last resort, MacPorts should have attempted to fetch the files from its own repository, to which the file was added three weeks ago when it was first noticed that www.ijg.org was down: http://trac.macports.org/projects/macports/ticket/14822 The fact that MacPorts did not attempt to fetch from its own repository also suggests that your MacPorts is out of date, which a selfupdate should cure. From hypocrite at lawyer.com Tue Apr 15 16:12:18 2008 From: hypocrite at lawyer.com (Pete Crite) Date: Tue Apr 15 16:10:25 2008 Subject: permission errors with "port upgrade outdated" Message-ID: <86727ABC-69E2-46D5-A25D-D3A7D91AE337@lawyer.com> Hi all, I'm still having trouble installing Gnumeric, due to consistent crashes from python, but I attempted to do a "port upgrade outdated", just in case this would fix it. Now I'm getting a whole bunch of permission errors. e.g. Error: Unable to upgrade port: can't create directory "/opt/local/var/ macports/build/ _opt_local_var_macports_sources_rsync.macports.org_release_ports_devel_d bus": permission denied Error: Unable to upgrade port: can't create directory "/opt/local/var/ macports/build/ _opt_local_var_macports_sources_rsync.macports.org_release_ports_math_ff tw-3": permission denied Probably something very simple? Thanks in advance, Pete. From mp at dpj.sent.com Tue Apr 15 16:29:47 2008 From: mp at dpj.sent.com (Daniel Horwood) Date: Tue Apr 15 16:40:17 2008 Subject: permission errors with "port upgrade outdated" In-Reply-To: <86727ABC-69E2-46D5-A25D-D3A7D91AE337@lawyer.com> References: <86727ABC-69E2-46D5-A25D-D3A7D91AE337@lawyer.com> Message-ID: <0A6BB85F-8BC8-49FD-9080-6EA0FCA65E65@dpj.sent.com> On 16/04/2008, at 7:12 AM, Pete Crite wrote: > Hi all, > > I'm still having trouble installing Gnumeric, due to consistent > crashes from python, but I attempted to do a "port upgrade > outdated", just in case this would fix it. > > Now I'm getting a whole bunch of permission errors. e.g. > Error: Unable to upgrade port: can't create directory "/opt/local/ > var/macports/build/ > _opt_local_var_macports_sources_rsync > .macports.org_release_ports_devel_dbus": permission denied > Error: Unable to upgrade port: can't create directory "/opt/local/ > var/macports/build/ > _opt_local_var_macports_sources_rsync > .macports.org_release_ports_math_fftw-3": permission denied > > Probably something very simple? With nothing better to suggest than the obvious... Did you try "sudo port upgrade outdated" ? Dan From hypocrite at lawyer.com Tue Apr 15 20:32:27 2008 From: hypocrite at lawyer.com (Pete Crite) Date: Tue Apr 15 20:30:26 2008 Subject: permission errors with "port upgrade outdated" In-Reply-To: <0A6BB85F-8BC8-49FD-9080-6EA0FCA65E65@dpj.sent.com> References: <86727ABC-69E2-46D5-A25D-D3A7D91AE337@lawyer.com> <0A6BB85F-8BC8-49FD-9080-6EA0FCA65E65@dpj.sent.com> Message-ID: Ah. Thank you, Dan. I'm a bit of a command-line newbie, unfortunately... I was following the instructions at http://guide.macports.org/ (section 3.1.14), which doesn't mention appending "sudo" at all. Cheers. On 16/04/2008, at 9:29 AM, Daniel Horwood wrote: > > > On 16/04/2008, at 7:12 AM, Pete Crite wrote: >> Hi all, >> >> I'm still having trouble installing Gnumeric, due to consistent >> crashes from python, but I attempted to do a "port upgrade >> outdated", just in case this would fix it. >> >> Now I'm getting a whole bunch of permission errors. e.g. >> Error: Unable to upgrade port: can't create directory "/opt/local/ >> var/macports/build/ >> _opt_local_var_macports_sources_rsync.macports.org_release_ports_deve >> l_dbus": permission denied >> Error: Unable to upgrade port: can't create directory "/opt/local/ >> var/macports/build/ >> _opt_local_var_macports_sources_rsync.macports.org_release_ports_math >> _fftw-3": permission denied >> >> Probably something very simple? > > > With nothing better to suggest than the obvious... > > Did you try "sudo port upgrade outdated" ? > > Dan > -- Lee Yeoh From stefan.schwarzer at grid.unep.ch Tue Apr 15 22:59:52 2008 From: stefan.schwarzer at grid.unep.ch (Stefan Schwarzer) Date: Tue Apr 15 22:57:46 2008 Subject: Postgres to be build with Contrib package Message-ID: <3BECC4E8-BF49-4F62-B538-AFB4F0A63695@grid.unep.ch> Hi there, the contrib packages coming with Postgres are really, really useful. It seems that they have been omitted - which makes it rather complicated if not impossible to install them afterwards. It would be great if anyone could change the port so that it would compile them with it. Thanks a lot, Stef From stefan.schwarzer at grid.unep.ch Tue Apr 15 23:10:54 2008 From: stefan.schwarzer at grid.unep.ch (Stefan Schwarzer) Date: Tue Apr 15 23:08:46 2008 Subject: Postgres to be build with Contrib package In-Reply-To: <3BECC4E8-BF49-4F62-B538-AFB4F0A63695@grid.unep.ch> References: <3BECC4E8-BF49-4F62-B538-AFB4F0A63695@grid.unep.ch> Message-ID: <69EEEBCF-A855-4FC3-BC8B-360A4984E9D3@grid.unep.ch> > the contrib packages coming with Postgres are really, really useful. > It seems that they have been omitted - which makes it rather > complicated if not impossible to install them afterwards. It would > be great if anyone could change the port so that it would compile > them with it. Saw, that something has been filed unter Ticket #14880. Added my "wish"... From stefan.schwarzer at grid.unep.ch Tue Apr 15 23:59:40 2008 From: stefan.schwarzer at grid.unep.ch (Stefan Schwarzer) Date: Tue Apr 15 23:57:30 2008 Subject: Postgres to be build with Contrib package In-Reply-To: <69EEEBCF-A855-4FC3-BC8B-360A4984E9D3@grid.unep.ch> References: <3BECC4E8-BF49-4F62-B538-AFB4F0A63695@grid.unep.ch> <69EEEBCF-A855-4FC3-BC8B-360A4984E9D3@grid.unep.ch> Message-ID: >> the contrib packages coming with Postgres are really, really >> useful. It seems that they have been omitted - which makes it >> rather complicated if not impossible to install them afterwards. It >> would be great if anyone could change the port so that it would >> compile them with it. > > Saw, that something has been filed unter Ticket #14880. Added my > "wish"... If, for the time being, I want to use a part of the contrib which hasn't been included in the Portfile yet, do I just have to add it like this? /opt/local/var/macports/sources/rsync.macports.org/release/ports/ databases/postgresql83/Portfile set contribs "adminpack tablefunc dblink fuzzystrmatch lo uuid-ossp pg_buffercache pg_trgm tsearch2 vacuumlo xml2" From ajmas at sympatico.ca Wed Apr 16 07:22:09 2008 From: ajmas at sympatico.ca (Andre-John Mas) Date: Wed Apr 16 07:20:01 2008 Subject: Request: mod_dnssd Message-ID: <2F4FF81B-901B-4C4D-8B33-92F741A20F22@sympatico.ca> Hi, I would be interested in having this added to MacPorts: http://0pointer.de/lennart/projects/mod_dnssd/ Andre From ryandesign at macports.org Wed Apr 16 08:47:16 2008 From: ryandesign at macports.org (Ryan Schmidt) Date: Wed Apr 16 08:45:12 2008 Subject: Request: mod_dnssd In-Reply-To: <2F4FF81B-901B-4C4D-8B33-92F741A20F22@sympatico.ca> References: <2F4FF81B-901B-4C4D-8B33-92F741A20F22@sympatico.ca> Message-ID: <8DB3FD18-37F7-4AAD-8AB5-16314F2DF84E@macports.org> On Apr 16, 2008, at 9:22 AM, Andre-John Mas wrote: > Hi, > > I would be interested in having this added to MacPorts: > > http://0pointer.de/lennart/projects/mod_dnssd/ Then you should file a port request ticket in the issue tracker, and ideally, write the port and attach it to the ticket. For instructions, see the guide: http://guide.macports.org/ From paul at hammant.org Wed Apr 16 13:29:02 2008 From: paul at hammant.org (Paul Hammant) Date: Wed Apr 16 13:26:52 2008 Subject: gdk-x11-2.0 - needed for building SeaMonkey. Message-ID: <49DE45CB-CDA2-4FCF-9FB0-C8C35EA6B48E@hammant.org> I've installed a few deps for Mozilla-SeaMonkey using MacPorts, but I don't know what the package name for gdk-x11 is . Advice would be appreciated - sudo port install ??? Thanks, - Paul > checking for gtk+-2.0 >= 2.10.0 gtk+-unix-print-2.0 gdk-x11-2.0 > glib-2.0 gobject-2.0... Package gdk-x11-2.0 was not found in the pkg- > config search path. Perhaps you should add the directory containing > `gdk-x11-2.0.pc' to the PKG_CONFIG_PATH environment variable No > package 'gdk-x11-2.0' found > configure: error: Library requirements (gtk+-2.0 >= 2.10.0 gtk+-unix- > print-2.0 gdk-x11-2.0 glib-2.0 gobject-2.0) not met; consider > adjusting the PKG_CONFIG_PATH environment variable if your libraries > are in a nonstandard prefix so pkg-config can find them. From ryandesign at macports.org Wed Apr 16 13:45:41 2008 From: ryandesign at macports.org (Ryan Schmidt) Date: Wed Apr 16 13:43:37 2008 Subject: gdk-x11-2.0 - needed for building SeaMonkey. In-Reply-To: <49DE45CB-CDA2-4FCF-9FB0-C8C35EA6B48E@hammant.org> References: <49DE45CB-CDA2-4FCF-9FB0-C8C35EA6B48E@hammant.org> Message-ID: It's in the gtk2 port. $ port contents gtk2 | grep gdk-x11 /opt/local/lib/libgdk-x11-2.0.0.1200.9.dylib /opt/local/lib/libgdk-x11-2.0.0.dylib /opt/local/lib/libgdk-x11-2.0.dylib /opt/local/lib/libgdk-x11-2.0.la /opt/local/lib/pkgconfig/gdk-x11-2.0.pc $ The seamonkey port does list the gtk2 port as a dependency, so I wouldn't expect you to have to go installing dependencies manually. Just install the seamonkey port and it should pull in all it needs. On Apr 16, 2008, at 3:29 PM, Paul Hammant wrote: > I've installed a few deps for Mozilla-SeaMonkey using MacPorts, but > I don't know what the package name for gdk-x11 is . Advice would > be appreciated - > > sudo port install ??? > > Thanks, > > - Paul > > >> checking for gtk+-2.0 >= 2.10.0 gtk+-unix-print-2.0 gdk-x11-2.0 >> glib-2.0 gobject-2.0... Package gdk-x11-2.0 was not found in the >> pkg-config search path. Perhaps you should add the directory >> containing `gdk-x11-2.0.pc' to the PKG_CONFIG_PATH environment >> variable No package 'gdk-x11-2.0' found >> configure: error: Library requirements (gtk+-2.0 >= 2.10.0 gtk+- >> unix-print-2.0 gdk-x11-2.0 glib-2.0 gobject-2.0) not met; consider >> adjusting the PKG_CONFIG_PATH environment variable if your >> libraries are in a nonstandard prefix so pkg-config can find them. > From paul at hammant.org Wed Apr 16 13:52:08 2008 From: paul at hammant.org (Paul Hammant) Date: Wed Apr 16 13:49:57 2008 Subject: gdk-x11-2.0 - needed for building SeaMonkey. In-Reply-To: References: <49DE45CB-CDA2-4FCF-9FB0-C8C35EA6B48E@hammant.org> Message-ID: <6A590E60-33C0-4842-BA37-985A47B89A71@hammant.org> Ryan, We'll I'm trying to get up to speed with SeaMonkey from Mozilla's CVS repos - I've some 10 or so mods to make to it before building, and might try donating the patches back - thus I'm unlikely to use the port for seamonkey (not that I knew it existed). I already did an install of "gtk2 +quartz +x11", but my local contents shows nothing. Well nothing that matches that grep expression. - Paul On Apr 16, 2008, at 1:45 PM, Ryan Schmidt wrote: > It's in the gtk2 port. > > > $ port contents gtk2 | grep gdk-x11 > /opt/local/lib/libgdk-x11-2.0.0.1200.9.dylib > /opt/local/lib/libgdk-x11-2.0.0.dylib > /opt/local/lib/libgdk-x11-2.0.dylib > /opt/local/lib/libgdk-x11-2.0.la > /opt/local/lib/pkgconfig/gdk-x11-2.0.pc > $ > > > The seamonkey port does list the gtk2 port as a dependency, so I > wouldn't expect you to have to go installing dependencies manually. > Just install the seamonkey port and it should pull in all it needs. > > > On Apr 16, 2008, at 3:29 PM, Paul Hammant wrote: > >> I've installed a few deps for Mozilla-SeaMonkey using MacPorts, but >> I don't know what the package name for gdk-x11 is . Advice would >> be appreciated - >> >> sudo port install ??? >> >> Thanks, >> >> - Paul >> >> >>> checking for gtk+-2.0 >= 2.10.0 gtk+-unix-print-2.0 gdk-x11-2.0 >>> glib-2.0 gobject-2.0... Package gdk-x11-2.0 was not found in the >>> pkg-config search path. Perhaps you should add the directory >>> containing `gdk-x11-2.0.pc' to the PKG_CONFIG_PATH environment >>> variable No package 'gdk-x11-2.0' found >>> configure: error: Library requirements (gtk+-2.0 >= 2.10.0 gtk+- >>> unix-print-2.0 gdk-x11-2.0 glib-2.0 gobject-2.0) not met; consider >>> adjusting the PKG_CONFIG_PATH environment variable if your >>> libraries are in a nonstandard prefix so pkg-config can find them. >> > > > > > From mllists at arc.co.uk Wed Apr 16 14:06:59 2008 From: mllists at arc.co.uk (Mark Lucas) Date: Wed Apr 16 14:04:57 2008 Subject: PPC Wireshark 1.0 won't display interfaces - fixed In-Reply-To: <20080414155941.GA6475@sbranzo.zucchinia> References: <20080413204817.GA3365@sbranzo.camunia> <20080414155941.GA6475@sbranzo.zucchinia> Message-ID: >On 14/04/08 07:29, Mark Lucas wrote: >>>Wireshark must be run via sudo to sniff interfaces. > >> Thanks, yes I know. sudo -b wireshark has always worked for me. I have >> wireshark 1.0 working on an intel iMac so I'm assuming this is a >> problem specific to PPC. the point is my PPC version of Wireshark >> simply does not list any of the available interfaces in any of its >> config windows. > >Sorry for the misunderstanding, BTW I'm using wireshark 1.0 on 10.5.2 PPC >without problems, so it's not likely a macports' issue. > >Gufo it appears that Wireshark is looking for dumpcap in the wrong location. On my machine it has been installed by Wireshark/macports in /opt/local/bin/, Wireshark expects it in /opt/local/share/. I assume this is a Wireshark bug. creating a symbolic link /opt/local/share/dumpcap to /opt/local/bin/dumpcap fixed the problem. From paulbeard at gmail.com Wed Apr 16 14:13:34 2008 From: paulbeard at gmail.com (paul beard) Date: Wed Apr 16 14:11:23 2008 Subject: ruby malloc errors Message-ID: On Mon, Apr 14, 2008 at 11:38 AM, < macports-users-request@lists.macosforge.org> wrote: > > Message: 2 > Date: Mon, 14 Apr 2008 10:35:00 -0700 > From: "Carina C. Zona" > Subject: Re: ruby malloc errors > To: macports-users@lists.macosforge.org > Message-ID: > <7bf843f90804141035m6d108c9esc36cbef45aa4cd57@mail.gmail.com> > Content-Type: text/plain; charset="iso-8859-1" > > > > > How much RAM do you have installed? > > > 3GB total, 1.4GB free > Hmm, that seems adequate ;-) I had this problem on another system and it was due to the ruby-docs taking a lot of RAM to build. Once I commented or configured that out, all was well. Maybe comment out install-doc and see if that makes a difference? 50 destroot.target install install-doc -- Paul Beard / www.paulbeard.org/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.macosforge.org/pipermail/macports-users/attachments/20080416/2cfc491a/attachment.html From ryandesign at macports.org Wed Apr 16 14:18:48 2008 From: ryandesign at macports.org (Ryan Schmidt) Date: Wed Apr 16 14:16:40 2008 Subject: gdk-x11-2.0 - needed for building SeaMonkey. In-Reply-To: <6A590E60-33C0-4842-BA37-985A47B89A71@hammant.org> References: <49DE45CB-CDA2-4FCF-9FB0-C8C35EA6B48E@hammant.org> <6A590E60-33C0-4842-BA37-985A47B89A71@hammant.org> Message-ID: <93F89ECA-96AC-465F-82EE-BA95E7F9ACBE@macports.org> On Apr 16, 2008, at 3:52 PM, Paul Hammant wrote: > Ryan, > > We'll I'm trying to get up to speed with SeaMonkey from Mozilla's > CVS repos - I've some 10 or so mods to make to it before building, > and might try donating the patches back - thus I'm unlikely to use > the port for seamonkey (not that I knew it existed). > > I already did an install of "gtk2 +quartz +x11", but my local > contents shows nothing. Well nothing that matches that grep > expression. I did not specify any variants, so I got "gtk2 +x11" and it does include those components. The +quartz and +x11 variants conflict with one another so if your ports tree is up to date (try "sudo port selfupdate") then it should not have been possible to select both of those variants at the same time. > - Paul > > > On Apr 16, 2008, at 1:45 PM, Ryan Schmidt wrote: > >> It's in the gtk2 port. >> >> >> $ port contents gtk2 | grep gdk-x11 >> /opt/local/lib/libgdk-x11-2.0.0.1200.9.dylib >> /opt/local/lib/libgdk-x11-2.0.0.dylib >> /opt/local/lib/libgdk-x11-2.0.dylib >> /opt/local/lib/libgdk-x11-2.0.la >> /opt/local/lib/pkgconfig/gdk-x11-2.0.pc >> $ >> >> >> The seamonkey port does list the gtk2 port as a dependency, so I >> wouldn't expect you to have to go installing dependencies >> manually. Just install the seamonkey port and it should pull in >> all it needs. >> >> >> On Apr 16, 2008, at 3:29 PM, Paul Hammant wrote: >> >>> I've installed a few deps for Mozilla-SeaMonkey using MacPorts, >>> but I don't know what the package name for gdk-x11 is . Advice >>> would be appreciated - >>> >>> sudo port install ??? >>> >>> Thanks, >>> >>> - Paul >>> >>> >>>> checking for gtk+-2.0 >= 2.10.0 gtk+-unix-print-2.0 gdk-x11-2.0 >>>> glib-2.0 gobject-2.0... Package gdk-x11-2.0 was not found in the >>>> pkg-config search path. Perhaps you should add the directory >>>> containing `gdk-x11-2.0.pc' to the PKG_CONFIG_PATH environment >>>> variable No package 'gdk-x11-2.0' found >>>> configure: error: Library requirements (gtk+-2.0 >= 2.10.0 gtk+- >>>> unix-print-2.0 gdk-x11-2.0 glib-2.0 gobject-2.0) not met; >>>> consider adjusting the PKG_CONFIG_PATH environment variable if >>>> your libraries are in a nonstandard prefix so pkg-config can >>>> find them. From tek.katu at gmail.com Wed Apr 16 14:33:31 2008 From: tek.katu at gmail.com (T K) Date: Wed Apr 16 14:31:19 2008 Subject: Error in installing sqlite3 Message-ID: <5c17ebdc0804161433w46da7922ud50e6bd27d883e4a@mail.gmail.com> Hi, I get an error when I try to install sqlite3. Below is the log. I'm running MacPorts 1.600 on Leopard 10.5.2 sudo port install sqlite3 ---> Building sqlite3 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_databases_sqlite3/work/sqlite-3.5.7" && gnumake all " returned error 2 Command output: ./sqlite3.c:73730: error: 'TK_GE' undeclared (first use in this function) ./sqlite3.c:73733: error: 'TK_RSHIFT' undeclared (first use in this function) ./sqlite3.c:73736: error: 'TK_GT' undeclared (first use in this function) ./sqlite3.c:73742: error: 'TK_ILLEGAL' undeclared (first use in this function) ./sqlite3.c:73751: error: 'TK_BITOR' undeclared (first use in this function) ./sqlite3.c:73754: error: 'TK_CONCAT' undeclared (first use in this function) ./sqlite3.c:73759: error: 'TK_COMMA' undeclared (first use in this function) ./sqlite3.c:73763: error: 'TK_BITAND' undeclared (first use in this function) ./sqlite3.c:73767: error: 'TK_BITNOT' undeclared (first use in this function) ./sqlite3.c:73784: error: 'TK_STRING' undeclared (first use in this function) ./sqlite3.c:73796: error: 'TK_DOT' undeclared (first use in this function) ./sqlite3.c:73804: error: 'TK_INTEGER' undeclared (first use in this function) ./sqlite3.c:73810: error: 'TK_FLOAT' undeclared (first use in this function) ./sqlite3.c:73830: error: 'TK_ID' undeclared (first use in this function) ./sqlite3.c:73830: warning: assignment makes integer from pointer without a cast ./sqlite3.c:73834: error: 'TK_VARIABLE' undeclared (first use in this function) ./sqlite3.c:73843: error: 'TK_REGISTER' undeclared (first use in this function) ./sqlite3.c:73883: error: 'TK_BLOB' undeclared (first use in this function) ./sqlite3.c: In function 'sqlite3RunParser': ./sqlite3.c:73956: error: 'TK_SPACE' undeclared (first use in this function) ./sqlite3.c:73956: warning: case label value exceeds maximum value for type ./sqlite3.c:73957: error: 'TK_COMMENT' undeclared (first use in this function) ./sqlite3.c:73957: warning: case label value exceeds maximum value for type ./sqlite3.c:73965: error: 'TK_ILLEGAL' undeclared (first use in this function) ./sqlite3.c:73965: warning: case label value exceeds maximum value for type ./sqlite3.c:73974: error: 'TK_SEMI' undeclared (first use in this function) ./sqlite3.c:73974: warning: case label value exceeds maximum value for type ./sqlite3.c:73990: warning: comparison between pointer and integer ./sqlite3.c:73991: warning: passing argument 2 of 'sqlite3Parser' makes integer from pointer without a cast gnumake: *** [sqlite3.lo] Error 1 Error: Status 1 encountered during processing. From wsiegrist at apple.com Wed Apr 16 14:37:47 2008 From: wsiegrist at apple.com (William Siegrist) Date: Wed Apr 16 14:37:18 2008 Subject: Error in installing sqlite3 In-Reply-To: <5c17ebdc0804161433w46da7922ud50e6bd27d883e4a@mail.gmail.com> References: <5c17ebdc0804161433w46da7922ud50e6bd27d883e4a@mail.gmail.com> Message-ID: <1FFB8E69-3BC3-4DCA-8257-B51F391A7F03@apple.com> http://trac.macosforge.org/projects/macports/ticket/14845 On Apr 16, 2008, at 2:33 PM, T K wrote: > Hi, > > > I get an error when I try to install sqlite3. > > Below is the log. I'm running MacPorts 1.600 on Leopard 10.5.2 > > > sudo port install sqlite3 > ---> Building sqlite3 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_databases_sqlite3/work/sqlite-3.5.7" > && gnumake all " returned error 2 > Command output: ./sqlite3.c:73730: error: 'TK_GE' undeclared (first > use in this function) > ./sqlite3.c:73733: error: 'TK_RSHIFT' undeclared (first use in this > function) > ./sqlite3.c:73736: error: 'TK_GT' undeclared (first use in this > function) > ./sqlite3.c:73742: error: 'TK_ILLEGAL' undeclared (first use in this > function) > ./sqlite3.c:73751: error: 'TK_BITOR' undeclared (first use in this > function) > ./sqlite3.c:73754: error: 'TK_CONCAT' undeclared (first use in this > function) > ./sqlite3.c:73759: error: 'TK_COMMA' undeclared (first use in this > function) > ./sqlite3.c:73763: error: 'TK_BITAND' undeclared (first use in this > function) > ./sqlite3.c:73767: error: 'TK_BITNOT' undeclared (first use in this > function) > ./sqlite3.c:73784: error: 'TK_STRING' undeclared (first use in this > function) > ./sqlite3.c:73796: error: 'TK_DOT' undeclared (first use in this > function) > ./sqlite3.c:73804: error: 'TK_INTEGER' undeclared (first use in this > function) > ./sqlite3.c:73810: error: 'TK_FLOAT' undeclared (first use in this > function) > ./sqlite3.c:73830: error: 'TK_ID' undeclared (first use in this > function) > ./sqlite3.c:73830: warning: assignment makes integer from pointer > without a cast > ./sqlite3.c:73834: error: 'TK_VARIABLE' undeclared (first use in > this function) > ./sqlite3.c:73843: error: 'TK_REGISTER' undeclared (first use in > this function) > ./sqlite3.c:73883: error: 'TK_BLOB' undeclared (first use in this > function) > ./sqlite3.c: In function 'sqlite3RunParser': > ./sqlite3.c:73956: error: 'TK_SPACE' undeclared (first use in this > function) > ./sqlite3.c:73956: warning: case label value exceeds maximum value > for type > ./sqlite3.c:73957: error: 'TK_COMMENT' undeclared (first use in this > function) > ./sqlite3.c:73957: warning: case label value exceeds maximum value > for type > ./sqlite3.c:73965: error: 'TK_ILLEGAL' undeclared (first use in this > function) > ./sqlite3.c:73965: warning: case label value exceeds maximum value > for type > ./sqlite3.c:73974: error: 'TK_SEMI' undeclared (first use in this > function) > ./sqlite3.c:73974: warning: case label value exceeds maximum value > for type > ./sqlite3.c:73990: warning: comparison between pointer and integer > ./sqlite3.c:73991: warning: passing argument 2 of 'sqlite3Parser' > makes integer from pointer without a cast > gnumake: *** [sqlite3.lo] Error 1 > > Error: Status 1 encountered during processing. > _______________________________________________ > macports-users mailing list > macports-users@lists.macosforge.org > http://lists.macosforge.org/mailman/listinfo/macports-users ---- William Siegrist Mac OS Forge http://macosforge.org/ -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 2421 bytes Desc: not available Url : http://lists.macosforge.org/pipermail/macports-users/attachments/20080416/a3fcf302/smime-0001.bin From paul at hammant.org Wed Apr 16 20:45:58 2008 From: paul at hammant.org (Paul Hammant) Date: Wed Apr 16 20:43:49 2008 Subject: gdk-x11-2.0 - needed for building SeaMonkey. In-Reply-To: <93F89ECA-96AC-465F-82EE-BA95E7F9ACBE@macports.org> References: <49DE45CB-CDA2-4FCF-9FB0-C8C35EA6B48E@hammant.org> <6A590E60-33C0-4842-BA37-985A47B89A71@hammant.org> <93F89ECA-96AC-465F-82EE-BA95E7F9ACBE@macports.org> Message-ID: <5B9F95CE-C498-41C5-8E95-F88271116D16@hammant.org> Ryan, Thanks - that got me thru that (reinstalling gtk2), but now I'm in a world of pain with non buildable leopard/seamonkey things. bad #includes, bad #ifdefs. Both of which I can hack source for. But then .... /System/Library/Frameworks/CoreServices.framework/Frameworks/ CarbonCore.framework/Headers/MachineExceptions.h:255: error: declaration does not declare anything /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ QD.framework/Headers/QuickdrawTypes.h:264: error: using typedef-name ?Cursor? after ?struct? /usr/X11/include/X11/X.h:108: error: ?Cursor? has a previous declaration here /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ QD.framework/Headers/QuickdrawTypes.h:269: error: using typedef-name ?Cursor? after ?struct? /usr/X11/include/X11/X.h:108: error: ?Cursor? has a previous declaration here /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ QD.framework/Headers/QuickdrawTypes.h:269: error: invalid type in declaration before ?;? token /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ QD.framework/Headers/QuickdrawTypes.h:269: error: conflicting declaration ?typedef int Cursor? /usr/X11/include/X11/X.h:108: error: ?Cursor? has a previous declaration as ?typedef XID Cursor? /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ QD.framework/Headers/QuickdrawTypes.h:296: error: using typedef-name ?Picture? after ?struct? /usr/X11/include/X11/extensions/render.h:31: error: ?Picture? has a previous declaration here /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ QD.framework/Headers/QuickdrawTypes.h:300: error: using typedef-name ?Picture? after ?struct? /usr/X11/include/X11/extensions/render.h:31: error: ?Picture? has a previous declaration here /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ QD.framework/Headers/QuickdrawTypes.h:300: error: invalid type in declaration before ?;? token /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ QD.framework/Headers/QuickdrawTypes.h:300: error: conflicting declaration ?typedef int Picture? /usr/X11/include/X11/extensions/render.h:31: error: ?Picture? has a previous declaration as ?typedef long unsigned int Picture? ... which makes me think that this works on Tiger but not Seamonkey from Mozilla repo sources. I'll try the macport for seamonkey :) - Paul > > I did not specify any variants, so I got "gtk2 +x11" and it does > include those components. > > The +quartz and +x11 variants conflict with one another so if your > ports tree is up to date (try "sudo port selfupdate") then it should > not have been possible to select both of those variants at the same > time. > From BrunosJunk at Bronosky.com Wed Apr 16 22:01:10 2008 From: BrunosJunk at Bronosky.com (Richard Bronosky) Date: Wed Apr 16 21:58:58 2008 Subject: mysql5 version Zawodny's patch adding cd and ls commands to the mysql client In-Reply-To: References: Message-ID: Well, it's been 5 months and no one has commented on this. I guess I should assume that no one has used it, because when I tried to follow these instructions on my new system I found a few flaws. I'm going to document it here just to be thorough for when I need to do this again. Most importantly the patch didn't survive the email very well and there are a few white space issues that are breaking the patch command. I was able to read the patch from this email and make the changes by hand. I then created a new patch file http://bronosky.com/pub/patch-client-mysql.cc.diff and have attached it. Also, step 4 should state: Use your favorite editor (like vim) to open the file Portfile in that directory. If the line... patchfiles \ ...exists, add a new line after it like so... patch-client-mysql.cc.diff \ ... otherwise add both lines after On Wed, Oct 3, 2007 at 4:03 PM, Richard Bronosky wrote: > > I'd started with his original from > http://jeremy.zawodny.com/blog/archives/002230.html and updated it to > work with the 5.0.45 source. I have included the result at the end of > this email. Here is how you can use it: > 1. sudo port fetch mysql5 > 2. put the contents of the patch below into a new file called - > /opt/local/var/macports/sources/rsync.macports.org/release/ports/databases/mysql5/files/patch-client-mysql.cc.diff > 3. cd /opt/local/var/macports/sources/rsync.macports.org/release/ports/databases/mysql5 > 4. after the "patchfiles \" line add a line with: " > patch-client-mysql.cc.diff \" > 5. sudo port patch > 6. sudo port build > 7. sudo port install > > The patch demonstrates how easy it is to add your own custom commands. > You really could go crazy tweaking your mysql client. > > Enjoy! > > -- > .!# RichardBronosky #!. > > --- client/mysql.cc.orig 2007-07-04 09:06:09.000000000 -0400 > +++ client/mysql.cc 2007-10-01 17:23:50.000000000 -0400 > @@ -200,6 +200,7 @@ > com_rehash(String *str, char*), com_tee(String *str, char*), > com_notee(String *str, char*), com_charset(String *str,char*), > com_prompt(String *str, char*), com_delimiter(String *str, char*), > + com_ls(String *str, char*), > com_warnings(String *str, char*), com_nowarnings(String *str, char*); > > #ifdef USE_POPEN > @@ -238,6 +239,7 @@ > > static COMMANDS commands[] = { > { "?", '?', com_help, 1, "Synonym for `help'." }, > + { "cd", 'C', com_use, 1, "Synonym for `use'." }, > { "clear", 'c', com_clear, 0, "Clear command."}, > { "connect",'r', com_connect,1, > "Reconnect to the server. Optional arguments are db and host." }, > @@ -250,6 +252,7 @@ > "Send command to mysql server, display result vertically."}, > { "exit", 'q', com_quit, 0, "Exit mysql. Same as quit."}, > { "go", 'g', com_go, 0, "Send command to mysql server." }, > + { "ls", 'l', com_ls, 0, "List databases or tables." }, > { "help", 'h', com_help, 1, "Display this help." }, > #ifdef USE_POPEN > { "nopager",'n', com_nopager,0, "Disable pager, print to stdout." }, > @@ -2251,6 +2254,25 @@ > return; > } > > +static int > +com_ls(String *buffer __attribute__((unused)), char *line) > +{ > + > + if (!connected && reconnect()) > + return status.batch ? 1 : -1; > + > + if (!current_db) > + { > + buffer->set_ascii("SHOW DATABASES", 14); > + com_go(buffer, 0); > + } > + else > + { > + buffer->set_ascii("SHOW TABLES", 11); > + com_go(buffer, 0); > + } > + return 0; > +} > > static int > com_ego(String *buffer,char *line) > -- .!# RichardBronosky #!. -------------- next part -------------- A non-text attachment was scrubbed... Name: patch-client-mysql.cc.diff Type: application/octet-stream Size: 1696 bytes Desc: not available Url : http://lists.macosforge.org/pipermail/macports-users/attachments/20080417/b620fdb3/patch-client-mysql.cc.obj From ryandesign at macports.org Wed Apr 16 23:41:41 2008 From: ryandesign at macports.org (Ryan Schmidt) Date: Wed Apr 16 23:39:31 2008 Subject: /opt/local/www vs. /opt/local/apache2/htdocs In-Reply-To: References: Message-ID: On Apr 9, 2008, at 12:43 AM, Stephan Jaeger wrote: > I just installed apache2 and phpmyadmin, and was wondering why I > couldn't get phpmyadmin up and running. > > Then I realised that phpmyadmin was installed into /opt/local/www, > whereas the DocumentRoot in apache2 was defined as /opt/local/ > apache2/htdocs. > > No problem to adjust the DocumentRoot to /opt/local/www, but > wouldn't it be better to define the DocumentRoot per default to / > opt/local/www, especially if this directory is defined in the > documentation as default directory? > > Thanks in advance for any clarification. Hallo Stephan. ${prefix}/www sounds like a good place to put the MacPorts web space by default. ${prefix}/apache2/htdocs is not good because one might not be using apache2 -- I for one prefer to use lighttpd. So yes, I'd agree that the default DocumentRoot in the sample apache2 httpd.conf should be changed to ${prefix}/www. Would you submit a ticket please if there isn't one already, and a patch if possible? The lighttpd default/sample conf file needs changes too, and a lot more than just that. I'm installing lighttpd on a fresh system right now and seeing a lot of things in the default/sample conf that are not suitable. I can submit a ticket and patch for this. From ryandesign at macports.org Wed Apr 16 23:45:47 2008 From: ryandesign at macports.org (Ryan Schmidt) Date: Wed Apr 16 23:43:39 2008 Subject: CLN and GiNaC In-Reply-To: References: Message-ID: On Apr 7, 2008, at 6:50 PM, Lu?s Be?a wrote: > Could someone please update CLN from 1.1.13 to 1.2.2 and GiNaC from > 1.3.7 to 1.4.3? You should contact gwright@macports.org, who is the maintainer of both the cln and ginac ports. Better yet, you should file two tickets in our issue tracker and Cc gwright@macports.org (assuming tickets do not already exist). From pmoura at di.ubi.pt Thu Apr 17 02:53:57 2008 From: pmoura at di.ubi.pt (Paulo Moura) Date: Thu Apr 17 02:51:55 2008 Subject: __LINKEDIT error when building .mpkg Message-ID: <748BB32D-E627-4FD6-BCC8-E61B57745526@di.ubi.pt> Hi! While trying to create a .mpkg for (a new version of) swi-prolog, a friend of mine got an error when creating one of the individual packages: paul-crockers-computer:~/Desktop paulcrocker$ sudo port -k destroot swi-prolog Portfile changed since last build; discarding previous state. ---> Fetching swi-prolog ---> Attempting to fetch pl-5.6.54.tar.gz from http://gollem.science.uva.nl/cgi-bin/nph-download/SWI-Prolog/--- > Verifying checksum(s) for swi-prolog ---> Extracting swi-prolog ---> Configuring swi-prolog ---> Building swi-prolog with target all ---> Staging swi-prolog into destroot paul-crockers-computer:~/Desktop paulcrocker$ sudo port mpkg swi-prolog Password: ---> Creating pkg for swi-prolog-5.6.54Error: Target org.macports.pkg returned: shell command "/Developer/Applications/Utilities/ PackageMaker.app/Contents/MacOS/PackageMaker -build -f /opt/local/var/ macports/build/ _opt_local_var_macports_sources_rsync .macports.org_release_ports_lang_swi-prolog/work/destroot -p /opt/ local/var/macports/build/ _opt_local_var_macports_sources_rsync .macports.org_release_ports_lang_swi-prolog/work/swi-prolog-5.6.54.pkg -r /opt/local/var/macports/build/ _opt_local_var_macports_sources_rsync .macports.org_release_ports_lang_swi-prolog/work/pkg_resources -i /opt/ local/var/macports/build/ _opt_local_var_macports_sources_rsync .macports.org_release_ports_lang_swi-prolog/work/Info.plist -d /opt/ local/var/macports/build/ _opt_local_var_macports_sources_rsync .macports.org_release_ports_lang_swi-prolog/work/Description.plist" returned error 1Command output: the __LINKEDIT segment does not cover the end of the file (can't be processed) in: libjpl.dylib Your help is appreciated. Is there a workaround for the "__LINKEDIT" error above? Paulo ----------------------------------------------------------------- Paulo Jorge Lopes de Moura Dep. of Computer Science, University of Beira Interior 6201-001 Covilh?, Portugal Office 4.3 Ext. 3257 Phone: +351 275319891 Fax: +351 275319899 Email: Home page: Research: ----------------------------------------------------------------- From paul at hammant.org Thu Apr 17 08:13:15 2008 From: paul at hammant.org (Paul Hammant) Date: Thu Apr 17 08:11:06 2008 Subject: gdk-x11-2.0 - needed for building SeaMonkey. In-Reply-To: <5B9F95CE-C498-41C5-8E95-F88271116D16@hammant.org> References: <49DE45CB-CDA2-4FCF-9FB0-C8C35EA6B48E@hammant.org> <6A590E60-33C0-4842-BA37-985A47B89A71@hammant.org> <93F89ECA-96AC-465F-82EE-BA95E7F9ACBE@macports.org> <5B9F95CE-C498-41C5-8E95-F88271116D16@hammant.org> Message-ID: Yup 'sudo port install seamonkey' perfectly builds the latest SeaMonkey. Two questions - 1) Is it possible for me to maintain a local set of source files for that? I still want to apply some patches before building. That must be what port maintainers do right? 2) The seamonkey that port built is launching with X11. What do I have to reinstall with the +quartz ...... does this page sorta outline the process - http://www.inkscape.org/wiki/index.php/CompilingMacOsX#Compiling_Inkscape_with_native_GTK_using_MacPorts_.5Bexperimental.5D ? Regards, - Paul On Apr 16, 2008, at 8:45 PM, Paul Hammant wrote: > Ryan, > > > Thanks - that got me thru that (reinstalling gtk2), but now I'm in a > world of pain with non buildable leopard/seamonkey things. bad > #includes, bad #ifdefs. Both of which I can hack source for. > > But then .... > > /System/Library/Frameworks/CoreServices.framework/Frameworks/ > CarbonCore.framework/Headers/MachineExceptions.h:255: error: > declaration does not declare anything > /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ > QD.framework/Headers/QuickdrawTypes.h:264: error: using typedef-name > ?Cursor? after ?struct? > /usr/X11/include/X11/X.h:108: error: ?Cursor? has a previous > declaration here > /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ > QD.framework/Headers/QuickdrawTypes.h:269: error: using typedef-name > ?Cursor? after ?struct? > /usr/X11/include/X11/X.h:108: error: ?Cursor? has a previous > declaration here > /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ > QD.framework/Headers/QuickdrawTypes.h:269: error: invalid type in > declaration before ?;? token > /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ > QD.framework/Headers/QuickdrawTypes.h:269: error: conflicting > declaration ?typedef int Cursor? > /usr/X11/include/X11/X.h:108: error: ?Cursor? has a previous > declaration as ?typedef XID Cursor? > /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ > QD.framework/Headers/QuickdrawTypes.h:296: error: using typedef-name > ?Picture? after ?struct? > /usr/X11/include/X11/extensions/render.h:31: error: ?Picture? has a > previous declaration here > /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ > QD.framework/Headers/QuickdrawTypes.h:300: error: using typedef-name > ?Picture? after ?struct? > /usr/X11/include/X11/extensions/render.h:31: error: ?Picture? has a > previous declaration here > /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ > QD.framework/Headers/QuickdrawTypes.h:300: error: invalid type in > declaration before ?;? token > /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ > QD.framework/Headers/QuickdrawTypes.h:300: error: conflicting > declaration ?typedef int Picture? > /usr/X11/include/X11/extensions/render.h:31: error: ?Picture? has a > previous declaration as ?typedef long unsigned int Picture? > > ... which makes me think that this works on Tiger but not Seamonkey > from Mozilla repo sources. > > I'll try the macport for seamonkey :) > > - Paul > > > >> >> I did not specify any variants, so I got "gtk2 +x11" and it does >> include those components. >> >> The +quartz and +x11 variants conflict with one another so if your >> ports tree is up to date (try "sudo port selfupdate") then it >> should not have been possible to select both of those variants at >> the same time. >> > > _______________________________________________ > macports-users mailing list > macports-users@lists.macosforge.org > http://lists.macosforge.org/mailman/listinfo/macports-users > > From bdesgraupes at orange.fr Thu Apr 17 08:41:15 2008 From: bdesgraupes at orange.fr (Bernard Desgraupes) Date: Thu Apr 17 08:38:13 2008 Subject: OpenJade fails to build Message-ID: <34EC5166-D38D-4D7D-AA7E-AC22C13F9274@orange.fr> I just tried to build openjade on a brand new MacBook Pro with Leopard 10.5.2 and it failed with the error below. Does someone understand what's going wrong ? opensp (dependency of openjade did build properly). My macports installation is up-to-date, and freshly selfupdated. I did a "port clean openjade" and tried again but still got the same error. Bernard ---> Building openjade with target all echo 'LT_OBJS='`echo Node.o LocNode.o|sed 's/\.o/.lo/g'` >Makefile.lt mkdir .libs /usr/bin/g++-4.0 -O2 -I/opt/local/include -fno-rtti -I. -I./../ include -I/opt/local/include/OpenSP -I/opt/local/include/OpenSP/.. "- DPACKAGE_NAME=\"\"" "-DPACKAGE_TARNAME=\"\"" "-DPACKAGE_VERSION=\"\"" "-DPACKAGE_STRING=\"\"" "-DPACKAGE_BUGREPORT=\"\"" "-DPACKAGE= \"openjade\"" "-DVERSION=\"1.3.2\"" -DSTDC_HEADERS=1 - DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 - DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 - DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 - DHAVE_LIMITS_H=1 -DHAVE_STRUCT_STAT_ST_BLKSIZE=1 -DHAVE_ST_BLKSIZE=1 - DSIZEOF_SIZE_T=4 -DSIZEOF_UNSIGNED_INT=4 -DSP_HAVE_LOCALE=1 - DSP_HAVE_WCHAR=1 -DSP_HAVE_GETTEXT=1 -DSP_HAVE_BOOL=1 - DSP_ANSI_CLASS_INST=1 -DSP_HAVE_SOCKET=1 -DJADE_MIF=1 -DJADE_HTML=1 - DSP_MULTI_BYTE=1 "-DSGML_CATALOG_FILES_DEFAULT=\"/opt/local/share/ sgml/catalog\"" -DHAVE_DLFCN_H=1 "-DDEFAULT_SCHEME_BUILTINS=\"/opt/ local/share/sgml/openjade/builtins.dsl\"" -c Node.cxx -fno-common -DPIC In file included from Node.cxx:8: ./../include/config.h:39:1: warning: "SP_DEFINE_TEMPLATES" redefined In file included from ./../include/config.h:10, from Node.cxx:8: /opt/local/include/OpenSP/config.h:357:1: warning: this is the location of the previous definition mv -f Node.o .libs/Node.lo /usr/bin/g++-4.0 -O2 -I/opt/local/include -fno-rtti -I. -I./../ include -I/opt/local/include/OpenSP -I/opt/local/include/OpenSP/.. "- DPACKAGE_NAME=\"\"" "-DPACKAGE_TARNAME=\"\"" "-DPACKAGE_VERSION=\"\"" "-DPACKAGE_STRING=\"\"" "-DPACKAGE_BUGREPORT=\"\"" "-DPACKAGE= \"openjade\"" "-DVERSION=\"1.3.2\"" -DSTDC_HEADERS=1 - DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 - DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 - DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 - DHAVE_LIMITS_H=1 -DHAVE_STRUCT_STAT_ST_BLKSIZE=1 -DHAVE_ST_BLKSIZE=1 - DSIZEOF_SIZE_T=4 -DSIZEOF_UNSIGNED_INT=4 -DSP_HAVE_LOCALE=1 - DSP_HAVE_WCHAR=1 -DSP_HAVE_GETTEXT=1 -DSP_HAVE_BOOL=1 - DSP_ANSI_CLASS_INST=1 -DSP_HAVE_SOCKET=1 -DJADE_MIF=1 -DJADE_HTML=1 - DSP_MULTI_BYTE=1 "-DSGML_CATALOG_FILES_DEFAULT=\"/opt/local/share/ sgml/catalog\"" -DHAVE_DLFCN_H=1 "-DDEFAULT_SCHEME_BUILTINS=\"/opt/ local/share/sgml/openjade/builtins.dsl\"" -c Node.cxx >/dev/null 2>&1 mv -f .libs/Node.lo Node.lo rm -f .libs/LocNode.lo /usr/bin/g++-4.0 -O2 -I/opt/local/include -fno-rtti -I. -I./../ include -I/opt/local/include/OpenSP -I/opt/local/include/OpenSP/.. "- DPACKAGE_NAME=\"\"" "-DPACKAGE_TARNAME=\"\"" "-DPACKAGE_VERSION=\"\"" "-DPACKAGE_STRING=\"\"" "-DPACKAGE_BUGREPORT=\"\"" "-DPACKAGE= \"openjade\"" "-DVERSION=\"1.3.2\"" -DSTDC_HEADERS=1 - DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 - DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 - DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 - DHAVE_LIMITS_H=1 -DHAVE_STRUCT_STAT_ST_BLKSIZE=1 -DHAVE_ST_BLKSIZE=1 - DSIZEOF_SIZE_T=4 -DSIZEOF_UNSIGNED_INT=4 -DSP_HAVE_LOCALE=1 - DSP_HAVE_WCHAR=1 -DSP_HAVE_GETTEXT=1 -DSP_HAVE_BOOL=1 - DSP_ANSI_CLASS_INST=1 -DSP_HAVE_SOCKET=1 -DJADE_MIF=1 -DJADE_HTML=1 - DSP_MULTI_BYTE=1 "-DSGML_CATALOG_FILES_DEFAULT=\"/opt/local/share/ sgml/catalog\"" -DHAVE_DLFCN_H=1 "-DDEFAULT_SCHEME_BUILTINS=\"/opt/ local/share/sgml/openjade/builtins.dsl\"" -c LocNode.cxx -fno-common -DPIC In file included from LocNode.cxx:5: ./../include/config.h:39:1: warning: "SP_DEFINE_TEMPLATES" redefined In file included from ./../include/config.h:10, from LocNode.cxx:5: /opt/local/include/OpenSP/config.h:357:1: warning: this is the location of the previous definition mv -f LocNode.o .libs/LocNode.lo /usr/bin/g++-4.0 -O2 -I/opt/local/include -fno-rtti -I. -I./../ include -I/opt/local/include/OpenSP -I/opt/local/include/OpenSP/.. "- DPACKAGE_NAME=\"\"" "-DPACKAGE_TARNAME=\"\"" "-DPACKAGE_VERSION=\"\"" "-DPACKAGE_STRING=\"\"" "-DPACKAGE_BUGREPORT=\"\"" "-DPACKAGE= \"openjade\"" "-DVERSION=\"1.3.2\"" -DSTDC_HEADERS=1 - DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 - DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 - DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 - DHAVE_LIMITS_H=1 -DHAVE_STRUCT_STAT_ST_BLKSIZE=1 -DHAVE_ST_BLKSIZE=1 - DSIZEOF_SIZE_T=4 -DSIZEOF_UNSIGNED_INT=4 -DSP_HAVE_LOCALE=1 - DSP_HAVE_WCHAR=1 -DSP_HAVE_GETTEXT=1 -DSP_HAVE_BOOL=1 - DSP_ANSI_CLASS_INST=1 -DSP_HAVE_SOCKET=1 -DJADE_MIF=1 -DJADE_HTML=1 - DSP_MULTI_BYTE=1 "-DSGML_CATALOG_FILES_DEFAULT=\"/opt/local/share/ sgml/catalog\"" -DHAVE_DLFCN_H=1 "-DDEFAULT_SCHEME_BUILTINS=\"/opt/ local/share/sgml/openjade/builtins.dsl\"" -c LocNode.cxx >/dev/null 2>&1 mv -f .libs/LocNode.lo LocNode.lo /bin/sh /opt/local/var/macports/build/ _opt_local_var_macports_sources_rsync.macports.org_release_ports_textpro c_openjade/work/openjade-1.3.2/libtool --mode=link /usr/bin/g++-4.0 - allow-undefined -o libogrove.la Node.lo LocNode.lo \ -rpath /opt/local/lib -version-info 0:1:0 -lm libtool: link: `-allow-undefined' is deprecated because it is the default rm -fr .libs/libogrove.la .libs/libogrove.* .libs/libogrove.* -dynamiclib -undefined suppress -flat_namespace -o .libs/libogrove. 0.0.1.dylib -lm Node.lo LocNode.lo -lm -lc -install_name /opt/ local/lib/libogrove.0.dylib -compatibility_version 1 -current_version 1.1 /opt/local/var/macports/build/ _opt_local_var_macports_sources_rsync.macports.org_release_ports_textpro c_openjade/work/openjade-1.3.2/libtool[3159]: eval[1]: -dynamiclib: not found [No such file or directory] make[2]: *** [libogrove.la] Error 127 make[1]: *** [grove] Error 2 make: *** [all] Error 2 Error: Target org.macports.build returned: shell command " cd "/opt/ local/var/macports/build/ _opt_local_var_macports_sources_rsync.macports.org_release_ports_textpro c_openjade/work/openjade-1.3.2" && make all " returned error 2 Command output: echo 'LT_OBJS='`echo Node.o LocNode.o|sed 's/\.o/.lo/ g'` >Makefile.lt mkdir .libs /usr/bin/g++-4.0 -O2 -I/opt/local/include -fno-rtti -I. -I./../ include -I/opt/local/include/OpenSP -I/opt/local/include/OpenSP/.. "- DPACKAGE_NAME=\"\"" "-DPACKAGE_TARNAME=\"\"" "-DPACKAGE_VERSION=\"\"" "-DPACKAGE_STRING=\"\"" "-DPACKAGE_BUGREPORT=\"\"" "-DPACKAGE= \"openjade\"" "-DVERSION=\"1.3.2\"" -DSTDC_HEADERS=1 - DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 - DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 - DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 - DHAVE_LIMITS_H=1 -DHAVE_STRUCT_STAT_ST_BLKSIZE=1 -DHAVE_ST_BLKSIZE=1 - DSIZEOF_SIZE_T=4 -DSIZEOF_UNSIGNED_INT=4 -DSP_HAVE_LOCALE=1 - DSP_HAVE_WCHAR=1 -DSP_HAVE_GETTEXT=1 -DSP_HAVE_BOOL=1 - DSP_ANSI_CLASS_INST=1 -DSP_HAVE_SOCKET=1 -DJADE_MIF=1 -DJADE_HTML=1 - DSP_MULTI_BYTE=1 "-DSGML_CATALOG_FILES_DEFAULT=\"/opt/local/share/ sgml/catalog\"" -DHAVE_DLFCN_H=1 "-DDEFAULT_SCHEME_BUILTINS=\"/opt/ local/share/sgml/openjade/builtins.dsl\"" -c Node.cxx -fno-common -DPIC In file included from Node.cxx:8: ./../include/config.h:39:1: warning: "SP_DEFINE_TEMPLATES" redefined In file included from ./../include/config.h:10, from Node.cxx:8: /opt/local/include/OpenSP/config.h:357:1: warning: this is the location of the previous definition mv -f Node.o .libs/Node.lo /usr/bin/g++-4.0 -O2 -I/opt/local/include -fno-rtti -I. -I./../ include -I/opt/local/include/OpenSP -I/opt/local/include/OpenSP/.. "- DPACKAGE_NAME=\"\"" "-DPACKAGE_TARNAME=\"\"" "-DPACKAGE_VERSION=\"\"" "-DPACKAGE_STRING=\"\"" "-DPACKAGE_BUGREPORT=\"\"" "-DPACKAGE= \"openjade\"" "-DVERSION=\"1.3.2\"" -DSTDC_HEADERS=1 - DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 - DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 - DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 - DHAVE_LIMITS_H=1 -DHAVE_STRUCT_STAT_ST_BLKSIZE=1 -DHAVE_ST_BLKSIZE=1 - DSIZEOF_SIZE_T=4 -DSIZEOF_UNSIGNED_INT=4 -DSP_HAVE_LOCALE=1 - DSP_HAVE_WCHAR=1 -DSP_HAVE_GETTEXT=1 -DSP_HAVE_BOOL=1 - DSP_ANSI_CLASS_INST=1 -DSP_HAVE_SOCKET=1 -DJADE_MIF=1 -DJADE_HTML=1 - DSP_MULTI_BYTE=1 "-DSGML_CATALOG_FILES_DEFAULT=\"/opt/local/share/ sgml/catalog\"" -DHAVE_DLFCN_H=1 "-DDEFAULT_SCHEME_BUILTINS=\"/opt/ local/share/sgml/openjade/builtins.dsl\"" -c Node.cxx >/dev/null 2>&1 mv -f .libs/Node.lo Node.lo rm -f .libs/LocNode.lo /usr/bin/g++-4.0 -O2 -I/opt/local/include -fno-rtti -I. -I./../ include -I/opt/local/include/OpenSP -I/opt/local/include/OpenSP/.. "- DPACKAGE_NAME=\"\"" "-DPACKAGE_TARNAME=\"\"" "-DPACKAGE_VERSION=\"\"" "-DPACKAGE_STRING=\"\"" "-DPACKAGE_BUGREPORT=\"\"" "-DPACKAGE= \"openjade\"" "-DVERSION=\"1.3.2\"" -DSTDC_HEADERS=1 - DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 - DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 - DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 - DHAVE_LIMITS_H=1 -DHAVE_STRUCT_STAT_ST_BLKSIZE=1 -DHAVE_ST_BLKSIZE=1 - DSIZEOF_SIZE_T=4 -DSIZEOF_UNSIGNED_INT=4 -DSP_HAVE_LOCALE=1 - DSP_HAVE_WCHAR=1 -DSP_HAVE_GETTEXT=1 -DSP_HAVE_BOOL=1 - DSP_ANSI_CLASS_INST=1 -DSP_HAVE_SOCKET=1 -DJADE_MIF=1 -DJADE_HTML=1 - DSP_MULTI_BYTE=1 "-DSGML_CATALOG_FILES_DEFAULT=\"/opt/local/share/ sgml/catalog\"" -DHAVE_DLFCN_H=1 "-DDEFAULT_SCHEME_BUILTINS=\"/opt/ local/share/sgml/openjade/builtins.dsl\"" -c LocNode.cxx -fno-common -DPIC In file included from LocNode.cxx:5: ./../include/config.h:39:1: warning: "SP_DEFINE_TEMPLATES" redefined In file included from ./../include/config.h:10, from LocNode.cxx:5: /opt/local/include/OpenSP/config.h:357:1: warning: this is the location of the previous definition mv -f LocNode.o .libs/LocNode.lo /usr/bin/g++-4.0 -O2 -I/opt/local/include -fno-rtti -I. -I./../ include -I/opt/local/include/OpenSP -I/opt/local/include/OpenSP/.. "- DPACKAGE_NAME=\"\"" "-DPACKAGE_TARNAME=\"\"" "-DPACKAGE_VERSION=\"\"" "-DPACKAGE_STRING=\"\"" "-DPACKAGE_BUGREPORT=\"\"" "-DPACKAGE= \"openjade\"" "-DVERSION=\"1.3.2\"" -DSTDC_HEADERS=1 - DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 - DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 - DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 - DHAVE_LIMITS_H=1 -DHAVE_STRUCT_STAT_ST_BLKSIZE=1 -DHAVE_ST_BLKSIZE=1 - DSIZEOF_SIZE_T=4 -DSIZEOF_UNSIGNED_INT=4 -DSP_HAVE_LOCALE=1 - DSP_HAVE_WCHAR=1 -DSP_HAVE_GETTEXT=1 -DSP_HAVE_BOOL=1 - DSP_ANSI_CLASS_INST=1 -DSP_HAVE_SOCKET=1 -DJADE_MIF=1 -DJADE_HTML=1 - DSP_MULTI_BYTE=1 "-DSGML_CATALOG_FILES_DEFAULT=\"/opt/local/share/ sgml/catalog\"" -DHAVE_DLFCN_H=1 "-DDEFAULT_SCHEME_BUILTINS=\"/opt/ local/share/sgml/openjade/builtins.dsl\"" -c LocNode.cxx >/dev/null 2>&1 mv -f .libs/LocNode.lo LocNode.lo /bin/sh /opt/local/var/macports/build/ _opt_local_var_macports_sources_rsync.macports.org_release_ports_textpro c_openjade/work/openjade-1.3.2/libtool --mode=link /usr/bin/g++-4.0 - allow-undefined -o libogrove.la Node.lo LocNode.lo \ -rpath /opt/local/lib -version-info 0:1:0 -lm libtool: link: `-allow-undefined' is deprecated because it is the default rm -fr .libs/libogrove.la .libs/libogrove.* .libs/libogrove.* -dynamiclib -undefined suppress -flat_namespace -o .libs/libogrove. 0.0.1.dylib -lm Node.lo LocNode.lo -lm -lc -install_name /opt/ local/lib/libogrove.0.dylib -compatibility_version 1 -current_version 1.1 /opt/local/var/macports/build/ _opt_local_var_macports_sources_rsync.macports.org_release_ports_textpro c_openjade/work/openjade-1.3.2/libtool[3159]: eval[1]: -dynamiclib: not found [No such file or directory] make[2]: *** [libogrove.la] Error 127 make[1]: *** [grove] Error 2 make: *** [all] Error 2 Warning: the following items did not execute (for openjade): org.macports.activate org.macports.build org.macports.destroot org.macports.install Error: Status 1 encountered during processing. From bdesgraupes at orange.fr Thu Apr 17 08:58:50 2008 From: bdesgraupes at orange.fr (Bernard Desgraupes) Date: Thu Apr 17 10:02:58 2008 Subject: OpenJade fails to build In-Reply-To: <34EC5166-D38D-4D7D-AA7E-AC22C13F9274@orange.fr> References: <34EC5166-D38D-4D7D-AA7E-AC22C13F9274@orange.fr> Message-ID: <30FB96AF-D643-4630-B8EC-6ADB926E3386@orange.fr> Le 17 avr. 08 ? 17:41, I wrote: > I just tried to build openjade on a brand new MacBook Pro with > Leopard 10.5.2 and it failed with the error below. Does someone > understand what's going wrong ? > opensp (dependency of openjade did build properly). > My macports installation is up-to-date, and freshly selfupdated. > I did a "port clean openjade" and tried again but still got the > same error. > > OK, I just discovered the ticket 14075 and the proposed workaround. It works, but of course this is just a workaround. Sorry for the noise, I should have checked before I send my message Bernard From frstan at bellsouth.net Thu Apr 17 11:39:59 2008 From: frstan at bellsouth.net (William Davis) Date: Thu Apr 17 11:37:45 2008 Subject: pidgin compile error Message-ID: <83FA6F10-4A2C-4F7F-B1C9-9038BB4909CD@bellsouth.net> Making all in gconf LC_ALL=C ../../intltool-merge -s -u -c ../../po/.intltool-merge- cache ../../po purple.schemas.in purple.schemas Possible unintended interpolation of @INTLTOOL_ICONV in string at ../../intltool-merge line 96. Global symbol "@INTLTOOL_ICONV" requires explicit package name at ../../intltool-merge line 96. BEGIN not safe after errors--compilation aborted at ../../intltool- merge line 263. make[4]: *** [purple.schemas] Error 255 make[3]: *** [all-recursive] Error 1 make[2]: *** [all] Error 2 t_pidgin/work/pidgin-2.3.1" && make all " returned error 2 Command output: make all-recursive Making all in libpurple make all-recursive Making all in gconf LC_ALL=C ../../int