From cedric.luthi at epfl.ch Sun Apr 1 00:01:29 2007 From: cedric.luthi at epfl.ch (=?ISO-8859-1?Q?C=E9dric_Luthi?=) Date: Tue Oct 9 16:42:38 2007 Subject: zlib port broken? In-Reply-To: <0FC1661C-DBAD-4A71-9B5C-746C56E64565@mac.com> References: <0FC1661C-DBAD-4A71-9B5C-746C56E64565@mac.com> Message-ID: <0AEE7FC9-C6A4-4B84-9651-D87BEDB3ABDC@epfl.ch> On 1 avr. 07, at 06:45, Chip Warden wrote: > Any ideas, or am I just missing something? You must update MacPorts to version 1.4 and then retry to install zlib. $ sudo port selfupdate $ sudo port install zlib Cheers, C?dric From ryandesign at macports.org Sun Apr 1 00:59:39 2007 From: ryandesign at macports.org (Ryan Schmidt) Date: Tue Oct 9 16:42:38 2007 Subject: Version confusion In-Reply-To: References: <6067C471-1F0A-4C54-B150-B454E0558F7C@butdifferent.com> Message-ID: <12217119-347F-4991-A300-33438448FAEE@macports.org> Let's keep this discussion on the list. Be sure to use the Reply To All feature when you reply. On Apr 1, 2007, at 02:37, Bas den Hond wrote: >> I'm familiar with the @version syntax for *uninstalling*, but I've >> never heard of it for installing. I can't see that usage described >> in the manpage either. Though if you see it there, please show me. >> To the best of my knowledge, MacPorts has no such capability. >> >> >>> So what gives? I guess I could remove the svn tree from >>> sources.conf temporarily, but that seems klutzy... >>> >>> Any explanation appreciated. >> >> As I said, I only use my local svn working copy, and comment out >> the rsync source. You might try that as well. With the svn working >> copy you have the advantage that you can backdate any port to any >> version. Simply use "svn log" on the portfile to find the last >> revision number where the port was at the version you want, then >> use "svn up -r" to download that version of the portfile. Then >> "sudo port install foo" as usual, or if the port is already >> installed in a different version, "sudo port -nf upgrade foo" to >> force it to install again at the backdated version. > > Thanks, that explains a lot. > > I was assuming that Macports capabilities were orthogonal. That is, > if the expression program@version means anything and can be used in > an expression somewhere, it can be used everywhere... From a user's > perspective, I think that should be the way it works. It does not work that way, and it would be very difficult to implement that, given current MacPorts structure. As far as MacPorts knows, there is only one version of the portfile, which describes one particular version (and revision) of the software, and you can install that version and only that version. But you can specify variants too. So you can end up with all of "php5 @5.2.1+apache2", "php5 @5.2.1+fastcgi+mysql5" and "php5 @5.2.1+pear+sqlite" installed, to show but a few examples. When it comes time to uninstall, MacPorts needs to know exactly which one of those you would like to uninstall. That's why the uninstall action accepts a version/variant specifier. For situations where we want multiple versions of a software package to be available, multiple ports are created. See for example mysql, mysql4 and mysql5; apache, apache20 and apache2; php4 and php5; sqlite2 and sqlite3; glib1 and glib2; and gcc33, gcc34, gcc40, gcc41, gcc42 and gcc43, to name but a few examples -- and of course wxWidgets26 and wxWidgets which you already know about. > From that same perspective, I would urge the Macports developers to > integrate the svn-trick into the port program itself. As things > stand now, you think you're ready when you've read the port > manpage, but eventually you discover you have to install and then > learn svn, too, in order to manage any syncing problems. You do not need to use or learn how to use Subversion in order to use MacPorts (not that it's difficult). The reason I am using a Subversion working copy for my ports tree is that I am a committer and need to have such a working copy in order to submit changes. If there is a problem in a portfile, we need to fix the problem in the portfile, not go back to an earlier version of the portfile. Of course, we're all volunteers here with other things to do besides maintain MacPorts, so sometimes it takes awhile to fix problems. If you know the solution, you can also just locally edit your portfile (with e.g. "port edit foo" or "cd `port dir foo` && open Portfile") to fix whatever the problem is. And you can create a ticket in the Trac system describing the problem and attach a patch so that someone with commit access can fix it for good. Creating such a patch is easier when you're using a Subversion working copy ("svn di > foo.diff"), but if you remember to make a copy of the portfile before your changes ("sudo cp Portfile Portfile.orig") then it's still easy enough to get the diff ("diff -u Portfile.orig Portfile > foo.diff"). Be aware that if you "sudo port sync" or "sudo port selfupdate" your local changes will be overwritten (if you're editing the portfiles in the tree that MacPorts syncs). The alternative is to set up a parallel local directory for your modified ports. I believe this strategy is described in some documentation somewhere, but I haven't followed it myself so I can't give you the specifics. From ryandesign at macports.org Sun Apr 1 01:05:51 2007 From: ryandesign at macports.org (Ryan Schmidt) Date: Tue Oct 9 16:42:38 2007 Subject: zlib port broken? In-Reply-To: <0AEE7FC9-C6A4-4B84-9651-D87BEDB3ABDC@epfl.ch> References: <0FC1661C-DBAD-4A71-9B5C-746C56E64565@mac.com> <0AEE7FC9-C6A4-4B84-9651-D87BEDB3ABDC@epfl.ch> Message-ID: <61520740-2278-4455-BA52-4ACFAA3EE6E3@macports.org> On Apr 1, 2007, at 02:01, C?dric Luthi wrote: > On 1 avr. 07, at 06:45, Chip Warden wrote: > >> Any ideas, or am I just missing something? > > You must update MacPorts to version 1.4 and then retry to install > zlib. Oh? 1.4 is out? That's surprising, since I don't recall a release announcement going to this or the -dev list, and there's no mention of it at www.macports.org. I do see 1.4 available in the downloads directory so I don't dispute that it's out. I'm just surprised that the release was so silent. That is, I did see the "MacPorts 1.4, final call for feedback" message stating that a final release would be made soon. I just would have thought that such a final release would have been accompanied by an announcement and a prominent feature on the project web page. From ryandesign at macports.org Sun Apr 1 01:18:25 2007 From: ryandesign at macports.org (Ryan Schmidt) Date: Tue Oct 9 16:42:38 2007 Subject: zlib port broken? In-Reply-To: <61520740-2278-4455-BA52-4ACFAA3EE6E3@macports.org> References: <0FC1661C-DBAD-4A71-9B5C-746C56E64565@mac.com> <0AEE7FC9-C6A4-4B84-9651-D87BEDB3ABDC@epfl.ch> <61520740-2278-4455-BA52-4ACFAA3EE6E3@macports.org> Message-ID: <7B447858-4A74-4106-999F-A618F2D90373@macports.org> On Apr 1, 2007, at 03:05, Ryan Schmidt wrote: > On Apr 1, 2007, at 02:01, C?dric Luthi wrote: > >> On 1 avr. 07, at 06:45, Chip Warden wrote: >> >>> Any ideas, or am I just missing something? >> >> You must update MacPorts to version 1.4 and then retry to install >> zlib. > > Oh? 1.4 is out? That's surprising, since I don't recall a release > announcement going to this or the -dev list, and there's no mention > of it at www.macports.org. > > I do see 1.4 available in the downloads directory so I don't > dispute that it's out. I'm just surprised that the release was so > silent. > > That is, I did see the "MacPorts 1.4, final call for feedback" > message stating that a final release would be made soon. I just > would have thought that such a final release would have been > accompanied by an announcement and a prominent feature on the > project web page. Also, upgrading to 1.4 won't help since 1.4 doesn't include the default universal variant. From rhwood at mac.com Sun Apr 1 02:26:22 2007 From: rhwood at mac.com (Randall Wood) Date: Tue Oct 9 16:42:38 2007 Subject: Version confusion In-Reply-To: <6067C471-1F0A-4C54-B150-B454E0558F7C@butdifferent.com> References: <6067C471-1F0A-4C54-B150-B454E0558F7C@butdifferent.com> Message-ID: <295C835C-EA23-4AC5-8AF8-E0CF3DA6E500@mac.com> When working on port ${name}, port uses the information for port $ {name} from the first PortIndex that it finds with ${name} in it. So if your rsync sources are before your svn sources, port will always use the rsync port, unless that port has not made it into the rsync tree yet. On 31 Mar 2007, at 14:47, Bas den Hond wrote: > Hi all, > > I am confused as to how to request a certain version. > > I have an svn tree next to the regular dports tree. The file URL is > in sources.conf. > > Now if I do: > > port search wxWidgets > > the answer is: > > wxWidgets graphics/wxWidgets 2.6.3 > mature cross-platform C++ GUI framework > wxWidgets-devel graphics/wxWidgets-devel > 2.7.1 mature cross-platform C++ GUI framework > wxWidgets graphics/wxWidgets 2.8.3 > mature cross-platform C++ GUI framework > wxWidgets-devel graphics/wxWidgets-devel 2.8.3- > rc1 mature cross-platform C++ GUI framework > wxWidgets26 graphics/wxWidgets26 2.6.3 > mature cross-platform C++ GUI framework > > which is good, because I have two ports, so I would expect to have > two versions of these. > > Now if I do > > sudo port install wxWidgets > > port reports: > > ---> Fetching wxWidgets > ---> Attempting to fetch wxWidgets-2.6.3.tar.bz2 from ftp:// > biolpc22.york.ac.uk/pub/2.6.3/ > > so I gather it grabs the first (not the most recent) wxWidgets that > it can find. > > Now if I want to try the latest version and see if I can build it > (the impossibility of building it is why I have this setup, I need > 2.6.3. so far) I would try, based on what the manpage says: > > sudo port install wxWidgets@2.8.3 > > But no, port starts fetching the same 2.6.3 version. > > So what gives? I guess I could remove the svn tree from > sources.conf temporarily, but that seems klutzy... > > Any explanation appreciated. > > Bas > > > > > _______________________________________________ > macports-users mailing list > macports-users@lists.macosforge.org > http://lists.macosforge.org/mailman/listinfo/macports-users Randall Wood rhwood@mac.com "The rules are simple: The ball is round. The game lasts 90 minutes. All the rest is just philosophy." From nuakosta at gmail.com Sun Apr 1 03:03:05 2007 From: nuakosta at gmail.com (=?ISO-8859-1?Q?Alberto_N=FA=F1ez?=) Date: Tue Oct 9 16:42:38 2007 Subject: zlib port broken? Message-ID: I've just done a fresh install of MacPorts 1.4.0 and can confirm that zlib is broken. I cannot install almost any port because of this issue. delorean:~ alberto$ sudo port install -d -v zlib Error: Port zlib not found From rhwood at mac.com Sun Apr 1 03:39:56 2007 From: rhwood at mac.com (Randall Wood) Date: Tue Oct 9 16:42:38 2007 Subject: zlib port broken? In-Reply-To: References: Message-ID: A fix has been commited in changeset:23439. Please wait 12-24 hours and try again. It should be working this time. On 1 Apr 2007, at 06:03, Alberto N??ez wrote: > I've just done a fresh install of MacPorts 1.4.0 and can confirm that > zlib is broken. I cannot install almost any port because of this > issue. > > delorean:~ alberto$ sudo port install -d -v zlib > Error: Port zlib not found > _______________________________________________ > macports-users mailing list > macports-users@lists.macosforge.org > http://lists.macosforge.org/mailman/listinfo/macports-users Randall Wood rhwood@mac.com "The rules are simple: The ball is round. The game lasts 90 minutes. All the rest is just philosophy." From lists at butdifferent.com Sun Apr 1 05:13:29 2007 From: lists at butdifferent.com (Bas den Hond) Date: Tue Oct 9 16:42:38 2007 Subject: Version confusion In-Reply-To: <12217119-347F-4991-A300-33438448FAEE@macports.org> References: <6067C471-1F0A-4C54-B150-B454E0558F7C@butdifferent.com> <12217119-347F-4991-A300-33438448FAEE@macports.org> Message-ID: <16710490-B691-4A94-ACB7-00E3CECECA37@butdifferent.com> Thanks, all clear now. Not that I agree completely. The average user doesn't need svn if all upgrades build and work flawlessly. He or she also could do without, if any problems were solved promptly. But precisely because this is all done by volunteers and it sometimes takes a while, this average person, who isn't up to speed with the structure of portfiles and of the /opt tree, and who can't do without the functionality of the program in question, will just be saying: I want it back the way it was an hour ago, when it all Just Worked. And it can't be done by this average user, the original Portfile is gone. I was bitten by this one when I went from a PPC iBook to an Intel MacBook. So just getting out the backup file was not an option. svn was my only option. Macports would be much better if I could solve a problem like this without having to go outside Macports. Thanks again! Bas > >> From that same perspective, I would urge the Macports developers >> to integrate the svn-trick into the port program itself. As >> things stand now, you think you're ready when you've read the port >> manpage, but eventually you discover you have to install and then >> learn svn, too, in order to manage any syncing problems. > > You do not need to use or learn how to use Subversion in order to > use MacPorts (not that it's difficult). The reason I am using a > Subversion working copy for my ports tree is that I am a committer > and need to have such a working copy in order to submit changes. > > If there is a problem in a portfile, we need to fix the problem in > the portfile, not go back to an earlier version of the portfile. Of > course, we're all volunteers here with other things to do besides > maintain MacPorts, so sometimes it takes awhile to fix problems. If > you know the solution, you can also just locally edit your portfile > (with e.g. "port edit foo" or "cd `port dir foo` && open Portfile") > to fix whatever the problem is. And you can create a ticket in the > Trac system describing the problem and attach a patch so that > someone with commit access can fix it for good. Creating such a > patch is easier when you're using a Subversion working copy ("svn > di > foo.diff"), but if you remember to make a copy of the portfile > before your changes ("sudo cp Portfile Portfile.orig") then it's > still easy enough to get the diff ("diff -u Portfile.orig Portfile > > foo.diff"). From lgw4 at mac.com Sun Apr 1 07:59:51 2007 From: lgw4 at mac.com (Chip Warden) Date: Tue Oct 9 16:42:38 2007 Subject: zlib port broken? In-Reply-To: References: Message-ID: <2EE2DEBA-96EB-4B27-A7B0-DA9B247B64C8@mac.com> Thank you. I knew I was already running MacPorts 1.4 and was concerned I hadn't followed the proper procedure before upgrading. Chip On Apr 1, 2007, at 5:39 AM, Randall Wood wrote: > A fix has been commited in changeset:23439. > > Please wait 12-24 hours and try again. It should be working this time. > > On 1 Apr 2007, at 06:03, Alberto N??ez wrote: > >> I've just done a fresh install of MacPorts 1.4.0 and can confirm that >> zlib is broken. I cannot install almost any port because of this >> issue. >> >> delorean:~ alberto$ sudo port install -d -v zlib >> Error: Port zlib not found >> _______________________________________________ >> macports-users mailing list >> macports-users@lists.macosforge.org >> http://lists.macosforge.org/mailman/listinfo/macports-users > > > Randall Wood > rhwood@mac.com > > "The rules are simple: The ball is round. The game lasts 90 > minutes. All the > rest is just philosophy." > > > _______________________________________________ > macports-users mailing list > macports-users@lists.macosforge.org > http://lists.macosforge.org/mailman/listinfo/macports-users From Joel.Brogniart at laposte.net Sun Apr 1 08:16:36 2007 From: Joel.Brogniart at laposte.net (=?ISO-8859-1?Q?Jo=EBl_Brogniart?=) Date: Tue Oct 9 16:42:38 2007 Subject: zlib port missing? Message-ID: Hi, I've just installed macport 1.4. When I try to install Apache 2 port I get the following message: Error: Dependency 'zlib' not found. Error: Status 1 encountered during processing. Then I try to install zlib and I get the message: Error: Port zlib not found What can I do else? I'm on a MacBook pro intel with Mac OS X 10.4.9. Cheers. Jo?l Brogniart From rhwood at mac.com Sun Apr 1 08:41:24 2007 From: rhwood at mac.com (Randall Wood) Date: Tue Oct 9 16:42:38 2007 Subject: zlib port missing? In-Reply-To: References: Message-ID: Wait 12-24 hours, do a 'sudo port sync', and try again. This is a known problem see other discussions earlier today for details. On 1 Apr 2007, at 11:16, Jo?l Brogniart wrote: > Hi, > > I've just installed macport 1.4. When I try to install Apache 2 > port I get the following message: > > Error: Dependency 'zlib' not found. > Error: Status 1 encountered during processing. > > Then I try to install zlib and I get the message: > > Error: Port zlib not found > > What can I do else? > > I'm on a MacBook pro intel with Mac OS X 10.4.9. > > Cheers. > > Jo?l Brogniart_______________________________________________ > macports-users mailing list > macports-users@lists.macosforge.org > http://lists.macosforge.org/mailman/listinfo/macports-users Randall Wood rhwood@mac.com "The rules are simple: The ball is round. The game lasts 90 minutes. All the rest is just philosophy." From fredbaud at waterwiki.info Sun Apr 1 10:12:53 2007 From: fredbaud at waterwiki.info (Fred Bauder) Date: Tue Oct 9 16:42:38 2007 Subject: Error: Status 1 Message-ID: ---> Installing XFree86 4.5.0_2 ---> Activating XFree86 4.5.0_2 Error: Target com.apple.activate returned: Image error: /usr/X11R6/bin/appres already exists and does not belong to a registered port. Unable to activate port XFree86. Error: Status 1 encountered during processing. I'm new to the list, and to the software, and know little about these programs. But I thought I would try out installing XFree86 (I had good luck with ImageMagick). I got into this trying to deal with .svg images, and eventually stumbled on both Fink and MacPorts. How do they interact with each other? Can both be installed and used? Fred Bauder From ryandesign at macports.org Sun Apr 1 10:51:01 2007 From: ryandesign at macports.org (Ryan Schmidt) Date: Tue Oct 9 16:42:38 2007 Subject: Error: Status 1 In-Reply-To: References: Message-ID: <464F56DD-F005-40B5-88CD-388F4F89D46F@macports.org> On Apr 1, 2007, at 12:12, Fred Bauder wrote: > ---> Installing XFree86 4.5.0_2 > ---> Activating XFree86 4.5.0_2 > Error: Target com.apple.activate returned: Image error: /usr/X11R6/ > bin/appres already exists and does not belong to a registered > port. Unable to activate port XFree86. > Error: Status 1 encountered during processing. > > I'm new to the list, and to the software, and know little about > these programs. But I thought I would try out installing XFree86 (I > had good luck with ImageMagick). You already have a part of Apple's X11 installed. I recommend you use Apple's X11, not XFree86. Make sure you have both the X11User.pkg (from the Mac OS X install CD/DVD) and X11SDK.pkg (from the Xcode disk image) installed. Check in /Library/Receipts to see which of those you still need. After you have both, MacPorts won't try to install XFree86; it'll recognize Apple's X11 as satisfying the dependency. > I got into this trying to deal with .svg images, and eventually > stumbled on both Fink and MacPorts. How do they interact with each > other? Sometimes badly. > Can both be installed and used? Not recommended. What do you need from Fink that you can't get from MacPorts? From yves at macports.org Sun Apr 1 10:55:52 2007 From: yves at macports.org (Yves de Champlain) Date: Tue Oct 9 16:42:38 2007 Subject: Error: Status 1 In-Reply-To: References: Message-ID: <7E82EFF6-52CC-4034-9659-EBE4D12DA7D7@macports.org> Le 07-04-01 ? 13:12, Fred Bauder a ?crit : > ---> Installing XFree86 4.5.0_2 > ---> Activating XFree86 4.5.0_2 > Error: Target com.apple.activate returned: Image error: /usr/X11R6/ > bin/appres already exists and does not belong to a registered > port. Unable to activate port XFree86. > Error: Status 1 encountered during processing. > > I'm new to the list, and to the software, and know little about > these programs. But I thought I would try out installing XFree86 (I > had good luck with ImageMagick). Hang on !! XFree86 4.6.0 is coming soon to MacPorts, as soon as I get around this grep problem ... It is probably a bad idea to use both fink and MacPorts because each live in its own world so you get a lot of duplicate software, unless you absolutely need both for very specific reasons ... yves From christianbonanno at mac.com Sun Apr 1 11:38:24 2007 From: christianbonanno at mac.com (Christian Bonanno) Date: Tue Oct 9 16:42:39 2007 Subject: Where is the zlib port? Message-ID: Hey All, Why can't I see the zlib port? http://zlib.darwinports.com/ ~ http://christianbonanno.wordpress.com/ http://homepage.mac.com/christianbonanno/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.macosforge.org/pipermail/macports-users/attachments/20070401/f63c287d/attachment.html From pipping at macports.org Sun Apr 1 11:39:36 2007 From: pipping at macports.org (Elias Pipping) Date: Tue Oct 9 16:42:39 2007 Subject: Where is the zlib port? In-Reply-To: References: Message-ID: it will be back in about an hour. On Apr 1, 2007, at 8:38 PM, Christian Bonanno wrote: > Hey All, > > Why can't I see the zlib port? > > http://zlib.darwinports.com/ > > ~ > http://christianbonanno.wordpress.com/ > http://homepage.mac.com/christianbonanno/ > > > > _______________________________________________ > macports-users mailing list > macports-users@lists.macosforge.org > http://lists.macosforge.org/mailman/listinfo/macports-users From ryandesign at macports.org Sun Apr 1 11:45:27 2007 From: ryandesign at macports.org (Ryan Schmidt) Date: Tue Oct 9 16:42:39 2007 Subject: slefupdate failure In-Reply-To: <690BD7B9-7840-45A1-AE8D-961402799413@yahoo.it> References: <8F32E758-6204-4581-BA33-A771D1F03A55@yahoo.it> <7693D826-D269-4537-A791-E5F16433727C@macports.org> <7A8A4DA6-AA32-4D52-A700-F961D91D549B@macports.org> <690BD7B9-7840-45A1-AE8D-961402799413@yahoo.it> Message-ID: Let's keep the discussion on the mailing list please. Use the Reply To All feature in your email program when you reply. On Apr 1, 2007, at 11:44, Massimo Di Stefano wrote: > Il giorno 01/apr/07, alle ore 01:15, Ryan Schmidt ha scritto: > >> On Mar 31, 2007, at 11:27, Elias Pipping wrote: >> >>> On Mar 31, 2007, at 4:59 PM, Massimo Di Stefano wrote: >>> >>>> ld: Undefined symbols: >>>> _rl_completion_matches >>>> _rl_filename_completion_function >>>> _rl_username_completion_function >>>> /usr/bin/libtool: internal link edit command failed >>> >>> Is it possible that you have readline installed in /usr/local ? >> >> To complete Elias's thought: If you do have readline in /usr/ >> local, that's a problem for MacPorts. Get rid of that version of >> readline, if you're not using it for anything. If you are using >> it, then you'll need to temporarily move it out of the way, do >> your thing with MacPorts, then move your readline back in place. >> But note that you may very well need to do this each time you want >> to use any part of MacPorts, which will get tedious. > > > hi, > > i never installed readline from source, in usr/local > > i do not know if this can be an incompatibily with other unix-tools > like fink or some frameworks that i've installed. > > > > i've tried to "comment #" the fink path in my .bash_profile > and than i restarted term.app and launch again the sefupdate > command, but nothing changes. > > have you a suggestion a bout on "how check the problem" ? The error message really does point to a rogue readline somewhere in your path. To see everywhere that you have readline on your system, try this: find / -name '*readline*' 2>/dev/null From massimodisasha at yahoo.it Sun Apr 1 13:37:35 2007 From: massimodisasha at yahoo.it (Massimo Di Stefano) Date: Tue Oct 9 16:42:39 2007 Subject: slefupdate failure Message-ID: > Il giorno 01/apr/07, alle ore 01:15, Ryan Schmidt ha scritto: > > >> On Mar 31, 2007, at 11:27, Elias Pipping wrote: >> >> >>> On Mar 31, 2007, at 4:59 PM, Massimo Di Stefano wrote: >>> >>> >>>> ld: Undefined symbols: >>>> _rl_completion_matches >>>> _rl_filename_completion_function >>>> _rl_username_completion_function >>>> /usr/bin/libtool: internal link edit command failed >>>> >>> >>> Is it possible that you have readline installed in /usr/local ? >>> >> >> To complete Elias's thought: If you do have readline in /usr/ >> local, that's a problem for MacPorts. Get rid of that version of >> readline, if you're not using it for anything. If you are using >> it, then you'll need to temporarily move it out of the way, do >> your thing with MacPorts, then move your readline back in place. >> But note that you may very well need to do this each time you want >> to use any part of MacPorts, which will get tedious. >> > > > hi, > > i never installed readline from source, in usr/local > > i do not know if this can be an incompatibily with other unix-tools > like fink or some frameworks that i've installed. > > > > i've tried to "comment #" the fink path in my .bash_profile > and than i restarted term.app and launch again the sefupdate > command, but nothing changes. > > have you a suggestion a bout on "how check the problem" ? > The error message really does point to a rogue readline somewhere in your path. To see everywhere that you have readline on your system, try this: find / -name '*readline*' 2>/dev/null this is the log : Last login: Sun Apr 1 20:52:36 on ttyp1 Welcome to Darwin! computer-di-epifanio:~ epifanio$ find / -name '*readline*' 2>/dev/null /Applications/MATLAB73/toolbox/compiler/deploy/readline.mexmaci /Developer/SDKs/MacOSX10.3.9.sdk/System/Library/PrivateFrameworks/ readline.framework /Developer/SDKs/MacOSX10.4u.sdk/usr/include/readline /Developer/SDKs/MacOSX10.4u.sdk/usr/include/readline/readline.h /Developer/SDKs/MacOSX10.4u.sdk/usr/lib/libreadline.dylib /grass6/rpm/fedora/grass-readline.patch /Library/Frameworks/Python.framework/Versions/2.4/Resources/ Python.app/Contents/Resources/English.lproj/Help/python/lib/module- readline.html /Library/Frameworks/Python.framework/Versions/2.4/Resources/ Python.app/Contents/Resources/English.lproj/Help/python/lib/readline- example.html /Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib- dynload/readline.so /Library/Frameworks/Python.framework/Versions/2.5/Resources/ English.lproj/Documentation/lib/module-readline.html /Library/Frameworks/Python.framework/Versions/2.5/Resources/ English.lproj/Documentation/lib/readline-example.html /Library/Frameworks/Python.framework/Versions/MacPython2.4/lib/ python2.4/lib-dynload/readline.so /Library/Frameworks/Python.framework/Versions/MacPython2.4/Resources/ English.lproj/Documentation/lib/module-readline.html /Library/Frameworks/Python.framework/Versions/MacPython2.4/Resources/ English.lproj/Documentation/lib/readline-example.html /Library/Frameworks/R.framework/Versions/2.4/Resources/lib/ libreadline.5.1.dylib /Library/Frameworks/R.framework/Versions/2.4/Resources/lib/ libreadline.dylib /Library/Frameworks/R.framework/Versions/2.4/Resources/library/base/ help/readline /Library/Frameworks/R.framework/Versions/2.4/Resources/library/base/ html/readline.html /Library/Frameworks/R.framework/Versions/2.4/Resources/library/base/ latex/readline.tex /Library/Frameworks/R.framework/Versions/2.4/Resources/library/base/R- ex/readline.R /opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate1/base/src/pextlib1.0/readline.c /opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate1/base/src/pextlib1.0/readline.h /opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate1/base/src/pextlib1.0/readline.o /opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/devel/gauche-readline /opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/devel/readline /opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/devel/readline-4 /opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/devel/readline-5 /opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/lang/lua/files/patch- use_readline.diff /opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/perl/p5-term-readline-gnu /opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/python/py-readline /opt/local/var/db/dports/sources/ rsync.rsync.darwinports.org_dpupdate_dports/python/py25-readline /scisoft/all/packages/iraf/iraf/pkg/ecl/readline /scisoft/all/packages/iraf/iraf/pkg/ecl/readline/doc/readline.0.gz /scisoft/all/packages/iraf/iraf/pkg/ecl/readline/doc/readline.3.gz /scisoft/all/packages/iraf/iraf/pkg/ecl/readline/doc/readline.html.gz /scisoft/all/packages/iraf/iraf/pkg/ecl/readline/doc/readline.info.gz /scisoft/all/packages/iraf/iraf/pkg/ecl/readline/doc/readline.pdf.gz /scisoft/all/packages/iraf/iraf/pkg/ecl/readline/doc/readline.ps.gz /scisoft/all/packages/iraf/iraf/pkg/ecl/readline/doc/readline_3.ps.gz /scisoft/all/packages/iraf/iraf/pkg/ecl/readline/examples/readlinebuf.h /scisoft/all/packages/iraf/iraf/pkg/ecl/readline/readline.c /scisoft/all/packages/iraf/iraf/pkg/ecl/readline/readline.h /scisoft/i386/include/readline /scisoft/i386/lib/libreadline.5.1.dylib /scisoft/i386/lib/libreadline.5.dylib /scisoft/i386/lib/libreadline.a /scisoft/i386/lib/libreadline.dylib /scisoft/i386/Packages/midas/06FEBpl1.0/lib/libreadline.a /scisoft/i386/Packages/midas/06FEBpl1.0/libsrc/readline /scisoft/i386/Packages/midas/06FEBpl1.0/libsrc/readline/readline.c /scisoft/i386/Packages/midas/06FEBpl1.0/libsrc/readline/readline.h /scisoft/i386/Packages/midas/06FEBpl1.0/libsrc/readline/readline.o /scisoft/i386/Packages/midas/06FEBpl1.0/system/unix/man1/readline.1 /scisoft/i386/Packages/midas/06FEBpl1.0/system/unix/manl/readline.l /scisoft/i386/Packages/readline-5.1 /scisoft/i386/Packages/readline-5.1/include/readline /scisoft/i386/Packages/readline-5.1/include/readline/readline.h /scisoft/i386/Packages/readline-5.1/info/readline.info /scisoft/i386/Packages/readline-5.1/lib/libreadline.5.1.dylib /scisoft/i386/Packages/readline-5.1/lib/libreadline.5.dylib /scisoft/i386/Packages/readline-5.1/lib/libreadline.a /scisoft/i386/Packages/readline-5.1/lib/libreadline.dylib /scisoft/i386/Packages/readline-5.1/man/man3/readline.3 /source/DarwinPorts/src/pextlib1.0/readline.c /source/DarwinPorts/src/pextlib1.0/readline.h /source/DarwinPorts/src/pextlib1.0/readline.o /source/gpsdrive-2.09/src/mysql/readline.h /source/grass6/rpm/fedora/grass-readline.patch /source/octave-workshop-0.1/doc/index/f/read_readline_init_file.html /sw/fink/10.4/stable/main/finkinfo/libs/readline.info /sw/fink/10.4/stable/main/finkinfo/libs/readline.patch /sw/fink/10.4/stable/main/finkinfo/libs/readline5.info /sw/fink/10.4/stable/main/finkinfo/libs/readline5.patch /sw/fink/10.4/unstable/main/binary-darwin-i386/libs/readline5- shlibs_5.0-1005_darwin-i386.deb /sw/fink/10.4/unstable/main/binary-darwin-i386/libs/ readline5_5.0-1005_darwin-i386.deb /sw/fink/10.4/unstable/main/finkinfo/libs/perlmods/term-readline-gnu- pm.info /sw/fink/10.4/unstable/main/finkinfo/libs/perlmods/term-readline-pm.info /sw/fink/10.4/unstable/main/finkinfo/libs/readline-java.info /sw/fink/10.4/unstable/main/finkinfo/libs/readline-java.patch /sw/fink/10.4/unstable/main/finkinfo/libs/readline.info /sw/fink/10.4/unstable/main/finkinfo/libs/readline.patch /sw/fink/10.4/unstable/main/finkinfo/libs/readline5.info /sw/fink/10.4/unstable/main/finkinfo/libs/readline5.patch /sw/fink/debs/readline5-shlibs_5.0-1005_darwin-i386.deb /sw/fink/debs/readline5_5.0-1005_darwin-i386.deb /sw/fink.old/10.4/stable/main/finkinfo/libs/readline.info /sw/fink.old/10.4/stable/main/finkinfo/libs/readline.patch /sw/fink.old/10.4/stable/main/finkinfo/libs/readline5.info /sw/fink.old/10.4/stable/main/finkinfo/libs/readline5.patch /sw/fink.old/10.4/unstable/main/finkinfo/libs/perlmods/term-readline- gnu-pm581.info /sw/fink.old/10.4/unstable/main/finkinfo/libs/perlmods/term-readline- gnu-pm586.info /sw/fink.old/10.4/unstable/main/finkinfo/libs/perlmods/term-readline- pm.info /sw/fink.old/10.4/unstable/main/finkinfo/libs/readline-java.info /sw/fink.old/10.4/unstable/main/finkinfo/libs/readline-java.patch /sw/fink.old/10.4/unstable/main/finkinfo/libs/readline.info /sw/fink.old/10.4/unstable/main/finkinfo/libs/readline.patch /sw/fink.old/10.4/unstable/main/finkinfo/libs/readline5.info /sw/fink.old/10.4/unstable/main/finkinfo/libs/readline5.patch /sw/include/readline /sw/include/readline/readline.h /sw/lib/libreadline.4.2.dylib /sw/lib/libreadline.4.3.dylib /sw/lib/libreadline.4.dylib /sw/lib/libreadline.5.0.dylib /sw/lib/libreadline.5.dylib /sw/lib/libreadline.a /sw/lib/libreadline.dylib /sw/lib/python2.4/lib-dynload/readline.so /sw/lib/python2.5/lib-dynload/readline.so /sw/share/doc/python24/Doc/lib/libreadline.tex /sw/share/doc/python24/html/lib/module-readline.html /sw/share/doc/python24/html/lib/readline-example.html /sw/share/doc/python25/Doc/lib/libreadline.tex /sw/share/doc/python25/html/lib/module-readline.html /sw/share/doc/python25/html/lib/readline-example.html /sw/share/doc/readline-shlibs /sw/share/doc/readline5 /sw/share/doc/readline5-shlibs /sw/share/info/readline.info /sw/share/man/man3/readline.3 /sw/src/readline-5.0.tar.gz /sw/var/cache/apt/archives/readline-shlibs_4.3-1028_darwin-i386.deb /sw/var/cache/apt/archives/readline_4.3-1028_darwin-i386.deb /sw/var/lib/dpkg/info/readline-shlibs.list /sw/var/lib/dpkg/info/readline-shlibs.shlibs /sw/var/lib/dpkg/info/readline5-shlibs.list /sw/var/lib/dpkg/info/readline5-shlibs.shlibs /sw/var/lib/dpkg/info/readline5.list /sw/var/lib/dpkg/info/readline5.postinst /sw/var/lib/dpkg/info/readline5.prerm /System/Library/Frameworks/Python.framework/Versions/2.3/lib/ python2.3/lib-dynload/xreadlines.so /System/Library/Frameworks/Python.framework/Versions/2.3/lib/ python2.3/test/output/test_xreadline /System/Library/Frameworks/Python.framework/Versions/2.3/lib/ python2.3/test/test_xreadline.py /System/Library/Frameworks/Python.framework/Versions/2.3/lib/ python2.3/test/test_xreadline.pyc /System/Library/Frameworks/Python.framework/Versions/2.3/lib/ python2.3/test/test_xreadline.pyo /Users/epifanio/grass/grass6/rpm/fedora/grass-readline.patch /Users/epifanio/grass6/rpm/fedora/grass-readline.patch /Users/epifanio/grass66/rpm/fedora/grass-readline.patch /usr/include/readline /usr/include/readline/readline.h /usr/lib/libreadline.dylib /usr/local/grasslib/include/readline /usr/local/grasslib/include/readline/readline.h /usr/local/grasslib/info/readline.info /usr/local/grasslib/lib/libreadline.5.2.dylib /usr/local/grasslib/lib/libreadline.5.dylib /usr/local/grasslib/lib/libreadline.dylib /usr/local/grasslib/man/man3/readline.3 /usr/local/include/readline /usr/local/include/readline/readline.h /usr/local/lib/libreadline.a /usr/share/ri/1.8/system/IO/readline-i.yaml /usr/share/ri/1.8/system/IO/readlines-c.yaml /usr/share/ri/1.8/system/IO/readlines-i.yaml /usr/share/ri/1.8/system/Kernel/readline-i.yaml /usr/share/ri/1.8/system/Kernel/readlines-i.yaml /usr/share/ri/1.8/system/Pathname/readlines-i.yaml /usr/share/ri/1.8/system/Zlib/GzipReader/readline-i.yaml /usr/share/ri/1.8/system/Zlib/GzipReader/readlines-i.yaml /usr/share/vim/vim62/indent/readline.vim /usr/share/vim/vim62/syntax/readline.vim computer-di-epifanio:~ epifanio$ thanks to oll for any suggestion. Massimo From ryandesign at macports.org Sun Apr 1 15:02:28 2007 From: ryandesign at macports.org (Ryan Schmidt) Date: Tue Oct 9 16:42:39 2007 Subject: slefupdate failure In-Reply-To: References: Message-ID: <5A110D0F-4278-4D0F-AD26-6C35AC46CC89@macports.org> On Apr 1, 2007, at 15:37, Massimo Di Stefano wrote: >> Il giorno 01/apr/07, alle ore 01:15, Ryan Schmidt ha scritto: >> >>> On Mar 31, 2007, at 11:27, Elias Pipping wrote: >>> >>>> On Mar 31, 2007, at 4:59 PM, Massimo Di Stefano wrote: >>>> >>>>> ld: Undefined symbols: >>>>> _rl_completion_matches >>>>> _rl_filename_completion_function >>>>> _rl_username_completion_function >>>>> /usr/bin/libtool: internal link edit command failed >>>> >>>> Is it possible that you have readline installed in /usr/local ? >>> >>> To complete Elias's thought: If you do have readline in /usr/ >>> local, that's a problem for MacPorts. Get rid of that version of >>> readline, if you're not using it for anything. If you are using >>> it, then you'll need to temporarily move it out of the way, do >>> your thing with MacPorts, then move your readline back in place. >>> But note that you may very well need to do this each time you >>> want to use any part of MacPorts, which will get tedious. >> >> i never installed readline from source, in usr/local >> >> i do not know if this can be an incompatibily with other unix-tools >> like fink or some frameworks that i've installed. >> >> >> >> i've tried to "comment #" the fink path in my .bash_profile >> and than i restarted term.app and launch again the sefupdate >> command, but nothing changes. >> >> have you a suggestion a bout on "how check the problem" ? > > The error message really does point to a rogue readline somewhere > in your path. To see everywhere that you have readline on your > system, try this: > > find / -name '*readline*' 2>/dev/null > > > this is the log : Ok, so you can see that you have many copies of the readline libraries on your system. You have a static (.a) and dynamic (.dylib) pair in /scisoft/i386/lib: > /scisoft/i386/lib/libreadline.5.1.dylib > /scisoft/i386/lib/libreadline.5.dylib > /scisoft/i386/lib/libreadline.a > /scisoft/i386/lib/libreadline.dylib You have a couple dynamic versions and a static version from Fink: > /sw/lib/libreadline.4.2.dylib > /sw/lib/libreadline.4.3.dylib > /sw/lib/libreadline.4.dylib > /sw/lib/libreadline.5.0.dylib > /sw/lib/libreadline.5.dylib > /sw/lib/libreadline.a > /sw/lib/libreadline.dylib You have a static version from Apple: > /usr/lib/libreadline.dylib You have a dynamic version in /usr/local/grasslib/lib: > /usr/local/grasslib/lib/libreadline.5.2.dylib > /usr/local/grasslib/lib/libreadline.5.dylib > /usr/local/grasslib/lib/libreadline.dylib And you do have a static version in /usr/local/lib, as was our suspicion initially: > /usr/local/lib/libreadline.a My guess is that either the one in /usr/local/lib or one of the ones in /sw/lib are being picked up by MacPorts, and that these readlines are not behaving the way MacPorts expect them to. As I said before: Move those out of the way (for example you could rename /usr/local to /usr/local-disabled, or /sw to /sw-disabled), then try your thing with MacPorts. Once you've succeeded doing whatever you were doing with MacPorts, you can move the disabled readline back where it was (understanding, however, that it may continue to interfere with your use of MacPorts until you remove it completely). From alex at webis.net Sun Apr 1 15:24:51 2007 From: alex at webis.net (Alex Kac) Date: Tue Oct 9 16:42:39 2007 Subject: Macports Newbie - XServe use Message-ID: <19C119EC-9B2B-4DC0-BE38-27F975DC592A@webis.net> I am very comfortable with BSD (specifically OS X Server over the last few years) and maintain my current OS X Server primarily via command line, though I like web admin tools as well because I don't always have SSH access and I prefer to not have my impatient typing kill a server. So for the last few years I've been using iTools from Tenon on my Dual G5 server. We are moving to a new XServe Xeon in the next 2 days and I need to migrate the servers/config to that machine. I do not wish to use the Apple supplied servers because they are usually out of date and don't meet my needs. I do not wish to continue using Tenon's iTools for the same reason. I am comfortable building my own servers from source, but its been so long that I'm not completely aware of all the options and I'd rather not recompile apache 50 times because I forgot something. I was told by a friend who maintains Apple's XServes in their IT team that some of those guys are enamored with MacPorts. So great - here I am :) Here are the open source servers I run: Apache2 with mod_SSL mod_auth_dbm PHP5 MySQL 5 Subversion SFTP I would like to add Webmin to the new server since we'd not be using iTools. Right now we have Subversion using svn+ssh access (direct SVN server access), but I'd like to change that to mod_SVN. So add that to the list too :) So my questions and concerns. With Apache2 we have it use the dbm for all authentication instead of htaccess or OS X accounts. I'd like to move our SFTP over to using the same dbm instead of OS X accounts like it is now. And I definitely want MySQL 5 running as an x64 binary. The rest can run as 32-bit binaries. Of course I'd like to have it all start on startup and run in server mode. With all that said, any tips on variants/options to use with MacPorts to set this up properly? Alex Kac - President and Founder Web Information Solutions, Inc. - Microsoft Certified Partner "The person who is not hungry says that the coconut has a hard shell." -- African Tribal Saying -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.macosforge.org/pipermail/macports-users/attachments/20070401/2d467ef0/attachment.html From idblahs at yahoo.com Sun Apr 1 15:49:16 2007 From: idblahs at yahoo.com (marcus aurelius) Date: Tue Oct 9 16:42:39 2007 Subject: gnome-applets install failure Message-ID: <844207.49126.qm@web36904.mail.mud.yahoo.com> I'm new to the list and if this has been covered earlier I apologize. I haven't been on a mailing list in a very long time (try Windows 95 mailing list) and I'm just not seeing an easy way to search the archives - apologies if it's right in plain view. Ran port install gnome and things were chugging merrily along but I've run into an error I just don't know how to fix or work around... port install choked on gnome-applets with the following error messages... ---> Building gnome-applets with target all [ cut ] Making all in geyes Making all in themes Making all in docs xsltproc -o geyes-C.omf --stringparam db2omf.basename geyes --stringparam db2omf.format 'docbook' --stringparam db2omf.dtd "-//OASIS//DTD DocBook XML V4.1.2//EN" --stringparam db2omf.lang C --stringparam db2omf.omf_dir "/opt/local/share/omf" --stringparam db2omf.help_dir "/opt/local/share/gnome/help" --stringparam db2omf.omf_in "`pwd`/./geyes.omf.in" `/opt/local/bin/pkg-config --variable db2omf gnome-doc-utils` C/geyes.xml db2omf: Could not construct the OMF maintainer element. Add an author, corpauthor, editor, othercredit, or publisher element with the role attribute set to "maintainer" to geyes.xml. make[3]: *** [geyes-C.omf] Error 10 make[2]: *** [all-recursive] Error 1 make[1]: *** [all-recursive] Error 1 make: *** [all] Error 2 Error: The following dependencies failed to build: gnome-desktop-suite gnome-applets gnome-audio gnome-backgrounds gnome-games guile gmp gnome-keyring-manager gnome-media gnome-python-desktop py-gnome libzvt py-orbit gnome-system-monitor gnome-user-docs gnome-utils gnopernicus gst-plugins-good gucharmap libgail-gnome libgtkhtml3 system-tools-backends vino gnutls libgcrypt libgpg-error libtasn1 opencdk yelp libgtkhtml zenity Error: Status 1 encountered during processing. -------- Is my mistake running 'install gnome' when i should have installed something else first (like install gnome-desktop-suite)? I just assumed that if I ran install gnome it would install things in the proper order by itself. Also, what exactly is a "roles attribute" and where would I add it in the geyes.xml file in each of the language subdirectories? Or, better yet is there an easy edit, say to the docs Makefile, that would get me around this? Any suggestions or instructions will be greatly appreciated (even rtfm as long as i'm told exactly which fm to r). :-) If it's important, this is on a macbook pro. thanks, mark ____________________________________________________________________________________ Don't get soaked. Take a quick peek at the forecast with the Yahoo! Search weather shortcut. http://tools.search.yahoo.com/shortcuts/#loc_weather From ryandesign at macports.org Sun Apr 1 16:44:28 2007 From: ryandesign at macports.org (Ryan Schmidt) Date: Tue Oct 9 16:42:39 2007 Subject: Macports Newbie - XServe use In-Reply-To: <19C119EC-9B2B-4DC0-BE38-27F975DC592A@webis.net> References: <19C119EC-9B2B-4DC0-BE38-27F975DC592A@webis.net> Message-ID: Hi Alex. Long time no see. :) Welcome to MacPorts. On Apr 1, 2007, at 17:24, Alex Kac wrote: > I am very comfortable with BSD (specifically OS X Server over the > last few years) and maintain my current OS X Server primarily via > command line, though I like web admin tools as well because I don't > always have SSH access and I prefer to not have my impatient typing > kill a server. So for the last few years I've been using iTools > from Tenon on my Dual G5 server. We are moving to a new XServe Xeon > in the next 2 days and I need to migrate the servers/config to that > machine. I do not wish to use the Apple supplied servers because > they are usually out of date and don't meet my needs. I do not wish > to continue using Tenon's iTools for the same reason. I am > comfortable building my own servers from source, but its been so > long that I'm not completely aware of all the options and I'd > rather not recompile apache 50 times because I forgot something. I > was told by a friend who maintains Apple's XServes in their IT team > that some of those guys are enamored with MacPorts. So great - > here I am :) > > Here are the open source servers I run: > Apache2 with > mod_SSL > mod_auth_dbm > PHP5 > MySQL 5 > Subversion > SFTP > > I would like to add Webmin to the new server since we'd not be > using iTools. Right now we have Subversion using svn+ssh access > (direct SVN server access), but I'd like to change that to mod_SVN. > So add that to the list too :) > > So my questions and concerns. With Apache2 we have it use the dbm > for all authentication instead of htaccess or OS X accounts. I'd > like to move our SFTP over to using the same dbm instead of OS X > accounts like it is now. And I definitely want MySQL 5 running as > an x64 binary. The rest can run as 32-bit binaries. Of course I'd > like to have it all start on startup and run in server mode. > > With all that said, any tips on variants/options to use with > MacPorts to set this up properly? Apache and Subversion need apr and apr-util, and will install them for you automatically if needed, but will do so with BerkeleyDB support added. This is not necessary for most people, and on Mac OS X I believe it is not recommended, so I like to omit BDB support on my system. Apache always includes SSL support so no special variant is needed. The apache2 port does install a mod_auth_dbm.so but I've never used it. Does it require BerkeleyDB? If so, then you should forget about the above BerkeleyDB-less recommendations. Subversion includes some nice tools you may want which are not installed by default; use the +tools variant to get them. Couldn't hurt even if you don't need the tools right this second. Use the +server variant for mysql5 to get the launchdaemon plist. Apache is always a server and always includes the plist. php5 has many options selectable through many variants. "port info php5" to see what's available. I haven't had a chance to use an Intel Xserve yet but I assume that anything you compile with MacPorts would end up 64-bit if you're on such an Xserve. If you find that's not the case and that we need to modify the portfiles in some way to make it happen, let us know. I don't have any experience managing an SFTP server so I can't suggest a software package to install. It's been years since I ran Webmin. There doesn't appear to be a webmin port for MacPorts. If you install it manually following their instructions, it may work, depending on what you try to do with it. Here's how I would install the ports you mentioned: sudo -s port install apr-util +no_bdb port install subversion +no_bdb +mod_dav_svn +tools port install mysql5 +server port install php5 +apache2 +mysql5 Then you need to install the initial MySQL databases (or move in a data directory from an old MySQL install). Then you activate the launchdaemon plists for apache2 and mysql5. From alex at webis.net Sun Apr 1 17:13:44 2007 From: alex at webis.net (Alex Kac) Date: Tue Oct 9 16:42:39 2007 Subject: Macports Newbie - XServe use In-Reply-To: References: <19C119EC-9B2B-4DC0-BE38-27F975DC592A@webis.net> Message-ID: <1E0D6FF6-3E4E-4857-A371-9E3D9A409257@webis.net> Hi Ryan - yeah, I know :) Was actually surprised to see you leading the charge here. I spent a lot of time searching and reading the list's archives (about 12 pages worth), so hopefully my post is a decent first one. On Apr 1, 2007, at 6:44 PM, Ryan Schmidt wrote: > Hi Alex. Long time no see. :) Welcome to MacPorts. > > On Apr 1, 2007, at 17:24, Alex Kac wrote: > >> I am very comfortable with BSD (specifically OS X Server over the >> last few years) and maintain my current OS X Server primarily via >> command line, though I like web admin tools as well because I >> don't always have SSH access and I prefer to not have my impatient >> typing kill a server. So for the last few years I've been using >> iTools from Tenon on my Dual G5 server. We are moving to a new >> XServe Xeon in the next 2 days and I need to migrate the servers/ >> config to that machine. I do not wish to use the Apple supplied >> servers because they are usually out of date and don't meet my >> needs. I do not wish to continue using Tenon's iTools for the same >> reason. I am comfortable building my own servers from source, but >> its been so long that I'm not completely aware of all the options >> and I'd rather not recompile apache 50 times because I forgot >> something. I was told by a friend who maintains Apple's XServes in >> their IT team that some of those guys are enamored with MacPorts. >> So great - here I am :) >> >> Here are the open source servers I run: >> Apache2 with >> mod_SSL >> mod_auth_dbm >> PHP5 >> MySQL 5 >> Subversion >> SFTP >> >> I would like to add Webmin to the new server since we'd not be >> using iTools. Right now we have Subversion using svn+ssh access >> (direct SVN server access), but I'd like to change that to >> mod_SVN. So add that to the list too :) >> >> So my questions and concerns. With Apache2 we have it use the dbm >> for all authentication instead of htaccess or OS X accounts. I'd >> like to move our SFTP over to using the same dbm instead of OS X >> accounts like it is now. And I definitely want MySQL 5 running as >> an x64 binary. The rest can run as 32-bit binaries. Of course I'd >> like to have it all start on startup and run in server mode. >> >> With all that said, any tips on variants/options to use with >> MacPorts to set this up properly? > > Apache and Subversion need apr and apr-util, and will install them > for you automatically if needed, but will do so with BerkeleyDB > support added. This is not necessary for most people, and on Mac OS > X I believe it is not recommended, so I like to omit BDB support on > my system. > > Apache always includes SSL support so no special variant is needed. > The apache2 port does install a mod_auth_dbm.so but I've never used > it. Does it require BerkeleyDB? If so, then you should forget about > the above BerkeleyDB-less recommendations. Its actually a Berkley-less authentication mechanism so I'm good there. > > Subversion includes some nice tools you may want which are not > installed by default; use the +tools variant to get them. Couldn't > hurt even if you don't need the tools right this second. > > Use the +server variant for mysql5 to get the launchdaemon plist. > Apache is always a server and always includes the plist. > > php5 has many options selectable through many variants. "port info > php5" to see what's available. Great - will do. > > I haven't had a chance to use an Intel Xserve yet but I assume that > anything you compile with MacPorts would end up 64-bit if you're on > such an Xserve. If you find that's not the case and that we need to > modify the portfiles in some way to make it happen, let us know. Interesting :) Does anyone on this list have experience with this? OS X Tiger on the XServe (Quad core Xeons) supports 64-bit server processes such as MySQL 64-bit, but its not a 64-bit OS per se. I know Leopard comes with 64-bit Apache/MySQL. > > I don't have any experience managing an SFTP server so I can't > suggest a software package to install. > > It's been years since I ran Webmin. There doesn't appear to be a > webmin port for MacPorts. If you install it manually following > their instructions, it may work, depending on what you try to do > with it. It does - I tried it on my iMac G5 (my PhoneValet server) first. They have OS X instructions and it works very well. > > Here's how I would install the ports you mentioned: > > sudo -s > port install apr-util +no_bdb > port install subversion +no_bdb +mod_dav_svn +tools > port install mysql5 +server > port install php5 +apache2 +mysql5 > > Then you need to install the initial MySQL databases (or move in a > data directory from an old MySQL install). Then you activate the > launchdaemon plists for apache2 and mysql5. Yes, I plan to do a dump out of my current DB to mysql5 as a new DB. Now - you mention activating the launchdaemon plists - I don't see that anywhere in the wiki or maybe it'll explain it when I run the port :) I will try this tomorrow when the server is supposed to be delivered and will report back. Thanks! Finally, why does MacPorts require X11 SDK? I have X11 installed on my MBP simply because of Crossover, but not the SDK. I wanted to test the server ports in MacPorts, but it requires I install the X11 SDK if I have X11 app installed and I have no intention of using X11 apps. Alex Kac - President and Founder Web Information Solutions, Inc. - Microsoft Certified Partner "Patience is the companion of wisdom." --Anonymous From grimm at grimmwerks.com Sun Apr 1 18:07:20 2007 From: grimm at grimmwerks.com (grimmwerks) Date: Tue Oct 9 16:42:39 2007 Subject: Macports Newbie - XServe use In-Reply-To: <1E0D6FF6-3E4E-4857-A371-9E3D9A409257@webis.net> References: <19C119EC-9B2B-4DC0-BE38-27F975DC592A@webis.net> <1E0D6FF6-3E4E-4857-A371-9E3D9A409257@webis.net> Message-ID: <77883EA7-D26E-4436-8B02-B05F01CF18D8@grimmwerks.com> Alex - please let me know how you find all the macports installation on the xserve goes for you; I don't have the experience you do, but I've installed the same setups (+ruby) on non-server machines with no problem. However, recently trying to get all of this on the xserve has proven itself to be problematic for me recently. I don't know if it's a permissions problem, or something I've done in my own misunderstanding, but I don't have a solid setup right now. The placement of the mysql.sock being a problem at first, the permissions and ability to write to databases being another. As of right now, mysql is a bit farked in that I DO have databases created and users that can write to these dbs, but the minute that I try to run rails to set up an initial database (I'm trying to setup retrospectiva as a bugtracker) -- it all blows up. I've even tried to mySQL gui tools to add to the db, and they crash too. Apache is running (I get the 'It works!' page), but can't quite get the mod svn working as yet. So, if you do get this all up and running smoothly, I'd really appreciate it if you can hand down the steps to get this going on an Xserve. From rhwood at mac.com Mon Apr 2 01:55:43 2007 From: rhwood at mac.com (Randall Wood) Date: Tue Oct 9 16:42:39 2007 Subject: gnome-applets install failure In-Reply-To: <844207.49126.qm@web36904.mail.mud.yahoo.com> References: <844207.49126.qm@web36904.mail.mud.yahoo.com> Message-ID: <442BA3B4-9356-414E-AE08-C2A615D1A3F0@mac.com> We are part way through an upgrade from GNOME version 2.16 to version 2.18. Please be patient and this will be fixed within 24 hours. On 1 Apr 2007, at 18:49, marcus aurelius wrote: > I'm new to the list and if this has been covered > earlier I apologize. I haven't been on a mailing list > in a very long time (try Windows 95 mailing list) and > I'm just not seeing an easy way to search the archives > - apologies if it's right in plain view. > > Ran port install gnome and things were chugging > merrily along but I've run into an error I just don't > know how to fix or work around... > > port install choked on gnome-applets with the > following error messages... > > ---> Building gnome-applets with target all > [ cut ] > Making all in geyes > Making all in themes > Making all in docs > xsltproc -o geyes-C.omf --stringparam db2omf.basename > geyes --stringparam db2omf.format 'docbook' > --stringparam db2omf.dtd "-//OASIS//DTD DocBook XML > V4.1.2//EN" --stringparam db2omf.lang C --stringparam > db2omf.omf_dir "/opt/local/share/omf" --stringparam > db2omf.help_dir "/opt/local/share/gnome/help" > --stringparam db2omf.omf_in "`pwd`/./geyes.omf.in" > `/opt/local/bin/pkg-config --variable db2omf > gnome-doc-utils` C/geyes.xml > db2omf: Could not construct the OMF maintainer > element. > Add an author, corpauthor, editor, othercredit, or > publisher > element with the role attribute set to "maintainer" > to geyes.xml. > make[3]: *** [geyes-C.omf] Error 10 > make[2]: *** [all-recursive] Error 1 > make[1]: *** [all-recursive] Error 1 > make: *** [all] Error 2 > > Error: The following dependencies failed to build: > gnome-desktop-suite gnome-applets gnome-audio > gnome-backgrounds gnome-games guile gmp > gnome-keyring-manager gnome-media gnome-python-desktop > py-gnome libzvt py-orbit gnome-system-monitor > gnome-user-docs gnome-utils gnopernicus > gst-plugins-good gucharmap libgail-gnome libgtkhtml3 > system-tools-backends vino gnutls libgcrypt > libgpg-error libtasn1 opencdk yelp libgtkhtml zenity > Error: Status 1 encountered during processing. > -------- > > Is my mistake running 'install gnome' when i should > have installed something else first (like install > gnome-desktop-suite)? I just assumed that if I ran > install gnome it would install things in the proper > order by itself. Also, what exactly is a "roles > attribute" and where would I add it in the geyes.xml > file in each of the language subdirectories? Or, > better yet is there an easy edit, say to the docs > Makefile, that would get me around this? > > Any suggestions or instructions will be greatly > appreciated (even rtfm as long as i'm told exactly > which fm to r). :-) If it's important, this is on a > macbook pro. > > thanks, > mark > > > > > ______________________________________________________________________ > ______________ > Don't get soaked. Take a quick peek at the forecast > with the Yahoo! Search weather shortcut. > http://tools.search.yahoo.com/shortcuts/#loc_weather > _______________________________________________ > macports-users mailing list > macports-users@lists.macosforge.org > http://lists.macosforge.org/mailman/listinfo/macports-users Randall Wood rhwood@mac.com "The rules are simple: The ball is round. The game lasts 90 minutes. All the rest is just philosophy." From fredbaud at waterwiki.info Mon Apr 2 05:40:02 2007 From: fredbaud at waterwiki.info (Fred Bauder) Date: Tue Oct 9 16:42:39 2007 Subject: gnome-applets install failure Message-ID: >-----Original Message----- >From: marcus aurelius [mailto:idblahs@yahoo.com] >Sent: Sunday, April 1, 2007 04:49 PM >To: 'macports-users' >Subject: gnome-applets install failure > >I'm new to the list and if this has been covered >earlier I apologize. I haven't been on a mailing list >in a very long time (try Windows 95 mailing list) and >I'm just not seeing an easy way to search the archives >- apologies if it's right in plain view. > >Ran port install gnome and things were chugging >merrily along but I've run into an error I just don't >know how to fix or work around... > >port install choked on gnome-applets with the >following error messages... > >---> Building gnome-applets with target all >[ cut ] >Making all in geyes >Making all in themes >Making all in docs >xsltproc -o geyes-C.omf --stringparam db2omf.basename >geyes --stringparam db2omf.format 'docbook' >--stringparam db2omf.dtd "-//OASIS//DTD DocBook XML >V4.1.2//EN" --stringparam db2omf.lang C --stringparam >db2omf.omf_dir "/opt/local/share/omf" --stringparam >db2omf.help_dir "/opt/local/share/gnome/help" >--stringparam db2omf.omf_in "`pwd`/./geyes.omf.in" >`/opt/local/bin/pkg-config --variable db2omf >gnome-doc-utils` C/geyes.xml >db2omf: Could not construct the OMF maintainer >element. > Add an author, corpauthor, editor, othercredit, or >publisher > element with the role attribute set to "maintainer" >to geyes.xml. >make[3]: *** [geyes-C.omf] Error 10 >make[2]: *** [all-recursive] Error 1 >make[1]: *** [all-recursive] Error 1 >make: *** [all] Error 2 > >Error: The following dependencies failed to build: >gnome-desktop-suite gnome-applets gnome-audio >gnome-backgrounds gnome-games guile gmp >gnome-keyring-manager gnome-media gnome-python-desktop >py-gnome libzvt py-orbit gnome-system-monitor >gnome-user-docs gnome-utils gnopernicus >gst-plugins-good gucharmap libgail-gnome libgtkhtml3 >system-tools-backends vino gnutls libgcrypt >libgpg-error libtasn1 opencdk yelp libgtkhtml zenity >Error: Status 1 encountered during processing. >-------- > >Is my mistake running 'install gnome' when i should >have installed something else first (like install >gnome-desktop-suite)? I just assumed that if I ran >install gnome it would install things in the proper >order by itself. Also, what exactly is a "roles >attribute" and where would I add it in the geyes.xml >file in each of the language subdirectories? Or, >better yet is there an easy edit, say to the docs >Makefile, that would get me around this? > >Any suggestions or instructions will be greatly >appreciated (even rtfm as long as i'm told exactly >which fm to r). :-) If it's important, this is on a >macbook pro. > >thanks, >mark I duplicated this. It took quite a while thinking, then began installing software, starting with expat. This continued for about 10 hours, but when it got to this: ---> Cleaning libxklavier-2-2 ---> Fetching gnome-applets ---> Attempting to fetch gnome-applets-2.16.2.tar.bz2 from http://mahe.inrialpes.fr/linux/gnome.org/sources/gnome-applets/2.16/ ---> Attempting to fetch gnome-applets-2.16.2.tar.bz2 from http://mandril.creatis.insa-lyon.fr/linux/gnome.org/sources/gnome-applets/2.16/ ---> Verifying checksum(s) for gnome-applets ---> Extracting gnome-applets ---> Applying patches to gnome-applets ---> Configuring gnome-applets ---> Building gnome-applets with target all Error: Target com.apple.build returned: shell command "cd "/opt/local/var/db/dports/build/_opt_local_var_db_dports_sources_rsync.rsync.darwinports.org_dpupdate_dports_gnome_gnome-applets/work/gnome-applets-2.16.2" && make all" returned error 2 Command output: xsltproc -o char-palette-pt_BR.omf --stringparam db2omf.basename char-palette --stringparam db2omf.format 'docbook' --stringparam db2omf.dtd "-//OASIS//DTD DocBook XML V4.3//EN" --stringparam db2omf.lang pt_BR --stringparam db2omf.omf_dir "/opt/local/share/omf" --stringparam db2omf.help_dir "/opt/local/share/gnome/help" --stringparam db2omf.omf_in "`pwd`/./char-palette.omf.in" `/opt/local/bin/pkg-config --variable db2omf gnome-doc-utils` pt_BR/char-palette.xml xsltproc -o char-palette-sv.omf --stringparam db2omf.basename char-palette --stringparam db2omf.format 'docbook' --stringparam db2omf.dtd "-//OASIS//DTD DocBook XML V4.3//EN" --stringparam db2omf.lang sv --stringparam db2omf.omf_dir "/opt/local/share/omf" --stringparam db2omf.help_dir "/opt/local/share/gnome/help" --stringparam db2omf.omf_in "`pwd`/./char-palette.omf.in" `/opt/local/bin/pkg-config --variable db2omf gnome-doc-utils` sv/char-palette.xml xsltproc -o char-palette-uk.omf --stringparam db2omf.basename char-palette --stringparam db2omf.format 'docbook' --stringparam db2omf.dtd "-//OASIS//DTD DocBook XML V4.3//EN" --stringparam db2omf.lang uk --stringparam db2omf.omf_dir "/opt/local/share/omf" --stringparam db2omf.help_dir "/opt/local/share/gnome/help" --stringparam db2omf.omf_in "`pwd`/./char-palette.omf.in" `/opt/local/bin/pkg-config --variable db2omf gnome-doc-utils` uk/char-palette.xml if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I. -I. -DXTHREADS -DORBIT2=1 -D_REENTRANT -I/opt/local/include/panel-2.0 -I/opt/local/include/gtk-2.0 -I/opt/local/include/libgnomeui-2.0 -I/opt/local/include/libbonoboui-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/libgnome-2.0 -I/opt/local/include/libgnomecanvas-2.0 -I/opt/local/include/libart-2.0 -I/opt/local/include/gconf/2 -I/opt/local/include/gnome-vfs-2.0 -I/opt/local/lib/gnome-vfs-2.0/include -I/opt/local/include/gnome-keyring-1 -I/opt/local/include/orbit-2.0 -I/opt/local/include/libbonobo-2.0 -I/opt/local/include/bonobo-activation-2.0 -I/opt/local/include/libxml2 -L/opt/local/lib/libxklavier-2.2/lib -I/opt/local/lib/libxklavier-2.2/include -I/opt/local/include -I/usr/include -I/opt/local/lib/libxklavier-2.2/include -I/opt/local/include -I/usr/include -MT charpick.o -MD -MP -MF ".deps/charpick.Tpo" -c -o charpick.o charpick.c; \ then mv -f ".deps/charpick.Tpo" ".deps/charpick.Po"; else rm -f ".deps/charpick.Tpo"; exit 1; fi if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I. -I. -DXTHREADS -DORBIT2=1 -D_REENTRANT -I/opt/local/include/panel-2.0 -I/opt/local/include/gtk-2.0 -I/opt/local/include/libgnomeui-2.0 -I/opt/local/include/libbonoboui-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/libgnome-2.0 -I/opt/local/include/libgnomecanvas-2.0 -I/opt/local/include/libart-2.0 -I/opt/local/include/gconf/2 -I/opt/local/include/gnome-vfs-2.0 -I/opt/local/lib/gnome-vfs-2.0/include -I/opt/local/include/gnome-keyring-1 -I/opt/local/include/orbit-2.0 -I/opt/local/include/libbonobo-2.0 -I/opt/local/include/bonobo-activation-2.0 -I/opt/local/include/libxml2 -L/opt/local/lib/libxklavier-2.2/lib -I/opt/local/lib/libxklavier-2.2/include -I/opt/local/include -I/usr/include -I/opt/local/lib/libxklavier-2.2/include -I/opt/local/include -I/usr/include -MT properties.o -MD -MP -MF ".deps/properties.Tpo" -c -o properties.o properties.c; \ then mv -f ".deps/properties.Tpo" ".deps/properties.Po"; else rm -f ".deps/properties.Tpo"; exit 1; fi /bin/sh ../libtool --mode=link gcc -I/opt/local/lib/libxklavier-2.2/include -I/opt/local/include -I/usr/include -o charpick_applet2 charpick.o properties.o -L/opt/local/lib -L/usr/X11R6/lib -lpanel-applet-2 -lgnomeui-2 -lbonoboui-2 -lgnome-keyring -lxml2 -lpthread -lgnomecanvas-2 -lgnome-2 -lpopt -lart_lgpl_2 -lpangoft2-1.0 -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -ltiff -ljpeg -lpangocairo-1.0 -lpango-1.0 -lcairo -lSM -lICE -lfreetype -lz -lfontconfig -lexpat -lpng12 -lXrender -lX11 -lgconf-2 -lgnomevfs-2 -lbonobo-2 -lbonobo-activation -lORBit-2 -lm -lgmodule-2.0 -lgthread-2.0 -lgobject-2.0 -lglib-2.0 -lintl -liconv mkdir .libs gcc -I/opt/local/lib/libxklavier-2.2/include -I/opt/local/include -I/usr/include -o charpick_applet2 charpick.o properties.o -L/opt/local/lib -L/usr/X11R6/lib /opt/local/lib/libpanel-applet-2.dylib /opt/local/lib/libglade-2.0.dylib /opt/local/lib/libgnomeui-2.dylib /opt/local/lib/libbonoboui-2.dylib /opt/local/lib/libgnome-keyring.dylib /opt/local/lib/libgnomecanvas-2.dylib /opt/local/lib/libgnome-2.dylib /opt/local/lib/libesd.dylib /opt/local/lib/libaudiofile.dylib /opt/local/lib/libpopt.dylib /opt/local/lib/libart_lgpl_2.dylib /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/libtiff.dylib /opt/local/lib/libjpeg.dylib /opt/local/lib/libpangocairo-1.0.dylib /opt/local/lib/libpangoft2-1.0.dylib /opt/local/lib/libpango-1.0.dylib /opt/local/lib/libcairo.dylib -lSM -lICE /opt/local/lib/libfontconfig.dylib /opt/local/lib/libfreetype.dylib /opt/local/lib/libexpat.dylib /opt/local/lib/libpng12.dylib /opt/local/lib/libXrender.dylib -lX11 /opt/local/lib/libgnomevfs-2.dylib /opt/local/lib/libgconf-2.dylib /opt/local/lib/libxml2.dylib -lpthread /opt/local/lib/libdbus-glib-1.dylib /opt/local/lib/libdbus-1.dylib -lssl -lcrypto -lz /opt/local/lib/libhowl.dylib /opt/local/lib/libbonobo-2.dylib /opt/local/lib/libbonobo-activation.dylib /opt/local/lib/libORBitCosNaming-2.dylib /opt/local/lib/libORBit-2.dylib -lresolv -lm /opt/local/lib/libgmodule-2.0.dylib /opt/local/lib/libgthread-2.0.dylib /opt/local/lib/libgobject-2.0.dylib /opt/local/lib/libglib-2.0.dylib /opt/local/lib/libintl.dylib -lc /opt/local/lib/libiconv.dylib /usr/bin/ld: warning prebinding disabled because dependent library: /opt/local/lib/libpanel-applet-2.0.dylib is not prebound LC_ALL=C ../intltool-merge -s -u -c ../po/.intltool-merge-cache ../po charpick.schemas.in charpick.schemas Generating and caching the translation database Merging translations into charpick.schemas. sed -e "s|\@LIBEXECDIR\@|/opt/local/libexec|" GNOME_CharpickerApplet.server.in.in > GNOME_CharpickerApplet.server.in LC_ALL=C ../intltool-merge -o -u -c ../po/.intltool-merge-cache ../po GNOME_CharpickerApplet.server.in GNOME_CharpickerApplet.server Found cached translation database Merging translations into GNOME_CharpickerApplet.server. Making all in geyes Making all in themes make[3]: Nothing to be done for `all'. Making all in docs xsltproc -o geyes-C.omf --stringparam db2omf.basename geyes --stringparam db2omf.format 'docbook' --stringparam db2omf.dtd "-//OASIS//DTD DocBook XML V4.1.2//EN" --stringparam db2omf.lang C --stringparam db2omf.omf_dir "/opt/local/share/omf" --stringparam db2omf.help_dir "/opt/local/share/gnome/help" --stringparam db2omf.omf_in "`pwd`/./geyes.omf.in" `/opt/local/bin/pkg-config --variable db2omf gnome-doc-utils` C/geyes.xml db2omf: Could not construct the OMF maintainer element. Add an author, corpauthor, editor, othercredit, or publisher element with the role attribute set to "maintainer" to geyes.xml. make[3]: *** [geyes-C.omf] Error 10 make[2]: *** [all-recursive] Error 1 make[1]: *** [all-recursive] Error 1 make: *** [all] Error 2 Error: The following dependencies failed to build: gnome-desktop-suite gnome-applets gnome-audio gnome-backgrounds gnome-games guile gmp readline ncurses ncursesw gnome-keyring-manager gnome-media gnome-python-desktop py-gnome libzvt py-orbit gnome-system-monitor gnome-user-docs gnome-utils gnopernicus gst-plugins-good gucharmap libgail-gnome libgtkhtml3 system-tools-backends vino gnutls libgcrypt libgpg-error libtasn1 opencdk yelp libgtkhtml zenity Error: Status 1 encountered during processing. Fred Bauder From paulbeard at gmail.com Mon Apr 2 11:33:48 2007 From: paulbeard at gmail.com (Paul Beard) Date: Tue Oct 9 16:42:39 2007 Subject: 1.4 release question Message-ID: Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: PGP.sig Type: application/pgp-signature Size: 186 bytes Desc: This is a digitally signed message part Url : http://lists.macosforge.org/pipermail/macports-users/attachments/20070402/4c346462/PGP.bin From dluke at geeklair.net Mon Apr 2 11:44:54 2007 From: dluke at geeklair.net (Daniel J. Luke) Date: Tue Oct 9 16:42:39 2007 Subject: 1.4 release question In-Reply-To: References: Message-ID: On Apr 2, 2007, at 2:33 PM, Paul Beard wrote: > Wow, that was a stealthy release. I am wondering what's the ETA for > storing the registry of installed ports in sqlite, if there is one. > Or if it is available, how to turn it on (it's noted in ports.conf > but commented out). As far as I know, no one is working on it (and the last time I looked at the code, there wasn't anything there for the sqlite case other than stubs for the methods that needed to be written). -- 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: 186 bytes Desc: This is a digitally signed message part Url : http://lists.macosforge.org/pipermail/macports-users/attachments/20070402/bf96b6db/PGP.bin From kpettit at big-images.com Mon Apr 2 12:38:36 2007 From: kpettit at big-images.com (Ken Pettit) Date: Tue Oct 9 16:42:39 2007 Subject: Unable to create ~/.gnome2 directory: Permission denied Message-ID: I get this error while running this php script. Error: (process:4382): libgnomevfs-WARNING**: Unable to create ~/.gnome2 directory: Permission denied Code: "; // Execute shell command system("exec 2>&1; $imPath/convert 'images/$new_svg' images/$new_png"); // Redirect to show_image.php $redirect = "show_image.php?new_svg=$new_svg&new_png=$new_png"; header("Location: ". $redirect ); exit(); // Flush header ob_end-flush(); ?> I new to the whole shell script world, sorry. Where do I find the '~/.gnome2 directory' and what should it's permissions be set to? Thanks, Ken... Ken Pettit BIG Images 2304 Broad St San Luis Obispo CA, 93401 email:kpettit@big-images.com phone:805-781-9301 fax:805-781-9303 it is not the past, but the future that awaits you, that determines who you are right now. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.macosforge.org/pipermail/macports-users/attachments/20070402/4dabcc60/attachment.html From macports at currenttime.net Mon Apr 2 12:39:03 2007 From: macports at currenttime.net (Marco) Date: Tue Oct 9 16:42:39 2007 Subject: Problems port GNOME In-Reply-To: <20070401180247.BA410153B802@lists.macosforge.org> References: <20070401180247.BA410153B802@lists.macosforge.org> Message-ID: <96D1148B-3E89-4EDF-BC86-7A944B0EE3FF@currenttime.net> Hi, I'm trying to install GNOME via the Meta/Mega port. Then I ran into a problem with one of the dependecies, libgtop. Running Mac OS X 10.4.9, PowerMac G5, Xcode 2.4.1 Any suggestions. ---> Fetching libgtop ---> Verifying checksum(s) for libgtop ---> Extracting libgtop ---> Configuring libgtop ---> Building libgtop with target all Error: Target com.apple.build returned: shell command "cd "/opt/local/ var/db/dports/build/ _opt_local_var_db_dports_sources_rsync.rsync.darwinports.org_dpupdate_dp orts_gnome_libgtop/work/libgtop-2.14.8" && make all" returned error 2 Command output: if /bin/sh ../libtool --tag=CC --mode=compile gcc - DHAVE_CONFIG_H -I. -I. -I.. -I.. -I.. -I../sysdeps/stub -I../include - I/opt/local/include/glib-2.0 -I/opt/local/lib/glib-2.0/include -I/opt/ local/include -I/usr/X11R6/include -L/opt/local/lib -I/opt/local/ include -Winline -Wall -std=gnu89 -Wchar-subscripts - Wmissing-declarations -Wmissing-prototypes -Wnested-externs - Wpointer-arith -Wcast-align -Wsign-compare -no-cpp-precomp -lintl -MT read.lo -MD -MP -MF ".deps/read.Tpo" -c -o read.lo read.c; \ then mv -f ".deps/read.Tpo" ".deps/read.Plo"; else rm -f ".deps/ read.Tpo"; exit 1; fi gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I.. -I../sysdeps/stub -I../ include -I/opt/local/include/glib-2.0 -I/opt/local/lib/glib-2.0/ include -I/opt/local/include -I/usr/X11R6/include -L/opt/local/lib -I/ opt/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts - Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer- arith -Wcast-align -Wsign-compare -no-cpp-precomp -lintl -MT read.lo - MD -MP -MF .deps/read.Tpo -c read.c -fno-common -DPIC -o .libs/read.o powerpc-apple-darwin8-gcc-4.0.1: -lintl: linker input file unused because linking not done if /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I.. -I../sysdeps/stub -I../include -I/opt/local/ include/glib-2.0 -I/opt/local/lib/glib-2.0/include -I/opt/local/ include -I/usr/X11R6/include -L/opt/local/lib -I/opt/local/ include -Winline -Wall -std=gnu89 -Wchar-subscripts - Wmissing-declarations -Wmissing-prototypes -Wnested-externs - Wpointer-arith -Wcast-align -Wsign-compare -no-cpp-precomp -lintl -MT read_data.lo -MD -MP -MF ".deps/read_data.Tpo" -c -o read_data.lo read_data.c; \ then mv -f ".deps/read_data.Tpo" ".deps/read_data.Plo"; else rm -f ".deps/read_data.Tpo"; exit 1; fi gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I.. -I../sysdeps/stub -I../ include -I/opt/local/include/glib-2.0 -I/opt/local/lib/glib-2.0/ include -I/opt/local/include -I/usr/X11R6/include -L/opt/local/lib -I/ opt/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts - Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer- arith -Wcast-align -Wsign-compare -no-cpp-precomp -lintl -MT read_data.lo -MD -MP -MF .deps/read_data.Tpo -c read_data.c -fno- common -DPIC -o .libs/read_data.o powerpc-apple-darwin8-gcc-4.0.1: -lintl: linker input file unused because linking not done if /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I.. -I../sysdeps/stub -I../include -I/opt/local/ include/glib-2.0 -I/opt/local/lib/glib-2.0/include -I/opt/local/ include -I/usr/X11R6/include -L/opt/local/lib -I/opt/local/ include -Winline -Wall -std=gnu89 -Wchar-subscripts - Wmissing-declarations -Wmissing-prototypes -Wnested-externs - Wpointer-arith -Wcast-align -Wsign-compare -no-cpp-precomp -lintl -MT write.lo -MD -MP -MF ".deps/write.Tpo" -c -o write.lo write.c; \ then mv -f ".deps/write.Tpo" ".deps/write.Plo"; else rm -f ".deps/ write.Tpo"; exit 1; fi gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I.. -I../sysdeps/stub -I../ include -I/opt/local/include/glib-2.0 -I/opt/local/lib/glib-2.0/ include -I/opt/local/include -I/usr/X11R6/include -L/opt/local/lib -I/ opt/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts - Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer- arith -Wcast-align -Wsign-compare -no-cpp-precomp -lintl -MT write.lo -MD -MP -MF .deps/write.Tpo -c write.c -fno-common -DPIC -o .libs/ write.o powerpc-apple-darwin8-gcc-4.0.1: -lintl: linker input file unused because linking not done if /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I.. -I../sysdeps/stub -I../include -I/opt/local/ include/glib-2.0 -I/opt/local/lib/glib-2.0/include -I/opt/local/ include -I/usr/X11R6/include -L/opt/local/lib -I/opt/local/ include -Winline -Wall -std=gnu89 -Wchar-subscripts - Wmissing-declarations -Wmissing-prototypes -Wnested-externs - Wpointer-arith -Wcast-align -Wsign-compare -no-cpp-precomp -lintl -MT lib.lo -MD -MP -MF ".deps/lib.Tpo" -c -o lib.lo lib.c; \ then mv -f ".deps/lib.Tpo" ".deps/lib.Plo"; else rm -f ".deps/ lib.Tpo"; exit 1; fi gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I.. -I../sysdeps/stub -I../ include -I/opt/local/include/glib-2.0 -I/opt/local/lib/glib-2.0/ include -I/opt/local/include -I/usr/X11R6/include -L/opt/local/lib -I/ opt/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts - Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer- arith -Wcast-align -Wsign-compare -no-cpp-precomp -lintl -MT lib.lo - MD -MP -MF .deps/lib.Tpo -c lib.c -fno-common -DPIC -o .libs/lib.o powerpc-apple-darwin8-gcc-4.0.1: -lintl: linker input file unused because linking not done if /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I.. -I../sysdeps/stub -I../include -I/opt/local/ include/glib-2.0 -I/opt/local/lib/glib-2.0/include -I/opt/local/ include -I/usr/X11R6/include -L/opt/local/lib -I/opt/local/ include -Winline -Wall -std=gnu89 -Wchar-subscripts - Wmissing-declarations -Wmissing-prototypes -Wnested-externs - Wpointer-arith -Wcast-align -Wsign-compare -no-cpp-precomp -lintl -MT parameter.lo -MD -MP -MF ".deps/parameter.Tpo" -c -o parameter.lo parameter.c; \ then mv -f ".deps/parameter.Tpo" ".deps/parameter.Plo"; else rm -f ".deps/parameter.Tpo"; exit 1; fi gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I.. -I../sysdeps/stub -I../ include -I/opt/local/include/glib-2.0 -I/opt/local/lib/glib-2.0/ include -I/opt/local/include -I/usr/X11R6/include -L/opt/local/lib -I/ opt/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts - Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer- arith -Wcast-align -Wsign-compare -no-cpp-precomp -lintl -MT parameter.lo -MD -MP -MF .deps/parameter.Tpo -c parameter.c -fno- common -DPIC -o .libs/parameter.o powerpc-apple-darwin8-gcc-4.0.1: -lintl: linker input file unused because linking not done if /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I.. -I../sysdeps/stub -I../include -I/opt/local/ include/glib-2.0 -I/opt/local/lib/glib-2.0/include -I/opt/local/ include -I/usr/X11R6/include -L/opt/local/lib -I/opt/local/ include -Winline -Wall -std=gnu89 -Wchar-subscripts - Wmissing-declarations -Wmissing-prototypes -Wnested-externs - Wpointer-arith -Wcast-align -Wsign-compare -no-cpp-precomp -lintl -MT sysdeps.lo -MD -MP -MF ".deps/sysdeps.Tpo" -c -o sysdeps.lo sysdeps.c; \ then mv -f ".deps/sysdeps.Tpo" ".deps/sysdeps.Plo"; else rm -f ".deps/ sysdeps.Tpo"; exit 1; fi gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I.. -I../sysdeps/stub -I../ include -I/opt/local/include/glib-2.0 -I/opt/local/lib/glib-2.0/ include -I/opt/local/include -I/usr/X11R6/include -L/opt/local/lib -I/ opt/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts - Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer- arith -Wcast-align -Wsign-compare -no-cpp-precomp -lintl -MT sysdeps.lo -MD -MP -MF .deps/sysdeps.Tpo -c sysdeps.c -fno-common - DPIC -o .libs/sysdeps.o powerpc-apple-darwin8-gcc-4.0.1: -lintl: linker input file unused because linking not done /bin/sh ../libtool --tag=CC --mode=link gcc -Winline -Wall - std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing- prototypes -Wnested-externs -Wpointer-arith -Wcast-align - Wsign-compare -no-cpp-precomp -lintl -o libgtop-2.0.la -rpath / opt/local/lib -version-info 7:0:0 -export-symbols-regex "^[^_].*" init.lo open.lo close.lo command.lo read.lo read_data.lo write.lo lib.lo parameter.lo sysdeps.lo -L/opt/local/lib -lglib-2.0 -lintl - liconv ../sysdeps/common/libgtop_common-2.0.la ../sysdeps/stub/ libgtop_sysdeps-2.0.la libtool: link: cannot find the library `' or unhandled argument `- framework' make[3]: *** [libgtop-2.0.la] Error 1 make[2]: *** [all] Error 2 make[1]: *** [all-recursive] Error 1 make: *** [all] Error 2 From paulbeard at gmail.com Mon Apr 2 13:21:19 2007 From: paulbeard at gmail.com (Paul Beard) Date: Tue Oct 9 16:42:39 2007 Subject: Unable to create ~/.gnome2 directory: Permission denied In-Reply-To: References: Message-ID: Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: PGP.sig Type: application/pgp-signature Size: 186 bytes Desc: This is a digitally signed message part Url : http://lists.macosforge.org/pipermail/macports-users/attachments/20070402/0028e064/PGP.bin From iqgrande at gmail.com Mon Apr 2 17:40:36 2007 From: iqgrande at gmail.com (Anthony Michael Agelastos) Date: Tue Oct 9 16:42:39 2007 Subject: gnucash fails on libgtkhtml Message-ID: <86F0CB55-3813-451C-8413-67B29E57C339@gmail.com> Doing a sudo port install gnucash bombs on building gnucash with the error checking for libgtkhtml-3.8 ... checking for libgtkhtml-3.6 ... checking for libgtkhtml-3.2 ... checking for libgtkhtml-3.1 ... configure: error: Could not find a working gtkhtml version (need 3.1, 3.2, 3.6, or 3.8) Further investigations showed $ port installed | grep -i gtkhtml libgtkhtml @2.11.0_0 (active) libgtkhtml3 @3.14.0_0 (active) It appears that gnucash is looking for an older version of libgtkhtml that is no longer available as a Port. Does anyone have any ideas? Thank you for your help. -Anthony From mhaecki at gmail.com Tue Apr 3 00:37:03 2007 From: mhaecki at gmail.com (=?ISO-8859-1?Q?Markus_H=E4cki?=) Date: Tue Oct 9 16:42:39 2007 Subject: APR-util Message-ID: <60C476A5-4097-4556-B10E-372A4F1935DE@gmail.com> Hello everybody I tried to install the apache server with php and mysql through macports but I allways got the same error: Error: Target com.apple.configure returned: configure failure: shell =20 command "cd "/opt/local/var/db/dports/build/=20 _private_opt_local_var_db_dports_sources_rsync.rsy nc.darwinports.org_dpu=20= pdate_dports_devel_apr-util/work/apr-util-1.2.8" && CPPFLAGS=3D-I/opt/ =20= local/include LDFLAGS=3D-L/opt/local/lib ./configure --prefix=3D/opt/=20 local --with-apr=3D/opt/local/bin/apr-1-config --with-expat=3D/opt/ local = =20 --with-iconv=3D/opt/local --with-berkeley-db=3D/opt/local/include:/ opt/=20= local/lib/db44 --without-mysql --without-pgsql" returned error 1 Command output: checking build system type... powerpc-apple-darwin8.9.0 checking host system type... powerpc-apple-darwin8.9.0 checking target system type... powerpc-apple-darwin8.9.0 checking for a BSD-compatible install... /usr/bin/install -c checking for working mkdir -p... yes APR-util Version: 1.2.8 checking for chosen layout... apr-util Applying apr-util hints file rules for powerpc-apple-darwin8.9.0 checking for APR... configure: error: the --with-apr parameter is =20 incorrect. It must specify an install prefix, a build directory, or =20 an apr-config file. Error: The following dependencies failed to build: apache2 apr-util pcre Error: Status 1 encountered during processing. I selfupdated the ports but the same error shows up ufter a wile. I'm running mac os X.4.9. Somebody in a forum asked me wether I have the actual version of x- code running. I just know that I have installed the package and that my system is up to date! Do you have a answer for my problem? Cheers Markus -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.macosforge.org/pipermail/macports-users/attachments/20070403/cdb8ba84/attachment.html From ryandesign at macports.org Tue Apr 3 01:20:15 2007 From: ryandesign at macports.org (Ryan Schmidt) Date: Tue Oct 9 16:42:39 2007 Subject: APR-util In-Reply-To: <60C476A5-4097-4556-B10E-372A4F1935DE@gmail.com> References: <60C476A5-4097-4556-B10E-372A4F1935DE@gmail.com> Message-ID: On Apr 3, 2007, at 02:37, Markus H?cki wrote: > I tried to install the apache server with php and mysql through > macports but I allways got the same error: > > Error: Target com.apple.configure returned: configure failure: > shell =20 > command "cd "/opt/local/var/db/dports/build/=20 > _private_opt_local_var_db_dports_sources_rsync.rsy > nc.darwinports.org_dpu=20= > > pdate_dports_devel_apr-util/work/apr-util-1.2.8" && CPPFLAGS=3D-I/ > opt/=20= > > local/include LDFLAGS=3D-L/opt/local/lib ./configure --prefix=3D/ > opt/=20 > local --with-apr=3D/opt/local/bin/apr-1-config --with-expat=3D/opt/ > local = > =20 > --with-iconv=3D/opt/local --with-berkeley-db=3D/opt/local/include:/ > opt/=20= > > local/lib/db44 --without-mysql --without-pgsql" returned error 1 It's a bit difficult to read with your broken MIME encoding there. But I can see that the configure line ends with --without-pgsql. However, the current version of the apr-util port has an additional option after --without-pgsql (namely --with-sqlite3=/opt/local). That change was made to the portfile February 26, 2007, in revision 22339. The fact that you don't see parameter this in your configure line means your ports tree is over a month out of date. > Command output: checking build system type... powerpc-apple- > darwin8.9.0 > checking host system type... powerpc-apple-darwin8.9.0 > checking target system type... powerpc-apple-darwin8.9.0 > checking for a BSD-compatible install... /usr/bin/install -c > checking for working mkdir -p... yes > APR-util Version: 1.2.8 > checking for chosen layout... apr-util > Applying apr-util hints file rules for powerpc-apple-darwin8.9.0 > checking for APR... configure: error: the --with-apr parameter is =20 > incorrect. It must specify an install prefix, a build directory, or > =20 > an apr-config file. > > Error: The following dependencies failed to build: apache2 apr-util > pcre > Error: Status 1 encountered during processing. > > > I selfupdated the ports but the same error shows up ufter a wile. > I'm running mac os X.4.9. I don't understand why your ports are out of date if you have run port selfupdate, since that includes a sync which would update the ports tree. Please try running "sudo port sync" manually and see if it updates your ports. And then try building apr-util again. The --with-apr parameter is correct; as you can see, it does point to an apr-config file. You should already have the apr port installed. (It should install it for you if you don't.) Do you now have apr installed? > Somebody in a forum asked me wether I have the actual version of x- > code running. I just know that I have installed the package and > that my system is up to date! Yes, it would be a good idea to confirm that you have the current version of Xcode. Go to /Developer/Applications in the Finder and get info on Xcode.app. The current version is 2.4.1. If you have anything older, get 2.4.1 from the Apple developer web site. From mas at seligma.com Tue Apr 3 01:37:58 2007 From: mas at seligma.com (=?ISO-8859-1?Q?Marc_Andr=E9_Selig?=) Date: Tue Oct 9 16:42:39 2007 Subject: gnucash fails on libgtkhtml In-Reply-To: <86F0CB55-3813-451C-8413-67B29E57C339@gmail.com> References: <86F0CB55-3813-451C-8413-67B29E57C339@gmail.com> Message-ID: <55255B06-BE1B-47E0-BC81-18145E22EB05@seligma.com> On 03.04.2007, at 02:40, Anthony Michael Agelastos wrote: > checking for libgtkhtml-3.8 ... checking for libgtkhtml-3.6 ... > checking for libgtkhtml-3.2 ... checking for libgtkhtml-3.1 ... > configure: error: Could not find a working gtkhtml version (need > 3.1, 3.2, 3.6, or 3.8) [...] > libgtkhtml3 @3.14.0_0 (active) > > It appears that gnucash is looking for an older version of > libgtkhtml that is no longer available as a Port. Does anyone have > any ideas? Thank you for your help. Your conclusion is correct: the current release of GnuCash does not work with libgtkhtml 3.14 (which is apparently lacking some wrapper functions used by the printing subsystem), thus the recent upgrade of libgtkhtml3 breaks GnuCash. I have committed a new port libgtkhtml312, providing the previous (known-good) version of libgtkhtml. It should happily live together with libgtkhtml3. GnuCash now depends on this port. Please wait until the changes have propagated to the rsync repository (should take about 12 hours), then do this: sudo port selfupdate sudo port clean gnucash sudo port install gnucash Thank you for your report! Regards, Marc From derek at chocolate-fish.com Tue Apr 3 04:24:03 2007 From: derek at chocolate-fish.com (Derek Harland) Date: Tue Oct 9 16:42:39 2007 Subject: Problem installing antigraingeometry Message-ID: <46123953.804@chocolate-fish.com> Hi all * I have an error when trying to install the antigraingeometry package (version:2.5) >sudo port -ucv install antigraingeometry ---> Configuring antigraingeometry aclocal: configure.in: 103: macro `AM_PATH_SDL' not found in library Error: Target com.apple.configure returned: shell command "aclocal -I /usr/share/aclocal" returned error 1 Command output: aclocal: configure.in: 103: macro `AM_PATH_SDL' not found in library Warning: the following items did not execute (for antigraingeometry): com.apple.activate com.apple.configure com.apple.build com.apple.destroot com.apple.archive com.apple.install Error: Status 1 encountered during processing. * The macro above looks something to do with libsdl, but libsdl is not listed as a dependent. I also have libsdl installed anyway. * Not really knowing what I'm doing I've tried editing the port file to use "aclocal -I /opt/local/share/aclocal" in place of the above (as sdl.m4 is in that directory) * This then has the following errors Portfile changed since last build; discarding previous state. ---> Fetching antigraingeometry ---> Verifying checksum(s) for antigraingeometry ---> Checksumming agg-2.5.tar.gz ---> Extracting antigraingeometry ---> Extracting agg-2.5.tar.gz ---> Configuring antigraingeometry configure.in:3: `automake requires `AM_CONFIG_HEADER', not `AC_CONFIG_HEADER' configure.in: installing `./install-sh' configure.in: installing `./mkinstalldirs' configure.in: installing `./missing' examples/Makefile.am:224: invalid unused variable name: `trans_curve2_ft_LDFLAGS' examples/Makefile.am:222: invalid unused variable name: `trans_curve2_ft_SOURCES' examples/Makefile.am:229: invalid unused variable name: `trans_curve1_ft_LDFLAGS' examples/Makefile.am:227: invalid unused variable name: `trans_curve1_ft_SOURCES' Error: Target com.apple.configure returned: automake failure: shell command "cd "/opt/local/var/db/dports/build/_opt_local_var_db_dports_sources_rsync.rsync.darwinports.org_dpupdate_dports_graphics_antigraingeometry/work/agg-2.5" && automake --foreign --add-missing --ignore-deps" returned error 1 Command output: configure.in:3: `automake requires `AM_CONFIG_HEADER', not `AC_CONFIG_HEADER' configure.in: installing `./install-sh' configure.in: installing `./mkinstalldirs' configure.in: installing `./missing' examples/Makefile.am:224: invalid unused variable name: `trans_curve2_ft_LDFLAGS' examples/Makefile.am:222: invalid unused variable name: `trans_curve2_ft_SOURCES' examples/Makefile.am:229: invalid unused variable name: `trans_curve1_ft_LDFLAGS' examples/Makefile.am:227: invalid unused variable name: `trans_curve1_ft_SOURCES' Warning: the following items did not execute (for antigraingeometry): com.apple.activate com.apple.configure com.apple.build com.apple.destroot com.apple.archive com.apple.install Error: Status 1 encountered during processing. * But this may be simply that I have no idea what I'm doing! d. From bentley at crenelle.com Tue Apr 3 10:10:39 2007 From: bentley at crenelle.com (Michael Brian Bentley) Date: Tue Oct 9 16:42:39 2007 Subject: Using gcc 4.1.2 port to build gcc 4.1.1? Message-ID: How easy would it be for me to adopt the 4.1.2 port in order to build gcc 4.1.1? I have a project that causes an internal compiler error to crop up in 4.1.2, but I'm told that we use gcc 4.1.1 to build everything on the linux boxes, so I'm curious to see what happens with a 4.1.1. I haven't yet looked at how port scripts are put together; is there some written-on napkins with hints stuffed into a directory somewhere? I'll try doing the build with gcc42 shortly in any case just to see what happens. -Mike From yves at macports.org Tue Apr 3 10:35:29 2007 From: yves at macports.org (Yves de Champlain) Date: Tue Oct 9 16:42:39 2007 Subject: Using gcc 4.1.2 port to build gcc 4.1.1? In-Reply-To: References: Message-ID: <6AB42A12-EB13-46AA-ACBD-0D186639579F@macports.org> Le 07-04-03 ? 13:10, Michael Brian Bentley a ?crit : > How easy would it be for me to adopt the 4.1.2 port in order to > build gcc 4.1.1? I have a project that causes an internal compiler > error to crop up in 4.1.2, but I'm told that we use gcc 4.1.1 to > build everything on the linux boxes, so I'm curious to see what > happens with a 4.1.1. I haven't yet looked at how port scripts are > put together; is there some written-on napkins with hints stuffed > into a directory somewhere? > > I'll try doing the build with gcc42 shortly in any case just to see > what happens. you will need to put CC=gcc-dp-4.1 CXX=g++-dp-4.1 either as configure.env or configure.args. You may also like to build "gcc41 +odcctools" which provide some benifits under some circumstances (can't be more mysterious than this ... all I really know is that it performs better at objc regression tests) yves From arthas32 at powerband.net.au Tue Apr 3 16:43:00 2007 From: arthas32 at powerband.net.au (arthas32@powerband.net.au) Date: Tue Oct 9 16:42:39 2007 Subject: Apache2 Installation Error Message-ID: <13379.125.62.76.52.1175643780.squirrel@webmail.powerband.net.au> G'day folks, My name is Ben and I am from Sydney Australia. I have recently installed MacPorts 1.4 and an trying to install Apache2 via MacPorts, like so: sudo port install -v apache2 After a while I receive the following error message: ---------------------------------------------------------------------- ---> Building libiconv with target all Error: Target com.apple.build returned: shell command "cd /opt/local/var/db/dports/build/_opt_local_var_db_dports_sources_rsync.rsync.darwinports.org_dpupdate_dports_textproc_libiconv/work/libiconv-1.11 && make -f Makefile.devel" returned error 2 Command output: gcc -O lib/genaliases.c -o genaliases In file included from lib/genaliases.c:81: lib/encodings.def: In function `main': lib/encodings.def:39: `__VA_ARGS__' undeclared (first use in this function) lib/encodings.def:39: (Each undeclared identifier is reported only once lib/encodings.def:39: for each function it appears in.) lib/encodings.def:39: too many errors, bailing out make: *** [lib/aliases.h] Error 1 Error: The following dependencies failed to build: apr-util libiconv sqlite3 readline ncurses ncursesw openssl pcre Error: Status 1 encountered during processing. ---------------------------------------------------------------------- Can anyone tell me the nature of this error message? I do not understand what has gone wrong here. Regards Ben From ndiscreet at gmail.com Tue Apr 3 17:11:31 2007 From: ndiscreet at gmail.com (Altoine Barker) Date: Tue Oct 9 16:42:39 2007 Subject: Apache2 Installation Error In-Reply-To: <13379.125.62.76.52.1175643780.squirrel@webmail.powerband.net.au> References: <13379.125.62.76.52.1175643780.squirrel@webmail.powerband.net.au> Message-ID: <4612ED33.2030202@GmAiL.cOm> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 What are all the steps you did to get to this point? Did you run 'sudo port -v selfupdate', first? HTH - -Altoine arthas32@powerband.net.au wrote: > G'day folks, > > My name is Ben and I am from Sydney Australia. > I have recently installed MacPorts 1.4 > and an trying to install Apache2 via MacPorts, like so: > > sudo port install -v apache2 > > After a while I receive the following error message: > > > ---------------------------------------------------------------------- > > ---> Building libiconv with target all > Error: Target com.apple.build returned: shell command "cd > /opt/local/var/db/dports/build/_opt_local_var_db_dports_sources_rsync.rsync.darwinports.org_dpupdate_dports_textproc_libiconv/work/libiconv-1.11 > && make -f Makefile.devel" returned error 2 > Command output: gcc -O lib/genaliases.c -o genaliases > In file included from lib/genaliases.c:81: > lib/encodings.def: In function `main': > lib/encodings.def:39: `__VA_ARGS__' undeclared (first use in this function) > lib/encodings.def:39: (Each undeclared identifier is reported only once > lib/encodings.def:39: for each function it appears in.) > lib/encodings.def:39: too many errors, bailing out > make: *** [lib/aliases.h] Error 1 > > Error: The following dependencies failed to build: apr-util libiconv > sqlite3 readline ncurses ncursesw openssl pcre > Error: Status 1 encountered during processing. > > ---------------------------------------------------------------------- > > Can anyone tell me the nature of this error message? I do not understand > what has gone wrong here. > > Regards > Ben > > _______________________________________________ > macports-users mailing list > macports-users@lists.macosforge.org > http://lists.macosforge.org/mailman/listinfo/macports-users > -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFGEu0yS0foIafBdlkRAnn4AJ9umh0rhMtE30plvqD81VT8/brFLQCaA+j1 dqAyMLgl7SLGozFEQcHTOt8= =X6c0 -----END PGP SIGNATURE----- From toto at fel.cl.nec.co.jp Tue Apr 3 17:38:44 2007 From: toto at fel.cl.nec.co.jp (toru murakami) Date: Tue Oct 9 16:42:39 2007 Subject: Fetching gimp2 fails Message-ID: <4612F394.9040804@fel.cl.nec.co.jp> Hi folks, Fetching gimp2 seems not work; -------------------- toto:~$ sudo port -dv install gimp2 Password: DEBUG: Found port in file:///Users/Shared/dports/graphics/gimp2 DEBUG: Changing to port directory: /Users/Shared/dports/graphics/gimp2 DEBUG: Requested variant powerpc is not provided by port gimp2. DEBUG: Requested variant darwin is not provided by port gimp2. DEBUG: Requested variant macosx is not provided by port gimp2. DEBUG: Found port in file:///Users/Shared/dports/graphics/aalib DEBUG: Changing to port directory: /Users/Shared/dports/graphics/aalib DEBUG: Searching for dependency: aalib DEBUG: Found Dependency: receipt exists for aalib DEBUG: Found port in file:///Users/Shared/dports/print/gimp-print DEBUG: Changing to port directory: /Users/Shared/dports/print/gimp-print DEBUG: Searching for dependency: gimp-print DEBUG: Found Dependency: receipt exists for gimp-print DEBUG: Found port in file:///Users/Shared/dports/x11/gtk2 DEBUG: Changing to port directory: /Users/Shared/dports/x11/gtk2 DEBUG: Searching for dependency: gtk2 DEBUG: Found Dependency: receipt exists for gtk2 DEBUG: Found port in file:///Users/Shared/dports/graphics/lcms DEBUG: Changing to port directory: /Users/Shared/dports/graphics/lcms DEBUG: Searching for dependency: lcms DEBUG: Found Dependency: receipt exists for lcms DEBUG: Found port in file:///Users/Shared/dports/graphics/libart_lgpl DEBUG: Changing to port directory: /Users/Shared/dports/graphics/libart_lgpl DEBUG: Searching for dependency: libart_lgpl DEBUG: Found Dependency: receipt exists for libart_lgpl DEBUG: Found port in file:///Users/Shared/dports/graphics/libexif DEBUG: Changing to port directory: /Users/Shared/dports/graphics/libexif DEBUG: Searching for dependency: libexif DEBUG: Found Dependency: receipt exists for libexif DEBUG: Found port in file:///Users/Shared/dports/graphics/libmng DEBUG: Changing to port directory: /Users/Shared/dports/graphics/libmng DEBUG: Searching for dependency: libmng DEBUG: Found Dependency: receipt exists for libmng DEBUG: Found port in file:///Users/Shared/dports/graphics/libwmf DEBUG: Changing to port directory: /Users/Shared/dports/graphics/libwmf DEBUG: Searching for dependency: libwmf DEBUG: Found Dependency: receipt exists for libwmf DEBUG: Found port in file:///Users/Shared/dports/perl/p5-xml-parser DEBUG: Changing to port directory: /Users/Shared/dports/perl/p5-xml-parser DEBUG: Searching for dependency: p5-xml-parser DEBUG: Found Dependency: receipt exists for p5-xml-parser DEBUG: Found port in file:///Users/Shared/dports/print/ghostscript DEBUG: Changing to port directory: /Users/Shared/dports/print/ghostscript DEBUG: Searching for dependency: ghostscript DEBUG: Found Dependency: receipt exists for ghostscript DEBUG: Skipping completed com.apple.main (gimp2) DEBUG: Skipping completed com.apple.unarchive (gimp2) ---> Fetching gimp2 DEBUG: Executing com.apple.fetch (gimp2) ---> gimp-2.2.13.tar.bz2 doesn't seem to exist in /opt/local/var/db/dports/distfiles/gimp2 ---> Attempting to fetch gimp-2.2.13.tar.bz2 from ftp://ftp.cs.umn.edu/pub/gimp/v2.2/ % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- 0:34:38 --:--:-- 0^C -------------------- Thanks in advance. --toru From arthas32 at powerband.net.au Tue Apr 3 17:42:10 2007 From: arthas32 at powerband.net.au (Arthas Terrenas) Date: Tue Oct 9 16:42:39 2007 Subject: Apache2 Installation Error In-Reply-To: <4612ED33.2030202@GmAiL.cOm> References: <13379.125.62.76.52.1175643780.squirrel@webmail.powerband.net.au> <4612ED33.2030202@GmAiL.cOm> Message-ID: <6DBE1A7B-35D4-4AC7-80C2-A434323D43C1@powerband.net.au> I did run 'sudo port -v selfupdate' first I then went on to install: cronolog and zlib successfully. I have also shut down my current apache 1.3 server. But I don't think that was necessary. I have developer tools installed, I have X Windows installed. On 04/04/2007, at 10:11 AM, Altoine Barker wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > What are all the steps you did to get to this point? Did you run 'sudo > port -v selfupdate', first? HTH > > - -Altoine > > arthas32@powerband.net.au wrote: >> G'day folks, >> >> My name is Ben and I am from Sydney Australia. >> I have recently installed MacPorts 1.4 >> and an trying to install Apache2 via MacPorts, like so: >> >> sudo port install -v apache2 >> >> After a while I receive the following error message: >> >> >> --------------------------------------------------------------------- >> - >> >> ---> Building libiconv with target all >> Error: Target com.apple.build returned: shell command "cd >> /opt/local/var/db/dports/build/ >> _opt_local_var_db_dports_sources_rsync.rsync.darwinports.org_dpupdate >> _dports_textproc_libiconv/work/libiconv-1.11 >> && make -f Makefile.devel" returned error 2 >> Command output: gcc -O lib/genaliases.c -o genaliases >> In file included from lib/genaliases.c:81: >> lib/encodings.def: In function `main': >> lib/encodings.def:39: `__VA_ARGS__' undeclared (first use in this >> function) >> lib/encodings.def:39: (Each undeclared identifier is reported only >> once >> lib/encodings.def:39: for each function it appears in.) >> lib/encodings.def:39: too many errors, bailing out >> make: *** [lib/aliases.h] Error 1 >> >> Error: The following dependencies failed to build: apr-util libiconv >> sqlite3 readline ncurses ncursesw openssl pcre >> Error: Status 1 encountered during processing. >> >> --------------------------------------------------------------------- >> - >> >> Can anyone tell me the nature of this error message? I do not >> understand >> what has gone wrong here. >> >> Regards >> Ben >> >> _______________________________________________ >> macports-users mailing list >> macports-users@lists.macosforge.org >> http://lists.macosforge.org/mailman/listinfo/macports-users >> > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.5 (Darwin) > Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org > > iD8DBQFGEu0yS0foIafBdlkRAnn4AJ9umh0rhMtE30plvqD81VT8/brFLQCaA+j1 > dqAyMLgl7SLGozFEQcHTOt8= > =X6c0 > -----END PGP SIGNATURE----- > _______________________________________________ > macports-users mailing list > macports-users@lists.macosforge.org > http://lists.macosforge.org/mailman/listinfo/macports-users > From ndiscreet at gmail.com Tue Apr 3 18:11:41 2007 From: ndiscreet at gmail.com (Altoine Barker) Date: Tue Oct 9 16:42:39 2007 Subject: Apache2 Installation Error In-Reply-To: <6DBE1A7B-35D4-4AC7-80C2-A434323D43C1@powerband.net.au> References: <13379.125.62.76.52.1175643780.squirrel@webmail.powerband.net.au> <4612ED33.2030202@GmAiL.cOm> <6DBE1A7B-35D4-4AC7-80C2-A434323D43C1@powerband.net.au> Message-ID: <4612FB4D.5070703@GmAiL.cOm> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Ok Ben, We wil need for you to do a 'sudo port -v clean --all apache2' and then attempt to reintall running 'sudo port -d install apache2'. Post error message if you receive another one, again. Plus, is apache 1.3 installed by macports? Just curious but it really shouldn't effect anything. HTH - -Altoine Arthas Terrenas wrote: > I did run 'sudo port -v selfupdate' first > > I then went on to install: > > cronolog and > zlib successfully. > > I have also shut down my current apache 1.3 server. > But I don't think that was necessary. > > I have developer tools installed, > I have X Windows installed. > > > > On 04/04/2007, at 10:11 AM, Altoine Barker wrote: > > What are all the steps you did to get to this point? Did you run 'sudo > port -v selfupdate', first? HTH > > -Altoine > > arthas32@powerband.net.au wrote: >>>> G'day folks, >>>> >>>> My name is Ben and I am from Sydney Australia. >>>> I have recently installed MacPorts 1.4 >>>> and an trying to install Apache2 via MacPorts, like so: >>>> >>>> sudo port install -v apache2 >>>> >>>> After a while I receive the following error message: >>>> >>>> >>>> ---------------------------------------------------------------------- >>>> >>>> ---> Building libiconv with target all >>>> Error: Target com.apple.build returned: shell command "cd >>>> /opt/local/var/db/dports/build/_opt_local_var_db_dports_sources_rsync.rsync.darwinports.org_dpupdate_dports_textproc_libiconv/work/libiconv-1.11 >>>> >>>> && make -f Makefile.devel" returned error 2 >>>> Command output: gcc -O lib/genaliases.c -o genaliases >>>> In file included from lib/genaliases.c:81: >>>> lib/encodings.def: In function `main': >>>> lib/encodings.def:39: `__VA_ARGS__' undeclared (first use in this >>>> function) >>>> lib/encodings.def:39: (Each undeclared identifier is reported only once >>>> lib/encodings.def:39: for each function it appears in.) >>>> lib/encodings.def:39: too many errors, bailing out >>>> make: *** [lib/aliases.h] Error 1 >>>> >>>> Error: The following dependencies failed to build: apr-util libiconv >>>> sqlite3 readline ncurses ncursesw openssl pcre >>>> Error: Status 1 encountered during processing. >>>> >>>> ---------------------------------------------------------------------- >>>> >>>> Can anyone tell me the nature of this error message? I do not understand >>>> what has gone wrong here. >>>> >>>> Regards >>>> Ben >>>> >>>> _______________________________________________ >>>> macports-users mailing list >>>> macports-users@lists.macosforge.org >>>> http://lists.macosforge.org/mailman/listinfo/macports-users >>>> _______________________________________________ macports-users mailing list macports-users@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo/macports-users >> > _______________________________________________ > macports-users mailing list > macports-users@lists.macosforge.org > http://lists.macosforge.org/mailman/listinfo/macports-users -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFGEvtNS0foIafBdlkRAihyAJ4zSoJLCJwxw3FKGXSS1snBpCGPJgCfXcgf /12Ec3f6gzN1+Q6l3kt+MhI= =J+o3 -----END PGP SIGNATURE----- From arthas32 at powerband.net.au Tue Apr 3 18:32:59 2007 From: arthas32 at powerband.net.au (arthas32@powerband.net.au) Date: Tue Oct 9 16:42:39 2007 Subject: Apache2 Installation Error In-Reply-To: <4612FB4D.5070703@GmAiL.cOm> References: <13379.125.62.76.52.1175643780.squirrel@webmail.powerband.net.au> <4612ED33.2030202@GmAiL.cOm> <6DBE1A7B-35D4-4AC7-80C2-A434323D43C1@powerband.net.au> <4612FB4D.5070703@GmAiL.cOm> Message-ID: <13968.125.62.76.52.1175650379.squirrel@webmail.powerband.net.au> I didn't install apache1.3 with mac ports. I used the default install that came with OSX. The one that you can turn on or off with the sharing preference pane. Thanks for all your help so far, It seems I am generating the same error message. here Is the output for the commands you asked me to try: ---------------------------------------------------------------------- $ sudo port -v clean --all apache2 Password: ---> Cleaning apache2 ---> Removing distfiles for apache2 ---> Removing archives for apache2 ---> Removing workpath for apache2 $ sudo port -d install apache2 DEBUG: Found port in file:///opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/www/apache2 DEBUG: Changing to port directory: /opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/www/apache2 DEBUG: Requested variant powerpc is not provided by port apache2. DEBUG: Requested variant macosx is not provided by port apache2. DEBUG: Executing variant darwin provides darwin DEBUG: Executing variant darwin_7 provides darwin_7 DEBUG: Found port in file:///opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/devel/apr DEBUG: Changing to port directory: /opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/devel/apr DEBUG: Searching for dependency: apr DEBUG: Found Dependency: receipt exists for apr DEBUG: Found port in file:///opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/devel/apr-util DEBUG: Changing to port directory: /opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/devel/apr-util DEBUG: Searching for dependency: apr-util DEBUG: Didn't find receipt, going to depspec regex for: apr-util DEBUG: Found port in file:///opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/textproc/expat DEBUG: Changing to port directory: /opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/textproc/expat DEBUG: Searching for dependency: expat DEBUG: Found Dependency: receipt exists for expat DEBUG: Found port in file:///opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/devel/openssl DEBUG: Changing to port directory: /opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/devel/openssl DEBUG: Searching for dependency: openssl DEBUG: Didn't find receipt, going to depspec regex for: openssl DEBUG: Found port in file:///opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/devel/pcre DEBUG: Changing to port directory: /opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/devel/pcre DEBUG: Searching for dependency: pcre DEBUG: Didn't find receipt, going to depspec regex for: pcre DEBUG: Found port in file:///opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/devel/apr DEBUG: Searching for dependency: apr DEBUG: Found Dependency: receipt exists for apr DEBUG: Found port in file:///opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/textproc/expat DEBUG: Searching for dependency: expat DEBUG: Found Dependency: receipt exists for expat DEBUG: Found port in file:///opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/textproc/libiconv DEBUG: Changing to port directory: /opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/textproc/libiconv DEBUG: Searching for dependency: libiconv DEBUG: Didn't find receipt, going to depspec regex for: libiconv DEBUG: Found port in file:///opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/databases/db44 DEBUG: Changing to port directory: /opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/databases/db44 DEBUG: Searching for dependency: db44 DEBUG: Found Dependency: receipt exists for db44 DEBUG: Found port in file:///opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/databases/sqlite3 DEBUG: Changing to port directory: /opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/databases/sqlite3 DEBUG: Searching for dependency: sqlite3 DEBUG: Didn't find receipt, going to depspec regex for: sqlite3 DEBUG: Found port in file:///opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/devel/gperf DEBUG: Changing to port directory: /opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/devel/gperf DEBUG: Searching for dependency: gperf DEBUG: Found Dependency: receipt exists for gperf DEBUG: Found port in file:///opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/devel/readline DEBUG: Changing to port directory: /opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/devel/readline DEBUG: Searching for dependency: readline DEBUG: Didn't find receipt, going to depspec regex for: readline DEBUG: Found port in file:///opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/devel/ncurses DEBUG: Changing to port directory: /opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/devel/ncurses DEBUG: Searching for dependency: ncurses DEBUG: Didn't find receipt, going to depspec regex for: ncurses DEBUG: Found port in file:///opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/devel/ncursesw DEBUG: Changing to port directory: /opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/devel/ncursesw DEBUG: Searching for dependency: ncursesw DEBUG: Didn't find receipt, going to depspec regex for: ncursesw 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: Requested variant powerpc is not provided by port libiconv. DEBUG: Requested variant darwin is not provided by port libiconv. DEBUG: Requested variant macosx is not provided by port libiconv. DEBUG: Executing variant darwin_7 provides darwin_7 DEBUG: Skipping completed com.apple.main (libiconv) DEBUG: Skipping completed com.apple.fetch (libiconv) DEBUG: Skipping completed com.apple.checksum (libiconv) DEBUG: Skipping completed com.apple.extract (libiconv) DEBUG: Skipping completed com.apple.patch (libiconv) DEBUG: Skipping completed com.apple.configure (libiconv) ---> Building libiconv with target all DEBUG: Executing proc-pre-com.apple.build-build-0 gcc -O lib/genaliases.c -o genaliases In file included from lib/genaliases.c:81: lib/encodings.def: In function `main': lib/encodings.def:39: `__VA_ARGS__' undeclared (first use in this function) lib/encodings.def:39: (Each undeclared identifier is reported only once lib/encodings.def:39: for each function it appears in.) lib/encodings.def:39: too many errors, bailing out make: *** [lib/aliases.h] Error 1 Error: Target com.apple.build returned: shell command "cd /opt/local/var/db/dports/build/_opt_local_var_db_dports_sources_rsync.rsync.darwinports.org_dpupdate_dports_textproc_libiconv/work/libiconv-1.11 && make -f Makefile.devel" returned error 2 Command output: gcc -O lib/genaliases.c -o genaliases In file included from lib/genaliases.c:81: lib/encodings.def: In function `main': lib/encodings.def:39: `__VA_ARGS__' undeclared (first use in this function) lib/encodings.def:39: (Each undeclared identifier is reported only once lib/encodings.def:39: for each function it appears in.) lib/encodings.def:39: too many errors, bailing out make: *** [lib/aliases.h] Error 1 Warning: the following items did not execute (for libiconv): com.apple.activate com.apple.build com.apple.destroot com.apple.install Error: The following dependencies failed to build: apr-util libiconv sqlite3 readline ncurses ncursesw openssl pcre Error: Status 1 encountered during processing. ---------------------------------------------------------------------- > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Ok Ben, > We wil need for you to do a 'sudo port -v clean --all apache2' and then > attempt to reintall running 'sudo port -d install apache2'. Post error > message if you receive another one, again. Plus, is apache 1.3 installed > by macports? Just curious but it really shouldn't effect anything. HTH > > - -Altoine > > > Arthas Terrenas wrote: >> I did run 'sudo port -v selfupdate' first >> >> I then went on to install: >> >> cronolog and >> zlib successfully. >> >> I have also shut down my current apache 1.3 server. >> But I don't think that was necessary. >> >> I have developer tools installed, >> I have X Windows installed. >> >> >> >> On 04/04/2007, at 10:11 AM, Altoine Barker wrote: >> >> What are all the steps you did to get to this point? Did you run 'sudo >> port -v selfupdate', first? HTH >> >> -Altoine >> >> arthas32@powerband.net.au wrote: >>>>> G'day folks, >>>>> >>>>> My name is Ben and I am from Sydney Australia. >>>>> I have recently installed MacPorts 1.4 >>>>> and an trying to install Apache2 via MacPorts, like so: >>>>> >>>>> sudo port install -v apache2 >>>>> >>>>> After a while I receive the following error message: >>>>> >>>>> >>>>> ---------------------------------------------------------------------- >>>>> >>>>> ---> Building libiconv with target all >>>>> Error: Target com.apple.build returned: shell command "cd >>>>> /opt/local/var/db/dports/build/_opt_local_var_db_dports_sources_rsync.rsync.darwinports.org_dpupdate_dports_textproc_libiconv/work/libiconv-1.11 >>>>> >>>>> && make -f Makefile.devel" returned error 2 >>>>> Command output: gcc -O lib/genaliases.c -o genaliases >>>>> In file included from lib/genaliases.c:81: >>>>> lib/encodings.def: In function `main': >>>>> lib/encodings.def:39: `__VA_ARGS__' undeclared (first use in this >>>>> function) >>>>> lib/encodings.def:39: (Each undeclared identifier is reported only >>>>> once >>>>> lib/encodings.def:39: for each function it appears in.) >>>>> lib/encodings.def:39: too many errors, bailing out >>>>> make: *** [lib/aliases.h] Error 1 >>>>> >>>>> Error: The following dependencies failed to build: apr-util libiconv >>>>> sqlite3 readline ncurses ncursesw openssl pcre >>>>> Error: Status 1 encountered during processing. >>>>> >>>>> ---------------------------------------------------------------------- >>>>> >>>>> Can anyone tell me the nature of this error message? I do not >>>>> understand >>>>> what has gone wrong here. >>>>> >>>>> Regards >>>>> Ben >>>>> >>>>> _______________________________________________ >>>>> macports-users mailing list >>>>> macports-users@lists.macosforge.org >>>>> http://lists.macosforge.org/mailman/listinfo/macports-users >>>>> > _______________________________________________ > macports-users mailing list > macports-users@lists.macosforge.org > http://lists.macosforge.org/mailman/listinfo/macports-users >>> > >> _______________________________________________ >> macports-users mailing list >> macports-users@lists.macosforge.org >> http://lists.macosforge.org/mailman/listinfo/macports-users > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.5 (Darwin) > Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org > > iD8DBQFGEvtNS0foIafBdlkRAihyAJ4zSoJLCJwxw3FKGXSS1snBpCGPJgCfXcgf > /12Ec3f6gzN1+Q6l3kt+MhI= > =J+o3 > -----END PGP SIGNATURE----- > _______________________________________________ > macports-users mailing list > macports-users@lists.macosforge.org > http://lists.macosforge.org/mailman/listinfo/macports-users > From ryandesign at macports.org Tue Apr 3 19:16:49 2007 From: ryandesign at macports.org (Ryan Schmidt) Date: Tue Oct 9 16:42:39 2007 Subject: Apache2 Installation Error In-Reply-To: <13968.125.62.76.52.1175650379.squirrel@webmail.powerband.net.au> References: <13379.125.62.76.52.1175643780.squirrel@webmail.powerband.net.au> <4612ED33.2030202@GmAiL.cOm> <6DBE1A7B-35D4-4AC7-80C2-A434323D43C1@powerband.net.au> <4612FB4D.5070703@GmAiL.cOm> <13968.125.62.76.52.1175650379.squirrel@webmail.powerband.net.au> Message-ID: <5DCA4C3F-212E-4533-AB99-3046F04BC6D8@macports.org> On Apr 3, 2007, at 20:32, arthas32@powerband.net.au wrote: [snip] > ---> Building libiconv with target all > DEBUG: Executing proc-pre-com.apple.build-build-0 > gcc -O lib/genaliases.c -o genaliases > In file included from lib/genaliases.c:81: > lib/encodings.def: In function `main': > lib/encodings.def:39: `__VA_ARGS__' undeclared (first use in this > function) > lib/encodings.def:39: (Each undeclared identifier is reported only > once > lib/encodings.def:39: for each function it appears in.) > lib/encodings.def:39: too many errors, bailing out > make: *** [lib/aliases.h] Error 1 [snip] All I can say is someone else encountered this problem too, also on Mac OS X 10.3.9, and reported it on IRC. This is a transcript of the conversation: http://echelog.matzon.dk/logs/browse/macports/1174440449 Man, reading IRC conversations gives me a headache. But it looks like no solution to the problem was provided in that transcript and the person reporting the problem left. From ndiscreet at gmail.com Tue Apr 3 20:22:52 2007 From: ndiscreet at gmail.com (Altoine Barker) Date: Tue Oct 9 16:42:39 2007 Subject: Apache2 Installation Error In-Reply-To: <13968.125.62.76.52.1175650379.squirrel@webmail.powerband.net.au> References: <13379.125.62.76.52.1175643780.squirrel@webmail.powerband.net.au> <4612ED33.2030202@GmAiL.cOm> <6DBE1A7B-35D4-4AC7-80C2-A434323D43C1@powerband.net.au> <4612FB4D.5070703@GmAiL.cOm> <13968.125.62.76.52.1175650379.squirrel@webmail.powerband.net.au> Message-ID: <46131A0C.9060204@GmAiL.cOm> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 For you your problem seems that you have a bad build of libiconv. I suggest you do a 'sudo port -v clean --all libiconv' and then run the command 'sudo port -d install libiconv. Your error message in debug is saying that that program is the issue so let us see if we can resolve that one before moving on to apache2, alright? HTH - -Altoine arthas32@powerband.net.au wrote: > I didn't install apache1.3 with mac ports. > I used the default install that came with OSX. > The one that you can turn on or off with the sharing preference pane. > > Thanks for all your help so far, > It seems I am generating the same error message. > here Is the output for the commands you asked me to try: > > ---------------------------------------------------------------------- > > $ sudo port -v clean --all apache2 > Password: > > ---> Cleaning apache2 > ---> Removing distfiles for apache2 > ---> Removing archives for apache2 > ---> Removing workpath for apache2 > > $ sudo port -d install apache2 > > DEBUG: Found port in > file:///opt/local/var/db/dports/sources/rsync.rsync.darwinports.org_dpupdate_dports/www/apache2