From owner-freebsd-ports@FreeBSD.ORG Sun Sep 23 10:43:05 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A2EBA16A417 for ; Sun, 23 Sep 2007 10:43:05 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1::1]) by mx1.freebsd.org (Postfix) with ESMTP id E503413C469 for ; Sun, 23 Sep 2007 10:43:04 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [IPv6:::1]) by smtp.infracaninophile.co.uk (8.14.1/8.14.1) with ESMTP id l8NAgvX1072224; Sun, 23 Sep 2007 11:42:59 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) Message-ID: <46F64331.5040202@infracaninophile.co.uk> Date: Sun, 23 Sep 2007 11:42:57 +0100 From: Matthew Seaman Organization: Infracaninophile User-Agent: Thunderbird 2.0.0.6 (X11/20070803) MIME-Version: 1.0 To: Martin Schweizer References: <46F23776.4080503@infracaninophile.co.uk> <380ccfd60709210136v2a90cf1ehaff94ab66bce0f98@mail.gmail.com> <46F3DB2C.4010408@infracaninophile.co.uk> <380ccfd60709211011u1c4a17f5ofd20843d4c4b683@mail.gmail.com> In-Reply-To: <380ccfd60709211011u1c4a17f5ofd20843d4c4b683@mail.gmail.com> X-Enigmail-Version: 0.95.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (smtp.infracaninophile.co.uk [IPv6:::1]); Sun, 23 Sep 2007 11:42:59 +0100 (BST) X-Virus-Scanned: ClamAV 0.91.2/4365/Sun Sep 23 10:50:53 2007 on happy-idiot-talk.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.8 required=5.0 tests=AWL,BAYES_00,NO_RELAYS autolearn=ham version=3.2.3 X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on happy-idiot-talk.infracaninophile.co.uk Cc: freebsd-ports@freebsd.org Subject: Re: mail/websieve -- doesn't get along with apache22 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2007 10:43:05 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Martin Schweizer wrote: > Hello Matthew > > If I can help you in any way drop me a mail. > > Regards, > > > 2007/9/21, Matthew Seaman : > Martin Schweizer wrote: >>>> Hello Matthew >>>> >>>> Sorry for the delay. I use now websieve since two years. I found some >>>> pitfalls while the installation. I attache you my comments which I >>>> send to ports@ in the past. Hope this helpls. >>>> >>>> PS: I also looking to contact the developers for future releases but >>>> they do not get answers. >>>> >>>> >>>> Kind regards, >>>> >>>> After more the one successfully installation I found some problems in >>>> the actualy ports (from yesterday): >>>> >>>> - while building websieve make wants download every time the old apache port >>>> >>>> Makefile >>>> ********* >>>> [snip] >>>> >>>> RUN_DEPENDS= ${SITE_PERL}/IMAP/Admin.pm:${PORTSDIR}/mail/p5-IMAP-Admin \ >>>> ${SITE_PERL}/IMAP/Sieve.pm:${PORTSDIR}/mail/p5-IMAP-Sieve >>>> .endif >>>> ## RUN_DEPENDS+= ${LOCALBASE}/www/cgi-bin:${PORTSDIR}/${APACHE_PORT} >>>> >>>> PKGMESSAGE= ${WRKDIR}/pkg-message >>>> >>>> [snip] >>>> >>>> I alway commented out "RUN_DEPENDS..." This was already dealt with in ports/116493 -- I've taken out any dependency on a particular HTTP server. As this is bog standard perl CGI scripting, it should work with just about every webserver out there. >>>> >>>> - ... also while building make would copy websieve.pl to >>>> /usr/local/www/cgi-bin but it create a file called cgi-bin in >>>> /usr/local/www >>>> >>>> >>>> - websieve.pl: Also dealt with by making the port install into ${WWWDIR} -- which will evaluate to /usr/local/www/websieve in most cases. >>>> [snip] >>>> >>>> #creates global variables $mode,@rules,@mailboxes,@quota and %vacation; >>>> # get quota >>>> @quota=&getquota("INBOX") if ($havequota || !$useprocmail); >>>> if ($IMAPERROR = /no errors/i && !$ismanager && $IMAPERROR) { >>>> $error=$IMAPERROR; >>>> &closeimap; >>>> &closesieve; >>>> &incorrect_login; >>>> exit; >>>> } >>>> >>>> [snip] >>>> >>>> >>>> In the port there is here ("if ($IMAPERROR =~ /no..." ) a tile sign >>>> but for successfully login you have to remove this. >>>> >>>> See also http://www.linuxnetmag.com/en/issue8/printm8sieve1.html Hmmm... yes. My German isn't as good as it should be, and Google auto-translation produces quite odd results if you tell it to translate perl code from German into English... Anyway, the correct fix is to change that 'if' statement to: if ($IMAPERROR !~ /no errors/i && !$ismanager && $IMAPERROR) { Your fix of using '=' is actually assigning $IMAPERROR with the result of comparing the default variable ($_) against the regexp /no errors/i -- which happens to always return False, so the test will never succeed even if there is some error condition that needs to be handled. I've updated the PR. >>>> - error "base64 decoding..." in /var/log/messages >>>> >>>> Sep 7 15:47:22 acsvfbsd04 imap[547]: login: mail3 [192.168.10.6] >>>> martin plaintext User logged in >>>> Sep 7 15:47:22 acsvfbsd04 sieve[548]: badlogin: mail3[192.168.10.6] >>>> PLAIN error base64 decoding string >>>> Sep 7 15:47:34 acsvfbsd04 imap[547]: login: mail3 [192.168.10.6] root >>>> plaintext User logged in >>>> Sep 7 15:47:34 acsvfbsd04 sieve[551]: badlogin: mail3[192.168.10.6] >>>> PLAIN error base64 decoding string >>>> >>>> Here you have to edit in /usr/local/lib/perl5/site_perl/5.8.8/IMAP >>>> the file Sieve.pm: >>>> >>>> Old: >>>> $encode=encode_base64($userpass); >>>> >>>> New: >>>> $encode=encode_base64($userpass, ''); >>>> >>>> See also http://lists.freebsd.org/pipermail/freebsd-ports-bugs/2006-June/091540.html This seems to have already been fixed in the IMAP::Sieve module I have installed from ports. >>>> >>>> - If you change the location from /var/imap to another location (f.e. >>>> to /usr/imap >>>> because you need more disk space), you'll get the following message >>>> in /var/log/messages: >>>> >>>> Sep 7 16:05:25 acsvfbsd04 imap[656]: login: acsvfbsd04 [192.168.10.6] >>>> martin plaintext User logged in >>>> Sep 7 16:05:25 acsvfbsd04 sieve[682]: IOERROR: creating directory >>>> /var/imap: Permission denied >>>> Sep 7 16:05:25 acsvfbsd04 sieve[682]: mkdir /var/imap: Permission denied >>>> Sep 7 16:05:25 acsvfbsd04 sieve[682]: error in actions_setuser() >>>> >>>> Websieve wants to creat some file in /var/imap everytime you log in. I >>>> create an symlink like this: >>>> >>>> lrwxr-xr-x 1 cyrus cyrus 18 7 Sep 16:23 imap -> /usr/imap/var/imap >>>> >>>> Afterwoods I works like a charme. Ah -- this isn't websieve. It's timsieved -- the bit of Cyrus IMAPd that websieve connects to. It will create a hashed directory tree under /var/imap/sieve/ to hold the source and the byte-compiled versions of user sieve scripts -- but it needs that top level directory to be created initially: mkdir -p /var/imap/sieve chown -R cyrus:cyrus /var/imap/sieve For some reason, doing that is unaccountably missing from the action of the /usr/local/cyrus/bin/mkimap script. There are still some more bugs to work out, but with these patches the port is now installing something basically functional. Unfortunately ENOTIME for me to do much else with this. Cheers, Matthew - -- Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFG9kMx8Mjk52CukIwRCER6AJ4r0dT42m3cFNIyG7CHvGdmEHlEcQCfWXuL kJ7vRfZK9/GM3y26K5wDHrA= =cRvA -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Sun Sep 23 17:36:41 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BDF8016A46B for ; Sun, 23 Sep 2007 17:36:41 +0000 (UTC) (envelope-from aryeh.friedman@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.176]) by mx1.freebsd.org (Postfix) with ESMTP id 5FB7C13C478 for ; Sun, 23 Sep 2007 17:36:40 +0000 (UTC) (envelope-from aryeh.friedman@gmail.com) Received: by py-out-1112.google.com with SMTP id u77so2626184pyb for ; Sun, 23 Sep 2007 10:36:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; bh=wHiOpM8k+N76JPdmNOTOJByBHTKQ5BRBytIQY1wYTxg=; b=H0dvwbuwA6xKSEvx3QNaQ56Rhd/iesbLEnfUugc9RXTDTYClK9T3wnZY380wYebonkGd4MiU7wwQUZfPi1FclxrHXhTmHTM6s46sxPCj2lkYOKXPfAZmmx0XTz0HG8Cp5yupqQkp/xdTZXMIZxaEePGeclKC6ibOLnx9f1oHDBg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=cUdXaBKFhlt6uybXP4Qw4hNtw80kPVhYIN1y5two9/DuWwcYoSAE8c41zGXtfYM29/tDMtErt3xhefFD7GKwDPVARf+59Xgu0eoDKxscFGxNFFFjzrIvVGU5VbkT03pwW4o1O1PqXT2G0RpspKfMllaWeSPfFiEJBEI9jr6+RGg= Received: by 10.64.153.4 with SMTP id a4mr2137181qbe.1190567453926; Sun, 23 Sep 2007 10:10:53 -0700 (PDT) Received: by 10.65.105.2 with HTTP; Sun, 23 Sep 2007 10:10:53 -0700 (PDT) Message-ID: Date: Sun, 23 Sep 2007 17:10:53 +0000 From: "Aryeh Friedman" To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: Can the following license be used for ported programs? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2007 17:36:41 -0000 My company develops software under a commercial "open source" (see links for details) and I want to know if my license is close enough to open source (see links for why it is not 100% OSD compliant [it is 95% compliant]). Specifically does the business model as outlined in my blog (the third installment should be out later today), my business model page, the third party certifier and license allow for inclusion in the ports collection. Keep in mind that the source is available to anyone but execution is conditioned on attachment A of the license and after the trial period (30 days) is paid for software. License: http://www.flosoft-systems.com/license.php Official statement of my business model: http://www.flosoft-systems.com/bmodel.php Blog entries: http://www.flosoft-systems.com/blogs/aryeh/FOSS.php http://www.flosoft-systems.com/blogs/aryeh/SIW_Background.php Third party group (due to DNS issues is currently hosted on my domain but is not officially associated with my company): http://www.flosoft-systems.com/miai/ From owner-freebsd-ports@FreeBSD.ORG Sun Sep 23 22:12:12 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B762E16A418 for ; Sun, 23 Sep 2007 22:12:12 +0000 (UTC) (envelope-from aryeh.friedman@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.177]) by mx1.freebsd.org (Postfix) with ESMTP id 52C9B13C478 for ; Sun, 23 Sep 2007 22:12:12 +0000 (UTC) (envelope-from aryeh.friedman@gmail.com) Received: by py-out-1112.google.com with SMTP id u77so2725651pyb for ; Sun, 23 Sep 2007 15:12:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=vMiS1v51VR/NJ14x8u9hDtJ7h8asZL6bUOw30T/DvGo=; b=iMTBRfln96FrU2+OobrAbrwRGG6NMMsu63IZlqDmmxTp7oYsvlt6js/rt3i1EvmZGgKvG1XvqRN09IJ5EzsrXJkOUwyJMN/ioLpKEtinGqtwCzdvxJMbGjaZke8TRSe3V9j5XYvXQdmHHBy2WFRDB9RHX6WSN2cvHCCdf6vHYFA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=T77F1VYBzUwhmEySunZGACgw3LUnOA4j2SEn/CJX94p45Bi0ROGw9jeatdV5R9PuY0iKT72PdOuKs61VHATOs1DFM7Cpi4wFSoX4qEUSQkdY/76Llxxxl0SVI+PeHBw8TBIhniXfUbLu3GEF6Cqh1CWOmlOqqfbdQ0aebAfMfd8= Received: by 10.65.119.14 with SMTP id w14mr228421qbm.1190585530885; Sun, 23 Sep 2007 15:12:10 -0700 (PDT) Received: by 10.65.105.2 with HTTP; Sun, 23 Sep 2007 15:12:10 -0700 (PDT) Message-ID: Date: Sun, 23 Sep 2007 22:12:10 +0000 From: "Aryeh Friedman" To: "Michael Dean" , freebsd-ports@freebsd.org In-Reply-To: <46F6E3B9.5060404@sourceview.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <46F6E1F1.401@sourceview.com> <46F6E3B9.5060404@sourceview.com> Cc: Subject: Re: Can the following license be used for ported programs? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2007 22:12:12 -0000 If you read the 1st blog entry and the FAQ for the certifying agency you will see why dual licenses are: 1. For the most part impossible to prevent the "free rider" issue 2. Is inherently unfair to contributors 3. Without the fee for execution (instead of just "commercial use") it is very hard to actually make a living from such an venture (see 1st blog entry and certification requirements on the Miai site) --Aryeh On 9/23/07, Michael Dean wrote: > > you gave enough information in the opening paragraph. I will wager that > every response you get will be negative. Why not just try the mysql dual > license model, it seems less "tricky-dicky" > > > Aryeh Friedman wrote: > Is that based on gut feeling or a study of the links offered? > > --Aryeh > > On 9/23/07, Michael Dean wrote: > > > no matter how hard you try, you can't take your sow's ear and turn it > into a silk purse. > > Aryeh Friedman wrote: > > > My company develops software under a commercial "open source" (see > links for details) and I want to know if my license is close enough to > open source (see links for why it is not 100% OSD compliant [it is 95% > compliant]). Specifically does the business model as outlined in my > blog (the third installment should be out later today), my business > model page, the third party certifier and license allow for inclusion > in the ports collection. Keep in mind that the source is available > to anyone but execution is conditioned on attachment A of the license > and after the trial period (30 days) is paid for software. > > License: http://www.flosoft-systems.com/license.php > Official statement of my business model: > http://www.flosoft-systems.com/bmodel.php > Blog entries: > http://www.flosoft-systems.com/blogs/aryeh/FOSS.php > http://www.flosoft-systems.com/blogs/aryeh/SIW_Background.php > Third party group (due to DNS issues is currently hosted on my domain > but is not officially associated with my company): > http://www.flosoft-systems.com/miai/ > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to > "freebsd-ports-unsubscribe@freebsd.org" > > > > > From owner-freebsd-ports@FreeBSD.ORG Sun Sep 23 22:59:43 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A84C416A41A for ; Sun, 23 Sep 2007 22:59:43 +0000 (UTC) (envelope-from erikt@midgard.homeip.net) Received: from ch-smtp01.sth.basefarm.net (ch-smtp01.sth.basefarm.net [80.76.149.212]) by mx1.freebsd.org (Postfix) with ESMTP id 13D8713C43E for ; Sun, 23 Sep 2007 22:59:42 +0000 (UTC) (envelope-from erikt@midgard.homeip.net) Received: from c83-253-31-60.bredband.comhem.se ([83.253.31.60]:59046 helo=falcon.midgard.homeip.net) by ch-smtp01.sth.basefarm.net with esmtp (Exim 4.66) (envelope-from ) id 1IZaAs-0003i0-44 for freebsd-ports@freebsd.org; Mon, 24 Sep 2007 00:43:40 +0200 Received: (qmail 9755 invoked from network); 24 Sep 2007 00:43:12 +0200 Received: from owl.midgard.homeip.net (10.1.5.7) by falcon.midgard.homeip.net with ESMTP; 24 Sep 2007 00:43:12 +0200 Received: (qmail 83260 invoked by uid 1001); 24 Sep 2007 00:43:12 +0200 Date: Mon, 24 Sep 2007 00:43:12 +0200 From: Erik Trulsson To: Aryeh Friedman Message-ID: <20070923224312.GA83208@owl.midgard.homeip.net> Mail-Followup-To: Aryeh Friedman , freebsd-ports@freebsd.org References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.16 (2007-06-09) X-Originating-IP: 83.253.31.60 X-Scan-Result: No virus found in message 1IZaAs-0003i0-44. X-Scan-Signature: ch-smtp01.sth.basefarm.net 1IZaAs-0003i0-44 d537a7589c7263b250eef7092e7a67b9 Cc: freebsd-ports@freebsd.org Subject: Re: Can the following license be used for ported programs? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2007 22:59:43 -0000 On Sun, Sep 23, 2007 at 05:10:53PM +0000, Aryeh Friedman wrote: > My company develops software under a commercial "open source" (see > links for details) and I want to know if my license is close enough to > open source (see links for why it is not 100% OSD compliant [it is 95% > compliant]). Specifically does the business model as outlined in my > blog (the third installment should be out later today), my business > model page, the third party certifier and license allow for inclusion > in the ports collection. Keep in mind that the source is available > to anyone but execution is conditioned on attachment A of the license > and after the trial period (30 days) is paid for software. > > License: http://www.flosoft-systems.com/license.php > Official statement of my business model: > http://www.flosoft-systems.com/bmodel.php > Blog entries: > http://www.flosoft-systems.com/blogs/aryeh/FOSS.php > http://www.flosoft-systems.com/blogs/aryeh/SIW_Background.php > Third party group (due to DNS issues is currently hosted on my domain > but is not officially associated with my company): > http://www.flosoft-systems.com/miai/ For inclusion in the ports tree it really does not matter much what license you use for your software - it could even be a commercial closed-source program. The reason for this is that the ports tree is just a framework for installing and managing software packages, and none of your code will actually live in the ports tree. If you have various restrictions in the license then it may not be possible for the FreeBSD project to distribute binary packages or source files. If that is the case the port creator should set RESTRICTED or other appropriate variable in the port Makefile to enforce this (see http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/porting-restrictions.html for what variations are possible.) -- Erik Trulsson ertr1013@student.uu.se From owner-freebsd-ports@FreeBSD.ORG Mon Sep 24 00:29:51 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B4E4C16A41B for ; Mon, 24 Sep 2007 00:29:51 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from cp65.agava.net (cp65.agava.net [89.108.66.215]) by mx1.freebsd.org (Postfix) with ESMTP id 4957113C448 for ; Mon, 24 Sep 2007 00:29:51 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from [213.148.20.85] (helo=nexii.panopticon) by cp65.agava.net with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.44 (FreeBSD)) id 1IZbpd-000Kig-AT; Mon, 24 Sep 2007 04:29:49 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.2]) by nexii.panopticon (Postfix) with ESMTP id 7BFFD17049; Mon, 24 Sep 2007 04:28:57 +0400 (MSD) Received: by hades.panopticon (Postfix, from userid 1000) id 180F44063; Mon, 24 Sep 2007 04:31:12 +0400 (MSD) Date: Mon, 24 Sep 2007 04:31:11 +0400 From: Dmitry Marakasov To: Tijl Coosemans Message-ID: <20070924003111.GA3041@hades.panopticon> Mail-Followup-To: Tijl Coosemans , freebsd-ports@freebsd.org References: <20070921162208.GA83826@hades.panopticon> <200709221131.11807.tijl@ulyssis.org> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200709221131.11807.tijl@ulyssis.org> User-Agent: Mutt/1.5.16 (2007-06-09) X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - cp65.agava.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [26 6] X-AntiAbuse: Sender Address Domain - amdmi3.ru X-Source: X-Source-Args: X-Source-Dir: Cc: freebsd-ports@freebsd.org Subject: Re: porting software using glibc's getline() X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2007 00:29:51 -0000 * Tijl Coosemans (tijl@ulyssis.org) wrote: > > I have a problem porting a piece of software that use > > getline(char**, int*, FILE*). This function is only present in glibc > > so I wonder what do I do in this case? Maybe there is some port which > > provides required functionality (like for example argp-standalone)? > Just a guess, but maybe devel/libgetline? Unfortunately, no. libgetline is command line library (like readline), it has nothing to do with what getline() of glibc does :( -- Best regards, Dmitry Marakasov mailto:amdmi3@amdmi3.ru From owner-freebsd-ports@FreeBSD.ORG Mon Sep 24 01:41:45 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 91D3616A419 for ; Mon, 24 Sep 2007 01:41:45 +0000 (UTC) (envelope-from aryeh.friedman@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.178]) by mx1.freebsd.org (Postfix) with ESMTP id 2B1D513C44B for ; Mon, 24 Sep 2007 01:41:45 +0000 (UTC) (envelope-from aryeh.friedman@gmail.com) Received: by py-out-1112.google.com with SMTP id u77so2793284pyb for ; Sun, 23 Sep 2007 18:41:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=XENGg2Rwl+3hpfiMmennzmSUDz2ZAAapYlabxNKsxQU=; b=em69/e+Ys2+mT+YsuIBuOQ29Evr+UEm/oXXDEwvnAzES9DxMmeTfsf/vWZaTiXG2RVBwMh89grStNGARG9iqMG6LpGiL8sNuz4nVhYkVRB8zlz2mLANItg6Gcn3Tzxf5Toq4j2ke1QiLXXsqc+k01rTjteJ3AhwpmRQ++nINbVk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=YJg8VcCE6uVcXT/j487gUL+HfzURoT+lY8dF8io/4eT6wqjZR8gtCCl9uDgGXCKIP2wOECbBjoRw//uupZRuOzZr+mNBjW/VEOKfgFe8Cu/YCBZepmB3O+I5Ta+cBn2Av8fYsz/RyumxbqtLG4rnCMU5fvO4QBj6I0ZmHOB8/lU= Received: by 10.65.100.14 with SMTP id c14mr1936921qbm.1190598103389; Sun, 23 Sep 2007 18:41:43 -0700 (PDT) Received: by 10.65.105.2 with HTTP; Sun, 23 Sep 2007 18:41:43 -0700 (PDT) Message-ID: Date: Mon, 24 Sep 2007 01:41:43 +0000 From: "Aryeh Friedman" To: "Michael Dean" , freebsd-ports@freebsd.org In-Reply-To: <46F711AD.3030505@sourceview.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <46F6E1F1.401@sourceview.com> <46F6E3B9.5060404@sourceview.com> <46F711AD.3030505@sourceview.com> Cc: Subject: Re: Can the following license be used for ported programs? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2007 01:41:45 -0000 On 9/24/07, Michael Dean wrote: > > many people feel much differently, why not just a pure proprietary license > then, rather than proliferating Yet Another Silly License which is not > tempered by sound legal analysis. Not to be insulting but I don't think you read my 1st blog entry as I suggested (at least the first paragraph... specifically where I say both open and closed source are equally the wrong model). Now onto your actual points: The license has received legal review by an IP attorney. Again not to be insulting but I think most FOSS people slept through econ 101, especially the section on there is no such thing as a limitless resource. Even though you might consider this to be a conflict of interest; I have a family member who is a prof. of econ at UC Santa Cruz and has reviewed the economic aspects of both my specific work and the general concept of SIW (see second blog entry for definition). His general conclusion is while the model is untried on a large scale and there are some more minor things we can improve on (subject of debate within the SIW community) that we fix many of the economic flaws with both open and closed source models. He is currently in the process of writing a book on the matter and said he would have a full review after rewriting ch8 (which is on the economic issues raised by both models) in a few weeks. From owner-freebsd-ports@FreeBSD.ORG Mon Sep 24 02:13:29 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9642516A420 for ; Mon, 24 Sep 2007 02:13:29 +0000 (UTC) (envelope-from aryeh.friedman@gmail.com) Received: from nz-out-0506.google.com (nz-out-0506.google.com [64.233.162.238]) by mx1.freebsd.org (Postfix) with ESMTP id 2FCEC13C45D for ; Mon, 24 Sep 2007 02:13:29 +0000 (UTC) (envelope-from aryeh.friedman@gmail.com) Received: by nz-out-0506.google.com with SMTP id l8so740625nzf for ; Sun, 23 Sep 2007 19:13:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=rZGVuqeQBh6svKleog7nvtd66HQn767VH0Eo4qKy0QQ=; b=cmFEF51vDMLyJRtj0i3ce+0ZGd3CZjgP8Xa93tPc2ckswJBOfkdoZFIJiPnH+WaUTIVOvoX0ADNwsikDZd57n5pntNxL5kQoACVA8NTc4aWg84E25TQDofn8/WKDdTUTw2P8WlavA/fGIqb4nKxfPeE1jahV1NXlv5+lpHsw4Es= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=r8YtbBI+7SFZOoNFpOLsWH0haMJBRZkTtFaa0SS2lsm8+IktW8RdlOJesqpvP2s4LaWjGaJPIVW3cj9+Nub3qmV+DF1AHZbHI6Db702cyecVt/XXIDcKt1dwpt02jXHy8aQw9RQMdYNLIpsaOmfZS4kVPB2wt7pKxaX7e6Cs90Y= Received: by 10.65.139.9 with SMTP id r9mr7784041qbn.1190600006206; Sun, 23 Sep 2007 19:13:26 -0700 (PDT) Received: by 10.65.105.2 with HTTP; Sun, 23 Sep 2007 19:13:26 -0700 (PDT) Message-ID: Date: Mon, 24 Sep 2007 02:13:26 +0000 From: "Aryeh Friedman" To: "Michael Dean" , freebsd-ports@freebsd.org In-Reply-To: <46F718BD.7090102@sourceview.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <46F6E1F1.401@sourceview.com> <46F6E3B9.5060404@sourceview.com> <46F711AD.3030505@sourceview.com> <46F718BD.7090102@sourceview.com> Cc: Subject: Re: Can the following license be used for ported programs? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2007 02:13:29 -0000 you more then welcome to join in on the conversation... right now due to the dns issue sited in the original posting we are doing it via a manual mailing list (cc everyone else) [I think that should be partially fixed by tomorrow afternoon].... given that if you send any mail to the SIW community it should be addressed to all of the following: aryeh.friedman@gmail.com henry.pijffers@gmail.com stephane@jahia.com marius@amado-alves.info So you don't sound too much like a newbie I recommend the following background articles and links: http://www.softdevelcoop.org/o.openMailingList.htm (Mailing list archives up to the start of Miai) http://www.softdevelcoop.org/ (precursor to Miai) http://www.sustainablesoftware.info/jahia/Jahia (Stephen's take on the software portion of sustainability) http://www.sustainablesoftware.info/jahia/page421.html (historical essay that got some of us interested in what became SIW [I came to it in a different route]) http://www.methodsandtools.com/PDF/mt200402.pdf (detailed theoretical examination of Jahia's business model) --Aryeh On 9/24/07, Michael Dean wrote: > > great, then why open the conversation up to plebs like me? > > Aryeh Friedman wrote: > On 9/24/07, Michael Dean wrote: > > > many people feel much differently, why not just a pure proprietary license > then, rather than proliferating Yet Another Silly License which is not > tempered by sound legal analysis. > > Not to be insulting but I don't think you read my 1st blog entry as I > suggested (at least the first paragraph... specifically where I say > both open and closed source are equally the wrong model). Now onto > your actual points: > > The license has received legal review by an IP attorney. > > Again not to be insulting but I think most FOSS people slept through > econ 101, especially the section on there is no such thing as a > limitless resource. Even though you might consider this to be a > conflict of interest; I have a family member who is a prof. of econ at > UC Santa Cruz and has reviewed the economic aspects of both my > specific work and the general concept of SIW (see second blog entry > for definition). His general conclusion is while the model is untried > on a large scale and there are some more minor things we can improve > on (subject of debate within the SIW community) that we fix many of > the economic flaws with both open and closed source models. He is > currently in the process of writing a book on the matter and said he > would have a full review after rewriting ch8 (which is on the economic > issues raised by both models) in a few weeks. > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to > "freebsd-ports-unsubscribe@freebsd.org" > > > From owner-freebsd-ports@FreeBSD.ORG Mon Sep 24 03:28:07 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B56BA16A418 for ; Mon, 24 Sep 2007 03:28:07 +0000 (UTC) (envelope-from lioux-list@uol.com.br) Received: from goat.gigo.com (goat.gigo.com [216.218.228.114]) by mx1.freebsd.org (Postfix) with ESMTP id 80E2D13C45B for ; Mon, 24 Sep 2007 03:28:07 +0000 (UTC) (envelope-from lioux-list@uol.com.br) Received: from 201.24.13.31 (unknown [201.24.13.31]) by goat.gigo.com (Postfix) with ESMTP id 7DCABB8B0 for ; Sun, 23 Sep 2007 20:28:04 -0700 (PDT) Received: (qmail 11013 invoked by uid 1001); 24 Sep 2007 00:19:59 -0300 Message-ID: <20070924032022.10953.qmail@exxodus.fedaykin.here> Date: Mon, 24 Sep 2007 00:19:59 -0300 From: Mario Sergio Fujikawa Ferreira To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="5vNYLRcllDrimb99" Content-Disposition: inline User-Agent: Mutt/1.5.16 (2007-06-09) Subject: FreeBSD-current cannot build java/jdk15 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2007 03:28:07 -0000 --5vNYLRcllDrimb99 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, I am running -CURRENT as of yesterday (23 of september of 2007) and I am unable to build java/jdk15. FreeBSD exxodus.fedaykin.here 7.0-CURRENT FreeBSD 7.0-CURRENT #7: Fri Sep 21 07:35:14 BRT 2007 lioux@exxodus:/usr/obj/usr/src/sys/LIOUX i386 I am running all latest ports as of today. My system information is attached. Let me know if there is anything else I can do. My broken build can be found at: http://people.freebsd.org/~lioux/jdk15.tar.lzma MD5 (jdk15.tar.lzma) = 6a5f7e16795f89e20f415b8748ee2c0b The build log can be found at: http://people.freebsd.org/~lioux/jdk15.log Regards, ps: To extract jdk15.tar.lzma install archivers/lzma then $ lzma d jdk15.tar.lzma jdk15.tar -- Mario S F Ferreira - DF - Brazil - "I guess this is a signature." feature, n: a documented bug | bug, n: an undocumented feature --5vNYLRcllDrimb99 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="dmesg.boot" Copyright (c) 1992-2007 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 7.0-CURRENT #7: Fri Sep 21 07:35:14 BRT 2007 lioux@exxodus:/usr/obj/usr/src/sys/LIOUX module_register: module uhub/ums already exists! Module uhub/ums failed to register: 17 Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: AMD Athlon(tm) 64 X2 Dual Core Processor 4600+ (2410.99-MHz 686-class CPU) Origin = "AuthenticAMD" Id = 0x40fb2 Stepping = 2 Features=0x178bfbff Features2=0x2001 AMD Features=0xea500800 AMD Features2=0x1f Cores per package: 2 real memory = 2146304000 (2046 MB) avail memory = 2092195840 (1995 MB) ACPI APIC Table: FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 ioapic0: Changing APIC ID to 2 ioapic0 irqs 0-23 on motherboard kbd1 at kbdmux0 acpi0: on motherboard acpi0: [ITHREAD] acpi_hpet0: iomem 0xfefff000-0xfefff3ff on acpi0 Timecounter "HPET" frequency 25000000 Hz quality 900 acpi0: Power Button (fixed) acpi0: reservation of fefff000, 1000 (3) failed acpi0: reservation of 0, a0000 (3) failed acpi0: reservation of 100000, 7fde0000 (3) failed Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x1008-0x100b on acpi0 cpu0: on acpi0 powernow0: on cpu0 cpu1: on acpi0 powernow1: on cpu1 acpi_button0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 pci0: at device 0.0 (no driver attached) pci0: at device 0.1 (no driver attached) pci0: at device 0.2 (no driver attached) pci0: at device 0.3 (no driver attached) pci0: at device 0.4 (no driver attached) pci0: at device 0.5 (no driver attached) pci0: at device 0.6 (no driver attached) pci0: at device 0.7 (no driver attached) pcib1: at device 4.0 on pci0 pci1: on pcib1 vgapci0: port 0x8c00-0x8c7f mem 0xfa000000-0xfaffffff,0xc0000000-0xdfffffff,0xf8000000-0xf9ffffff irq 16 at device 0.0 on pci1 pci0: at device 8.0 (no driver attached) isab0: at device 9.0 on pci0 isa0: on isab0 pci0: at device 9.1 (no driver attached) pci0: at device 9.2 (no driver attached) ohci0: mem 0xfe02f000-0xfe02ffff irq 21 at device 10.0 on pci0 ohci0: [GIANT-LOCKED] ohci0: [ITHREAD] usb0: OHCI version 1.0, legacy support usb0: SMM does not respond, resetting usb0: on ohci0 usb0: USB revision 1.0 uhub0: on usb0 uhub0: 10 ports with 10 removable, self powered ehci0: mem 0xfe02e000-0xfe02e0ff irq 22 at device 10.1 on pci0 ehci0: [GIANT-LOCKED] ehci0: [ITHREAD] usb1: EHCI version 1.0 usb1: companion controller, 10 ports each: usb0 usb1: on ehci0 usb1: USB revision 2.0 uhub1: on usb1 uhub1: 10 ports with 10 removable, self powered ugen0: on uhub1 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xf400-0xf40f at device 12.0 on pci0 ata0: on atapci0 ata0: [ITHREAD] ata1: on atapci0 ata1: [ITHREAD] atapci1: port 0x9f0-0x9f7,0xbf0-0xbf3,0x970-0x977,0xb70-0xb73,0xe000-0xe00f mem 0xfe02d000-0xfe02dfff irq 23 at device 13.0 on pci0 atapci1: [ITHREAD] ata2: on atapci1 ata2: [ITHREAD] ata3: on atapci1 ata3: [ITHREAD] atapci2: port 0x9e0-0x9e7,0xbe0-0xbe3,0x960-0x967,0xb60-0xb63,0xcc00-0xcc0f mem 0xfe02c000-0xfe02cfff irq 20 at device 13.1 on pci0 atapci2: [ITHREAD] ata4: on atapci2 ata4: [ITHREAD] ata5: on atapci2 ata5: [ITHREAD] atapci3: port 0xc800-0xc807,0xc400-0xc403,0xc000-0xc007,0xbc00-0xbc03,0xb800-0xb80f mem 0xfe02b000-0xfe02bfff irq 21 at device 13.2 on pci0 atapci3: [ITHREAD] ata6: on atapci3 ata6: [ITHREAD] ata7: on atapci3 ata7: [ITHREAD] pcib2: at device 14.0 on pci0 pci2: on pcib2 atapci4: port 0xac00-0xac07,0xa800-0xa803,0xa400-0xa407,0xa000-0xa003,0x9c00-0x9cff irq 17 at device 7.0 on pci2 atapci4: [ITHREAD] ata8: on atapci4 ata8: [ITHREAD] ata9: on atapci4 ata9: [ITHREAD] emu10kx0: port 0x9800-0x983f irq 18 at device 8.0 on pci2 emu10kx0: [ITHREAD] pcm0: on emu10kx0 pcm0: pcm1: on emu10kx0 pcm2: on emu10kx0 pcm3: on emu10kx0 pci2: at device 8.1 (no driver attached) pci2: at device 8.2 (no driver attached) pci2: at device 11.0 (no driver attached) nfe0: port 0xb400-0xb407 mem 0xfe02a000-0xfe02afff,0xfe029000-0xfe0290ff,0xfe028000-0xfe02800f irq 22 at device 16.0 on pci0 miibus0: on nfe0 e1000phy0: PHY 1 on miibus0 e1000phy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseTX-FDX, auto nfe0: Ethernet address: 00:1b:fc:39:fb:23 nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] pcib3: at device 22.0 on pci0 pci3: on pcib3 atapci5: port 0x7c00-0x7c7f mem 0xfdeff000-0xfdeff07f,0xfdef8000-0xfdefbfff irq 16 at device 0.0 on pci3 atapci5: [ITHREAD] ata10: on atapci5 ata10: [ITHREAD] ata11: on atapci5 ata11: [ITHREAD] acpi_tz0: on acpi0 fdc0: port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on acpi0 fdc0: [FILTER] fd0: <1440-KB 3.5" drive> on fdc0 drive 0 sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 sio0: type 16550A sio0: [FILTER] atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] atkbd0: [ITHREAD] pmtimer0 on isa0 orm0: at iomem 0xc0000-0xccfff,0xd0000-0xd47ff pnpid ORM0000 on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled ums0: on uhub0 ums0: 8 buttons and Z dir. Timecounters tick every 0.868 msec ipfw2 (+ipv6) initialized, divert loadable, rule-based forwarding disabled, default to accept, logging disabled acd0: DVDR at ata0-master UDMA33 acd1: DVDROM at ata0-slave UDMA33 ad4: 476940MB at ata2-master SATA150 ad6: 286188MB at ata3-master SATA150 ad16: 76319MB at ata8-master UDMA100 ad18: 76319MB at ata9-master UDMA100 GEOM_LABEL: Label for provider ad4s5 is msdosfs/ . acd0: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00 sks=0x40 0x00 0x01 acd1: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00 acd0: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00 sks=0x40 0x00 0x01 acd1: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00 SMP: AP CPU #1 Launched! hwpmc: TSC/1/0x20 K8/4/0x1ff Trying to mount root from ufs:/dev/ad4s3a --5vNYLRcllDrimb99 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="pkg_info.txt" GraphicsMagick-1.1.7_2 Fast image processing tools based on ImageMagick ImageMagick-6.3.3.5_1 Image processing tools ORBit2-2.14.9 High-performance CORBA ORB with support for the C language OpenEXR-1.4.0 A high dynamic-range (HDR) image file format OpenSP-1.5.2 This package is a collection of SGML/XML tools called OpenS Win4BSD-4.0_63936_i386-freebsd Win4BSD Pro 4.0-63936 a2ps-a4-4.13b_4 Formats an ascii file for printing on a postscript printer aalib-1.4.r5_3 An ascii art library acroread7-7.0.9_2,1 Adobe Reader for view, print, and search PDF documents (ENU acroreadwrapper-0.0.20060221_2 Wrapper script for Adobe Reader adobe-cmaps-20051217_1 Adobe CMap collection akode-2.0.1,1 Default KDE audio backend akode-plugins-jack-2.0.1,1 Jack output plugin for akode akode-plugins-mpc-2.0.1,1 Musepack decoder plugin for akode akode-plugins-mpeg-2.0.1,1 MPEG audio decoder plugin for akode akode-plugins-oss-2.0.1,1 OSS output plugin for akode akode-plugins-polypaudio-2.0.1_1,1 Polypaudio output plugin for akode akode-plugins-resampler-2.0.1,1 Resampler plugin for akode akode-plugins-xiph-2.0.1_2,1 FLAC/Speex/Vorbis decoder plugin for akode amspsfnt-1.0_5 AMSFonts PostScript Fonts (Adobe Type 1 format) apache-2.2.6_1 Version 2.2 of Apache web server with prefork MPM. apache-ant-1.7.0_1 Java- and XML-based build tool, conceptually similar to mak appres-1.0.1 Program to list application's resources apr-gdbm-db42-1.2.8_1 The Apache Group's Portability Library arc-5.21o_1 Create & extract files from DOS .ARC files argouml-0.24_1 A UML design tool with cognitive support arj-3.10.22 Open-source ARJ arts-1.5.7_1,1 Audio system for the KDE integrated X11 desktop artswrapper-1.5.3 Setuid wrapper for arts aspell-0.60.5_2 Spelling checker with better suggestion logic than ispell at-spi-1.18.1_1 An Assistive Technology Service Provider Interface ataidle-1.0 Utility to spin down ATA drives atk-1.18.0_1 A GNOME accessibility toolkit (ATK) autoconf-2.53_4 Automatically configure source code on many Un*x platforms autoconf-2.59_3 Automatically configure source code on many Un*x platforms autoconf-2.61_2 Automatically configure source code on many Un*x platforms autoconf-wrapper-20070404 Wrapper script for GNU autoconf automake-1.5_4,1 GNU Standards-compliant Makefile generator (1.5) automake-1.9.6_2 GNU Standards-compliant Makefile generator (1.9) automake-wrapper-20070404 Wrapper script for GNU automake avahi+libdns-0.6.21 Service discovery on a local network bash-3.2.25 The GNU Project's Bourne Again SHell bdftopcf-1.0.1 Convert X font from BDF to PCF beforelight-1.0.2 A sample screen saver for X bigreqsproto-1.0.2 BigReqs extension headers bison-2.3_1 A parser generator from FSF, (mostly) compatible with Yacc bitmap-1.0.3 Bitmap editor and converter utilities for X bitstream-vera-1.10_4 Bitstream Vera TrueType font collection c-ares-config-1.4.0 An asynchronous DNS resolver library ca_root_nss-3.11.7 The root certificate bundle from the Mozilla Project cabextract-1.2 A program to extract Microsoft cabinet (.CAB) files cairo-1.4.10 Vector graphics library with cross-device output support cairomm-1.2.4_1 C++ interface to cairo ccache-2.4_6 A tool to minimize the compile time of C/C++ programs ccxstream-1.0.15_1 Stream media files to XBox Media Center via XBMSP cdparanoia-3.9.8_8 A CDDA extraction tool (also known as ripper) cdrdao-1.2.2 Record CD-R[W]s in disk-at-once mode cdrtools-devel-2.01.01a11_1,1 CD/DVD and ISO-9660 image creation and extraction tools clamav-devel-20070830 Command line virus scanner written entirely in C cmpsfont-1.0_6 Computer Modern PostScript Fonts (Adobe Type 1 format) code2000-1.16_2 Shareware demo Unicode TrueType font compat4x-i386-5.3_9 A convenience package to install the compat4x libraries compat5x-i386-5.4.0.8_8 A convenience package to install the compat5x libraries compat6x-i386-6.2.602110.200706 A convenience package to install the compat6x libraries compositeproto-0.4 Composite extension headers coreutils-6.9_1 The Free Software Foundation's core utilities cups-base-1.2.12 Common UNIX Printing System curl-7.16.3 Non-interactive tool to get files from FTP, GOPHER, HTTP(S) cyrus-sasl-2.1.22 RFC 2222 SASL (Simple Authentication and Security Layer) daemontools-0.76_12 Service monitoring and logging utilities by djb damageproto-1.1.0_2 Damage extension headers dasher-4.4.2,1 Information efficient text-entry interface db42-4.2.52_5 The Berkeley DB package, revision 4.2 dbus-1.0.2_2 A message bus system for inter-application communication dbus-glib-0.74 GLib bindings for the D-BUS messaging system dbus-qt3-0.70_1 Qt3 bindings for the D-BUS messaging system demime-1.1d A tool to scrub mime from mailing lists desktop-file-utils-0.12_1 A couple of command line utilities for working with desktop diablo-jdk-1.5.0.07.01_7 Java Development Kit 1.5.0_07.01 dirmngr-0.9.7_2 A client for managing and downloading certificate revocatio djbdns-1.05_10 A collection of secure and reliable DNS tools djbfft-0.76_2 An extremely fast library for floating-point convolution dmidecode-2.8 A tool for dumping DMI (SMBIOS) contents in human-readable dmxproto-2.2.2 DMX extension headers docbook-4.1_2 V4.1 of the DocBook DTD, designed for technical documentati docbook-sk-4.1.2_4 XML version of the DocBook DTD version controlled for Scrol docbook-xml-4.2_1 XML version of the DocBook DTD docbook-xml-4.3 DocBook/XML DTD V4.3, designed for technical documentation docbook-xml-4.4 DocBook/XML DTD V4.4, designed for technical documentation docbook-xsl-1.71.1_2 XSL DocBook stylesheets docproj-jadetex-1.17_2 The "meta-port" for the FreeBSD Documentation Project dovecot-1.0.5 Secure and compact IMAP and POP3 servers dri-7.0.1,2 OpenGL hardware acceleration drivers for the DRI dspam-3.6.8_2 Bayesian spam filter - stable maintenance version dsssl-docbook-modular-1.79_1,1 DSSSL stylesheets for the DocBook DTD by Norman Walsh dvd+rw-tools-7.0 DVD burning software dvipdfmx-20070409 Dvipdfm with Asian languages by CID-keyed font technology s dvipsk-tetex-5.95a_2 Convert a TeX DVI file to PostScript eclipse-3.2.2 An open extensible IDE for anything and nothing in particul eclipse-datatools-0.9.1_1 Datatools for eclipse eclipse-emf-2.2.1_1 Eclipse Modeling Framework eclipse-gef-3.2.2_2 Graphical Editing Framework for the Eclipse IDE eclipse-jad-3.2.4_1 Jad Java decompiler plugin for the Eclipse IDE eclipse-vep-1.2_1,1 A framework for creating GUI builders for Eclipse eclipse-webtools-1.5.2_1 Webtools for eclipse editres-1.0.3 Dynamic resource editor for X Toolkit Applications eel-2.18.3 Generally useful classes and extensions to GNOME encodings-1.0.2,1 X.Org Encoding fonts esound-0.2.38 A sound library for enlightenment package evieext-1.0.2 XEVIE extension headers expat-2.0.0_1 XML 1.0 parser written in C faac-1.25 MPEG-2 and MPEG-4 AAC audio encoder faad2-2.5,1 MPEG-2 and MPEG-4 AAC audio decoder fetchmail-6.3.8_4 Batch mail retrieval utility for IMAP/POP3/ETRN/ODMR ffmpeg-2007.09.14 Hyper fast realtime audio/video encoder/converter, streamin fftw3-3.1.2 Fast C routines to compute the Discrete Fourier Transform firefox-2.0.0.7,1 Web browser based on the browser portion of Mozilla fixesproto-4.0 Fixes extension headers fixrtf-0.1.20060303 A patch making it possible to embed PNGs into RTFs flac-1.1.2_1 Free lossless audio codec font-adobe-100dpi-1.0.0_1 X.Org Adobe 100dpi font font-adobe-75dpi-1.0.0 X.Org Adobe 75dpi font font-adobe-utopia-100dpi-1.0.1 X.Org Adobe Utopia 100dpi font font-adobe-utopia-75dpi-1.0.1 X.Org Adobe Utopia 75dpi font font-adobe-utopia-type1-1.0.1 X.Org Adobe Utopia Type1 font font-alias-1.0.1 X.Org Font aliases font-arabic-misc-1.0.0 X.Org miscellaneous Arabic fonts font-bh-100dpi-1.0.0 X.Org Bigelow Holmes 100dpi font font-bh-75dpi-1.0.0 X.Org Bigelow Holmes 75dpi font font-bh-lucidatypewriter-100dpi-1.0.0 X.Org Bigelow Holmes Lucida TypeWriter 100dpi font font-bh-lucidatypewriter-75dpi-1.0.0 X.Org Bigelow Holmes Lucida TypeWriter 75dpi font font-bh-ttf-1.0.0 X.Org Bigelow & Holmes TTF font font-bh-type1-1.0.0 X.Org Bigelow Holmes Type1 font font-bitstream-100dpi-1.0.0 X.Org Bitstream Vera 100dpi font font-bitstream-75dpi-1.0.0 X.Org Bitstream Vera 75dpi font font-bitstream-type1-1.0.0 X.Org Bitstream Vera Type1 font font-cronyx-cyrillic-1.0.0 X.Org Cronyx Cyrillic font font-cursor-misc-1.0.0 X.Org miscellaneous Cursor fonts font-daewoo-misc-1.0.0 X.Org miscellaneous Daewoo fonts font-dec-misc-1.0.0 X.Org miscellaneous Dec fonts font-ibm-type1-1.0.0 X.Org IBM Type1 font font-isas-misc-1.0.0 X.Org miscellaneous ISAS fonts font-jis-misc-1.0.0 X.Org miscellaneous JIS fonts font-micro-misc-1.0.0 X.Org miscellaneous Micro fonts font-misc-cyrillic-1.0.0 X.Org miscellaneous Cyrillic font font-misc-ethiopic-1.0.0 X.Org miscellaneous Ethiopic font font-misc-meltho-1.0.0_1 X.Org miscellaneous Meltho font font-misc-misc-1.0.0 X.Org miscellaneous Misc fonts font-mutt-misc-1.0.0 X.Org miscellaneous Mutt fonts font-schumacher-misc-1.0.0 X.Org miscellaneous Schumacher fonts font-screen-cyrillic-1.0.1 X.Org Screen Cyrillic font font-sony-misc-1.0.0 X.Org miscellaneous Sony fonts font-sun-misc-1.0.0 X.Org miscellaneous Sun fonts font-util-1.0.1 Create an index of X font files in a directory font-winitzki-cyrillic-1.0.0 X.Org Winitzki Cyrillic font font-xfree86-type1-1.0.0 X.Org XFree86 Type1 font fontcacheproto-0.1.2 Fontcache extension headers fontconfig-2.4.2_2,1 An XML-based font configuration API for X Windows fontsproto-2.0.2 Fonts extension headers fonttosfnt-1.0.3 Wrap a bitmap font in a sftn wrapper freefont-ttf-20060126_1 Free UCS Outline Fonts freetype-1.3.1_4 A free and portable TrueType font rendering engine freetype-tools-1.3.1_5 Tools for FreeType 1 freetype2-2.2.1_2 A free and portable TrueType font rendering engine fribidi-0.10.9 A Free Implementation of the Unicode Bidirectional Algorith fslsfonts-1.0.1 List fonts served by the X font server fstobdf-1.0.2 Generate BDF font from X font server fusefs-kmod-0.3.9.p1 Kernel module for fuse fusefs-libs-2.7.0_1 FUSE allows filesystem implementation in userspace fusefs-ntfs-1.913 Mount NTFS partitions (read/write) and disk images fusefs-smbnetfs-0.3.7 Mount smb shares (Fuse filesystem) gail-1.18.0_1 An implementation of the ATK interfaces for GTK+ widgets gamin-0.1.9 A file and directory monitoring system gawk-3.1.5_1 The GNU version of Awk gcc-ooo-3.4.1_2 GNU Compiler Collection for OpenOffice.org gccmakedep-1.0.2 Create dependencies in makefiles using 'gcc -M' gconf2-2.18.0.1_1 A configuration database system for GNOME gd-2.0.35,1 A graphics library for fast creation of images gdbm-1.8.3_3 The GNU database manager gentium-1.0.2_2 Gentium TrueType font collection gettext-0.16.1_3 GNU gettext package ghostscript-afpl-8.54_5,1 AFPL Postscript interpreter gimpshop-2.2.11_6 GIMP fork resembling Adobe Photoshop gkrellm-2.3.0 A GTK based system monitor gkrellmmailwatch-2.4.3_4 GKrellM mailwatch plugin gkrellmvolume-2.1.13_4 GKrellM volume plugin gkrellweather-2.0.7_4 GKrellWeather is a weather plugin for GKrellM glib-1.2.10_12 Some useful routines of C programming (previous stable vers glib-2.12.13 Some useful routines of C programming (current stable versi glibmm-2.12.10,1 C++ interfaces for glib2 glimpse-4.13.1 Text search engine glitz-0.5.6_1 OpenGL image compositing library glproto-1.4.8 GLX extension headers gmake-3.81_2 GNU version of 'make' utility gmime-2.2.10 Library (written in C) for parsing and creating messages us gnet2-2.0.7_2 A simple network library built upon Glib-2 gnome-desktop-2.18.3 Additional UI API for GNOME 2 gnome-doc-utils-0.10.3_1 GNOME doc utils gnome-icon-theme-2.18.0_1 A collection of icons for the GNOME 2 desktop gnome-keyring-0.8.1_1 A program that keeps passwords and other secrets gnome-menus-2.18.3 Implementation of the FreeDesktop Desktop Menu Spec gnome-mime-data-2.18.0_1 A MIME and Application database for GNOME gnome-panel-2.18.3 Panel component for the GNOME 2 Desktop gnome-vfs-2.18.1_2 GNOME Virtual File System gnome_subr-1.0 Common startup and shutdown subroutines used by GNOME scrip gnomehier-2.2_2 A utility port that creates the GNOME directory tree gnupg-2.0.4 The GNU Privacy Guard gnutls-1.6.3 GNU Transport Layer Security library google-earth-4.2.198.2451 Explore, Search and Discover gpac-libgpac-0.4.4,1 Gpac MPEG-4 Systems library and headers gpgme-1.1.5 A library to make access to GnuPG easier graphviz-2.14.1_1 Graph Visualization Software from AT&T and Bell Labs grepmail-5.3033 Search mailboxes for a given regexp and display matching em gsfonts-8.11_4 Fonts used by GNU Ghostscript (or X) gstreamer-0.10.14 Development framework for creating media applications gstreamer-ffmpeg-0.10.2_1 GStreamer plug-in for manipulating MPEG video streams gstreamer-plugins-0.10.14,3 GStreamer written collection of plugins handling several me gstreamer-plugins-a52dec-0.10.6_2,3 Gstreamer ATSC A/52 stream aka AC-3 (dvd audio) plugin gstreamer-plugins-bad-0.10.5_2,3 Bad gstreamer-plugins gstreamer-plugins-core-0.10_9 Core set of typical audio and video gstreamer-plugins gstreamer-plugins-dts-0.10.5_3,3 Gstreamer dts plugin gstreamer-plugins-dvd-0.10.6_1,3 Gstreamer dvd plugin set gstreamer-plugins-gconf-0.10.6_4,3 Gstreamer gconf plugin gstreamer-plugins-gnomevfs-0.10.14_2,3 Gstreamer gnomevfs plugin gstreamer-plugins-good-0.10.6,3 Good gstreamer-plugins gstreamer-plugins-hal-0.10.6_1,3 Gstreamer hal plugin gstreamer-plugins-libpng-0.10.6_2,3 Gstreamer png plugin gstreamer-plugins-mad-0.10.6_3,3 Gstreamer mp3 decoder plugin gstreamer-plugins-mp3-0.10.0 Gstreamer Plugins Mp3 decoder meta-port gstreamer-plugins-mpeg2dec-0.10.6_2,3 Gstreamer mpeg decode plugin gstreamer-plugins-ogg-0.10.14_2,3 Gstreamer Ogg bitstream plugin gstreamer-plugins-pango-0.10.14_2,3 Gstreamer pango textoverlay plugin gstreamer-plugins-theora-0.10.14_3,3 Gstreamer theora plugin gstreamer-plugins-ugly-0.10.6,3 Ugly gstreamer-plugins gstreamer-plugins-vorbis-0.10.14_3,3 Gstreamer vorbis encoder/decoder plugin gstreamer-plugins-xvid-0.10.5_1,3 Gstreamer xvid plugin gtar-1.18_1 GNU version of the traditional tar archiver gtk-1.2.10_18 Gimp Toolkit for X11 GUI (previous stable version) gtk-2.10.14_2 Gimp Toolkit for X11 GUI (current stable version) gtk-engines2-2.10.2 Theme engine for the gtk+-2.0 toolkit gtkglarea-1.99.0_10 An OpenGL widget for the GTK+2 GUI toolkit gtkmm-2.10.11 C++ wrapper for Gtk+, Pango, Atk gtkspell-2.0.11_5 A GTK+ 2 spell checking component hal-0.5.8.20070909 Hardware Abstraction Layer for simplifying device access help2man-1.36.4_1 Automatically generating simple manual pages from program o hicolor-icon-theme-0.10_2 A high-color icon theme shell from the FreeDesktop project hidentd-0.4 Simple and secure ident (RFC1413) server htdig-3.2.0.b6_2 A www indexing and searching system html-4.01_2 All W3C published SGML DTDs for HTML html2text-1.3.2a Converts HTML documents into plain text i2p-0.6.1.29 An anonymous network iceauth-1.0.2 ICE authority file utility for X ico-1.0.2 Displays a wire-frame rotating plyhedron icon-naming-utils-0.8.2 Utilities of the Tango project icu-3.6 International Components for Unicode (from IBM) ilbc-r3951 Internet Low Bit Rate codec (RFC3951) imake-1.0.2_4,1 Imake and other utilities from X.Org imlib-1.9.15_5 A graphic library for enlightenment package imlib2-20070223_1,1 The next generation graphic library for enlightenment packa inputproto-1.4.2.1 Input extension headers intltool-0.36.2 Tools to internationalize various kinds of data files iso-codes-1.4 Lists of the country, language and currency iso names iso8879-1986_2 Character entity sets from ISO 8879:1986 (SGML) jackit-0.103.0 A low-latency audio server jad-1.5.8c Jad, a Java decompiler jadetex-3.13_2 A TeX backend for Jade, for typesetting SGML documents jasper-1.900.1_6 An implementation of the codec specified in the JPEG-2000 s javavmwrapper-2.3 Wrapper script for various Java Virtual Machines jbigkit-1.6 Lossless compression for bi-level images such as scanned pa jdk-doc-1.5.0_1 Java Development Kit 1.5 Documentation jpeg-6b_4 IJG's jpeg compression utilities k3b-1.0.3 A CD/DVD recording GUI for KDE kbproto-1.0.3 KB extension headers kde-icons-GorillaSVG-1.4 KDE Gorilla SVG iconset kde-icons-IcOsX-0.7 KDE IcOsX iconset kde-icons-amaranth-0.8 KDE smooth iconset kde-icons-amaranth-althaea-0.5 KDE iconset like Crystal SVG, but simpler and with more sha kde-icons-cezanne-0.3b KDE Cezanne iconset kde-icons-gartoon-blue-svg-1.3 KDE Gartoon Blue SVG iconset kde-icons-gartoon-svg-1.3 KDE Gartoon SVG iconset kde-icons-graphite-rade8-1.03 KDE Mac OS X like iconset, most from rad-e8 design kde-icons-kool-gorilla-1.3.5 KDE Kool Gorilla iconset kde-icons-krystaline-1.1.6 KDE Krystaline iconset kde-icons-lime-rade8-1.01 KDE Mac OS X like iconset, most from rad-e8 design kde-icons-lush-0.1.0 KDE Lush complete iconset kde-icons-marbles-translucent-0.1.3 KDE Marbles Translucent iconset kde-icons-nuvola-1.0_1 KDE Nuvola iconset, SVG evolution of SKY kde-icons-realistic-0.10 KDE Realistic complete photo-based iconset kde-icons-sky-0.7.3 KDE SKY iconset kde-icons-steel-1.2.5 KDE iconset comprised of Steel/Silver icons with shadows kde-icons-umicons-2.0 KDE Umicons iconset kde-xdg-env-1.0_3,1 Script which hooks into startkde and helps KDE pick up XDG kdeaccessibility-3.5.7 Accessibility applications for KDE kdeaddons-3.5.7 Additional plugins and scripts for some KDE applications kdeaddons-atlantikdesigner-3.5.7 Editor for Atlantik kdeaddons-kaddressbook-plugins-3.5.7 Plugins for KAdressbook kdeaddons-kate-plugins-3.5.7 Additonal plugins and features for kate kdeaddons-kfile-plugins-3.5.7 Plugins for Konqueror (in filemanager mode) kdeaddons-kicker-applets-3.5.7 Additional applets for Kicker kdeaddons-knewsticker-scripts-3.5.7 Additional scripts for KNewsTicker kdeaddons-konq-plugins-3.5.7 Additonal plugins and features for Konqueror kdeaddons-ksig-3.5.7 Signature randomiser, available standalone or as a plugin w kdeaddons-noatun-plugins-3.5.7 Various plugins for Noatun kdeaddons-renamedlg-plugins-3.5.7 Plugins for Konqueror's rename dialog kdeartwork-3.5.7 Additional themes, sounds, wallpapers and window styles for kdebase-3.5.7_3 Basic applications for the KDE system kdebase-kompmgr-3.5.7 Utility needed to enable XComposite support in KDE kdegames-3.5.7 Games for the KDE integrated X11 desktop kdegraphics-3.5.7_1 Graphics utilities for the KDE3 integrated X11 desktop kdegraphics-kamera-3.5.7 Digital camera support for KDE kdegraphics-kuickshow-3.5.7 KDE image viewer kdehier-1.0_11 Utility port which installs a hierarchy of shared KDE direc kdelibs-3.5.7_2 Base set of libraries needed by KDE programs kdemultimedia-3.5.7_3 Multimedia utilities for the KDE integrated X11 desktop kdemultimedia-mpeglib_artsplug-3.5.7_1 Legacy KDE audio backend kdemultimedia-xine_artsplugin-3.5.7 Xine-based multimedia backend for KDE kdenetwork-3.5.7 Network-related programs and modules for KDE kdenetwork-kopete-0.12.5 KDE multi-protocol instant messenger (IM) kdepim-3.5.7 Personal Information Management tools for KDE kdetoys-3.5.7 Small applications for KDE kdeutils-3.5.7 Utilities for the KDE integrated X11 desktop kmplayer-0.9.4a,2 KDE frontend to mplayer koffice-1.6.3_2,2 Office Suite for KDE3 konversation-1.0.1_1 A user friendly IRC client for KDE ktorrent-2.1.4_1 BitTorrent client for KDE ladspa-1.12_1 Linux Audio Developer's Simple Plugin API lame-3.97_1 ISO code based fast MP3 encoder kit latex-cjk-4.7.0_1 A LaTeX2e macro package which enables the use of CJK script lcms-1.17,1 Light Color Management System -- a color management library lha-1.14i_6 Archive files using LZSS and Huffman compression (.lzh file libFS-1.0.0 The FS library libGL-7.0.1 OpenGL library that renders using GLX or DRI libGLU-7.0.1 OpenGL utility library libICE-1.0.4,1 Inter Client Exchange library for X11 libIDL-0.8.9 A library for creating trees of CORBA IDL files libSM-1.0.3,1 Session Management library for X11 libX11-1.1.3,1 X11 library libXScrnSaver-1.1.2 The XScrnSaver library libXTrap-1.0.0 The XTrap library libXau-1.0.3_2 Authentication Protocol library for X11 libXaw-1.0.4,1 X Athena Widgets library libXcomposite-0.4.0,1 X Composite extension library libXcursor-1.1.9 X client-side cursor loading library libXdamage-1.1.1 X Damage extension library libXdmcp-1.0.2 X Display Manager Control Protocol library libXevie-1.0.2 The Xevie library libXext-1.0.3,1 X11 Extension library libXfixes-4.0.3 X Fixes extension library libXfont-1.3.1,1 X font libary libXfontcache-1.0.4 The Xfontcache library libXft-2.1.12 A client-sided font API for X applications libXi-1.1.3,1 X Input extension library libXinerama-1.0.2,1 X11 Xinerama library libXmu-1.0.3,1 X Miscellaneous Utilities libraries libXp-1.0.0,1 X print library libXpm-3.5.7 X Pixmap library libXprintAppUtil-1.0.1 The XprintAppUtil library libXprintUtil-1.0.1 The XprintUtil library libXrandr-1.2.2 X Resize and Rotate extension library libXrender-0.9.4 X Render extension library libXres-1.0.3_2 X Resource usage library libXt-1.0.5 X Toolkit library libXtst-1.0.3 X Test extension libXv-1.0.3,1 X Video Extension library libXvMC-1.0.4 X Video Extension Motion Compensation library libXxf86dga-1.0.2 X DGA Extension libXxf86misc-1.0.1 X XF86-Misc Extension libXxf86vm-1.0.1 X Vidmode Extension liba52-0.7.4_1 A free library for decoding ATSC A/52 streams, aka AC-3 libao-0.8.8 Portable audio output library libart_lgpl-2.3.19,1 Library for high-performance 2D graphics libassuan-1.0.3 IPC library used by GnuPG and gpgme libaudiofile-0.2.6 A sound library for SGI audio file libbonobo-2.18.0_1 A component and compound document system for GNOME2 libbonoboui-2.18.0_1 GUI frontend to the libbonobo component of GNOME 2 libcaca-0.99.b11_1 Graphics library that outputs text instead of pixels libcddb-1.3.0 A library to access data on a CDDB server libcdio-0.77_2 Compact Disc Input and Control Library libchk-1.9 A tool to check shared library links libcroco-0.6.1 CSS2 parsing library libdaemon-0.12 Lightweight C library that eases the writing of UNIX daemon libdca-0.0.5 Free DTS Coherent Acoustics decoder libdmx-1.0.2 DMX extension library libdrm-2.3.0 Userspace interface to kernel Direct Rendering Module servi libdv-0.104_4 Quasar DV codec (libdv): software codec for DV video encodi libdvdcss-1.2.9_2 Portable abstraction library for DVD decryption libdvdnav-0.1.10_2 The library for the xine-dvdnav plugin libdvdread-0.9.7_2 This is needed by ogle, which is a DVD player that supports libevent-1.3d Provides an API to execute callback functions on certain ev libexecinfo-1.1_1 A library for inspecting program's backtrace libexif-0.6.15 Library to read digital camera file meta-data libfame-0.9.1_2 A video encoding library libfontenc-1.0.4 The fontenc Library libfpx-1.2.0.12 Library routines for working with Flashpix images libgcrypt-1.2.4_1 "General purpose crypto library based on code used in GnuPG libggi-2.2.2_1,1 A flexible drawing library libgii-1.0.2_1 GGI API for input sources libglade2-2.6.2 GNOME glade library libglut-7.0.1 OpenGL utility toolkit libgmp-4.2.2 A free library for arbitrary precision arithmetic libgnome-2.18.0_1 Libraries for GNOME, a GNU desktop environment libgnomecanvas-2.14.0_3 A graphics library for GNOME libgnomeui-2.18.1_1 Libraries for the GNOME GUI, a GNU desktop environment libgpg-error-1.5 Common error values for all GnuPG components libgphoto2-2.4.0 A universal digital camera picture control tool libgsf-1.14.7 An extensible i/o abstraction for dealing with structured f libgtkhtml-2.11.1 Lightweight HTML rendering/printing/editing engine libiconv-1.9.2_2 A character set conversion library libid3tag-0.15.1b ID3 tags library (part of MAD project) libidn-0.6.14 Internationalized Domain Names command line tool libksba-1.0.1_1 KSBA is an X.509 Library libltdl-1.5.22_2 System independent dlopen wrapper libmad-0.15.1b_2 Libmad library (part of MAD project) libmikmod-3.1.11_2 MikMod Sound Library libmng-1.0.9 Multiple-image Network Graphics (MNG) reference library libmodplug-0.8.4 ModPlug mod-like music shared libraries libmpcdec-1.2.6 High quality audio compression format libmpeg2-0.4.1_2 A free library for decoding mpeg-2 and mpeg-1 video streams libmusicbrainz-2.1.5 2nd generation incarnation of the CD Index - audio metadata libogg-1.1.3,3 Ogg bitstream library liboil-0.3.12 Library of optimized inner loops liboldX-1.0.1 Old X library libopensync-0.22_1 Freedesktop synchronization framework libpaper-1.1.21_3 A library providing routines for paper size management librsvg2-2.18.2 Library for parsing and rendering SVG vector-graphic files libsamplerate-0.1.2_2 Secret Rabbit Code: a Sample Rate Converter for audio libsigc++-2.0.18 Callback Framework for C++ libsndfile-1.0.17_1 Reading and writing files containing sampled sound (like WA libthai-0.1.5_2 Thai language support library libtheora-1.0.a7_1 Theora video codec for the Ogg multimedia streaming system libtool-1.5.22_4 Generic shared library support script libublio-20070103 User space caching library libungif-4.1.4_5 Tools and library routines for working with GIF images libusb-0.1.12_1 Library giving userland programs access to USB devices libvolume_id-0.75.0_1 Library to provide file system type information libvorbis-1.2.0,3 Audio compression codec library libwmf-0.2.8.4_2 Tools and library for converting Microsoft WMF (windows met libwnck-2.18.3 Library used for writing pagers and taskslists libwpd-0.8.9_1 Tools for importing and exporting WordPerfect(tm) documents libwww-5.4.0_4 The W3C Reference Library libxine-1.1.7_1 Libraries for xine multimedia player libxkbfile-1.0.4 XKB file library libxkbui-1.0.2 The xkbui library libxml++-2.18.0 XML API for C++ libxml2-2.6.30 XML parser library for GNOME libxslt-1.1.22 The XSLT C library for GNOME linc-1.0.3_6 A library for writing networked servers & clients links-0.98,1 Lynx-like text WWW browser linux-atk-1.9.1 Accessibility Toolkit, Linux/i386 binary linux-expat-1.95.8 Linux/i386 binary port of Expat XML-parsing library linux-flashplugin-7.0r69 Adobe Flash Player NPAPI Plugin linux-fontconfig-2.2.3_7 Linux/i386 binary of Fontconfig linux-glib2-2.6.6 Version 2.X Linux/i386 binary port of GLib linux-gtk2-2.6.10 GTK+ library, version 2.X, Linux binary linux-jpeg-6b.34 RPM of the JPEG lib linux-js-2.2 The Linux joystick interface ported to FreeBSD linux-openssl-0.9.7f SSL and crypto library (Linux Version) linux-pango-1.8.1 Linux pango binary linux-png-1.2.8_2 RPM of the PNG lib linux-realplayer-10.0.8.805.20060718_1 Linux RealPlayer 10 from RealNetworks linux-tiff-3.7.1 TIFF library, Linux/i386 binary linux-xorg-libs-6.8.2_5 Xorg libraries, linux binaries linux_base-fc-4_10 Base set of packages needed in Linux mode (for i386/amd64) linux_dri-7.0 Binary Linux DRI libraries for 3D hardware acceleration of linuxdoc-1.1_1 The Linuxdoc SGML DTD lirc-0.8.0_1 Linux Infared Remote Control listres-1.0.1 List resources in widgets liveMedia-2007.07.25,1 LIVE.COM Streaming Media localedata-5.4 Legacy locale data for FreeBSD 6+ luit-1.0.2_2 Locale and ISO 2022 support for Unicode terminals lynx-2.8.6.5_1,1 A non-graphical, text-based World-Wide Web client lzma-4.54 High-ratio LZMA compressor lzo-1.08_2,1 Portable speedy, lossless data compression library m4-1.4.9 GNU m4 maildrop-2.0.4 Mail delivery agent (MDA) with filtering abilities makedepend-1.0.1,1 A dependency generator for makefiles maven2-2.0.7 Java project management tool, 2.0 branch mencoder-0.99.10 Convenient video file and movie encoder mime-support-3.39.1 MIME Media Types list mjpegtools-1.9.0.r2 Set of tools to record/playback/edit videos in MPEG format mkcomposecache-1.2_1 Program to create Compose cache files mkfontdir-1.0.3 Create an index of X font files in a directory mkfontscale-1.0.3 Creates an index of scalable font files for X mldonkey-2.9.1 A OCAML client for multiple peer-to-peer networks mmencode-2.7 Translate to and from mail-oriented encoding formats mpeg2codec-1.2_3 An MPEG-2 Encoder and Decoder mpeg4ip-libmp4v2-1.5.0.1 Mpeg-4 library and tools from mpeg4ip mplayer-0.99.10_13 High performance media player supporting many formats mplayer-skins-1.1.2_6 Skins for MPlayer's Graphical User Interface (GUI) mplayerplug-in-3.45 A Mozilla plugin for the MPlayer media player mutt-devel-1.5.16_2 The Mongrel of Mail User Agents (development version) mysql-client-5.0.45 Multithreaded SQL database (client) nas-1.8_1 Network Audio System nasm-0.98.39,1 General-purpose multi-platform x86 assembler nautilus-2.18.3 File manager for the GNOME desktop nautilus-cd-burner-2.18.2 CD burner view for Nautilus ncurses-5.6_1 Library for terminal-independent, full-screen output neon-0.26.4 An HTTP and WebDAV client library for Unix systems net-snmp-5.3.1_3 An extendable SNMP implementation netpbm-10.26.44 A toolkit for conversion of images between different format normalizemime-1.18.20070320_1 A mime normalizer to be used as a preprocessor for email cl nspluginwrapper-0.9.91.5 A compatibility plugin for Netscape 4 (NPAPI) plugins nspr-4.6.7 A platform-neutral API for system level and libc like funct nss-3.11.7 Libraries to support development of security-enabled applic nvidia-driver-100.14.11 NVidia graphics card binary drivers for hardware OpenGL ren ocaml-3.09.3_1 The Objective Caml compiler and programming environment ocaml-lablgl-1.02_1 OpenGL interface for Objective Caml ocaml-lablgtk2-2.6.0_4 An Objective Caml interface to GTK+ 2.x oclock-1.0.1 Round clock application for X open-motif-2.2.3_5 Motif X11 Toolkit (industry standard GUI (IEEE 1295)) openal-20060211_6 A 3D positional spatialized sound library openjade-1.3.3p1 Object-oriented SGML/XML parser toolkit and DSSSL engine openldap-client-2.3.38 Open source LDAP client implementation openoffice.org-2.2.1 Integrated wordprocessor/dbase/spreadsheet/drawing/chart/br openslp-1.2.1_2 Open-source implementation of the Service Location Protocol openssh-portable-4.7.p1,1 The portable version of OpenBSD's OpenSSH opera-9.23.20070809 A blazingly fast, full-featured, standards-compliant browse opera-linuxplugins-9.21.20070510_1 Linux plugin support for the native Opera browser ortp-0.13.0 A Real-time Transport Protocol (RTP) stack p5-Algorithm-Diff-1.1902 Perl interface to compute differences between two objects p5-Archive-Zip-1.20 Perl module to create, manipulate, read, and write Zip arch p5-Authen-SASL-2.10_1 Perl5 module for SASL authentication p5-Compress-Raw-Zlib-2.006 Low-Level Interface to zlib compression library p5-Compress-Zlib-2.006 Perl5 interface to zlib compression library p5-DBD-Pg-1.49 Provides access to PostgreSQL databases through the DBI p5-DBI-1.59 The perl5 Database Interface. Required for DBD::* modules p5-Date-Manip-5.44 Perl5 module containing date manipulation routines p5-Digest-1.15 Modules that calculate message digests p5-Digest-HMAC-1.01 Perl5 interface to HMAC Message-Digest Algorithms p5-Digest-MD5-2.36 Perl5 interface to the MD5 algorithm p5-Digest-SHA1-2.11 Perl interface to the SHA-1 Algorithm p5-File-Temp-0.18 Perl5 module to generate temporary files or directories saf p5-File-Which-0.05 Portable implementation of `which' in Perl p5-FileHandle-Unget-0.1621 A FileHandle which supports ungetting of multiple bytes p5-Font-AFM-1.19 An interface to Adobe font metrics files p5-GSSAPI-0.24 Perl extension providing access to the GSSAPIv2 library p5-HTML-Format-2.04 A module to format HTML to text or PS p5-HTML-Parser-3.56 Perl5 module for parsing HTML documents p5-HTML-Tagset-3.10 Some useful data table in parsing HTML p5-HTML-Tree-3.23 A collection of modules to manupulate HTML syntax trees p5-IO-Compress-Base-2.006 Base Class for IO::Uncompress modules p5-IO-Compress-Zlib-2.006 Perl5 interface for reading and writing of (g)zip files p5-MIME-Base64-3.07 Perl5 module for Base64 and Quoted-Printable encodings p5-Mail-Mbox-MessageParser-1.5000 A fast and simple mbox folder reader p5-Net-1.22,1 Perl5 modules to access and use network protocols p5-PathTools-3.25 A Perl module for portably manipulating file specifications p5-Scalar-List-Utils-1.19,1 Perl subroutines that would be nice to have in the perl cor p5-Storable-2.16 Persistency for perl data structures p5-Test-Harness-2.64 Run perl standard test scripts with statistics p5-Test-Simple-0.72 Basic utilities for writing tests in perl p5-Text-Diff-0.35 Text::Diff - Perform diffs on files and record sets p5-Time-HiRes-1.9707,1 A perl5 module implementing High resolution time, sleep, an p5-TimeDate-1.16,1 Perl5 module containing a better/faster date parser for abs p5-URI-1.35 Perl5 interface to Uniform Resource Identifier (URI) refere p5-XML-NamespaceSupport-1.09_1 A simple generic namespace support class p5-XML-Parser-2.34_2 Perl extension interface to James Clark's XML parser, expat p5-XML-SAX-0.16 Simple API for XML p5-XML-SAX-Expat-0.39 Simple API for XML p5-XML-Simple-2.18 Trivial API for reading and writing XML (esp config files) p5-gettext-1.05_1 Message handling functions p5-libwww-5.805 Perl5 library for WWW access p5-type1inst-0.6.1_4 A script that helps install Postscript fonts in X Window Sy p7zip-4.55 File archiver with high compression ratio pango-1.16.5 An open-source framework for the layout and rendering of i1 paq-8.o4.v2 An archiver with an extremely high compression ratio patch-2.5.4 GNU patch utility pbzip2-1.0.2.0.2 Parallel BZIP2 pccts-1.33.33 The Purdue Compiler Construction Tool Set pciids-20070906 Database of all known ID's used in PCI devices pcre-7.3 Perl Compatible Regular Expressions library pdksh-5.2.14p2_2 The Public Domain Korn Shell perl-threaded-5.8.8 Practical Extraction and Report Language pilot-link-0.12.2,1 Suite of tools used to connect and sync your Palm handled pinentry-qt-0.7.2_6 QT version of the gnupg password dialog pixman-0.9.5_2 Low-level pixel manipulation library pkg-config-0.22 A utility to retrieve information about installed libraries pkg_cutleaves-20061113 Interactive script for deinstalling 'leaf' packages png-1.2.18 Library for manipulating PNG images policykit-0.1.20060514_4 Framework for controlling access to system-wide components polipo-1.0.2 A small and fast caching web proxy polypaudio-0.7_4 Sound server for UNIX poppler-0.6 A PDF rendering library poppler-data-0.1 Poppler encoding data poppler-gtk-0.6 Gtk bindings to poppler poppler-qt-0.6 Qt bindings to poppler popt-1.7_4 A getopt(3) like library with a number of enhancements, fro portaudio-18.1_2 Portable cross-platform Audio API portconf-1.2 A universal tool to set specific port knobs portupgrade-devel-2.3.1 FreeBSD ports/packages administration and management tool s postgresql-client-8.2.5 PostgreSQL database (client) postgresql-libpqxx-2.6.9 A new C++ interface for PostgreSQL postgresql-server-8.2.5 The most advanced open-source database available anywhere ppmd-7z-4.53 High-ratio PPMD compressor printproto-1.0.3 Print extension headers privoxy-3.0.6_1 Privoxy is a web proxy with advanced filtering capabilities procmail-3.22_6 A local mail delivery agent pstree-2.31 List processes as a tree psutils-a4-1.17_2 Utilities for manipulating PostScript documents pth-2.0.7 GNU Portable Threads py25-cairo-1.4.0_1 Python bindings for Cairo py25-gobject-2.12.3 Python bindings for GObject py25-gtk-2.10.6 A set of Python bindings for GTK+ py25-libxml2-2.6.30 Python interface for XML parser library for GNOME py25-numeric-24.2 The Numeric Extension to Python py25-xml-0.8.4 PyXML: Python XML library enhancements python25-2.5.1 An interpreted object-oriented programming language qca-tls-1.0_2 SSL/TLS plugin for Qt qmail-1.03_5 A secure, reliable, efficient, simple, and fast MTA qmake-3.3.8_1 The build utility of the Qt project qt-copy-3.3.8_6 Multiplatform C++ application framework (+ KDE patches) randrproto-1.2.1 Randr extension headers recordproto-1.13.2 RECORD extension headers renderproto-0.9.3 RenderProto protocol headers resourceproto-1.0.2 Resource extension headers rgb-1.0.1 Uncompile an rgb corl-name database rpm-3.0.6_13 The Red Hat Package Manager rpm2cpio-1.2_2 Convert .rpm files for extraction with /usr/bin/cpio, needs rstart-1.0.2 Sample implementation of a Remote Start client rsync-2.6.9_1 A network file distribution/synchronization utility rtc-2004.02.24.1_8 Kernel module which provides /dev/rtc device support ruby+pthreads+oniguruma-1.8.6_2,1 An object-oriented interpreted scripting language ruby18-bdb42-0.6.2 Ruby interface to Sleepycat's Berkeley DB revision 2 or lat ruby18-deplate-0.8 Ruby tool for converting wiki-like markup samba-3.0.26a,1 A free SMB and CIFS client and server for UNIX samba-libsmbclient-3.0.26a Shared libs from the samba package scr2png-1.2_1 Converts the output of "vidcontrol -p" to PNG scr2txt-1.2 Converts the output of "vidcontrol -p" to text screen-4.0.3 A multi-screen window manager scripts-1.0.1 Various X related scripts scrnsaverproto-1.1.0 ScrnSaver extension headers scrollkeeper-0.3.14_8,1 An Open Document Cataloging Project sdl-1.2.11_1,2 Cross-platform multi-media development API sdocbook-xml-1.1,1 "Simplified" DocBook XML DTD serialmail-0.75_2 Tools for passing mail across serial links sessreg-1.0.3 Manage utmp/wtmp entries for non-init X clients setxkbmap-1.0.4 Set the keyboard using the X Keyboard Extension shared-mime-info-0.22 A MIME type database from the FreeDesktop project showfont-1.0.1 Font dumper for the X font server smpeg-0.4.4_7 A free MPEG1 video player library with sound support smproxy-1.0.2 Session Manager Proxy speex-1.2.b2,1 An open-source patent-free voice codec sqlite3-3.4.1 An SQL database engine in a C library w/ Tcl wrapper startup-notification-0.9_1 Library that supports startup notification spec from freede subversion-1.4.4_1 Version control system sudo-1.6.9.5 Allow others to run commands as root svgalib-1.4.3_5 A low level console graphics library swig-1.3.31_1 Simplified Wrapper and Interface Generator t1lib-5.1.1_2,1 A Type 1 Rasterizer Library for UNIX/X11 t1utils-1.32 Six utilities for manipulating t1 fonts taglib-1.4_2 Library for manipulating ID3 tags and Ogg comments tcl-8.4.16,1 Tool Command Language teTeX-base-3.0_12 Thomas Esser's distribution of TeX & friends (binaries) teTeX-texmf-3.0_5 Thomas Esser's distribution of TeX & friends (texmf tree) tex-texmflocal-1.9 Meta-port that creates a site-local $TEXMF directory texi2html-1.76_1,1 Texinfo to HTML converter tidy-20000804_2 Fixes and tidies up HTML files tiff-3.8.2_1 Tools and library routines for working with TIFF images tightvnc-1.3.8_2 Enhanced version of VNC tinderbox-2.4.1 Port build tinderbox system tk-8.4.16,2 Graphical toolkit for TCL tnef-1.4.3 Unpack data in MS Outlook TNEF format tor-devel-0.2.0.2.a_1 An anonymizing overlay network for TCP totem-2.18.2 A gstreamer-based video player for the GNOME 2 Desktop tracker-0.6.1_1 Object database, tag/metadata database, search tool and ind transcode-1.0.4 A text-console utility for video stream processing trapproto-3.4.3 DEC-XTRAP extension headers tsocks-1.8.b5_3 Allow non SOCKS aware applications to use SOCKS without mod ttf2pt1-3.4.4_2 True Type Font to Postscript Type 1 Converter ttmkfdir-3.0.9_1,1 Create fonts.scale file for use with TrueType font server twm-1.0.3_3 Tab Window Manager for the X Window System ucspi-ssl-0.70_1 UCSPI tools for building SSL client-server applications ucspi-tcp-0.88_2 Command-line tools for building TCP client-server applicati unmakeself-1.1 Extract Makeself archives unzip-5.52_3 List, test and extract compressed files in a ZIP archive unzoo-4.4_2 A zoo archive extractor urwfonts-ttf-1.0.7b18_1 Unicode TrueType fonts from URW extended by Valek Filippov usendmail-0.1.6_1 A replacement for qmail's sendmail drop-in v4l_compat-1.0.20060801 Video4Linux compatibility header vcdimager-0.7.23_3 GNU VCDImager/VCDRip -- The GNU VideoCD Image Maker/Ripping videoproto-2.2.2 Video extension headers viewres-1.0.1 Graphical class browser for Xt vorbis-tools-1.1.1_4,3 Play, encode, and manage Ogg Vorbis files webfonts-0.30_2 TrueType core fonts for the Web wget-1.10.2_1 Retrieve files from the Net via HTTP and FTP win32-codecs-3.1.0.r1,1 Huge compilation of Win32 binary video codecs workrave-1.8.3_1 A Gnome RSI prevention tool wv-1.2.4_1 A library and executables to access Microsoft Word files wv2-0.2.3_1 A library providing routines to access Microsoft Word files x11perf-1.4.1 X11 server performance test program x264-0.0.20070913 Multimedia library and tool for encoding H.264/AVC video st xanim-2.92.0_2 Play most popular animation formats and show pictures xauth-1.0.2 X authority file utility xbacklight-1.1 Program to adjust backlight brightness xbiff-1.0.1 Mailbox flag for X xbindkeys-1.8.2_1 Allows you to launch shell commands under X with your keybo xbitmaps-1.0.1 X.Org bitmaps data xcalc-1.0.2 Scientific calculator for X xclick-0.1_1 Generates X11 mouse button click events xclipboard-1.0.1 X clipboard client xclock-1.0.3 Analog and digital clock for X xcmiscproto-1.1.2 XCMisc extension headers xcmsdb-1.0.1 Device Color Characterization utility for X xconsole-1.0.3 Monitor system console messages with X xcursor-themes-1.0.1_1 X.org cursors themes xcursorgen-1.0.2 Create an X cursor file from a collection of PNG images xdbedizzy-1.0.2 Demo of DBE creating a double buffered spinning scene xditview-1.0.1 Display ditroff output xdm-1.1.6 X.Org X display manager xdpyinfo-1.0.2 Display information utility for X xdriinfo-1.0.2 Query configuration information of DRI drivers xedit-1.0.2 Simple text editor for X xev-1.0.2 Print contents of X events xextproto-7.0.2 XExt extension headers xeyes-1.0.1 A follow the mouse X demo xf86-input-keyboard-1.2.2 X.Org keyboard input driver xf86-input-mouse-1.2.2 X.Org mouse input driver xf86-video-ati-6.7.193 X.Org ati display driver xf86-video-fbdev-0.3.1_1 X.Org fbdev display driver xf86-video-mga-1.4.7 X.Org mga display driver xf86-video-nv-2.1.3_1 X.Org nv display driver xf86-video-vesa-1.3.0_1 X.Org vesa display driver xf86-video-vga-4.1.0_1 X.Org vga display driver xf86bigfontproto-1.1.2 XFree86-Bigfont extension headers xf86dga-1.0.2 Test program for the XFree86-DGA extension xf86dgaproto-2.0.3 XFree86-DGA extension headers xf86driproto-2.0.3 XFree86-DRI extension headers xf86miscproto-0.9.2 XFree86-Misc extension headers xf86rushproto-1.1.2 XFree86-Rush extension headers xf86vidmodeproto-2.2.2 XFree86-VidModeExtension extension headers xfd-1.0.1 Display all characters in an X font xfindproxy-1.0.1 Locate available proxy services xfontsel-1.0.2 Point and click selection of X11 font names xfs-1.0.4_4,1 X.Org font server xfsinfo-1.0.1 X font server information utility xfwp-1.0.1 X firewall proxy xgamma-1.0.2 Gamma correction through the X server. xgc-1.0.1 X graphics demo xhost-1.0.2 Server access control program for X xhtml-1.0.20020801_4 W3C's XHTML DTD xine-0.99.5 An X11 multimedia player xineramaproto-1.1.2 Xinerama extension headers xinit-1.0.5 X Window System initializer xkbcomp-1.0.3 Compile XKB keyboard description xkbevd-1.0.2 XKB event daemon xkbprint-1.0.1 Utility for printing an XKB keyboard description xkbutils-1.0.1 XKB utility demos xkeyboard-config-1.0_1 X Keyboard Configuration Database xkill-1.0.1 Utility for killing a client by its X resource xload-1.0.2 System load average display for X xlogo-1.0.1 Displays the X Window System logo. xlsatoms-1.0.1 List interned atoms defined on a server xlsclients-1.0.1 List client applications running on a display xlsfonts-1.0.2 Server font list displayer for X xmag-1.0.2 X application for screen magnifying xman-1.0.3 Manual page display program for X xmessage-1.0.2 Display message or query in a X window xmh-1.0.1 Send and read mail with an X interface to MH xmlcatmgr-2.2 SGML and XML catalog manager xmlcharent-0.3_2 XML character entities xmms-1.2.10_10 X Multimedia System -- An audio player with Winamp GUI xmodmap-1.0.3 Utility for modifying keymaps and pointer button mappings i xmore-1.0.1 Plain text display program for X xorg-7.3_1 X.Org complete distribution metaport xorg-apps-7.3 X.org apps meta-port xorg-cf-files-1.0.2_2 X.org cf files for use with imake builds xorg-docs-1.4,1 X.org documentation files xorg-drivers-7.3 X.org drivers meta-port xorg-fonts-100dpi-7.3 X.Org 100dpi bitmap fonts xorg-fonts-7.3 X.org fonts meta-port xorg-fonts-75dpi-7.3 X.Org 75dpi bitmap fonts xorg-fonts-cyrillic-7.3 X.Org Cyrillic bitmap fonts xorg-fonts-miscbitmaps-7.3 X.Org miscellaneous bitmap fonts xorg-fonts-truetype-7.3 X.Org TrueType fonts xorg-fonts-type1-7.3 X.Org Type1 fonts xorg-libraries-7.3_1 X.org libraries meta-port xorg-protos-7.3 X.org protos meta-port xorg-server-1.4,1 X.Org X server and related programs xphelloworld-1.0.1 Sends a test page to an Xprint printer xplsprinters-1.0.1 Shows a list of Xprint printers xpr-1.0.2 Utility for printing an X window dump xprehashprinterlist-1.0.1 Recomputes the list of available printers. xprop-1.0.3 Property displayer for X xproto-7.0.10 X11 protocol headers xproxymanagementprotocol-1.0.2 X Proxy Management Protocol headers xrandr-1.2.2 Primitive command line interface to the RandR extension xrdb-1.0.4 X server resource database utility xrefresh-1.0.2 Refresh all or part of an X screen xrx-1.0.1 RX helper program xset-1.0.3 User preference utility for X xsetmode-1.0.0 Set the mode for an X Input Device xsetpointer-1.0.1 Set an X Input device as the main pointer xsetroot-1.0.2 root window parameter setting utility for X xsm-1.0.1 X Session Manager xstdcmap-1.0.1 X standard colormap utility xterm-229 Terminal emulator for the X Window System xtrans-1.0.4 Abstract network code for X xtrap-1.0.2 XTrap sample clients for X xulrunner-1.8.0.4_7 Mozilla runtime package that can be used to bootstrap XUL+X xvid-1.1.3,1 An opensource MPEG-4 codec, based on OpenDivx xvid4conf-1.12_1 XviD configuration panel for transcode xvidtune-1.0.1 Video mode tuner for X xvinfo-1.0.2 Print out X-Video extension adaptor information xvkbd-2.6_3 A virtual keyboard for X applications xwd-1.0.1 Dump an image of an X window xwininfo-1.0.3 Window information utility for X xwud-1.0.1 Image displayer for X zh-arphicttf-2.11_2 Four Chinese Big5/GB TrueType fonts made by Arphic Technolo zh-docproj-0.1.20060303_2 Supportive tools for Chinese docproj build zh-ttf2pt1-3.4.0 True Type Font to Postscript Type 1 Converter with chinese zh-ttfm-0.9.5_2 A Big5/GB enhanced TrueType Font Manager zip-2.32 Create/update ZIP files compatible with pkzip --5vNYLRcllDrimb99-- From owner-freebsd-ports@FreeBSD.ORG Mon Sep 24 03:31:46 2007 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D4E516A417 for ; Mon, 24 Sep 2007 03:31:46 +0000 (UTC) (envelope-from lioux-list@uol.com.br) Received: from goat.gigo.com (goat.gigo.com [216.218.228.114]) by mx1.freebsd.org (Postfix) with ESMTP id E816F13C47E for ; Mon, 24 Sep 2007 03:31:45 +0000 (UTC) (envelope-from lioux-list@uol.com.br) Received: from 201.24.13.31 (unknown [201.24.13.31]) by goat.gigo.com (Postfix) with ESMTP id 3463CB850 for ; Sun, 23 Sep 2007 20:31:42 -0700 (PDT) Received: (qmail 26908 invoked by uid 1001); 24 Sep 2007 00:30:36 -0300 Message-ID: <20070924033059.26893.qmail@exxodus.fedaykin.here> Date: Mon, 24 Sep 2007 00:30:36 -0300 From: Mario Sergio Fujikawa Ferreira To: freebsd-ports@FreeBSD.org MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="liOOAslEiF7prFVr" Content-Disposition: inline User-Agent: Mutt/1.5.16 (2007-06-09) Cc: Subject: xorg 7.3: unable to use keyboard X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2007 03:31:46 -0000 --liOOAslEiF7prFVr Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, I've been unable to use the keyboard after the update to xorg 7.3. The mouse works fine though. xorg seems to be okay otherwise since I can use it just fine with net/tightvnc from another workstation. I am attaching my system information. Let me know if there is anything I can do to help. I am running KDE by the way. FreeBSD exxodus.fedaykin.here 7.0-CURRENT FreeBSD 7.0-CURRENT #7: Fri Sep 21 07:35:14 BRT 2007 lioux@exxodus:/usr/obj/usr/src/sys/LIOUX i386 Regards, -- Mario S F Ferreira - DF - Brazil - "I guess this is a signature." feature, n: a documented bug | bug, n: an undocumented feature --liOOAslEiF7prFVr Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=LIOUX # # GENERIC -- Generic kernel configuration file for FreeBSD/i386 # # For more information on this file, please read the handbook section on # Kernel Configuration Files: # # http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html # # The handbook is also available locally in /usr/share/doc/handbook # if you've installed the doc distribution, otherwise always see the # FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the # latest information. # # An exhaustive list of options and more detailed explanations of the # device lines is also present in the ../../conf/NOTES and NOTES files. # If you are in doubt as to the purpose or necessity of a line, check first # in NOTES. # # $FreeBSD: src/sys/i386/conf/GENERIC,v 1.473 2007/07/01 21:47:45 njl Exp $ #cpu I486_CPU #cpu I586_CPU cpu I686_CPU ident LIOUX # To statically compile in device wiring instead of /boot/device.hints #hints "GENERIC.hints" # Default places to look for devices. makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols options SCHED_4BSD # 4BSD scheduler #options SCHED_ULE options PREEMPTION # Enable kernel thread preemption options INET # InterNETworking options INET6 # IPv6 communications protocols options SCTP # Stream Transmission Control Protocol options FFS # Berkeley Fast Filesystem options SOFTUPDATES # Enable FFS soft updates support options UFS_ACL # Support for access control lists options UFS_DIRHASH # Improve performance on big directories options UFS_GJOURNAL # Enable gjournal-based UFS journaling #options MD_ROOT # MD is a potential root device #options NFSCLIENT # Network Filesystem Client #options NFSSERVER # Network Filesystem Server #options NFS_ROOT # NFS usable as /, requires NFSCLIENT #options MSDOSFS # MSDOS Filesystem #options CD9660 # ISO 9660 Filesystem options PROCFS # Process filesystem (requires PSEUDOFS) options PSEUDOFS # Pseudo-filesystem framework options GEOM_PART_GPT # GUID Partition Tables. options GEOM_LABEL # Provides labelization options COMPAT_43TTY # BSD 4.3 TTY compat [KEEP THIS!] options COMPAT_FREEBSD4 # Compatible with FreeBSD4 options COMPAT_FREEBSD5 # Compatible with FreeBSD5 options COMPAT_FREEBSD6 # Compatible with FreeBSD6 options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI options KTRACE # ktrace(1) support options SYSVSHM # SYSV-style shared memory options SYSVMSG # SYSV-style message queues options SYSVSEM # SYSV-style semaphores options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions options KBD_INSTALL_CDEV # install a CDEV entry in /dev options ADAPTIVE_GIANT # Giant mutex is adaptive. options STOP_NMI # Stop CPUS using NMI instead of IPI options AUDIT # Security event auditing ### ## ADDON AREA - BEGIN ### # #options KDB # Enable kernel debugger support. #options DDB # Support DDB. #options GDB # Support remote GDB. #options INVARIANTS # Enable calls of extra sanity checking #options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS #options WITNESS # Enable checks to detect deadlocks and cycles #options DEBUG_LOCKS #options DEBUG_VFS_LOCKS #options SOCKBUF_DEBUG #options DIAGNOSTIC #options BREAK_TO_DEBUGGER # #options IPFILTER # options IPFIREWALL options IPFIREWALL_DEFAULT_TO_ACCEPT options DUMMYNET # device pf device pflog device pfsync #options ALTQ #options ALTQ_CBQ # Class Bases Queuing (CBQ) #options ALTQ_RED # Random Early Detection (RED) #options ALTQ_RIO # RED In/Out #options ALTQ_HFSC # Hierarchical Packet Scheduler (HFSC) #options ALTQ_PRIQ # Priority Queuing (PRIQ) # options COMPAT_LINUX options LINPROCFS # #device drm #device mgadrm # device atapicam # #device pcm #device snd device sound # options DEVICE_POLLING options HZ=1152 # options IPSTEALTH # options ZERO_COPY_SOCKETS # options UFS_EXTATTR options UFS_EXTATTR_AUTOSTART # options DIRECTIO ## options CPU_FASTER_5X86_FPU # options CPU_SUSP_HLT # options CPU_UPGRADE_HW_CACHE # #options AUTO_EOI_1 # #options VESA #options SC_PIXEL_MODE #device fb #options FB_INSTALL_CDEV # install a CDEV entry in /dev # #options MAC #options MAC_LOMAC # device acpi_aiboost device acpi_asus device smbus device iicbus device iicbb device iicsmb device smb # #device bktr # ####options BKTR_GPIO_ACCESS ####options BKTR_USE_PLL #options BKTR_USE_FREEBSD_SMBUS #options BROOKTREE_SYSTEM_DEFAULT=BROOKTREE_NTSC #options BROOKTREE_SYSTEM_DEFAULT=BROOKTREE_PAL # options P1003_1B_SEMAPHORES # # device hwpmc # Driver (also a loadable module) options HWPMC_HOOKS # Other necessary kernel hooks # #device uart # # mdmfs 2.5Gb options VM_KMEM_SIZE_MAX="1024*1024*1024" options VM_KMEM_SIZE_SCALE="2" options KVA_PAGES="512" # option INCLUDE_CONFIG_FILE # #options VFS_AIO # #options USBVERBOSE # ### ## ADDON AREA - END ### # Debugging for use in -current #options KDB # Enable kernel debugger support. #options DDB # Support DDB. #options GDB # Support remote GDB. #options INVARIANTS # Enable calls of extra sanity checking #options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS #options WITNESS # Enable checks to detect deadlocks and cycles ##options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed # To make an SMP kernel, the next two lines are needed options SMP # Symmetric MultiProcessor Kernel device apic # I/O APIC # CPU frequency control device cpufreq # Bus support. #device eisa device pci # Floppy drives device fdc # ATA and ATAPI devices device ata device atadisk # ATA disk drives #device ataraid # ATA RAID drives device atapicd # ATAPI CDROM drives #device atapifd # ATAPI floppy drives #device atapist # ATAPI tape drives options ATA_STATIC_ID # Static device numbering # SCSI Controllers #device ahb # EISA AHA1742 family #device ahc # AHA2940 and onboard AIC7xxx devices #options AHC_REG_PRETTY_PRINT # Print register bitfields in debug # # output. Adds ~128k to driver. #device ahd # AHA39320/29320 and onboard AIC79xx devices #options AHD_REG_PRETTY_PRINT # Print register bitfields in debug # output. Adds ~215k to driver. #device amd # AMD 53C974 (Tekram DC-390(T)) #device hptiop # Highpoint RocketRaid 3xxx series #device isp # Qlogic family #device ispfw # Firmware for QLogic HBAs- normally a module #device mpt # LSI-Logic MPT-Fusion #device ncr # NCR/Symbios Logic #device sym # NCR/Symbios Logic (newer chipsets + those of `ncr') #device trm # Tekram DC395U/UW/F DC315U adapters #device adv # Advansys SCSI adapters #device adw # Advansys wide SCSI adapters #device aha # Adaptec 154x SCSI adapters #device aic # Adaptec 15[012]x SCSI adapters, AIC-6[23]60. #device bt # Buslogic/Mylex MultiMaster SCSI adapters #device ncv # NCR 53C500 #device nsp # Workbit Ninja SCSI-3 #device stg # TMC 18C30/18C50 # SCSI peripherals device scbus # SCSI bus (required for SCSI) #device ch # SCSI media changers device da # Direct Access (disks) #device sa # Sequential Access (tape etc) #device cd # CD device pass # Passthrough device (direct SCSI access) #device ses # SCSI Environmental Services (and SAF-TE) # RAID controllers interfaced to the SCSI subsystem #device amr # AMI MegaRAID #device arcmsr # Areca SATA II RAID #device asr # DPT SmartRAID V, VI and Adaptec SCSI RAID #device ciss # Compaq Smart RAID 5* #device dpt # DPT Smartcache III, IV - See NOTES for options #device hptmv # Highpoint RocketRAID 182x #device rr232x # Highpoint RocketRAID 232x #device iir # Intel Integrated RAID #device ips # IBM (Adaptec) ServeRAID #device mly # Mylex AcceleRAID/eXtremeRAID #device twa # 3ware 9000 series PATA/SATA RAID # RAID controllers #device aac # Adaptec FSA RAID #device aacp # SCSI passthrough for aac (requires CAM) #device ida # Compaq Smart RAID #device mfi # LSI MegaRAID SAS #device mlx # Mylex DAC960 family #device pst # Promise Supertrak SX6000 #device twe # 3ware ATA RAID # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc # AT keyboard controller device atkbd # AT keyboard device psm # PS/2 mouse device kbdmux # keyboard multiplexer device vga # VGA video card driver device splash # Splash screen and screen saver support # syscons is the default console driver, resembling an SCO console device sc device agp # support several AGP chipsets # Power management support (see NOTES for more options) #device apm # Add suspend/resume support for the i8254. device pmtimer # PCCARD (PCMCIA) support # PCMCIA and cardbus bridge support #device cbb # cardbus (yenta) bridge #device pccard # PC Card (16-bit) bus #device cardbus # CardBus (32-bit) bus # Serial (COM) ports device sio # 8250, 16[45]50 based serial ports device uart # Generic UART driver # Parallel port #device ppc #device ppbus # Parallel port bus (required) #device lpt # Printer #device plip # TCP/IP over parallel #device ppi # Parallel port interface device #device vpo # Requires scbus and da # If you've got a "dumb" serial or parallel PCI card that is # supported by the puc(4) glue driver, uncomment the following # line to enable it (connects to sio, uart and/or ppc drivers): #device puc # PCI Ethernet NICs. #device de # DEC/Intel DC21x4x (``Tulip'') #device em # Intel PRO/1000 adapter Gigabit Ethernet Card #device ixgb # Intel PRO/10GbE Ethernet Card #device le # AMD Am7900 LANCE and Am79C9xx PCnet #device txp # 3Com 3cR990 (``Typhoon'') #device vx # 3Com 3c590, 3c595 (``Vortex'') # PCI Ethernet NICs that use the common MII bus controller code. # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs! device miibus # MII bus support #device bce # Broadcom BCM5706/BCM5708 Gigabit Ethernet #device bfe # Broadcom BCM440x 10/100 Ethernet #device bge # Broadcom BCM570xx Gigabit Ethernet #device dc # DEC/Intel 21143 and various workalikes #device fxp # Intel EtherExpress PRO/100B (82557, 82558) #device lge # Level 1 LXT1001 gigabit Ethernet #device msk # Marvell/SysKonnect Yukon II Gigabit Ethernet device nfe # nVidia nForce MCP on-board Ethernet #device nge # NatSemi DP83820 gigabit Ethernet #device nve # nVidia nForce MCP on-board Ethernet Networking #device pcn # AMD Am79C97x PCI 10/100 (precedence over 'le') #device re # RealTek 8139C+/8169/8169S/8110S #device rl # RealTek 8129/8139 #device sf # Adaptec AIC-6915 (``Starfire'') #device sis # Silicon Integrated Systems SiS 900/SiS 7016 #device sk # SysKonnect SK-984x & SK-982x gigabit Ethernet #device ste # Sundance ST201 (D-Link DFE-550TX) #device stge # Sundance/Tamarack TC9021 gigabit Ethernet #device ti # Alteon Networks Tigon I/II gigabit Ethernet #device tl # Texas Instruments ThunderLAN #device tx # SMC EtherPower II (83c170 ``EPIC'') #device vge # VIA VT612x gigabit Ethernet #device vr # VIA Rhine, Rhine II #device wb # Winbond W89C840F #device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'') # ISA Ethernet NICs. pccard NICs included. #device cs # Crystal Semiconductor CS89x0 NIC # 'device ed' requires 'device miibus' #device ed # NE[12]000, SMC Ultra, 3c503, DS8390 cards #device ex # Intel EtherExpress Pro/10 and Pro/10+ #device ep # Etherlink III based cards #device fe # Fujitsu MB8696x based cards #device ie # EtherExpress 8/16, 3C507, StarLAN 10 etc. #device sn # SMC's 9000 series of Ethernet chips #device xe # Xircom pccard Ethernet # Wireless NIC cards #device wlan # 802.11 support #device wlan_wep # 802.11 WEP support #device wlan_ccmp # 802.11 CCMP support #device wlan_tkip # 802.11 TKIP support #device wlan_amrr # AMRR transmit rate control algorithm #device wlan_scan_ap # 802.11 AP mode scanning #device wlan_scan_sta # 802.11 STA mode scanning #device an # Aironet 4500/4800 802.11 wireless NICs. #device ath # Atheros pci/cardbus NIC's #device ath_hal # Atheros HAL (Hardware Access Layer) #device ath_rate_sample # SampleRate tx rate control for ath #device awi # BayStack 660 and others #device ral # Ralink Technology RT2500 wireless NICs. #device wi # WaveLAN/Intersil/Symbol 802.11 wireless NICs. #device wl # Older non 802.11 Wavelan wireless NIC. # Pseudo devices. device loop # Network loopback device random # Entropy device device ether # Ethernet support #device sl # Kernel SLIP #device ppp # Kernel PPP #device tun # Packet tunnel. device pty # Pseudo-ttys (telnet etc) device md # Memory "disks" #device gif # IPv6 and IPv4 tunneling #device faith # IPv6-to-IPv4 relaying (translation) device firmware # firmware assist module # The `bpf' device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! # Note that 'bpf' is required for DHCP. device bpf # Berkeley packet filter # USB support #device uhci # UHCI PCI->USB interface device ohci # OHCI PCI->USB interface device ehci # EHCI PCI->USB interface (USB 2.0) device usb # USB Bus (required) #device udbp # USB Double Bulk Pipe devices device ugen # Generic #device uhid # "Human Interface Devices" #device ukbd # Keyboard #device ulpt # Printer device umass # Disks/Mass storage - Requires scbus and da device ums # Mouse #device ural # Ralink Technology RT2500USB wireless NICs #device rum # Ralink Technology RT2501USB wireless NICs #device urio # Diamond Rio 500 MP3 player #device uscanner # Scanners # USB Ethernet, requires miibus #device aue # ADMtek USB Ethernet #device axe # ASIX Electronics USB Ethernet #device cdce # Generic USB over Ethernet #device cue # CATC USB Ethernet #device kue # Kawasaki LSI USB Ethernet #device rue # RealTek RTL8150 USB Ethernet # FireWire support #device firewire # FireWire bus code #device sbp # SCSI over FireWire (Requires scbus and da) #device fwe # Ethernet over FireWire (non-standard!) #device fwip # IP over FireWire (RFC 2734,3146) #device dcons # Dumb console driver #device dcons_crom # Configuration ROM for dcons --liOOAslEiF7prFVr Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="dmesg.boot" Copyright (c) 1992-2007 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 7.0-CURRENT #7: Fri Sep 21 07:35:14 BRT 2007 lioux@exxodus:/usr/obj/usr/src/sys/LIOUX module_register: module uhub/ums already exists! Module uhub/ums failed to register: 17 Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: AMD Athlon(tm) 64 X2 Dual Core Processor 4600+ (2410.99-MHz 686-class CPU) Origin = "AuthenticAMD" Id = 0x40fb2 Stepping = 2 Features=0x178bfbff Features2=0x2001 AMD Features=0xea500800 AMD Features2=0x1f Cores per package: 2 real memory = 2146304000 (2046 MB) avail memory = 2092195840 (1995 MB) ACPI APIC Table: FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 ioapic0: Changing APIC ID to 2 ioapic0 irqs 0-23 on motherboard kbd1 at kbdmux0 acpi0: on motherboard acpi0: [ITHREAD] acpi_hpet0: iomem 0xfefff000-0xfefff3ff on acpi0 Timecounter "HPET" frequency 25000000 Hz quality 900 acpi0: Power Button (fixed) acpi0: reservation of fefff000, 1000 (3) failed acpi0: reservation of 0, a0000 (3) failed acpi0: reservation of 100000, 7fde0000 (3) failed Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x1008-0x100b on acpi0 cpu0: on acpi0 powernow0: on cpu0 cpu1: on acpi0 powernow1: on cpu1 acpi_button0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 pci0: at device 0.0 (no driver attached) pci0: at device 0.1 (no driver attached) pci0: at device 0.2 (no driver attached) pci0: at device 0.3 (no driver attached) pci0: at device 0.4 (no driver attached) pci0: at device 0.5 (no driver attached) pci0: at device 0.6 (no driver attached) pci0: at device 0.7 (no driver attached) pcib1: at device 4.0 on pci0 pci1: on pcib1 vgapci0: port 0x8c00-0x8c7f mem 0xfa000000-0xfaffffff,0xc0000000-0xdfffffff,0xf8000000-0xf9ffffff irq 16 at device 0.0 on pci1 pci0: at device 8.0 (no driver attached) isab0: at device 9.0 on pci0 isa0: on isab0 pci0: at device 9.1 (no driver attached) pci0: at device 9.2 (no driver attached) ohci0: mem 0xfe02f000-0xfe02ffff irq 21 at device 10.0 on pci0 ohci0: [GIANT-LOCKED] ohci0: [ITHREAD] usb0: OHCI version 1.0, legacy support usb0: SMM does not respond, resetting usb0: on ohci0 usb0: USB revision 1.0 uhub0: on usb0 uhub0: 10 ports with 10 removable, self powered ehci0: mem 0xfe02e000-0xfe02e0ff irq 22 at device 10.1 on pci0 ehci0: [GIANT-LOCKED] ehci0: [ITHREAD] usb1: EHCI version 1.0 usb1: companion controller, 10 ports each: usb0 usb1: on ehci0 usb1: USB revision 2.0 uhub1: on usb1 uhub1: 10 ports with 10 removable, self powered ugen0: on uhub1 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xf400-0xf40f at device 12.0 on pci0 ata0: on atapci0 ata0: [ITHREAD] ata1: on atapci0 ata1: [ITHREAD] atapci1: port 0x9f0-0x9f7,0xbf0-0xbf3,0x970-0x977,0xb70-0xb73,0xe000-0xe00f mem 0xfe02d000-0xfe02dfff irq 23 at device 13.0 on pci0 atapci1: [ITHREAD] ata2: on atapci1 ata2: [ITHREAD] ata3: on atapci1 ata3: [ITHREAD] atapci2: port 0x9e0-0x9e7,0xbe0-0xbe3,0x960-0x967,0xb60-0xb63,0xcc00-0xcc0f mem 0xfe02c000-0xfe02cfff irq 20 at device 13.1 on pci0 atapci2: [ITHREAD] ata4: on atapci2 ata4: [ITHREAD] ata5: on atapci2 ata5: [ITHREAD] atapci3: port 0xc800-0xc807,0xc400-0xc403,0xc000-0xc007,0xbc00-0xbc03,0xb800-0xb80f mem 0xfe02b000-0xfe02bfff irq 21 at device 13.2 on pci0 atapci3: [ITHREAD] ata6: on atapci3 ata6: [ITHREAD] ata7: on atapci3 ata7: [ITHREAD] pcib2: at device 14.0 on pci0 pci2: on pcib2 atapci4: port 0xac00-0xac07,0xa800-0xa803,0xa400-0xa407,0xa000-0xa003,0x9c00-0x9cff irq 17 at device 7.0 on pci2 atapci4: [ITHREAD] ata8: on atapci4 ata8: [ITHREAD] ata9: on atapci4 ata9: [ITHREAD] emu10kx0: port 0x9800-0x983f irq 18 at device 8.0 on pci2 emu10kx0: [ITHREAD] pcm0: on emu10kx0 pcm0: pcm1: on emu10kx0 pcm2: on emu10kx0 pcm3: on emu10kx0 pci2: at device 8.1 (no driver attached) pci2: at device 8.2 (no driver attached) pci2: at device 11.0 (no driver attached) nfe0: port 0xb400-0xb407 mem 0xfe02a000-0xfe02afff,0xfe029000-0xfe0290ff,0xfe028000-0xfe02800f irq 22 at device 16.0 on pci0 miibus0: on nfe0 e1000phy0: PHY 1 on miibus0 e1000phy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseTX-FDX, auto nfe0: Ethernet address: 00:1b:fc:39:fb:23 nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] pcib3: at device 22.0 on pci0 pci3: on pcib3 atapci5: port 0x7c00-0x7c7f mem 0xfdeff000-0xfdeff07f,0xfdef8000-0xfdefbfff irq 16 at device 0.0 on pci3 atapci5: [ITHREAD] ata10: on atapci5 ata10: [ITHREAD] ata11: on atapci5 ata11: [ITHREAD] acpi_tz0: on acpi0 fdc0: port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on acpi0 fdc0: [FILTER] fd0: <1440-KB 3.5" drive> on fdc0 drive 0 sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 sio0: type 16550A sio0: [FILTER] atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] atkbd0: [ITHREAD] pmtimer0 on isa0 orm0: at iomem 0xc0000-0xccfff,0xd0000-0xd47ff pnpid ORM0000 on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled ums0: on uhub0 ums0: 8 buttons and Z dir. Timecounters tick every 0.868 msec ipfw2 (+ipv6) initialized, divert loadable, rule-based forwarding disabled, default to accept, logging disabled acd0: DVDR at ata0-master UDMA33 acd1: DVDROM at ata0-slave UDMA33 ad4: 476940MB at ata2-master SATA150 ad6: 286188MB at ata3-master SATA150 ad16: 76319MB at ata8-master UDMA100 ad18: 76319MB at ata9-master UDMA100 GEOM_LABEL: Label for provider ad4s5 is msdosfs/ . acd0: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00 sks=0x40 0x00 0x01 acd1: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00 acd0: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00 sks=0x40 0x00 0x01 acd1: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00 SMP: AP CPU #1 Launched! hwpmc: TSC/1/0x20 K8/4/0x1ff Trying to mount root from ufs:/dev/ad4s3a --liOOAslEiF7prFVr Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="pciconf.txt" none0@pci0:0:0: class=0x050000 card=0x02f410de chip=0x02f410de rev=0xa2 hdr=0x00 vendor = 'Nvidia Corp' device = 'C51 Host Bridge' class = memory subclass = RAM none1@pci0:0:1: class=0x050000 card=0x02fa10de chip=0x02fa10de rev=0xa2 hdr=0x00 vendor = 'Nvidia Corp' device = 'C51 Memory Controller 0' class = memory subclass = RAM none2@pci0:0:2: class=0x050000 card=0x02fe10de chip=0x02fe10de rev=0xa2 hdr=0x00 vendor = 'Nvidia Corp' device = 'C51 Memory Controller 1' class = memory subclass = RAM none3@pci0:0:3: class=0x050000 card=0x02f810de chip=0x02f810de rev=0xa2 hdr=0x00 vendor = 'Nvidia Corp' device = 'C51 Memory Controller 5' class = memory subclass = RAM none4@pci0:0:4: class=0x050000 card=0x02f910de chip=0x02f910de rev=0xa2 hdr=0x00 vendor = 'Nvidia Corp' device = 'C51 Memory Controller 4' class = memory subclass = RAM none5@pci0:0:5: class=0x050000 card=0x02ff10de chip=0x02ff10de rev=0xa2 hdr=0x00 vendor = 'Nvidia Corp' device = 'C51 Host Bridge' class = memory subclass = RAM none6@pci0:0:6: class=0x050000 card=0x027f10de chip=0x027f10de rev=0xa2 hdr=0x00 vendor = 'Nvidia Corp' device = 'C51 Memory Controller 3' class = memory subclass = RAM none7@pci0:0:7: class=0x050000 card=0x027e10de chip=0x027e10de rev=0xa2 hdr=0x00 vendor = 'Nvidia Corp' device = 'C51 Memory Controller 2' class = memory subclass = RAM pcib1@pci0:4:0: class=0x060400 card=0x000010de chip=0x02fb10de rev=0xa1 hdr=0x01 vendor = 'Nvidia Corp' device = 'C51 PCI Express Bridge' class = bridge subclass = PCI-PCI none8@pci0:8:0: class=0x050000 card=0xcb841043 chip=0x036910de rev=0xa1 hdr=0x00 vendor = 'Nvidia Corp' device = 'MCP55 Memory Controller' class = memory subclass = RAM isab0@pci0:9:0: class=0x060100 card=0xcb841043 chip=0x036010de rev=0xa2 hdr=0x00 vendor = 'Nvidia Corp' device = 'MCP55 LPC Bridge' class = bridge subclass = PCI-ISA none9@pci0:9:1: class=0x0c0500 card=0xcb841043 chip=0x036810de rev=0xa2 hdr=0x00 vendor = 'Nvidia Corp' device = 'MCP55 SMBus' class = serial bus subclass = SMBus none10@pci0:9:2: class=0x050000 card=0xcb841043 chip=0x036a10de rev=0xa2 hdr=0x00 vendor = 'Nvidia Corp' device = 'MCP55 Memory Controller' class = memory subclass = RAM ohci0@pci0:10:0: class=0x0c0310 card=0xcb841043 chip=0x036c10de rev=0xa1 hdr=0x00 vendor = 'Nvidia Corp' device = 'MCP55 USB Controller' class = serial bus subclass = USB ehci0@pci0:10:1: class=0x0c0320 card=0xcb841043 chip=0x036d10de rev=0xa2 hdr=0x00 vendor = 'Nvidia Corp' device = 'MCP55 USB Controller' class = serial bus subclass = USB atapci0@pci0:12:0: class=0x01018a card=0xcb841043 chip=0x036e10de rev=0xa1 hdr=0x00 vendor = 'Nvidia Corp' device = 'MCP55 IDE' class = mass storage subclass = ATA atapci1@pci0:13:0: class=0x010185 card=0xcb841043 chip=0x037f10de rev=0xa2 hdr=0x00 vendor = 'Nvidia Corp' device = 'MCP55 SATA Controller' class = mass storage subclass = ATA atapci2@pci0:13:1: class=0x010185 card=0xcb841043 chip=0x037f10de rev=0xa2 hdr=0x00 vendor = 'Nvidia Corp' device = 'MCP55 SATA Controller' class = mass storage subclass = ATA atapci3@pci0:13:2: class=0x010185 card=0xcb841043 chip=0x037f10de rev=0xa2 hdr=0x00 vendor = 'Nvidia Corp' device = 'MCP55 SATA Controller' class = mass storage subclass = ATA pcib2@pci0:14:0: class=0x060401 card=0xcb8410de chip=0x037010de rev=0xa2 hdr=0x01 vendor = 'Nvidia Corp' device = 'MCP55 PCI bridge' class = bridge subclass = PCI-PCI nfe0@pci0:16:0: class=0x068000 card=0xcb841043 chip=0x037310de rev=0xa2 hdr=0x00 vendor = 'Nvidia Corp' device = 'MCP55 Ethernet' class = bridge pcib3@pci0:22:0: class=0x060400 card=0x000010de chip=0x037510de rev=0xa2 hdr=0x01 vendor = 'Nvidia Corp' device = 'MCP55 PCI Express bridge' class = bridge subclass = PCI-PCI hostb0@pci0:24:0: class=0x060000 card=0x00000000 chip=0x11001022 rev=0x00 hdr=0x00 vendor = 'Advanced Micro Devices (AMD)' device = 'Athlon 64 / Opteron HyperTransport Technology Configuration' class = bridge subclass = HOST-PCI hostb1@pci0:24:1: class=0x060000 card=0x00000000 chip=0x11011022 rev=0x00 hdr=0x00 vendor = 'Advanced Micro Devices (AMD)' device = 'Athlon 64 / Opteron Address Map' class = bridge subclass = HOST-PCI hostb2@pci0:24:2: class=0x060000 card=0x00000000 chip=0x11021022 rev=0x00 hdr=0x00 vendor = 'Advanced Micro Devices (AMD)' device = 'Athlon 64 / Opteron DRAM Controller' class = bridge subclass = HOST-PCI hostb3@pci0:24:3: class=0x060000 card=0x00000000 chip=0x11031022 rev=0x00 hdr=0x00 vendor = 'Advanced Micro Devices (AMD)' device = 'Athlon 64 / Opteron Miscellaneous Control' class = bridge subclass = HOST-PCI vgapci0@pci1:0:0: class=0x030000 card=0x00000000 chip=0x040210de rev=0xa1 hdr=0x00 vendor = 'Nvidia Corp' class = display subclass = VGA atapci4@pci2:7:0: class=0x018000 card=0x00051103 chip=0x00041103 rev=0x03 hdr=0x00 vendor = 'Triones Technologies Inc. (HighPoint)' device = 'HPT3xx UDMA66/100/133 EIDE Controller' class = mass storage emu10kx0@pci2:8:0: class=0x040100 card=0x10071102 chip=0x00041102 rev=0x04 hdr=0x00 vendor = 'Creative Labs' device = 'Creative SB Audigy 2 ZS (WDM) Audigy Audio Processor' class = multimedia subclass = audio none11@pci2:8:1: class=0x098000 card=0x00401102 chip=0x70031102 rev=0x04 hdr=0x00 vendor = 'Creative Labs' device = 'EMU10K2 Creative Labs SB Audigy MIDI/Game port' class = input device none12@pci2:8:2: class=0x0c0010 card=0x00101102 chip=0x40011102 rev=0x04 hdr=0x00 vendor = 'Creative Labs' device = 'EMU10K2 Audigy IEEE1394a Firewire Controller' class = serial bus subclass = FireWire none13@pci2:11:0: class=0x0c0010 card=0x815b1043 chip=0x8023104c rev=0x00 hdr=0x00 vendor = 'Texas Instruments (TI)' device = 'TSB43AB21/A IEEE1394a-2000 OHCI PHY/Link-Layer Ctrlr' class = serial bus subclass = FireWire atapci5@pci3:0:0: class=0x018000 card=0x819f1043 chip=0x31321095 rev=0x01 hdr=0x00 vendor = 'Silicon Image Inc (Was: CMD Technology Inc)' device = 'SiI 3132 PCI Express (1x) to 2 Port SATA300' class = mass storage --liOOAslEiF7prFVr Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="pkg_info.txt" GraphicsMagick-1.1.7_2 Fast image processing tools based on ImageMagick ImageMagick-6.3.3.5_1 Image processing tools ORBit2-2.14.9 High-performance CORBA ORB with support for the C language OpenEXR-1.4.0 A high dynamic-range (HDR) image file format OpenSP-1.5.2 This package is a collection of SGML/XML tools called OpenS Win4BSD-4.0_63936_i386-freebsd Win4BSD Pro 4.0-63936 a2ps-a4-4.13b_4 Formats an ascii file for printing on a postscript printer aalib-1.4.r5_3 An ascii art library acroread7-7.0.9_2,1 Adobe Reader for view, print, and search PDF documents (ENU acroreadwrapper-0.0.20060221_2 Wrapper script for Adobe Reader adobe-cmaps-20051217_1 Adobe CMap collection akode-2.0.1,1 Default KDE audio backend akode-plugins-jack-2.0.1,1 Jack output plugin for akode akode-plugins-mpc-2.0.1,1 Musepack decoder plugin for akode akode-plugins-mpeg-2.0.1,1 MPEG audio decoder plugin for akode akode-plugins-oss-2.0.1,1 OSS output plugin for akode akode-plugins-polypaudio-2.0.1_1,1 Polypaudio output plugin for akode akode-plugins-resampler-2.0.1,1 Resampler plugin for akode akode-plugins-xiph-2.0.1_2,1 FLAC/Speex/Vorbis decoder plugin for akode amspsfnt-1.0_5 AMSFonts PostScript Fonts (Adobe Type 1 format) apache-2.2.6_1 Version 2.2 of Apache web server with prefork MPM. apache-ant-1.7.0_1 Java- and XML-based build tool, conceptually similar to mak appres-1.0.1 Program to list application's resources apr-gdbm-db42-1.2.8_1 The Apache Group's Portability Library arc-5.21o_1 Create & extract files from DOS .ARC files argouml-0.24_1 A UML design tool with cognitive support arj-3.10.22 Open-source ARJ arts-1.5.7_1,1 Audio system for the KDE integrated X11 desktop artswrapper-1.5.3 Setuid wrapper for arts aspell-0.60.5_2 Spelling checker with better suggestion logic than ispell at-spi-1.18.1_1 An Assistive Technology Service Provider Interface ataidle-1.0 Utility to spin down ATA drives atk-1.18.0_1 A GNOME accessibility toolkit (ATK) autoconf-2.53_4 Automatically configure source code on many Un*x platforms autoconf-2.59_3 Automatically configure source code on many Un*x platforms autoconf-2.61_2 Automatically configure source code on many Un*x platforms autoconf-wrapper-20070404 Wrapper script for GNU autoconf automake-1.5_4,1 GNU Standards-compliant Makefile generator (1.5) automake-1.9.6_2 GNU Standards-compliant Makefile generator (1.9) automake-wrapper-20070404 Wrapper script for GNU automake avahi+libdns-0.6.21 Service discovery on a local network bash-3.2.25 The GNU Project's Bourne Again SHell bdftopcf-1.0.1 Convert X font from BDF to PCF beforelight-1.0.2 A sample screen saver for X bigreqsproto-1.0.2 BigReqs extension headers bison-2.3_1 A parser generator from FSF, (mostly) compatible with Yacc bitmap-1.0.3 Bitmap editor and converter utilities for X bitstream-vera-1.10_4 Bitstream Vera TrueType font collection c-ares-config-1.4.0 An asynchronous DNS resolver library ca_root_nss-3.11.7 The root certificate bundle from the Mozilla Project cabextract-1.2 A program to extract Microsoft cabinet (.CAB) files cairo-1.4.10 Vector graphics library with cross-device output support cairomm-1.2.4_1 C++ interface to cairo ccache-2.4_6 A tool to minimize the compile time of C/C++ programs ccxstream-1.0.15_1 Stream media files to XBox Media Center via XBMSP cdparanoia-3.9.8_8 A CDDA extraction tool (also known as ripper) cdrdao-1.2.2 Record CD-R[W]s in disk-at-once mode cdrtools-devel-2.01.01a11_1,1 CD/DVD and ISO-9660 image creation and extraction tools clamav-devel-20070830 Command line virus scanner written entirely in C cmpsfont-1.0_6 Computer Modern PostScript Fonts (Adobe Type 1 format) code2000-1.16_2 Shareware demo Unicode TrueType font compat4x-i386-5.3_9 A convenience package to install the compat4x libraries compat5x-i386-5.4.0.8_8 A convenience package to install the compat5x libraries compat6x-i386-6.2.602110.200706 A convenience package to install the compat6x libraries compositeproto-0.4 Composite extension headers coreutils-6.9_1 The Free Software Foundation's core utilities cups-base-1.2.12 Common UNIX Printing System curl-7.16.3 Non-interactive tool to get files from FTP, GOPHER, HTTP(S) cyrus-sasl-2.1.22 RFC 2222 SASL (Simple Authentication and Security Layer) daemontools-0.76_12 Service monitoring and logging utilities by djb damageproto-1.1.0_2 Damage extension headers dasher-4.4.2,1 Information efficient text-entry interface db42-4.2.52_5 The Berkeley DB package, revision 4.2 dbus-1.0.2_2 A message bus system for inter-application communication dbus-glib-0.74 GLib bindings for the D-BUS messaging system dbus-qt3-0.70_1 Qt3 bindings for the D-BUS messaging system demime-1.1d A tool to scrub mime from mailing lists desktop-file-utils-0.12_1 A couple of command line utilities for working with desktop diablo-jdk-1.5.0.07.01_7 Java Development Kit 1.5.0_07.01 dirmngr-0.9.7_2 A client for managing and downloading certificate revocatio djbdns-1.05_10 A collection of secure and reliable DNS tools djbfft-0.76_2 An extremely fast library for floating-point convolution dmidecode-2.8 A tool for dumping DMI (SMBIOS) contents in human-readable dmxproto-2.2.2 DMX extension headers docbook-4.1_2 V4.1 of the DocBook DTD, designed for technical documentati docbook-sk-4.1.2_4 XML version of the DocBook DTD version controlled for Scrol docbook-xml-4.2_1 XML version of the DocBook DTD docbook-xml-4.3 DocBook/XML DTD V4.3, designed for technical documentation docbook-xml-4.4 DocBook/XML DTD V4.4, designed for technical documentation docbook-xsl-1.71.1_2 XSL DocBook stylesheets docproj-jadetex-1.17_2 The "meta-port" for the FreeBSD Documentation Project dovecot-1.0.5 Secure and compact IMAP and POP3 servers dri-7.0.1,2 OpenGL hardware acceleration drivers for the DRI dspam-3.6.8_2 Bayesian spam filter - stable maintenance version dsssl-docbook-modular-1.79_1,1 DSSSL stylesheets for the DocBook DTD by Norman Walsh dvd+rw-tools-7.0 DVD burning software dvipdfmx-20070409 Dvipdfm with Asian languages by CID-keyed font technology s dvipsk-tetex-5.95a_2 Convert a TeX DVI file to PostScript eclipse-3.2.2 An open extensible IDE for anything and nothing in particul eclipse-datatools-0.9.1_1 Datatools for eclipse eclipse-emf-2.2.1_1 Eclipse Modeling Framework eclipse-gef-3.2.2_2 Graphical Editing Framework for the Eclipse IDE eclipse-jad-3.2.4_1 Jad Java decompiler plugin for the Eclipse IDE eclipse-vep-1.2_1,1 A framework for creating GUI builders for Eclipse eclipse-webtools-1.5.2_1 Webtools for eclipse editres-1.0.3 Dynamic resource editor for X Toolkit Applications eel-2.18.3 Generally useful classes and extensions to GNOME encodings-1.0.2,1 X.Org Encoding fonts esound-0.2.38 A sound library for enlightenment package evieext-1.0.2 XEVIE extension headers expat-2.0.0_1 XML 1.0 parser written in C faac-1.25 MPEG-2 and MPEG-4 AAC audio encoder faad2-2.5,1 MPEG-2 and MPEG-4 AAC audio decoder fetchmail-6.3.8_4 Batch mail retrieval utility for IMAP/POP3/ETRN/ODMR ffmpeg-2007.09.14 Hyper fast realtime audio/video encoder/converter, streamin fftw3-3.1.2 Fast C routines to compute the Discrete Fourier Transform firefox-2.0.0.7,1 Web browser based on the browser portion of Mozilla fixesproto-4.0 Fixes extension headers fixrtf-0.1.20060303 A patch making it possible to embed PNGs into RTFs flac-1.1.2_1 Free lossless audio codec font-adobe-100dpi-1.0.0_1 X.Org Adobe 100dpi font font-adobe-75dpi-1.0.0 X.Org Adobe 75dpi font font-adobe-utopia-100dpi-1.0.1 X.Org Adobe Utopia 100dpi font font-adobe-utopia-75dpi-1.0.1 X.Org Adobe Utopia 75dpi font font-adobe-utopia-type1-1.0.1 X.Org Adobe Utopia Type1 font font-alias-1.0.1 X.Org Font aliases font-arabic-misc-1.0.0 X.Org miscellaneous Arabic fonts font-bh-100dpi-1.0.0 X.Org Bigelow Holmes 100dpi font font-bh-75dpi-1.0.0 X.Org Bigelow Holmes 75dpi font font-bh-lucidatypewriter-100dpi-1.0.0 X.Org Bigelow Holmes Lucida TypeWriter 100dpi font font-bh-lucidatypewriter-75dpi-1.0.0 X.Org Bigelow Holmes Lucida TypeWriter 75dpi font font-bh-ttf-1.0.0 X.Org Bigelow & Holmes TTF font font-bh-type1-1.0.0 X.Org Bigelow Holmes Type1 font font-bitstream-100dpi-1.0.0 X.Org Bitstream Vera 100dpi font font-bitstream-75dpi-1.0.0 X.Org Bitstream Vera 75dpi font font-bitstream-type1-1.0.0 X.Org Bitstream Vera Type1 font font-cronyx-cyrillic-1.0.0 X.Org Cronyx Cyrillic font font-cursor-misc-1.0.0 X.Org miscellaneous Cursor fonts font-daewoo-misc-1.0.0 X.Org miscellaneous Daewoo fonts font-dec-misc-1.0.0 X.Org miscellaneous Dec fonts font-ibm-type1-1.0.0 X.Org IBM Type1 font font-isas-misc-1.0.0 X.Org miscellaneous ISAS fonts font-jis-misc-1.0.0 X.Org miscellaneous JIS fonts font-micro-misc-1.0.0 X.Org miscellaneous Micro fonts font-misc-cyrillic-1.0.0 X.Org miscellaneous Cyrillic font font-misc-ethiopic-1.0.0 X.Org miscellaneous Ethiopic font font-misc-meltho-1.0.0_1 X.Org miscellaneous Meltho font font-misc-misc-1.0.0 X.Org miscellaneous Misc fonts font-mutt-misc-1.0.0 X.Org miscellaneous Mutt fonts font-schumacher-misc-1.0.0 X.Org miscellaneous Schumacher fonts font-screen-cyrillic-1.0.1 X.Org Screen Cyrillic font font-sony-misc-1.0.0 X.Org miscellaneous Sony fonts font-sun-misc-1.0.0 X.Org miscellaneous Sun fonts font-util-1.0.1 Create an index of X font files in a directory font-winitzki-cyrillic-1.0.0 X.Org Winitzki Cyrillic font font-xfree86-type1-1.0.0 X.Org XFree86 Type1 font fontcacheproto-0.1.2 Fontcache extension headers fontconfig-2.4.2_2,1 An XML-based font configuration API for X Windows fontsproto-2.0.2 Fonts extension headers fonttosfnt-1.0.3 Wrap a bitmap font in a sftn wrapper freefont-ttf-20060126_1 Free UCS Outline Fonts freetype-1.3.1_4 A free and portable TrueType font rendering engine freetype-tools-1.3.1_5 Tools for FreeType 1 freetype2-2.2.1_2 A free and portable TrueType font rendering engine fribidi-0.10.9 A Free Implementation of the Unicode Bidirectional Algorith fslsfonts-1.0.1 List fonts served by the X font server fstobdf-1.0.2 Generate BDF font from X font server fusefs-kmod-0.3.9.p1 Kernel module for fuse fusefs-libs-2.7.0_1 FUSE allows filesystem implementation in userspace fusefs-ntfs-1.913 Mount NTFS partitions (read/write) and disk images fusefs-smbnetfs-0.3.7 Mount smb shares (Fuse filesystem) gail-1.18.0_1 An implementation of the ATK interfaces for GTK+ widgets gamin-0.1.9 A file and directory monitoring system gawk-3.1.5_1 The GNU version of Awk gcc-ooo-3.4.1_2 GNU Compiler Collection for OpenOffice.org gccmakedep-1.0.2 Create dependencies in makefiles using 'gcc -M' gconf2-2.18.0.1_1 A configuration database system for GNOME gd-2.0.35,1 A graphics library for fast creation of images gdbm-1.8.3_3 The GNU database manager gentium-1.0.2_2 Gentium TrueType font collection gettext-0.16.1_3 GNU gettext package ghostscript-afpl-8.54_5,1 AFPL Postscript interpreter gimpshop-2.2.11_6 GIMP fork resembling Adobe Photoshop gkrellm-2.3.0 A GTK based system monitor gkrellmmailwatch-2.4.3_4 GKrellM mailwatch plugin gkrellmvolume-2.1.13_4 GKrellM volume plugin gkrellweather-2.0.7_4 GKrellWeather is a weather plugin for GKrellM glib-1.2.10_12 Some useful routines of C programming (previous stable vers glib-2.12.13 Some useful routines of C programming (current stable versi glibmm-2.12.10,1 C++ interfaces for glib2 glimpse-4.13.1 Text search engine glitz-0.5.6_1 OpenGL image compositing library glproto-1.4.8 GLX extension headers gmake-3.81_2 GNU version of 'make' utility gmime-2.2.10 Library (written in C) for parsing and creating messages us gnet2-2.0.7_2 A simple network library built upon Glib-2 gnome-desktop-2.18.3 Additional UI API for GNOME 2 gnome-doc-utils-0.10.3_1 GNOME doc utils gnome-icon-theme-2.18.0_1 A collection of icons for the GNOME 2 desktop gnome-keyring-0.8.1_1 A program that keeps passwords and other secrets gnome-menus-2.18.3 Implementation of the FreeDesktop Desktop Menu Spec gnome-mime-data-2.18.0_1 A MIME and Application database for GNOME gnome-panel-2.18.3 Panel component for the GNOME 2 Desktop gnome-vfs-2.18.1_2 GNOME Virtual File System gnome_subr-1.0 Common startup and shutdown subroutines used by GNOME scrip gnomehier-2.2_2 A utility port that creates the GNOME directory tree gnupg-2.0.4 The GNU Privacy Guard gnutls-1.6.3 GNU Transport Layer Security library google-earth-4.2.198.2451 Explore, Search and Discover gpac-libgpac-0.4.4,1 Gpac MPEG-4 Systems library and headers gpgme-1.1.5 A library to make access to GnuPG easier graphviz-2.14.1_1 Graph Visualization Software from AT&T and Bell Labs grepmail-5.3033 Search mailboxes for a given regexp and display matching em gsfonts-8.11_4 Fonts used by GNU Ghostscript (or X) gstreamer-0.10.14 Development framework for creating media applications gstreamer-ffmpeg-0.10.2_1 GStreamer plug-in for manipulating MPEG video streams gstreamer-plugins-0.10.14,3 GStreamer written collection of plugins handling several me gstreamer-plugins-a52dec-0.10.6_2,3 Gstreamer ATSC A/52 stream aka AC-3 (dvd audio) plugin gstreamer-plugins-bad-0.10.5_2,3 Bad gstreamer-plugins gstreamer-plugins-core-0.10_9 Core set of typical audio and video gstreamer-plugins gstreamer-plugins-dts-0.10.5_3,3 Gstreamer dts plugin gstreamer-plugins-dvd-0.10.6_1,3 Gstreamer dvd plugin set gstreamer-plugins-gconf-0.10.6_4,3 Gstreamer gconf plugin gstreamer-plugins-gnomevfs-0.10.14_2,3 Gstreamer gnomevfs plugin gstreamer-plugins-good-0.10.6,3 Good gstreamer-plugins gstreamer-plugins-hal-0.10.6_1,3 Gstreamer hal plugin gstreamer-plugins-libpng-0.10.6_2,3 Gstreamer png plugin gstreamer-plugins-mad-0.10.6_3,3 Gstreamer mp3 decoder plugin gstreamer-plugins-mp3-0.10.0 Gstreamer Plugins Mp3 decoder meta-port gstreamer-plugins-mpeg2dec-0.10.6_2,3 Gstreamer mpeg decode plugin gstreamer-plugins-ogg-0.10.14_2,3 Gstreamer Ogg bitstream plugin gstreamer-plugins-pango-0.10.14_2,3 Gstreamer pango textoverlay plugin gstreamer-plugins-theora-0.10.14_3,3 Gstreamer theora plugin gstreamer-plugins-ugly-0.10.6,3 Ugly gstreamer-plugins gstreamer-plugins-vorbis-0.10.14_3,3 Gstreamer vorbis encoder/decoder plugin gstreamer-plugins-xvid-0.10.5_1,3 Gstreamer xvid plugin gtar-1.18_1 GNU version of the traditional tar archiver gtk-1.2.10_18 Gimp Toolkit for X11 GUI (previous stable version) gtk-2.10.14_2 Gimp Toolkit for X11 GUI (current stable version) gtk-engines2-2.10.2 Theme engine for the gtk+-2.0 toolkit gtkglarea-1.99.0_10 An OpenGL widget for the GTK+2 GUI toolkit gtkmm-2.10.11 C++ wrapper for Gtk+, Pango, Atk gtkspell-2.0.11_5 A GTK+ 2 spell checking component hal-0.5.8.20070909 Hardware Abstraction Layer for simplifying device access help2man-1.36.4_1 Automatically generating simple manual pages from program o hicolor-icon-theme-0.10_2 A high-color icon theme shell from the FreeDesktop project hidentd-0.4 Simple and secure ident (RFC1413) server htdig-3.2.0.b6_2 A www indexing and searching system html-4.01_2 All W3C published SGML DTDs for HTML html2text-1.3.2a Converts HTML documents into plain text i2p-0.6.1.29 An anonymous network iceauth-1.0.2 ICE authority file utility for X ico-1.0.2 Displays a wire-frame rotating plyhedron icon-naming-utils-0.8.2 Utilities of the Tango project icu-3.6 International Components for Unicode (from IBM) ilbc-r3951 Internet Low Bit Rate codec (RFC3951) imake-1.0.2_4,1 Imake and other utilities from X.Org imlib-1.9.15_5 A graphic library for enlightenment package imlib2-20070223_1,1 The next generation graphic library for enlightenment packa inputproto-1.4.2.1 Input extension headers intltool-0.36.2 Tools to internationalize various kinds of data files iso-codes-1.4 Lists of the country, language and currency iso names iso8879-1986_2 Character entity sets from ISO 8879:1986 (SGML) jackit-0.103.0 A low-latency audio server jad-1.5.8c Jad, a Java decompiler jadetex-3.13_2 A TeX backend for Jade, for typesetting SGML documents jasper-1.900.1_6 An implementation of the codec specified in the JPEG-2000 s javavmwrapper-2.3 Wrapper script for various Java Virtual Machines jbigkit-1.6 Lossless compression for bi-level images such as scanned pa jdk-doc-1.5.0_1 Java Development Kit 1.5 Documentation jpeg-6b_4 IJG's jpeg compression utilities k3b-1.0.3 A CD/DVD recording GUI for KDE kbproto-1.0.3 KB extension headers kde-icons-GorillaSVG-1.4 KDE Gorilla SVG iconset kde-icons-IcOsX-0.7 KDE IcOsX iconset kde-icons-amaranth-0.8 KDE smooth iconset kde-icons-amaranth-althaea-0.5 KDE iconset like Crystal SVG, but simpler and with more sha kde-icons-cezanne-0.3b KDE Cezanne iconset kde-icons-gartoon-blue-svg-1.3 KDE Gartoon Blue SVG iconset kde-icons-gartoon-svg-1.3 KDE Gartoon SVG iconset kde-icons-graphite-rade8-1.03 KDE Mac OS X like iconset, most from rad-e8 design kde-icons-kool-gorilla-1.3.5 KDE Kool Gorilla iconset kde-icons-krystaline-1.1.6 KDE Krystaline iconset kde-icons-lime-rade8-1.01 KDE Mac OS X like iconset, most from rad-e8 design kde-icons-lush-0.1.0 KDE Lush complete iconset kde-icons-marbles-translucent-0.1.3 KDE Marbles Translucent iconset kde-icons-nuvola-1.0_1 KDE Nuvola iconset, SVG evolution of SKY kde-icons-realistic-0.10 KDE Realistic complete photo-based iconset kde-icons-sky-0.7.3 KDE SKY iconset kde-icons-steel-1.2.5 KDE iconset comprised of Steel/Silver icons with shadows kde-icons-umicons-2.0 KDE Umicons iconset kde-xdg-env-1.0_3,1 Script which hooks into startkde and helps KDE pick up XDG kdeaccessibility-3.5.7 Accessibility applications for KDE kdeaddons-3.5.7 Additional plugins and scripts for some KDE applications kdeaddons-atlantikdesigner-3.5.7 Editor for Atlantik kdeaddons-kaddressbook-plugins-3.5.7 Plugins for KAdressbook kdeaddons-kate-plugins-3.5.7 Additonal plugins and features for kate kdeaddons-kfile-plugins-3.5.7 Plugins for Konqueror (in filemanager mode) kdeaddons-kicker-applets-3.5.7 Additional applets for Kicker kdeaddons-knewsticker-scripts-3.5.7 Additional scripts for KNewsTicker kdeaddons-konq-plugins-3.5.7 Additonal plugins and features for Konqueror kdeaddons-ksig-3.5.7 Signature randomiser, available standalone or as a plugin w kdeaddons-noatun-plugins-3.5.7 Various plugins for Noatun kdeaddons-renamedlg-plugins-3.5.7 Plugins for Konqueror's rename dialog kdeartwork-3.5.7 Additional themes, sounds, wallpapers and window styles for kdebase-3.5.7_3 Basic applications for the KDE system kdebase-kompmgr-3.5.7 Utility needed to enable XComposite support in KDE kdegames-3.5.7 Games for the KDE integrated X11 desktop kdegraphics-3.5.7_1 Graphics utilities for the KDE3 integrated X11 desktop kdegraphics-kamera-3.5.7 Digital camera support for KDE kdegraphics-kuickshow-3.5.7 KDE image viewer kdehier-1.0_11 Utility port which installs a hierarchy of shared KDE direc kdelibs-3.5.7_2 Base set of libraries needed by KDE programs kdemultimedia-3.5.7_3 Multimedia utilities for the KDE integrated X11 desktop kdemultimedia-mpeglib_artsplug-3.5.7_1 Legacy KDE audio backend kdemultimedia-xine_artsplugin-3.5.7 Xine-based multimedia backend for KDE kdenetwork-3.5.7 Network-related programs and modules for KDE kdenetwork-kopete-0.12.5 KDE multi-protocol instant messenger (IM) kdepim-3.5.7 Personal Information Management tools for KDE kdetoys-3.5.7 Small applications for KDE kdeutils-3.5.7 Utilities for the KDE integrated X11 desktop kmplayer-0.9.4a,2 KDE frontend to mplayer koffice-1.6.3_2,2 Office Suite for KDE3 konversation-1.0.1_1 A user friendly IRC client for KDE ktorrent-2.1.4_1 BitTorrent client for KDE ladspa-1.12_1 Linux Audio Developer's Simple Plugin API lame-3.97_1 ISO code based fast MP3 encoder kit latex-cjk-4.7.0_1 A LaTeX2e macro package which enables the use of CJK script lcms-1.17,1 Light Color Management System -- a color management library lha-1.14i_6 Archive files using LZSS and Huffman compression (.lzh file libFS-1.0.0 The FS library libGL-7.0.1 OpenGL library that renders using GLX or DRI libGLU-7.0.1 OpenGL utility library libICE-1.0.4,1 Inter Client Exchange library for X11 libIDL-0.8.9 A library for creating trees of CORBA IDL files libSM-1.0.3,1 Session Management library for X11 libX11-1.1.3,1 X11 library libXScrnSaver-1.1.2 The XScrnSaver library libXTrap-1.0.0 The XTrap library libXau-1.0.3_2 Authentication Protocol library for X11 libXaw-1.0.4,1 X Athena Widgets library libXcomposite-0.4.0,1 X Composite extension library libXcursor-1.1.9 X client-side cursor loading library libXdamage-1.1.1 X Damage extension library libXdmcp-1.0.2 X Display Manager Control Protocol library libXevie-1.0.2 The Xevie library libXext-1.0.3,1 X11 Extension library libXfixes-4.0.3 X Fixes extension library libXfont-1.3.1,1 X font libary libXfontcache-1.0.4 The Xfontcache library libXft-2.1.12 A client-sided font API for X applications libXi-1.1.3,1 X Input extension library libXinerama-1.0.2,1 X11 Xinerama library libXmu-1.0.3,1 X Miscellaneous Utilities libraries libXp-1.0.0,1 X print library libXpm-3.5.7 X Pixmap library libXprintAppUtil-1.0.1 The XprintAppUtil library libXprintUtil-1.0.1 The XprintUtil library libXrandr-1.2.2 X Resize and Rotate extension library libXrender-0.9.4 X Render extension library libXres-1.0.3_2 X Resource usage library libXt-1.0.5 X Toolkit library libXtst-1.0.3 X Test extension libXv-1.0.3,1 X Video Extension library libXvMC-1.0.4 X Video Extension Motion Compensation library libXxf86dga-1.0.2 X DGA Extension libXxf86misc-1.0.1 X XF86-Misc Extension libXxf86vm-1.0.1 X Vidmode Extension liba52-0.7.4_1 A free library for decoding ATSC A/52 streams, aka AC-3 libao-0.8.8 Portable audio output library libart_lgpl-2.3.19,1 Library for high-performance 2D graphics libassuan-1.0.3 IPC library used by GnuPG and gpgme libaudiofile-0.2.6 A sound library for SGI audio file libbonobo-2.18.0_1 A component and compound document system for GNOME2 libbonoboui-2.18.0_1 GUI frontend to the libbonobo component of GNOME 2 libcaca-0.99.b11_1 Graphics library that outputs text instead of pixels libcddb-1.3.0 A library to access data on a CDDB server libcdio-0.77_2 Compact Disc Input and Control Library libchk-1.9 A tool to check shared library links libcroco-0.6.1 CSS2 parsing library libdaemon-0.12 Lightweight C library that eases the writing of UNIX daemon libdca-0.0.5 Free DTS Coherent Acoustics decoder libdmx-1.0.2 DMX extension library libdrm-2.3.0 Userspace interface to kernel Direct Rendering Module servi libdv-0.104_4 Quasar DV codec (libdv): software codec for DV video encodi libdvdcss-1.2.9_2 Portable abstraction library for DVD decryption libdvdnav-0.1.10_2 The library for the xine-dvdnav plugin libdvdread-0.9.7_2 This is needed by ogle, which is a DVD player that supports libevent-1.3d Provides an API to execute callback functions on certain ev libexecinfo-1.1_1 A library for inspecting program's backtrace libexif-0.6.15 Library to read digital camera file meta-data libfame-0.9.1_2 A video encoding library libfontenc-1.0.4 The fontenc Library libfpx-1.2.0.12 Library routines for working with Flashpix images libgcrypt-1.2.4_1 "General purpose crypto library based on code used in GnuPG libggi-2.2.2_1,1 A flexible drawing library libgii-1.0.2_1 GGI API for input sources libglade2-2.6.2 GNOME glade library libglut-7.0.1 OpenGL utility toolkit libgmp-4.2.2 A free library for arbitrary precision arithmetic libgnome-2.18.0_1 Libraries for GNOME, a GNU desktop environment libgnomecanvas-2.14.0_3 A graphics library for GNOME libgnomeui-2.18.1_1 Libraries for the GNOME GUI, a GNU desktop environment libgpg-error-1.5 Common error values for all GnuPG components libgphoto2-2.4.0 A universal digital camera picture control tool libgsf-1.14.7 An extensible i/o abstraction for dealing with structured f libgtkhtml-2.11.1 Lightweight HTML rendering/printing/editing engine libiconv-1.9.2_2 A character set conversion library libid3tag-0.15.1b ID3 tags library (part of MAD project) libidn-0.6.14 Internationalized Domain Names command line tool libksba-1.0.1_1 KSBA is an X.509 Library libltdl-1.5.22_2 System independent dlopen wrapper libmad-0.15.1b_2 Libmad library (part of MAD project) libmikmod-3.1.11_2 MikMod Sound Library libmng-1.0.9 Multiple-image Network Graphics (MNG) reference library libmodplug-0.8.4 ModPlug mod-like music shared libraries libmpcdec-1.2.6 High quality audio compression format libmpeg2-0.4.1_2 A free library for decoding mpeg-2 and mpeg-1 video streams libmusicbrainz-2.1.5 2nd generation incarnation of the CD Index - audio metadata libogg-1.1.3,3 Ogg bitstream library liboil-0.3.12 Library of optimized inner loops liboldX-1.0.1 Old X library libopensync-0.22_1 Freedesktop synchronization framework libpaper-1.1.21_3 A library providing routines for paper size management librsvg2-2.18.2 Library for parsing and rendering SVG vector-graphic files libsamplerate-0.1.2_2 Secret Rabbit Code: a Sample Rate Converter for audio libsigc++-2.0.18 Callback Framework for C++ libsndfile-1.0.17_1 Reading and writing files containing sampled sound (like WA libthai-0.1.5_2 Thai language support library libtheora-1.0.a7_1 Theora video codec for the Ogg multimedia streaming system libtool-1.5.22_4 Generic shared library support script libublio-20070103 User space caching library libungif-4.1.4_5 Tools and library routines for working with GIF images libusb-0.1.12_1 Library giving userland programs access to USB devices libvolume_id-0.75.0_1 Library to provide file system type information libvorbis-1.2.0,3 Audio compression codec library libwmf-0.2.8.4_2 Tools and library for converting Microsoft WMF (windows met libwnck-2.18.3 Library used for writing pagers and taskslists libwpd-0.8.9_1 Tools for importing and exporting WordPerfect(tm) documents libwww-5.4.0_4 The W3C Reference Library libxine-1.1.7_1 Libraries for xine multimedia player libxkbfile-1.0.4 XKB file library libxkbui-1.0.2 The xkbui library libxml++-2.18.0 XML API for C++ libxml2-2.6.30 XML parser library for GNOME libxslt-1.1.22 The XSLT C library for GNOME linc-1.0.3_6 A library for writing networked servers & clients links-0.98,1 Lynx-like text WWW browser linux-atk-1.9.1 Accessibility Toolkit, Linux/i386 binary linux-expat-1.95.8 Linux/i386 binary port of Expat XML-parsing library linux-flashplugin-7.0r69 Adobe Flash Player NPAPI Plugin linux-fontconfig-2.2.3_7 Linux/i386 binary of Fontconfig linux-glib2-2.6.6 Version 2.X Linux/i386 binary port of GLib linux-gtk2-2.6.10 GTK+ library, version 2.X, Linux binary linux-jpeg-6b.34 RPM of the JPEG lib linux-js-2.2 The Linux joystick interface ported to FreeBSD linux-openssl-0.9.7f SSL and crypto library (Linux Version) linux-pango-1.8.1 Linux pango binary linux-png-1.2.8_2 RPM of the PNG lib linux-realplayer-10.0.8.805.20060718_1 Linux RealPlayer 10 from RealNetworks linux-tiff-3.7.1 TIFF library, Linux/i386 binary linux-xorg-libs-6.8.2_5 Xorg libraries, linux binaries linux_base-fc-4_10 Base set of packages needed in Linux mode (for i386/amd64) linux_dri-7.0 Binary Linux DRI libraries for 3D hardware acceleration of linuxdoc-1.1_1 The Linuxdoc SGML DTD lirc-0.8.0_1 Linux Infared Remote Control listres-1.0.1 List resources in widgets liveMedia-2007.07.25,1 LIVE.COM Streaming Media localedata-5.4 Legacy locale data for FreeBSD 6+ luit-1.0.2_2 Locale and ISO 2022 support for Unicode terminals lynx-2.8.6.5_1,1 A non-graphical, text-based World-Wide Web client lzma-4.54 High-ratio LZMA compressor lzo-1.08_2,1 Portable speedy, lossless data compression library m4-1.4.9 GNU m4 maildrop-2.0.4 Mail delivery agent (MDA) with filtering abilities makedepend-1.0.1,1 A dependency generator for makefiles maven2-2.0.7 Java project management tool, 2.0 branch mencoder-0.99.10 Convenient video file and movie encoder mime-support-3.39.1 MIME Media Types list mjpegtools-1.9.0.r2 Set of tools to record/playback/edit videos in MPEG format mkcomposecache-1.2_1 Program to create Compose cache files mkfontdir-1.0.3 Create an index of X font files in a directory mkfontscale-1.0.3 Creates an index of scalable font files for X mldonkey-2.9.1 A OCAML client for multiple peer-to-peer networks mmencode-2.7 Translate to and from mail-oriented encoding formats mpeg2codec-1.2_3 An MPEG-2 Encoder and Decoder mpeg4ip-libmp4v2-1.5.0.1 Mpeg-4 library and tools from mpeg4ip mplayer-0.99.10_13 High performance media player supporting many formats mplayer-skins-1.1.2_6 Skins for MPlayer's Graphical User Interface (GUI) mplayerplug-in-3.45 A Mozilla plugin for the MPlayer media player mutt-devel-1.5.16_2 The Mongrel of Mail User Agents (development version) mysql-client-5.0.45 Multithreaded SQL database (client) nas-1.8_1 Network Audio System nasm-0.98.39,1 General-purpose multi-platform x86 assembler nautilus-2.18.3 File manager for the GNOME desktop nautilus-cd-burner-2.18.2 CD burner view for Nautilus ncurses-5.6_1 Library for terminal-independent, full-screen output neon-0.26.4 An HTTP and WebDAV client library for Unix systems net-snmp-5.3.1_3 An extendable SNMP implementation netpbm-10.26.44 A toolkit for conversion of images between different format normalizemime-1.18.20070320_1 A mime normalizer to be used as a preprocessor for email cl nspluginwrapper-0.9.91.5 A compatibility plugin for Netscape 4 (NPAPI) plugins nspr-4.6.7 A platform-neutral API for system level and libc like funct nss-3.11.7 Libraries to support development of security-enabled applic nvidia-driver-100.14.11 NVidia graphics card binary drivers for hardware OpenGL ren ocaml-3.09.3_1 The Objective Caml compiler and programming environment ocaml-lablgl-1.02_1 OpenGL interface for Objective Caml ocaml-lablgtk2-2.6.0_4 An Objective Caml interface to GTK+ 2.x oclock-1.0.1 Round clock application for X open-motif-2.2.3_5 Motif X11 Toolkit (industry standard GUI (IEEE 1295)) openal-20060211_6 A 3D positional spatialized sound library openjade-1.3.3p1 Object-oriented SGML/XML parser toolkit and DSSSL engine openldap-client-2.3.38 Open source LDAP client implementation openoffice.org-2.2.1 Integrated wordprocessor/dbase/spreadsheet/drawing/chart/br openslp-1.2.1_2 Open-source implementation of the Service Location Protocol openssh-portable-4.7.p1,1 The portable version of OpenBSD's OpenSSH opera-9.23.20070809 A blazingly fast, full-featured, standards-compliant browse opera-linuxplugins-9.21.20070510_1 Linux plugin support for the native Opera browser ortp-0.13.0 A Real-time Transport Protocol (RTP) stack p5-Algorithm-Diff-1.1902 Perl interface to compute differences between two objects p5-Archive-Zip-1.20 Perl module to create, manipulate, read, and write Zip arch p5-Authen-SASL-2.10_1 Perl5 module for SASL authentication p5-Compress-Raw-Zlib-2.006 Low-Level Interface to zlib compression library p5-Compress-Zlib-2.006 Perl5 interface to zlib compression library p5-DBD-Pg-1.49 Provides access to PostgreSQL databases through the DBI p5-DBI-1.59 The perl5 Database Interface. Required for DBD::* modules p5-Date-Manip-5.44 Perl5 module containing date manipulation routines p5-Digest-1.15 Modules that calculate message digests p5-Digest-HMAC-1.01 Perl5 interface to HMAC Message-Digest Algorithms p5-Digest-MD5-2.36 Perl5 interface to the MD5 algorithm p5-Digest-SHA1-2.11 Perl interface to the SHA-1 Algorithm p5-File-Temp-0.18 Perl5 module to generate temporary files or directories saf p5-File-Which-0.05 Portable implementation of `which' in Perl p5-FileHandle-Unget-0.1621 A FileHandle which supports ungetting of multiple bytes p5-Font-AFM-1.19 An interface to Adobe font metrics files p5-GSSAPI-0.24 Perl extension providing access to the GSSAPIv2 library p5-HTML-Format-2.04 A module to format HTML to text or PS p5-HTML-Parser-3.56 Perl5 module for parsing HTML documents p5-HTML-Tagset-3.10 Some useful data table in parsing HTML p5-HTML-Tree-3.23 A collection of modules to manupulate HTML syntax trees p5-IO-Compress-Base-2.006 Base Class for IO::Uncompress modules p5-IO-Compress-Zlib-2.006 Perl5 interface for reading and writing of (g)zip files p5-MIME-Base64-3.07 Perl5 module for Base64 and Quoted-Printable encodings p5-Mail-Mbox-MessageParser-1.5000 A fast and simple mbox folder reader p5-Net-1.22,1 Perl5 modules to access and use network protocols p5-PathTools-3.25 A Perl module for portably manipulating file specifications p5-Scalar-List-Utils-1.19,1 Perl subroutines that would be nice to have in the perl cor p5-Storable-2.16 Persistency for perl data structures p5-Test-Harness-2.64 Run perl standard test scripts with statistics p5-Test-Simple-0.72 Basic utilities for writing tests in perl p5-Text-Diff-0.35 Text::Diff - Perform diffs on files and record sets p5-Time-HiRes-1.9707,1 A perl5 module implementing High resolution time, sleep, an p5-TimeDate-1.16,1 Perl5 module containing a better/faster date parser for abs p5-URI-1.35 Perl5 interface to Uniform Resource Identifier (URI) refere p5-XML-NamespaceSupport-1.09_1 A simple generic namespace support class p5-XML-Parser-2.34_2 Perl extension interface to James Clark's XML parser, expat p5-XML-SAX-0.16 Simple API for XML p5-XML-SAX-Expat-0.39 Simple API for XML p5-XML-Simple-2.18 Trivial API for reading and writing XML (esp config files) p5-gettext-1.05_1 Message handling functions p5-libwww-5.805 Perl5 library for WWW access p5-type1inst-0.6.1_4 A script that helps install Postscript fonts in X Window Sy p7zip-4.55 File archiver with high compression ratio pango-1.16.5 An open-source framework for the layout and rendering of i1 paq-8.o4.v2 An archiver with an extremely high compression ratio patch-2.5.4 GNU patch utility pbzip2-1.0.2.0.2 Parallel BZIP2 pccts-1.33.33 The Purdue Compiler Construction Tool Set pciids-20070906 Database of all known ID's used in PCI devices pcre-7.3 Perl Compatible Regular Expressions library pdksh-5.2.14p2_2 The Public Domain Korn Shell perl-threaded-5.8.8 Practical Extraction and Report Language pilot-link-0.12.2,1 Suite of tools used to connect and sync your Palm handled pinentry-qt-0.7.2_6 QT version of the gnupg password dialog pixman-0.9.5_2 Low-level pixel manipulation library pkg-config-0.22 A utility to retrieve information about installed libraries pkg_cutleaves-20061113 Interactive script for deinstalling 'leaf' packages png-1.2.18 Library for manipulating PNG images policykit-0.1.20060514_4 Framework for controlling access to system-wide components polipo-1.0.2 A small and fast caching web proxy polypaudio-0.7_4 Sound server for UNIX poppler-0.6 A PDF rendering library poppler-data-0.1 Poppler encoding data poppler-gtk-0.6 Gtk bindings to poppler poppler-qt-0.6 Qt bindings to poppler popt-1.7_4 A getopt(3) like library with a number of enhancements, fro portaudio-18.1_2 Portable cross-platform Audio API portconf-1.2 A universal tool to set specific port knobs portupgrade-devel-2.3.1 FreeBSD ports/packages administration and management tool s postgresql-client-8.2.5 PostgreSQL database (client) postgresql-libpqxx-2.6.9 A new C++ interface for PostgreSQL postgresql-server-8.2.5 The most advanced open-source database available anywhere ppmd-7z-4.53 High-ratio PPMD compressor printproto-1.0.3 Print extension headers privoxy-3.0.6_1 Privoxy is a web proxy with advanced filtering capabilities procmail-3.22_6 A local mail delivery agent pstree-2.31 List processes as a tree psutils-a4-1.17_2 Utilities for manipulating PostScript documents pth-2.0.7 GNU Portable Threads py25-cairo-1.4.0_1 Python bindings for Cairo py25-gobject-2.12.3 Python bindings for GObject py25-gtk-2.10.6 A set of Python bindings for GTK+ py25-libxml2-2.6.30 Python interface for XML parser library for GNOME py25-numeric-24.2 The Numeric Extension to Python py25-xml-0.8.4 PyXML: Python XML library enhancements python25-2.5.1 An interpreted object-oriented programming language qca-tls-1.0_2 SSL/TLS plugin for Qt qmail-1.03_5 A secure, reliable, efficient, simple, and fast MTA qmake-3.3.8_1 The build utility of the Qt project qt-copy-3.3.8_6 Multiplatform C++ application framework (+ KDE patches) randrproto-1.2.1 Randr extension headers recordproto-1.13.2 RECORD extension headers renderproto-0.9.3 RenderProto protocol headers resourceproto-1.0.2 Resource extension headers rgb-1.0.1 Uncompile an rgb corl-name database rpm-3.0.6_13 The Red Hat Package Manager rpm2cpio-1.2_2 Convert .rpm files for extraction with /usr/bin/cpio, needs rstart-1.0.2 Sample implementation of a Remote Start client rsync-2.6.9_1 A network file distribution/synchronization utility rtc-2004.02.24.1_8 Kernel module which provides /dev/rtc device support ruby+pthreads+oniguruma-1.8.6_2,1 An object-oriented interpreted scripting language ruby18-bdb42-0.6.2 Ruby interface to Sleepycat's Berkeley DB revision 2 or lat ruby18-deplate-0.8 Ruby tool for converting wiki-like markup samba-3.0.26a,1 A free SMB and CIFS client and server for UNIX samba-libsmbclient-3.0.26a Shared libs from the samba package scr2png-1.2_1 Converts the output of "vidcontrol -p" to PNG scr2txt-1.2 Converts the output of "vidcontrol -p" to text screen-4.0.3 A multi-screen window manager scripts-1.0.1 Various X related scripts scrnsaverproto-1.1.0 ScrnSaver extension headers scrollkeeper-0.3.14_8,1 An Open Document Cataloging Project sdl-1.2.11_1,2 Cross-platform multi-media development API sdocbook-xml-1.1,1 "Simplified" DocBook XML DTD serialmail-0.75_2 Tools for passing mail across serial links sessreg-1.0.3 Manage utmp/wtmp entries for non-init X clients setxkbmap-1.0.4 Set the keyboard using the X Keyboard Extension shared-mime-info-0.22 A MIME type database from the FreeDesktop project showfont-1.0.1 Font dumper for the X font server smpeg-0.4.4_7 A free MPEG1 video player library with sound support smproxy-1.0.2 Session Manager Proxy speex-1.2.b2,1 An open-source patent-free voice codec sqlite3-3.4.1 An SQL database engine in a C library w/ Tcl wrapper startup-notification-0.9_1 Library that supports startup notification spec from freede subversion-1.4.4_1 Version control system sudo-1.6.9.5 Allow others to run commands as root svgalib-1.4.3_5 A low level console graphics library swig-1.3.31_1 Simplified Wrapper and Interface Generator t1lib-5.1.1_2,1 A Type 1 Rasterizer Library for UNIX/X11 t1utils-1.32 Six utilities for manipulating t1 fonts taglib-1.4_2 Library for manipulating ID3 tags and Ogg comments tcl-8.4.16,1 Tool Command Language teTeX-base-3.0_12 Thomas Esser's distribution of TeX & friends (binaries) teTeX-texmf-3.0_5 Thomas Esser's distribution of TeX & friends (texmf tree) tex-texmflocal-1.9 Meta-port that creates a site-local $TEXMF directory texi2html-1.76_1,1 Texinfo to HTML converter tidy-20000804_2 Fixes and tidies up HTML files tiff-3.8.2_1 Tools and library routines for working with TIFF images tightvnc-1.3.8_2 Enhanced version of VNC tinderbox-2.4.1 Port build tinderbox system tk-8.4.16,2 Graphical toolkit for TCL tnef-1.4.3 Unpack data in MS Outlook TNEF format tor-devel-0.2.0.2.a_1 An anonymizing overlay network for TCP totem-2.18.2 A gstreamer-based video player for the GNOME 2 Desktop tracker-0.6.1_1 Object database, tag/metadata database, search tool and ind transcode-1.0.4 A text-console utility for video stream processing trapproto-3.4.3 DEC-XTRAP extension headers tsocks-1.8.b5_3 Allow non SOCKS aware applications to use SOCKS without mod ttf2pt1-3.4.4_2 True Type Font to Postscript Type 1 Converter ttmkfdir-3.0.9_1,1 Create fonts.scale file for use with TrueType font server twm-1.0.3_3 Tab Window Manager for the X Window System ucspi-ssl-0.70_1 UCSPI tools for building SSL client-server applications ucspi-tcp-0.88_2 Command-line tools for building TCP client-server applicati unmakeself-1.1 Extract Makeself archives unzip-5.52_3 List, test and extract compressed files in a ZIP archive unzoo-4.4_2 A zoo archive extractor urwfonts-ttf-1.0.7b18_1 Unicode TrueType fonts from URW extended by Valek Filippov usendmail-0.1.6_1 A replacement for qmail's sendmail drop-in v4l_compat-1.0.20060801 Video4Linux compatibility header vcdimager-0.7.23_3 GNU VCDImager/VCDRip -- The GNU VideoCD Image Maker/Ripping videoproto-2.2.2 Video extension headers viewres-1.0.1 Graphical class browser for Xt vorbis-tools-1.1.1_4,3 Play, encode, and manage Ogg Vorbis files webfonts-0.30_2 TrueType core fonts for the Web wget-1.10.2_1 Retrieve files from the Net via HTTP and FTP win32-codecs-3.1.0.r1,1 Huge compilation of Win32 binary video codecs workrave-1.8.3_1 A Gnome RSI prevention tool wv-1.2.4_1 A library and executables to access Microsoft Word files wv2-0.2.3_1 A library providing routines to access Microsoft Word files x11perf-1.4.1 X11 server performance test program x264-0.0.20070913 Multimedia library and tool for encoding H.264/AVC video st xanim-2.92.0_2 Play most popular animation formats and show pictures xauth-1.0.2 X authority file utility xbacklight-1.1 Program to adjust backlight brightness xbiff-1.0.1 Mailbox flag for X xbindkeys-1.8.2_1 Allows you to launch shell commands under X with your keybo xbitmaps-1.0.1 X.Org bitmaps data xcalc-1.0.2 Scientific calculator for X xclick-0.1_1 Generates X11 mouse button click events xclipboard-1.0.1 X clipboard client xclock-1.0.3 Analog and digital clock for X xcmiscproto-1.1.2 XCMisc extension headers xcmsdb-1.0.1 Device Color Characterization utility for X xconsole-1.0.3 Monitor system console messages with X xcursor-themes-1.0.1_1 X.org cursors themes xcursorgen-1.0.2 Create an X cursor file from a collection of PNG images xdbedizzy-1.0.2 Demo of DBE creating a double buffered spinning scene xditview-1.0.1 Display ditroff output xdm-1.1.6 X.Org X display manager xdpyinfo-1.0.2 Display information utility for X xdriinfo-1.0.2 Query configuration information of DRI drivers xedit-1.0.2 Simple text editor for X xev-1.0.2 Print contents of X events xextproto-7.0.2 XExt extension headers xeyes-1.0.1 A follow the mouse X demo xf86-input-keyboard-1.2.2 X.Org keyboard input driver xf86-input-mouse-1.2.2 X.Org mouse input driver xf86-video-ati-6.7.193 X.Org ati display driver xf86-video-fbdev-0.3.1_1 X.Org fbdev display driver xf86-video-mga-1.4.7 X.Org mga display driver xf86-video-nv-2.1.3_1 X.Org nv display driver xf86-video-vesa-1.3.0_1 X.Org vesa display driver xf86-video-vga-4.1.0_1 X.Org vga display driver xf86bigfontproto-1.1.2 XFree86-Bigfont extension headers xf86dga-1.0.2 Test program for the XFree86-DGA extension xf86dgaproto-2.0.3 XFree86-DGA extension headers xf86driproto-2.0.3 XFree86-DRI extension headers xf86miscproto-0.9.2 XFree86-Misc extension headers xf86rushproto-1.1.2 XFree86-Rush extension headers xf86vidmodeproto-2.2.2 XFree86-VidModeExtension extension headers xfd-1.0.1 Display all characters in an X font xfindproxy-1.0.1 Locate available proxy services xfontsel-1.0.2 Point and click selection of X11 font names xfs-1.0.4_4,1 X.Org font server xfsinfo-1.0.1 X font server information utility xfwp-1.0.1 X firewall proxy xgamma-1.0.2 Gamma correction through the X server. xgc-1.0.1 X graphics demo xhost-1.0.2 Server access control program for X xhtml-1.0.20020801_4 W3C's XHTML DTD xine-0.99.5 An X11 multimedia player xineramaproto-1.1.2 Xinerama extension headers xinit-1.0.5 X Window System initializer xkbcomp-1.0.3 Compile XKB keyboard description xkbevd-1.0.2 XKB event daemon xkbprint-1.0.1 Utility for printing an XKB keyboard description xkbutils-1.0.1 XKB utility demos xkeyboard-config-1.0_1 X Keyboard Configuration Database xkill-1.0.1 Utility for killing a client by its X resource xload-1.0.2 System load average display for X xlogo-1.0.1 Displays the X Window System logo. xlsatoms-1.0.1 List interned atoms defined on a server xlsclients-1.0.1 List client applications running on a display xlsfonts-1.0.2 Server font list displayer for X xmag-1.0.2 X application for screen magnifying xman-1.0.3 Manual page display program for X xmessage-1.0.2 Display message or query in a X window xmh-1.0.1 Send and read mail with an X interface to MH xmlcatmgr-2.2 SGML and XML catalog manager xmlcharent-0.3_2 XML character entities xmms-1.2.10_10 X Multimedia System -- An audio player with Winamp GUI xmodmap-1.0.3 Utility for modifying keymaps and pointer button mappings i xmore-1.0.1 Plain text display program for X xorg-7.3_1 X.Org complete distribution metaport xorg-apps-7.3 X.org apps meta-port xorg-cf-files-1.0.2_2 X.org cf files for use with imake builds xorg-docs-1.4,1 X.org documentation files xorg-drivers-7.3 X.org drivers meta-port xorg-fonts-100dpi-7.3 X.Org 100dpi bitmap fonts xorg-fonts-7.3 X.org fonts meta-port xorg-fonts-75dpi-7.3 X.Org 75dpi bitmap fonts xorg-fonts-cyrillic-7.3 X.Org Cyrillic bitmap fonts xorg-fonts-miscbitmaps-7.3 X.Org miscellaneous bitmap fonts xorg-fonts-truetype-7.3 X.Org TrueType fonts xorg-fonts-type1-7.3 X.Org Type1 fonts xorg-libraries-7.3_1 X.org libraries meta-port xorg-protos-7.3 X.org protos meta-port xorg-server-1.4,1 X.Org X server and related programs xphelloworld-1.0.1 Sends a test page to an Xprint printer xplsprinters-1.0.1 Shows a list of Xprint printers xpr-1.0.2 Utility for printing an X window dump xprehashprinterlist-1.0.1 Recomputes the list of available printers. xprop-1.0.3 Property displayer for X xproto-7.0.10 X11 protocol headers xproxymanagementprotocol-1.0.2 X Proxy Management Protocol headers xrandr-1.2.2 Primitive command line interface to the RandR extension xrdb-1.0.4 X server resource database utility xrefresh-1.0.2 Refresh all or part of an X screen xrx-1.0.1 RX helper program xset-1.0.3 User preference utility for X xsetmode-1.0.0 Set the mode for an X Input Device xsetpointer-1.0.1 Set an X Input device as the main pointer xsetroot-1.0.2 root window parameter setting utility for X xsm-1.0.1 X Session Manager xstdcmap-1.0.1 X standard colormap utility xterm-229 Terminal emulator for the X Window System xtrans-1.0.4 Abstract network code for X xtrap-1.0.2 XTrap sample clients for X xulrunner-1.8.0.4_7 Mozilla runtime package that can be used to bootstrap XUL+X xvid-1.1.3,1 An opensource MPEG-4 codec, based on OpenDivx xvid4conf-1.12_1 XviD configuration panel for transcode xvidtune-1.0.1 Video mode tuner for X xvinfo-1.0.2 Print out X-Video extension adaptor information xvkbd-2.6_3 A virtual keyboard for X applications xwd-1.0.1 Dump an image of an X window xwininfo-1.0.3 Window information utility for X xwud-1.0.1 Image displayer for X zh-arphicttf-2.11_2 Four Chinese Big5/GB TrueType fonts made by Arphic Technolo zh-docproj-0.1.20060303_2 Supportive tools for Chinese docproj build zh-ttf2pt1-3.4.0 True Type Font to Postscript Type 1 Converter with chinese zh-ttfm-0.9.5_2 A Big5/GB enhanced TrueType Font Manager zip-2.32 Create/update ZIP files compatible with pkzip --liOOAslEiF7prFVr Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="uname.txt" FreeBSD exxodus.fedaykin.here 7.0-CURRENT FreeBSD 7.0-CURRENT #7: Fri Sep 21 07:35:14 BRT 2007 lioux@exxodus:/usr/obj/usr/src/sys/LIOUX i386 --liOOAslEiF7prFVr Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="xorg.conf" Section "ServerLayout" Identifier "X.org Configured" Screen 0 "Screen0" 0 0 InputDevice "Mouse0" "CorePointer" InputDevice "Keyboard0" "CoreKeyboard" EndSection Section "ServerFlags" Option "BlankTime" "10" Option "StandbyTime" "20" Option "SuspendTime" "30" Option "OffTime" "60" # Option "Xinerama" "True" # Option "RandR" "True" EndSection Section "Extensions" Option "Composite" "Disable" EndSection Section "Files" RgbPath "/usr/local/share/X11/rgb" ModulePath "/usr/local/lib/xorg/modules" FontPath "/usr/local/lib/X11/fonts/misc/" FontPath "/usr/local/lib/X11/fonts/TTF/" FontPath "/usr/local/lib/X11/fonts/OTF" FontPath "/usr/local/lib/X11/fonts/Type1/" FontPath "/usr/local/lib/X11/fonts/100dpi/" FontPath "/usr/local/lib/X11/fonts/75dpi/" FontPath "/usr/local/lib/X11/fonts/TrueType/" FontPath "/usr/local/lib/X11/fonts/bitstream-vera/" FontPath "/usr/local/lib/X11/fonts/cyrillic/" FontPath "/usr/local/lib/X11/fonts/code2000/" FontPath "/usr/local/lib/X11/fonts/freefont-ttf/" FontPath "/usr/local/lib/X11/fonts/gentium/" FontPath "/usr/local/lib/X11/fonts/urwfonts-ttf/" FontPath "/usr/local/lib/X11/fonts/webfonts/" FontPath "/usr/local/share/apps/konsole/fonts/" FontPath "/usr/local/share/ghostscript/fonts/" EndSection Section "Module" Load "extmod" Load "record" Load "dbe" Load "xtrap" Load "dri" Load "glx" Load "freetype" Load "type1" EndSection Section "InputDevice" Identifier "Keyboard0" Driver "kbd" EndSection #Section "InputDevice" # Identifier "Mouse0" # Driver "mouse" # Option "Protocol" "auto" # Option "Device" "/dev/sysmouse" # Option "ZAxisMapping" "4 5 6 7" #EndSection Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/sysmouse" Option "Buttons" "15" Option "ZAxisMapping" "4 5" Option "Resolution" "800" Option "DragLockButtons" "10 1" #Option "DragLockButtons" "10" #Option "ButtonMapping" "1 2 3 6 7 8 9 10" EndSection Section "Monitor" Identifier "Monitor0" VendorName "Samsung" ModelName "SyncMaster 955DF" HorizSync 30.0 - 85.0 VertRefresh 50.0 - 160.0 Option "DPMS" EndSection Section "Monitor" Identifier "Monitor1" VendorName "Samsung" ModelName "SyncMaster 955DF" HorizSync 30.0 - 85.0 VertRefresh 50.0 - 160.0 Option "DPMS" EndSection Section "Device" ### Available Driver options are:- ### Values: : integer, : float, : "True"/"False", ### : "String", : " Hz/kHz/MHz" ### [arg]: arg optional #Option "SWcursor" # [] #Option "HWcursor" # [] #Option "NoAccel" # [] #Option "ShadowFB" # [] #Option "UseFBDev" # [] #Option "Rotate" # [] #Option "VideoKey" # #Option "FlatPanel" # [] #Option "FPDither" # [] #Option "CrtcNumber" # #Option "FPScale" # [] #Option "FPTweak" # #Option "DualHead" # [] Identifier "Card0" Driver "nv" VendorName "nVidia Corporation" BoardName "Unknown Board" BusID "PCI:1:0:0" Option "AccelMethod" "EXA" Option "MigrationHeuristic" "greedy" #Option "DualHead" "true" Option "NoAccel" "false" Option "HWcursor" "true" EndSection Section "Screen" Identifier "Screen0" Device "Card0" Monitor "Monitor0" SubSection "Display" Viewport 0 0 Depth 24 Modes "1280x1024" "1024x768" "800x600" "640x480" EndSubSection EndSection --liOOAslEiF7prFVr-- From owner-freebsd-ports@FreeBSD.ORG Mon Sep 24 07:20:32 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AC81D16A419 for ; Mon, 24 Sep 2007 07:20:32 +0000 (UTC) (envelope-from david@vizion2000.net) Received: from dns1.vizion2000.net (77-99-36-42.cable.ubr04.chap.blueyonder.co.uk [77.99.36.42]) by mx1.freebsd.org (Postfix) with ESMTP id 5258013C494 for ; Mon, 24 Sep 2007 07:20:32 +0000 (UTC) (envelope-from david@vizion2000.net) Received: by dns1.vizion2000.net (Postfix, from userid 1007) id 2B0331CC28; Mon, 24 Sep 2007 00:35:24 -0700 (PDT) From: David Southwell Organization: Voice and Vision To: freebsd-ports@freebsd.org Date: Mon, 24 Sep 2007 00:35:23 -0700 User-Agent: KMail/1.9.7 References: <20070923224312.GA83208@owl.midgard.homeip.net> In-Reply-To: <20070923224312.GA83208@owl.midgard.homeip.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200709240035.23926.david@vizion2000.net> Cc: Aryeh Friedman Subject: Re: Can the following license be used for ported programs? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2007 07:20:32 -0000 On Sunday 23 September 2007 15:43:12 Erik Trulsson wrote: > On Sun, Sep 23, 2007 at 05:10:53PM +0000, Aryeh Friedman wrote: > > My company develops software under a commercial "open source" (see > > links for details) and I want to know if my license is close enough to > > open source (see links for why it is not 100% OSD compliant [it is 95% > > compliant]). Specifically does the business model as outlined in my > > blog (the third installment should be out later today), my business > > model page, the third party certifier and license allow for inclusion > > in the ports collection. Keep in mind that the source is available > > to anyone but execution is conditioned on attachment A of the license > > and after the trial period (30 days) is paid for software. > > > > License: http://www.flosoft-systems.com/license.php > > Official statement of my business model: > > http://www.flosoft-systems.com/bmodel.php > > Blog entries: > > http://www.flosoft-systems.com/blogs/aryeh/FOSS.php > > http://www.flosoft-systems.com/blogs/aryeh/SIW_Background.php > > Third party group (due to DNS issues is currently hosted on my domain > > but is not officially associated with my company): > > http://www.flosoft-systems.com/miai/ > > For inclusion in the ports tree it really does not matter much what license > you use for your software - it could even be a commercial closed-source > program. The reason for this is that the ports tree is just a framework > for installing and managing software packages, and none of your code will > actually live in the ports tree. > > If you have various restrictions in the license then it may not be possible > for the FreeBSD project to distribute binary packages or source files. > If that is the case the port creator should set RESTRICTED or other > appropriate variable in the port Makefile to enforce this (see > http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/porting-r >estrictions.html for what variations are possible.) Frankly I do not see the point. New software would have to be highly original not to have its objects fulfilled by a pure open source prokject rather than some contrived license. First look at the competitive merits of the software against works available -- not at the liocensing!! David David From owner-freebsd-ports@FreeBSD.ORG Mon Sep 24 08:47:15 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7C48C16A41A for ; Mon, 24 Sep 2007 08:47:15 +0000 (UTC) (envelope-from david@vizion2000.net) Received: from dns1.vizion2000.net (77-99-36-42.cable.ubr04.chap.blueyonder.co.uk [77.99.36.42]) by mx1.freebsd.org (Postfix) with ESMTP id 23D7113C455 for ; Mon, 24 Sep 2007 08:47:14 +0000 (UTC) (envelope-from david@vizion2000.net) Received: by dns1.vizion2000.net (Postfix, from userid 1007) id 7FEB11CC28; Mon, 24 Sep 2007 02:02:07 -0700 (PDT) From: David Southwell Organization: Voice and Vision To: freebsd-ports@freebsd.org Date: Mon, 24 Sep 2007 02:02:06 -0700 User-Agent: KMail/1.9.7 References: <46F711AD.3030505@sourceview.com> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200709240202.07290.david@vizion2000.net> Cc: Michael Dean , Aryeh Friedman Subject: Re: Can the following license be used for ported programs? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2007 08:47:15 -0000 On Sunday 23 September 2007 18:41:43 Aryeh Friedman wrote: > On 9/24/07, Michael Dean wrote: > > many people feel much differently, why not just a pure proprietary > > license then, rather than proliferating Yet Another Silly License which > > is not tempered by sound legal analysis. > > Not to be insulting but I don't think you read my 1st blog entry as I > suggested (at least the first paragraph... specifically where I say > both open and closed source are equally the wrong model). Now onto > your actual points: > > The license has received legal review by an IP attorney. > > Again not to be insulting but I think most FOSS people slept through > econ 101, especially the section on there is no such thing as a > limitless resource. Even though you might consider this to be a > conflict of interest; I have a family member who is a prof. of econ at > UC Santa Cruz and has reviewed the economic aspects of both my > specific work and the general concept of SIW (see second blog entry > for definition). His general conclusion is while the model is untried > on a large scale and there are some more minor things we can improve > on (subject of debate within the SIW community) that we fix many of > the economic flaws with both open and closed source models. He is > currently in the process of writing a book on the matter and said he > would have a full review after rewriting ch8 (which is on the economic > issues raised by both models) in a few weeks. > _______________________________________________ I have read both the blog and looked at the "product" references. Frankly the intellectual and grammatical quality of the blog and the comparatively trivial nature of the "products" referred to makes me feel that the original contribution does not deserve the level of attention that its author seems to crave. Might it not be better to spend more time on creating truly original softaware than drawing attention to oneself by purporting to reinvent the wheel of software licensing? David David From owner-freebsd-ports@FreeBSD.ORG Mon Sep 24 09:58:22 2007 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DC39316A418 for ; Mon, 24 Sep 2007 09:58:22 +0000 (UTC) (envelope-from erwin@freebsd.org) Received: from pointyhat.freebsd.org (pointyhat.freebsd.org [IPv6:2001:4f8:fff6::2b]) by mx1.freebsd.org (Postfix) with ESMTP id BBBED13C458 for ; Mon, 24 Sep 2007 09:58:22 +0000 (UTC) (envelope-from erwin@freebsd.org) Received: from pointyhat.freebsd.org (localhost [127.0.0.1]) by pointyhat.freebsd.org (8.14.1/8.14.1) with ESMTP id l8O9wKcW073225 for ; Mon, 24 Sep 2007 09:58:20 GMT (envelope-from erwin@pointyhat.freebsd.org) Received: (from erwin@localhost) by pointyhat.freebsd.org (8.14.1/8.14.1/Submit) id l8O9wK4C073222 for ports@FreeBSD.org; Mon, 24 Sep 2007 09:58:20 GMT (envelope-from erwin) Date: Mon, 24 Sep 2007 09:58:20 GMT From: Erwin Lansing Message-Id: <200709240958.l8O9wK4C073222@pointyhat.freebsd.org> To: ports@FreeBSD.org Cc: Subject: INDEX build failed for 5.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2007 09:58:22 -0000 INDEX build failed with errors: Generating INDEX-5 - please wait.."Makefile", line 39: Unassociated shell command "@${ECHO} """ "Makefile", line 40: Unassociated shell command "@${ECHO} " Define WITH_TEXMF_PREFIX=somewhere"" "Makefile", line 41: Unassociated shell command "@${ECHO} " if your tetex type1 fonts are somewhere non-standard"" "Makefile", line 42: Unassociated shell command "@${ECHO} """ "Makefile", line 46: Unassociated shell command "@${ECHO} """ "Makefile", line 47: Unassociated shell command "@${ECHO} " Define WITH_BROWSER=myBrowser to use"" "Makefile", line 48: Unassociated shell command "@${ECHO} " myBrowser to browse ipe help instead of mozilla"" "Makefile", line 49: Unassociated shell command "@${ECHO} """ make: fatal errors encountered -- cannot continue ===> graphics/ipe failed *** Error code 1 *** Error code 1 Stop in /a/erwin/tindex/ports. *** Error code 1 Stop in /a/erwin/tindex/ports. 1 error Committers on the hook: edwin linimon lth miwi nemoliu rafan sem Most recent CVS update was: U LEGAL U MOVED U Mk/bsd.port.mk U audio/csound/scripts/check-fltk-threads.sh U audio/p5-Audio-Wav/Makefile U audio/p5-libvorbis/Makefile U cad/xcircuit/Makefile U chinese/enscript/Makefile U chinese/moefonts-cid/Makefile U comms/gkermit/Makefile U devel/p5-SVN-Notify/Makefile U devel/p5-Time-Object/Makefile U editors/slime/Makefile U emulators/dynagen-devel/Makefile U games/p5-Games-Bingo/Makefile U games/p5-Games-Bingo/distinfo U games/toppler/Makefile U graphics/cthumb/Makefile U graphics/epstool/Makefile U graphics/ipe/Makefile U graphics/ocaml-images/Makefile U graphics/piddle/Makefile U graphics/pstoedit/Makefile U graphics/pstoepsi/Makefile U graphics/py-chart/Makefile U irc/epic4/Makefile U irc/epic4/distinfo U irc/epic4/pkg-descr U irc/epic4/pkg-plist U irc/epic4/files/pkg-message.in U lang/logo/Makefile U lang/p5-JavaScript/Makefile U lang/scheme48/Makefile U mbone/wb/Makefile U net/quagga/Makefile U net/quagga/distinfo U net/quagga/files/patch-cvs-0-bgp-ipv6 U net/quagga/files/patch-cvs-1-prefix_buf U net/quagga/files/patch-cvs-2-rtm_type_str U net/quagga/files/patch-cvs-3-rib_sweep_route U net/quagga/files/patch-cvs-4-old_pid U net/quagga/files/patch-cvs-5-sndbuf U net/quagga/files/quagga.sh.in U net/ytalk/Makefile U net-mgmt/icmpquery/Makefile U palm/sitescooper/Makefile U ports-mgmt/portupgrade/pkg-message U print/Makefile U print/apsfilter/Makefile U print/font2svg/Makefile U print/ggv/Makefile U print/ghostscript-gnu/Makefile U print/ghostscript-gnu-commfont/Makefile U print/ghostscript-gpl/Makefile U print/gnome-print/Makefile U print/html2ps-letter/Makefile U print/lpr-wrapper/Makefile U print/magicfilter/Makefile U print/pnm2ppa/Makefile U print/psdim/Makefile U print/pstotext/Makefile U print/transfig/Makefile U security/l0pht-watch/Makefile U sysutils/daemontools53/Makefile U sysutils/npadmin/Makefile U sysutils/ucspi-tcp/Makefile U textproc/latex2html/Makefile U textproc/p5-XML-LibXSLT/Makefile U textproc/p5-XML-SAX-Expat-Incremental/Makefile U textproc/p5-XML-SAX-Expat-Incremental/distinfo U textproc/pdftohtml/Makefile U textproc/prosper/Makefile U textproc/tth/Makefile U www/mod_security2/Makefile U www/p5-Apache-MP3/Makefile U www/p5-ApacheBench/Makefile U x11/dgs/Makefile U x11-fonts/mozilla-fonts/Makefile From owner-freebsd-ports@FreeBSD.ORG Mon Sep 24 11:06:25 2007 Return-Path: Delivered-To: ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE0CF16A417 for ; Mon, 24 Sep 2007 11:06:25 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AB73513C44B for ; Mon, 24 Sep 2007 11:06:25 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.1/8.14.1) with ESMTP id l8OB6Pan063207 for ; Mon, 24 Sep 2007 11:06:25 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.1/8.14.1/Submit) id l8OB6Ntj063203 for PORTS; Mon, 24 Sep 2007 11:06:23 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 24 Sep 2007 11:06:23 GMT Message-Id: <200709241106.l8OB6Ntj063203@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD ports list Cc: Subject: Current unassigned ports problem reports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2007 11:06:25 -0000 Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The problem is understood and a solution is being sought. f - feedback Further work requires additional information from the originator or the community - possibly confirmation of the effectiveness of a proposed solution. p - patched A patch has been committed, but some issues (MFC and / or confirmation from originator) are still open. r - repocopy The resolution of the problem report is dependent on a repocopy operation within the CVS repository which is awaiting completion. s - suspended The problem is not being worked on, due to lack of information or resources. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested -- or when fixing the problem is abandoned. Critical problems Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/106369 vpnd caused kernel panic with ppp mode o ports/106372 vpnd can't run with slip mode f ports/108077 www/linux-flashplugin9 crashes linux-firefox f ports/108413 net/vnc does not works. f ports/108606 Courier MTA terminates abnormaly after installation f ports/112083 mail/qsheff overwrites configuration upon upgrade o ports/112385 sysutils/lookupd on Kernel 64 f ports/112698 www/opera's spell-check doesn't work f ports/112921 x11-wm/Beryl not loading focus and keybinding settings o ports/113139 sysutils/ucspi-tcp runtime crash on amd64 w/ fix f ports/113144 print/ghostscript-gnu dumps core with several output d f ports/115818 Executable clash between databases/grass and ruby gems f ports/115939 mail/nmh: needs CFLAGS=-O f ports/115967 enable chrooted net/isc-dhcp3-server on the FreeBSD 7. o ports/116251 building biology/platon fails f ports/116292 sysutils/cramfs patches for mkcramfs/cramfsck f ports/116378 xorg 7.3 on -stable breaks math/scilab f ports/116385 net/vnc using vnc.so crashes Xorg 7.3 when remote comp f ports/116475 portupgrade of www/rt36 fails o ports/116493 mail/websieve -- unbreak with appache22, etc. f ports/116586 net/isc-dhcp3-server does not work when compiled with o ports/116587 [maintainer update] security/amavisd-milter to 1.3.1 o ports/116589 games/hex-a-hop port doesn't compile on 64bit systems 23 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/94921 isakmpd fails on amd64 o ports/100896 [new ports] emulators/vmware-server-guestd1 emulators/ f ports/101166 bittorrent-curses only works under English locales. o ports/103395 security/gnome-ssh-askpass interferes with gnome-scree o ports/107354 net/icmpinfo: icmpinfo -vvv does not recocnize any ICM f ports/107621 net/proxychains doens't compile on 4 and 5 f ports/107937 jailed net/isc-dhcp3-server wouldn't run with an immut f ports/108723 kxgenerator never worked for me f ports/109041 security/tinyca doesn't allow for user installed OpenS o ports/110326 ports Use TCL/TK 8.4: games/tvp f ports/111399 print/ghostscript-gpl: ghostscript-gpl WITH_FT_BRIDGE f ports/111456 [UPDATE] finance/pfpro updated distinfo o ports/112499 Add a necessary runtime library for audio/mbrola to ru f ports/112876 audio/xmcd - compile problems after xorg 7.2 upgrade ( f ports/112887 net/nxserver 1.4.0_1 fails to compile after upgrading f ports/113423 Update for ports net/freenx to version 0.6.0 o ports/113538 databases/unixODBC fails to copy required INI files fo f ports/113750 update science/kst to 1.4.0 o ports/113827 when trying to play midis using audio/playmidi "/dev/s o ports/114031 [PATCH] editors/xemacs-devel - stop XEmacs from corrup o ports/114122 New port: russian/stardict2-dict-eng_RU, Russian dicti f ports/114127 net/vnc - vnc.so installed to bad location f ports/114825 pam module security/pam_abl not working o ports/115216 ADA devel/florist exit_process program doesn't compile o ports/115217 Ada devel/florist socket program doesn't compile due t f ports/115304 multimedia/gpac-mp4box cannot import files larger than f ports/115336 port multimedia/avifile on FreeBSD 7.0 not BROKEN with f ports/115401 Update port: graphics/ipe Version 6.0pre28 of Ipe that f ports/115627 www/Lynx (-ssl) does not correctly test for OpenSSL o ports/115734 x11-wm/compiz : bad dependencies f ports/115875 mail/libetpan 0.52 fails on 6.2-stable i386 when built o ports/115926 graphics/skencil 0.6.17_1 crashes with python25-2.5.1 f ports/116037 multimedia/dvd-slideshow has been updated from 0.7.5 t f ports/116042 net/tsclient have disabled panel applet f ports/116058 Update: x11-themes/gtk-qt-engine to version 0.8 f ports/116104 [UPDATE] net/frickin update to beta2 f ports/116105 [UPDATE] comms/hylafax to 4.4.1 f ports/116120 [patch] x11-toolkits/gtkdatabox2: update to 0.7.0.1 o ports/116140 games/orbital_eunuchs_sniper is DOA f ports/116142 devel/cvsweb3 coloured side-by-side stopped working wh f ports/116196 sysutils/fusefs-kmod requires also userland sources f ports/116226 x11-wm/compiz - emerald and compiz-fusion and scim are o ports/116274 New port: lang/nbc NBC is a programming language for t f ports/116280 ports deskutils/wyrd remind.ml stops wyrd from compili o ports/116323 net-im/jabber-users-agent bugs f ports/116327 games/prboom fails to compile on amd/i386 FreeBSD7.0-C f ports/116333 math/isabelle fails to build with SML/NJ; requires bas f ports/116340 [patch] www/mod_fcgid : The operation for set owner is f ports/116372 new port: math/scilab-toolbox-sivp o ports/116373 maintainer update: math/scilab-toolbox-swt f ports/116414 [PATCH] www/mod_security2: update to 2.1.3 f ports/116422 [patch] devel/kdbg: fix to allow a core file to be ope f ports/116446 [new port] multimedia/flv2mpeg4: Fast and less lossy F f ports/116454 net/unison: should depend on X11-enabled ocaml when bu f ports/116485 games/vultures-eye gets a permission denied after typi o ports/116492 New port: emulators/Win4BSD_wrapper Installer for Win4 f ports/116495 [patch] Adding a banch of semi-official patches to x11 f ports/116522 [update] x11/slim default config have paths containing f ports/116567 [PATCH] net/vnc: [SUMMARIZE CHANGES] o ports/116596 [maintainer update] bump irc/epic5 -> 0.3.5 o ports/116598 [MAINTAINER] update games/crafty-open-enormous: confli 61 problems total. From owner-freebsd-ports@FreeBSD.ORG Mon Sep 24 11:09:22 2007 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1E09B16A420 for ; Mon, 24 Sep 2007 11:09:22 +0000 (UTC) (envelope-from erwin@freebsd.org) Received: from pointyhat.freebsd.org (pointyhat.freebsd.org [IPv6:2001:4f8:fff6::2b]) by mx1.freebsd.org (Postfix) with ESMTP id D73B013C4C2 for ; Mon, 24 Sep 2007 11:09:21 +0000 (UTC) (envelope-from erwin@freebsd.org) Received: from pointyhat.freebsd.org (localhost [127.0.0.1]) by pointyhat.freebsd.org (8.14.1/8.14.1) with ESMTP id l8OB9K5o033622 for ; Mon, 24 Sep 2007 11:09:20 GMT (envelope-from erwin@pointyhat.freebsd.org) Received: (from erwin@localhost) by pointyhat.freebsd.org (8.14.1/8.14.1/Submit) id l8OB9KOx033620 for ports@FreeBSD.org; Mon, 24 Sep 2007 11:09:20 GMT (envelope-from erwin) Date: Mon, 24 Sep 2007 11:09:20 GMT From: Erwin Lansing Message-Id: <200709241109.l8OB9KOx033620@pointyhat.freebsd.org> To: ports@FreeBSD.org Cc: Subject: INDEX now builds successfully on 5.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2007 11:09:22 -0000 From owner-freebsd-ports@FreeBSD.ORG Mon Sep 24 13:42:27 2007 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1F88B16A419 for ; Mon, 24 Sep 2007 13:42:27 +0000 (UTC) (envelope-from Helko.Glathe@freenet.de) Received: from mout2.freenet.de (mout2.freenet.de [IPv6:2001:748:100:40::2:4]) by mx1.freebsd.org (Postfix) with ESMTP id D1B3E13C45D for ; Mon, 24 Sep 2007 13:42:26 +0000 (UTC) (envelope-from Helko.Glathe@freenet.de) Received: from [195.4.92.16] (helo=mx6.freenet.de) by mout2.freenet.de with esmtpa (Exim 4.68-dev) (envelope-from ) id 1IZoCg-0006jF-1V for ports@freebsd.org; Mon, 24 Sep 2007 15:42:26 +0200 Received: from e178240200.adsl.alicedsl.de ([85.178.240.200]:62411 helo=freebsd-tws29) by mx6.freenet.de with esmtpsa (ID helko.glathe@freenet.de) (TLSv1:AES256-SHA:256) (port 587) (Exim 4.68-dev #12) id 1IZoCf-0002md-VX for ports@freebsd.org; Mon, 24 Sep 2007 15:42:26 +0200 From: Helko Glathe Organization: privat To: ports@freebsd.org Date: Mon, 24 Sep 2007 15:37:09 +0200 User-Agent: KMail/1.9.7 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200709241537.10585.Helko.Glathe@freenet.de> Cc: Subject: FreeBSD Port: google-earth-4.1.7076.4458 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Helko.Glathe@freenet.de List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2007 13:42:27 -0000 > Does dmesg show anything suspicious while running application ? No. > Also, just in case, try the patch below and report whether it helps. I've applied the patch. The result was: [root@FreeBSD_TWS29 /usr/src]# patch < i915_dma.diff Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |--- a/sys/dev/drm/i915_dma.c |+++ b/sys/dev/drm/i915_dma.c -------------------------- File to patch: /usr/src/sys/dev/drm/i915_dma.c Patching file /usr/src/sys/dev/drm/i915_dma.c using Plan A... Hunk #1 failed at 366. Hunk #2 failed at 394. Hunk #3 failed at 594. Hunk #4 failed at 610. Hunk #5 failed at 640. Hunk #6 failed at 651. 6 out of 6 hunks failed--saving rejects to /usr/src/sys/dev/drm/i915_dma.c.rej done Regards, Helko From owner-freebsd-ports@FreeBSD.ORG Mon Sep 24 13:55:14 2007 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D45116A420 for ; Mon, 24 Sep 2007 13:55:14 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from relay02.kiev.sovam.com (relay02.kiev.sovam.com [62.64.120.197]) by mx1.freebsd.org (Postfix) with ESMTP id CADDE13C45A for ; Mon, 24 Sep 2007 13:55:13 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from [212.82.216.226] (helo=deviant.kiev.zoral.com.ua) by relay02.kiev.sovam.com with esmtps (TLSv1:AES256-SHA:256) (Exim 4.67) (envelope-from ) id 1IZoP1-000G7j-Rt for ports@freebsd.org; Mon, 24 Sep 2007 16:55:12 +0300 Received: from deviant.kiev.zoral.com.ua (kostik@localhost [127.0.0.1]) by deviant.kiev.zoral.com.ua (8.14.1/8.14.1) with ESMTP id l8ODt7YI012900; Mon, 24 Sep 2007 16:55:07 +0300 (EEST) (envelope-from kostikbel@gmail.com) Received: (from kostik@localhost) by deviant.kiev.zoral.com.ua (8.14.1/8.14.1/Submit) id l8ODt7cE012899; Mon, 24 Sep 2007 16:55:07 +0300 (EEST) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: deviant.kiev.zoral.com.ua: kostik set sender to kostikbel@gmail.com using -f Date: Mon, 24 Sep 2007 16:55:07 +0300 From: Kostik Belousov To: Helko Glathe Message-ID: <20070924135507.GG87366@deviant.kiev.zoral.com.ua> References: <200709241537.10585.Helko.Glathe@freenet.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="5uO961YFyoDlzFnP" Content-Disposition: inline In-Reply-To: <200709241537.10585.Helko.Glathe@freenet.de> User-Agent: Mutt/1.4.2.3i X-Scanner-Signature: d3dfc5a0b247ea81d48b6a940fe6235f X-DrWeb-checked: yes X-SpamTest-Envelope-From: kostikbel@gmail.com X-SpamTest-Group-ID: 00000000 X-SpamTest-Info: Profiles 1514 [September 24 2007] X-SpamTest-Info: helo_type=3 X-SpamTest-Info: {received from trusted relay: not dialup} X-SpamTest-Method: none X-SpamTest-Method: Local Lists X-SpamTest-Rate: 0 X-SpamTest-Status: Not detected X-SpamTest-Status-Extended: not_detected X-SpamTest-Version: SMTP-Filter Version 3.0.0 [0255], KAS30/Release Cc: ports@freebsd.org Subject: Re: FreeBSD Port: google-earth-4.1.7076.4458 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2007 13:55:14 -0000 --5uO961YFyoDlzFnP Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Sep 24, 2007 at 03:37:09PM +0200, Helko Glathe wrote: > > Does dmesg show anything suspicious while running application ? >=20 > No. >=20 > > Also, just in case, try the patch below and report whether it helps. >=20 > I've applied the patch. > The result was: >=20 > [root@FreeBSD_TWS29 /usr/src]# patch < i915_dma.diff > Hmm... Looks like a unified diff to me... > The text leading up to this was: > -------------------------- > |--- a/sys/dev/drm/i915_dma.c > |+++ b/sys/dev/drm/i915_dma.c > -------------------------- > File to patch: /usr/src/sys/dev/drm/i915_dma.c > Patching file /usr/src/sys/dev/drm/i915_dma.c using Plan A... > Hunk #1 failed at 366. > Hunk #2 failed at 394. > Hunk #3 failed at 594. > Hunk #4 failed at 610. > Hunk #5 failed at 640. > Hunk #6 failed at 651. > 6 out of 6 hunks failed--saving rejects to /usr/src/sys/dev/drm/i915_dma.= c.rej > done It seems that the patch was damaged by some MUA. Try http://people.freebsd.org/~kib/misc/i915_dma.patch --5uO961YFyoDlzFnP Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQFG98G6C3+MBN1Mb4gRAhjjAKDpe04ZzEH4NfFJMkW6qJc6/hPIjwCgi+2t Jw+1zaF83qIjWjwepim7cA0= =KMsB -----END PGP SIGNATURE----- --5uO961YFyoDlzFnP-- From owner-freebsd-ports@FreeBSD.ORG Mon Sep 24 14:39:09 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0549016A41A for ; Mon, 24 Sep 2007 14:39:09 +0000 (UTC) (envelope-from ml@netfence.it) Received: from parrot.aev.net (parrot.aev.net [212.31.247.179]) by mx1.freebsd.org (Postfix) with ESMTP id C9F1A13C44B for ; Mon, 24 Sep 2007 14:39:07 +0000 (UTC) (envelope-from ml@netfence.it) Received: from soth.ventu ([151.77.249.18]) (authenticated bits=128) by parrot.aev.net (8.14.1/8.13.8) with ESMTP id l8OEewqO052535 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL) for ; Mon, 24 Sep 2007 16:41:04 +0200 (CEST) (envelope-from ml@netfence.it) Received: from alamar.ventu (alamar.ventu [10.1.2.18]) by soth.ventu (8.14.1/8.13.8) with ESMTP id l8OEeNMQ019781; Mon, 24 Sep 2007 16:40:23 +0200 (CEST) (envelope-from ml@netfence.it) Message-ID: <46F7CBFE.9080304@netfence.it> Date: Mon, 24 Sep 2007 16:38:54 +0200 From: Andrea Venturoli User-Agent: Thunderbird 2.0.0.6 (X11/20070806) MIME-Version: 1.0 To: Matthew Seaman References: <46F52222.8040503@netfence.it> <46F5324A.3030509@infracaninophile.co.uk> In-Reply-To: <46F5324A.3030509@infracaninophile.co.uk> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.63 on 212.31.247.179 Cc: freebsd-ports@freebsd.org Subject: Re: sendmal + cyrus imap + ckuser X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2007 14:39:09 -0000 Matthew Seaman ha scritto: > This isn't really a question for freebsd-ports, but... Sorry! I thought that, since ckuser is not part of sendmail or cyrusimap, but is in the sendmail port, this would possibly be a good place. Where should I post instead? > The way to do this is to configure the cyrus smmapd to listen on > a network port -- something like this in /usr/local/etc/cyrus.conf > > # Sendmail socket map daemon > smmapd cmd="smmapd" listen="192.168.1.1:smmap" prefork=1 > smmapdunix cmd="smmapd" listen="/var/imap/socket/smmapd" prefork=1 This I've already done. > Then you can tell your 2ary sendmails to use that to check for > mailbox existence and quota availability -- in /etc/mail/`hostname`.mc: > > FEATURE(`ckuser_cyrus', `inet:smmap@your.mail.server')dnl Did this too; first time I restarted sendmail, I read: sm-mta: NOQUEUE: SYSERR(root): No local mailer defined sm-mta: NOQUEUE: SYSERR(root): QueueDirectory (Q) option must be set I checked everything again and restarted; now I get no errors, but the above line does nothing; everything still works as before with incoming mail accepted and forwarded to the primary MX, then bounced back. > Oh, and I'd be wary of exposing the smmapd port on the internet: > either arrange for your 1ary and 2ary mailers to have a private > back-end network they can communicate on This is my case. > Making your 2ary machines speak LMTP to cyrus on your mail box server > involves very similar tweaks. You'll need something like this in your > .mc file: > > define(`confLOCAL_MAILER', `cyrusv2')dnl > define(`CYRUSV2_MAILER_ARGS', `TCP your.mail.server lmtp')dnl I'll try this, if I can't get the above to work. bye & Thanks av. From owner-freebsd-ports@FreeBSD.ORG Mon Sep 24 14:54:27 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EA3E816A473 for ; Mon, 24 Sep 2007 14:54:27 +0000 (UTC) (envelope-from aryeh.friedman@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.179]) by mx1.freebsd.org (Postfix) with ESMTP id B0C4913C4AC for ; Mon, 24 Sep 2007 14:54:27 +0000 (UTC) (envelope-from aryeh.friedman@gmail.com) Received: by py-out-1112.google.com with SMTP id u77so3119636pyb for ; Mon, 24 Sep 2007 07:54:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=Q6XLZfOZX70fl7rGllLQCCJYVfoSfdt+Zy9DCBt65Fc=; b=COnMICGwPTqZgAfuNVYEuykuJORD0GkUlIHo6H8jWFXjCzI3q9id9tCyE/Esu6O7kP16X6SZDBgfOa71GKUKbGjY9KSQiyEBDuGMTo3pfdHvJnZDfK1jVl8AcLAJRudLsHy7z8S4ApE86fsaIG7zy5ZWFBboMuH50yud9V+Abmg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=LT56PEpui7d3RFBav18sfUYeY9ZTP9WCRtK1kHeo7S/7JQLcpGQLSqKLMSG+IG1nnHkB6MkofukLKrBBee1xF+ftutKyPIxr5weKdRG19FlwkiOmbe3LSlEzXexyxUJGW+wxm38qVXw8rNB39n+RheFFmpg/732NJntJID07RYI= Received: by 10.64.153.4 with SMTP id a4mr4190601qbe.1190645665495; Mon, 24 Sep 2007 07:54:25 -0700 (PDT) Received: by 10.65.105.2 with HTTP; Mon, 24 Sep 2007 07:54:25 -0700 (PDT) Message-ID: Date: Mon, 24 Sep 2007 14:54:25 +0000 From: "Aryeh Friedman" To: "David Southwell" , freebsd-ports@freebsd.org In-Reply-To: <200709240202.07290.david@vizion2000.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <46F711AD.3030505@sourceview.com> <200709240202.07290.david@vizion2000.net> Cc: Subject: Re: Can the following license be used for ported programs? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2007 14:54:28 -0000 I never claimed to be original... if you want to see the innovator/largest code base in the community look at jahia.com... the only claim I made was I wanted to have my stuff included in the ports collection and wanted to know if the legal aspects of my business model where sufficient... one of the first replies answered that... all other discussion was on the philosophical merits of SIW and I should of put a disclaimer on that I was no longer speaking (purely) as the owner of FloSoft Systems but as the VP of the Miai Foundation... specifically any defense arguments I made for the business model was as a member of the SIW community and not as a owner of a company that practices it. On 9/24/07, David Southwell wrote: > On Sunday 23 September 2007 18:41:43 Aryeh Friedman wrote: > > On 9/24/07, Michael Dean wrote: > > > many people feel much differently, why not just a pure proprietary > > > license then, rather than proliferating Yet Another Silly License which > > > is not tempered by sound legal analysis. > > > > Not to be insulting but I don't think you read my 1st blog entry as I > > suggested (at least the first paragraph... specifically where I say > > both open and closed source are equally the wrong model). Now onto > > your actual points: > > > > The license has received legal review by an IP attorney. > > > > Again not to be insulting but I think most FOSS people slept through > > econ 101, especially the section on there is no such thing as a > > limitless resource. Even though you might consider this to be a > > conflict of interest; I have a family member who is a prof. of econ at > > UC Santa Cruz and has reviewed the economic aspects of both my > > specific work and the general concept of SIW (see second blog entry > > for definition). His general conclusion is while the model is untried > > on a large scale and there are some more minor things we can improve > > on (subject of debate within the SIW community) that we fix many of > > the economic flaws with both open and closed source models. He is > > currently in the process of writing a book on the matter and said he > > would have a full review after rewriting ch8 (which is on the economic > > issues raised by both models) in a few weeks. > > _______________________________________________ > I have read both the blog and looked at the "product" references. Frankly the > intellectual and grammatical quality of the blog and the comparatively > trivial nature of the "products" referred to makes me feel that the original > contribution does not deserve the level of attention that its author seems to > crave. > > Might it not be better to spend more time on creating truly original > softaware than drawing attention to oneself by purporting to reinvent the > wheel of software licensing? > > David > > David > > > From owner-freebsd-ports@FreeBSD.ORG Mon Sep 24 15:11:05 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8966516A41A; Mon, 24 Sep 2007 15:11:05 +0000 (UTC) (envelope-from vivek@khera.org) Received: from yertle.kcilink.com (thingy.kcilink.com [74.92.149.59]) by mx1.freebsd.org (Postfix) with ESMTP id 767FB13C457; Mon, 24 Sep 2007 15:11:05 +0000 (UTC) (envelope-from vivek@khera.org) Received: from [192.168.7.121] (host-121.int.kcilink.com [192.168.7.121]) by yertle.kcilink.com (Postfix) with ESMTP id 024EDC943A; Mon, 24 Sep 2007 11:11:03 -0400 (EDT) Mime-Version: 1.0 (Apple Message framework v752.3) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <63204462-6FCE-41AA-89C9-A16707A6A971@khera.org> Content-Transfer-Encoding: 7bit From: Vivek Khera Date: Mon, 24 Sep 2007 11:11:02 -0400 To: bug-followup@FreeBSD.org X-Mailer: Apple Mail (2.752.3) Cc: freebsd ports Subject: Re: ports/116050: [NEW PORT] devel/p5-Gearman-Server: Gearman server daemon X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2007 15:11:05 -0000 Hi... Sorry I've been out of the loop for a while. Thanks for submitting this new port, but I object to having a new port created and assigned to me as the MAINTAINER. It just seems wrong to do that. Furthermore, since this port replaces devel/p5-gearmand, it should have either been repo-copied, or moved, or some such, and appropriate entries in UPDATING created so that the various ports tools can follow the move. From owner-freebsd-ports@FreeBSD.ORG Mon Sep 24 15:42:16 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 69F3C16A417 for ; Mon, 24 Sep 2007 15:42:16 +0000 (UTC) (envelope-from david@vizion2000.net) Received: from dns1.vizion2000.net (77-99-36-42.cable.ubr04.chap.blueyonder.co.uk [77.99.36.42]) by mx1.freebsd.org (Postfix) with ESMTP id 0981F13C48D for ; Mon, 24 Sep 2007 15:42:16 +0000 (UTC) (envelope-from david@vizion2000.net) Received: by dns1.vizion2000.net (Postfix, from userid 1007) id 9F2991CC48; Mon, 24 Sep 2007 08:57:09 -0700 (PDT) From: David Southwell Organization: Voice and Vision To: freebsd-ports@freebsd.org Date: Mon, 24 Sep 2007 08:57:09 -0700 User-Agent: KMail/1.9.7 References: <200709240202.07290.david@vizion2000.net> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200709240857.09417.david@vizion2000.net> Cc: Aryeh Friedman Subject: Re: Can the following license be used for ported programs? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2007 15:42:16 -0000 On Monday 24 September 2007 07:54:25 Aryeh Friedman wrote: > I never claimed to be original... if you want to see the > innovator/largest code base in the community look at jahia.com... the > only claim I made was I wanted to have my stuff included in the ports > collection and wanted to know if the legal aspects of my business > model where sufficient... one of the first replies answered that... > all other discussion was on the philosophical merits of SIW and I > should of put a disclaimer on that I was no longer speaking (purely) > as the owner of FloSoft Systems but as the VP of the Miai > Foundation... specifically any defense arguments I made for the > business model was as a member of the SIW community and not as a owner > of a company that practices it. > > On 9/24/07, David Southwell wrote: > > On Sunday 23 September 2007 18:41:43 Aryeh Friedman wrote: > > > On 9/24/07, Michael Dean wrote: > > > > many people feel much differently, why not just a pure proprietary > > > > license then, rather than proliferating Yet Another Silly License > > > > which is not tempered by sound legal analysis. > > > > > > Not to be insulting but I don't think you read my 1st blog entry as I > > > suggested (at least the first paragraph... specifically where I say > > > both open and closed source are equally the wrong model). Now onto > > > your actual points: > > > > > > The license has received legal review by an IP attorney. > > > > > > Again not to be insulting but I think most FOSS people slept through > > > econ 101, especially the section on there is no such thing as a > > > limitless resource. Even though you might consider this to be a > > > conflict of interest; I have a family member who is a prof. of econ at > > > UC Santa Cruz and has reviewed the economic aspects of both my > > > specific work and the general concept of SIW (see second blog entry > > > for definition). His general conclusion is while the model is untried > > > on a large scale and there are some more minor things we can improve > > > on (subject of debate within the SIW community) that we fix many of > > > the economic flaws with both open and closed source models. He is > > > currently in the process of writing a book on the matter and said he > > > would have a full review after rewriting ch8 (which is on the economic > > > issues raised by both models) in a few weeks. > > > _______________________________________________ > > > > I have read both the blog and looked at the "product" references. Frankly > > the intellectual and grammatical quality of the blog and the > > comparatively trivial nature of the "products" referred to makes me feel > > that the original contribution does not deserve the level of attention > > that its author seems to crave. > > > > Might it not be better to spend more time on creating truly original > > softaware than drawing attention to oneself by purporting to reinvent the > > wheel of software licensing? > > > > David > > > > David > > _______________________________________________ Well I must say I am not impressed.. the business model, the license concept and the arguments in it support appears half-baked nonsense. All models that have tried to keep a foot in both camps have finished up with both feet in the grave!! Also it would inspire more confidence if you began to follow the model set by generations of networkers on mail lists and elsewhere. Please do not mimic newbies by top posting___ it is an extremely irritating foible. best of luck david From owner-freebsd-ports@FreeBSD.ORG Mon Sep 24 15:58:32 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EF56D16A419 for ; Mon, 24 Sep 2007 15:58:32 +0000 (UTC) (envelope-from glewis@eyesbeyond.com) Received: from misty.eyesbeyond.com (gerbercreations.com [71.39.140.16]) by mx1.freebsd.org (Postfix) with ESMTP id D709A13C4A8 for ; Mon, 24 Sep 2007 15:58:32 +0000 (UTC) (envelope-from glewis@eyesbeyond.com) Received: from misty.eyesbeyond.com (localhost.eyesbeyond.com [127.0.0.1]) by misty.eyesbeyond.com (8.13.1/8.13.3) with ESMTP id l8OFwVLd090567; Mon, 24 Sep 2007 08:58:32 -0700 (PDT) (envelope-from glewis@eyesbeyond.com) Received: (from glewis@localhost) by misty.eyesbeyond.com (8.13.1/8.13.3/Submit) id l8OFwVXD090566; Mon, 24 Sep 2007 08:58:31 -0700 (PDT) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Mon, 24 Sep 2007 08:58:31 -0700 From: Greg Lewis To: Mario Sergio Fujikawa Ferreira Message-ID: <20070924155831.GA90505@misty.eyesbeyond.com> References: <20070924032022.10953.qmail@exxodus.fedaykin.here> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070924032022.10953.qmail@exxodus.fedaykin.here> User-Agent: Mutt/1.4.2.2i Cc: freebsd-ports@freebsd.org Subject: Re: FreeBSD-current cannot build java/jdk15 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2007 15:58:33 -0000 On Mon, Sep 24, 2007 at 12:19:59AM -0300, Mario Sergio Fujikawa Ferreira wrote: > I am running -CURRENT as of yesterday (23 of september of > 2007) and I am unable to build java/jdk15. > > FreeBSD exxodus.fedaykin.here 7.0-CURRENT FreeBSD 7.0-CURRENT #7: Fri Sep 21 07:35:14 BRT 2007 lioux@exxodus:/usr/obj/usr/src/sys/LIOUX i386 > > I am running all latest ports as of today. My system > information is attached. Let me know if there is anything else I can do. > > My broken build can be found at: > > http://people.freebsd.org/~lioux/jdk15.tar.lzma > MD5 (jdk15.tar.lzma) = 6a5f7e16795f89e20f415b8748ee2c0b > > The build log can be found at: > > http://people.freebsd.org/~lioux/jdk15.log Looks like the gcc 4.2 optimiser bug. Try setting -fno-tree-vrp in your CFLAGS. Either that or hack the HotSpot compile to use -O0 rather than -O3. -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology FreeBSD : glewis@FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Mon Sep 24 19:21:13 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 14BFA16A41B for ; Mon, 24 Sep 2007 19:21:13 +0000 (UTC) (envelope-from pj@smo.de) Received: from ilk.de (mx-out13.ilk.de [194.121.104.13]) by mx1.freebsd.org (Postfix) with ESMTP id 8FF3913C45D for ; Mon, 24 Sep 2007 19:21:12 +0000 (UTC) (envelope-from pj@smo.de) Received: from bologna.intern.smo.de (pool8.ka.ilk.net [212.86.194.8]) by ilk.de (8.13.4/8.13.4/ilk-relay) with ESMTP id l8OJLA5B025843; Mon, 24 Sep 2007 21:21:10 +0200 Received: from [192.168.153.208] (herdubreid.intern.smo.de [192.168.153.208]) by bologna.intern.smo.de (8.13.8+Sun/8.13.8) with ESMTP id l8OJHU13023154; Mon, 24 Sep 2007 21:17:31 +0200 (CEST) Message-ID: <46F80DF2.6010407@smo.de> Date: Mon, 24 Sep 2007 21:20:18 +0200 From: Philipp Ost User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.13) Gecko/20070922 X-Accept-Language: de, en-us, en MIME-Version: 1.0 To: Aryeh Friedman References: <46F711AD.3030505@sourceview.com> <200709240202.07290.david@vizion2000.net> In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: Can the following license be used for ported programs? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2007 19:21:13 -0000 Aryeh Friedman wrote: > [...] the > only claim I made was I wanted to have my stuff included in the ports > collection and wanted to know if the legal aspects of my business > model where sufficient... one of the first replies answered that... > [...] There are other programs in the ports with much stricter licenses (Java for example). I don't see a problem here; you only have to find someone who ports and maintains your program ;-) Just my 2 cents. Philipp From owner-freebsd-ports@FreeBSD.ORG Mon Sep 24 20:43:14 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D589216A41B for ; Mon, 24 Sep 2007 20:43:14 +0000 (UTC) (envelope-from aryeh.friedman@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.176]) by mx1.freebsd.org (Postfix) with ESMTP id 9371E13C4B0 for ; Mon, 24 Sep 2007 20:43:14 +0000 (UTC) (envelope-from aryeh.friedman@gmail.com) Received: by py-out-1112.google.com with SMTP id u77so3298536pyb for ; Mon, 24 Sep 2007 13:43:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=74ZSShKhETC/PpIFnFT1KEGO+Y9AtNp4r6iHt8DvOFE=; b=pW0MTtyFzz5w5WbBXlyQhsfhE3X7ffTsN3R4g9EJ2/DqcfA6mLdLGw0FH3HeQAxdO4xX+z3GyypcP/VqU4PX4DF7eEfNvKQ1CPIVBM65tis4yvMlkE0fe8X9Dv+r07PpklwWPUgNaJ3VF9PXYdE1YGUbtOrb01dXp68sucNIEss= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=s2k4pEuw4VjAfB/V7Bf9bw9yxXzmLhFXXrMIxc81a68UCtYveSzb76b4zuM9lSConrT5suVYbs2/oRWvO/hxLl7jOCzHI0ZOPNa+FWOim7HQQdc3xBnuFdLTV8YiTqXTK1ZdgNM5dTMOSOmfzeOx4Kf/D84UsuKlpAw5k97EH50= Received: by 10.65.158.9 with SMTP id k9mr9840918qbo.1190666592280; Mon, 24 Sep 2007 13:43:12 -0700 (PDT) Received: by 10.65.105.2 with HTTP; Mon, 24 Sep 2007 13:43:12 -0700 (PDT) Message-ID: Date: Mon, 24 Sep 2007 20:43:12 +0000 From: "Aryeh Friedman" To: Mel , freebsd-ports@freebsd.org In-Reply-To: <200709242235.27017.fbsd.questions@rachie.is-a-geek.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200709242235.27017.fbsd.questions@rachie.is-a-geek.net> Cc: Subject: Re: nvidia-driver rebooting machine on X startup X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2007 20:43:14 -0000 On 9/24/07, Mel wrote: > On Monday 24 September 2007 21:14:03 falz wrote: > > I came across this thread on freebsd-questions after some searching on > > google. I have the exact same issue as others here- if xorg is started > > with 'nvidia' as the driver, instant reboot. However, my machine is a > > 100% fresh install with things compiled from source this weekend. > > However, I did have to install some binary vncserver packages, but > > they have since been removed. > > > > I did the 'xorg' meta port which got me the current xorg-7.3_1. The > > machine I did the install on was running Debian Unstable for about a > > year without issue with the same hardware (two cards for 3 monitors): > > > > Sep 24 13:41:24 falz kernel: nvidia0: mem > > 0xdd000000-0xddffffff,0xb0000000-0xbfffffff,0xde000000-0xdeffffff irq > > 16 at device 0.0 on pci1 > > Sep 24 13:41:24 falz kernel: nvidia0: [GIANT-LOCKED] > > Sep 24 13:41:24 falz kernel: nvidia1: mem > > 0xdb000000-0xdbffffff,0xc0000000-0xcfffffff irq 18 at device 2.0 on > > pci3 > > Sep 24 13:41:24 falz kernel: nvidia1: [GIANT-LOCKED] > > > > I forgot, but was there one person in the thread that has only 1 monitor > attached to 1 card? Cause you're the 3rd I see with multiple monitor issues. > Ironically, we have one system with CRT + TV-OUT through one card, with no > issues whatsoever (500GB HDD, DVDRW, rock on!). However I turned off Xinerama > support from the get go and use TwinView. > > With all the Xorg 7.3 issues, I have not gone that road nor plan to anytime > soon. > > I also think we've had all the different cards by now, a quatro, GeForce 5k, > 7k, 6k... > > Maybe someone can build a WITNESS/DDB kernel, since dumping seems to be > failing? I was the single monitor issue, on the single monitor it does not reboot unless you set probe_all_gpu's *BUT* it does fail to reconize all nVidia cards (so does nv)... as far I can tell neither drive understands 64bit io space and PCI/AGP... the clue is the addr conflicts that everyone seems to get... btw I think it might of fried my 8k but at least gives me vesa with no werid video probs on the 5200 GT I have now (1024x768 ;-()). From owner-freebsd-ports@FreeBSD.ORG Mon Sep 24 21:26:05 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AB24C16A4EF for ; Mon, 24 Sep 2007 21:26:05 +0000 (UTC) (envelope-from mah@jump-ing.de) Received: from mail.ud03.udmedia.de (ud03.udmedia.de [194.117.254.43]) by mx1.freebsd.org (Postfix) with ESMTP id 4BBE813C480 for ; Mon, 24 Sep 2007 21:26:04 +0000 (UTC) (envelope-from mah@jump-ing.de) Received: (qmail 20163 invoked from network); 24 Sep 2007 23:26:05 +0200 Received: from unknown (HELO ?10.0.0.50?) (ud03?291p1@91.89.219.223) by mail.ud03.udmedia.de with ESMTPA; 24 Sep 2007 23:26:05 +0200 In-Reply-To: <20070921162208.GA83826@hades.panopticon> References: <20070921162208.GA83826@hades.panopticon> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Markus Hitter Date: Mon, 24 Sep 2007 23:25:55 +0200 To: Dmitry Marakasov X-Mailer: Apple Mail (2.752.2) Cc: freebsd-ports@freebsd.org Subject: Re: porting software using glibc's getline() X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2007 21:26:05 -0000 Am 21.09.2007 um 18:22 schrieb Dmitry Marakasov: > I have a problem porting a piece of software that use > getline(char**, int*, FILE*). This function is only present in > glibc so I wonder what do I do in this case? Ideally, you'd replace getline()'s usage with something similar, like fgets(3). If this isn't reasonable, get inspired by glibc's sources and write your own. Another inspiration might come from here: HTH, Markus - - - - - - - - - - - - - - - - - - - Dipl. Ing. Markus Hitter http://www.jump-ing.de/ From owner-freebsd-ports@FreeBSD.ORG Mon Sep 24 22:48:13 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E59F716A41A; Mon, 24 Sep 2007 22:48:13 +0000 (UTC) (envelope-from edwin@mavetju.org) Received: from mail5out.barnet.com.au (mail5.barnet.com.au [202.83.178.78]) by mx1.freebsd.org (Postfix) with ESMTP id A4D6713C4A7; Mon, 24 Sep 2007 22:48:13 +0000 (UTC) (envelope-from edwin@mavetju.org) Received: by mail5out.barnet.com.au (Postfix, from userid 1001) id 190902219D36; Tue, 25 Sep 2007 08:48:12 +1000 (EST) X-Viruscan-Id: <46F83EAB000012C1C39ED3@BarNet> Received: from mail5auth.barnet.com.au (mail5.barnet.com.au [202.83.178.78]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mail5.barnet.com.au (Postfix) with ESMTP id C5F4D21B1101; Tue, 25 Sep 2007 08:48:11 +1000 (EST) Received: from k7.mavetju (k7.mavetju.org [10.251.1.18]) by mail5auth.barnet.com.au (Postfix) with ESMTP id 7320D2219D03; Tue, 25 Sep 2007 08:48:11 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 9D264DC; Tue, 25 Sep 2007 08:48:13 +1000 (EST) Date: Tue, 25 Sep 2007 08:48:13 +1000 From: Edwin Groothuis To: Vivek Khera Message-ID: <20070924224813.GM1390@k7.mavetju> References: <63204462-6FCE-41AA-89C9-A16707A6A971@khera.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <63204462-6FCE-41AA-89C9-A16707A6A971@khera.org> User-Agent: Mutt/1.4.2.3i Cc: freebsd ports , bug-followup@FreeBSD.org Subject: Re: ports/116050: [NEW PORT] devel/p5-Gearman-Server: Gearman server daemon X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2007 22:48:14 -0000 On Mon, Sep 24, 2007 at 11:11:02AM -0400, Vivek Khera wrote: > Thanks for submitting this new port, but I object to having a new > port created and assigned to me as the MAINTAINER. It just seems > wrong to do that. You can't just drop your kitten on our doorstep and expect us to take care of it. If you want us to help you with your kitten you should take responsibility for it. Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://www.mavetju.org/weblog/ From owner-freebsd-ports@FreeBSD.ORG Tue Sep 25 07:16:05 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 732C616A417 for ; Tue, 25 Sep 2007 07:16:05 +0000 (UTC) (envelope-from freebsd-ports@dino.sk) Received: from loki.netlab.sk (loki.netlab.sk [84.245.65.11]) by mx1.freebsd.org (Postfix) with ESMTP id EDC6013C44B for ; Tue, 25 Sep 2007 07:16:04 +0000 (UTC) (envelope-from freebsd-ports@dino.sk) Received: from fox.dino.sk (home.dino.sk [84.245.95.252]) (AUTH: PLAIN milan, TLS: TLSv1/SSLv3,256bits,AES256-SHA) by loki.netlab.sk with esmtp; Tue, 25 Sep 2007 09:04:47 +0200 id 0002E023.46F8B30F.00011DB2 From: Milan Obuch To: freebsd-ports@freebsd.org Date: Tue, 25 Sep 2007 09:05:37 +0200 User-Agent: KMail/1.9.6 References: <20070917233555.GA74880@hades.panopticon> In-Reply-To: <20070917233555.GA74880@hades.panopticon> MIME-Version: 1.0 Content-Disposition: inline X-Length: 1665 X-UID: 260 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit Message-Id: <200709250905.38470.freebsd-ports@dino.sk> Cc: Dmitry Marakasov Subject: Re: Gnash 0.8.1 submitted X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2007 07:16:05 -0000 On Tuesday 18 September 2007 01:35:55 Dmitry Marakasov wrote: > Hi! > > First of all, sorry for long delay with Gnash update. There were > some problems with 0.8.0 (segfaults) and it took me some time to > polish the new port of 0.8.1. Anyway, here's the PR: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=116406 > > And here is an overview of current Gnash functionality by me :) > http://www.amdmi3.ru/gnash/ > (also should be useful as explanation of port options, i.e. > renderers and media handlers, with some benchmarks and caveats > explained). > > Also, if you use KDE and would like Gnash plugin for Konquerror, > please contact me. I have no KDE installed, so I'll need some help, > but it'll be easy and quick. > > Thank you for your patience, and enjoy free Flash player. > It supports YouTube, yes :) I was able to build gnash with konqueror plugin after applying following patch (warning, some linewrap is there): --- Makefile 2007-09-22 00:12:11.000000000 +0200 +++ Makefile.0 2007-09-23 10:11:23.000000000 +0200 @@ -55,9 +55,8 @@ FFMPEG "Media handler: ffmpeg (+SDL sound output)" on \ GSTREAMER "Media handler: GStreamer" off \ MAD "Media handler: MAD (+SDL sound output)" off \ - DEBUGLOG "Leave logfile in current directory on every run" off - -# KDE "GUI: KDE (required for Konqueror plugin)" off \ + DEBUGLOG "Leave logfile in current directory on every run" off \ + KDE "GUI: KDE (required for Konqueror plugin)" off \ .include @@ -69,12 +68,12 @@ CONFIGURE_ARGS+= --disable-nsapi .endif -#.if defined(WITH_KDE) && !defined(WITHOUT_PLUGIN) -#PLIST_SUB+= KONQPLUGIN="" -#.else -#PLIST_SUB+= KONQPLUGIN="@comment " +.if defined(WITH_KDE) && !defined(WITHOUT_PLUGIN) +PLIST_SUB+= KONQPLUGIN="" +.else +PLIST_SUB+= KONQPLUGIN="@comment " CONFIGURE_ARGS+= --disable-kparts -#.endif +.endif # Cygnal option processing .if defined(WITH_CYGNAL) @@ -107,12 +106,12 @@ PLIST_SUB+= GTK="@comment " .endif -#.if defined(WITH_KDE) -#GNASH_GUIS+= kde -#PLIST_SUB+= KDE="" -#.else +.if defined(WITH_KDE) +GNASH_GUIS+= kde +PLIST_SUB+= KDE="" +.else PLIST_SUB+= KDE="@comment " -#.endif +.endif CONFIGURE_ARGS+= --enable-gui=`${ECHO} ${GNASH_GUIS} | ${TR} ' ' ,` Trouble is, with gnash build this way I was not able to run X with KDE any more - with CPU at 100 % and xorg server process consuming 98 % CPU accoding to top I had basically locked console, even though I was able to login via ssh and get good response for non CPU intensive command entered in shell. If anybody have an idea, I can test it and report. Or maybe someone else could test it too... Milan -- No need to mail me directly. Just reply to mailing list, please. From owner-freebsd-ports@FreeBSD.ORG Tue Sep 25 12:08:23 2007 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 261E016A49A; Tue, 25 Sep 2007 12:08:23 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C156513C4B0; Tue, 25 Sep 2007 12:08:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.1/8.14.1) with ESMTP id l8PC8LTq056294; Tue, 25 Sep 2007 12:08:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.1/8.14.1/Submit) id l8PC8Lx9056290; Tue, 25 Sep 2007 12:08:21 GMT (envelope-from edwin) Date: Tue, 25 Sep 2007 12:08:21 GMT Message-Id: <200709251208.l8PC8Lx9056290@freefall.freebsd.org> To: carpetsmoker@xs4all.nl, edwin@FreeBSD.org, freebsd-ports@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/110326: Use TCL/TK 8.4: games/tvp X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2007 12:08:23 -0000 Synopsis: Use TCL/TK 8.4: games/tvp State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Tue Sep 25 12:08:20 UTC 2007 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=110326 From owner-freebsd-ports@FreeBSD.ORG Tue Sep 25 13:51:13 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4AB5C16A418 for ; Tue, 25 Sep 2007 13:51:13 +0000 (UTC) (envelope-from softwareleute@freenet.de) Received: from mout1.freenet.de (mout1.freenet.de [IPv6:2001:748:100:40::2:3]) by mx1.freebsd.org (Postfix) with ESMTP id C0F3713C447 for ; Tue, 25 Sep 2007 13:51:12 +0000 (UTC) (envelope-from softwareleute@freenet.de) Received: from [195.4.92.10] (helo=mx0.freenet.de) by mout1.freenet.de with esmtpa (Exim 4.68-dev) (envelope-from ) id 1IaAog-00029D-VB for freebsd-ports@freebsd.org; Tue, 25 Sep 2007 15:51:10 +0200 Received: from i3ed6cc97.versanet.de ([62.214.204.151]:53409 helo=rheingold.walhalla) by mx0.freenet.de with esmtpsa (ID softwareleute@freenet.de) (TLSv1:AES256-SHA:256) (port 25) (Exim 4.68-dev #12) id 1IaAog-00062D-RO for freebsd-ports@freebsd.org; Tue, 25 Sep 2007 15:51:10 +0200 From: Volker Glatz To: freebsd-ports@freebsd.org Date: Tue, 25 Sep 2007 15:51:08 +0200 User-Agent: KMail/1.9.7 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200709251551.09263.softwareleute@freenet.de> Subject: Re: Build error - openoffice.org 2.3.0 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2007 13:51:13 -0000 Same error here! cd /usr/ports/openoffice-2 make WITHOUT_MOZILLA=yes WITH_KDE=yes LOCALIZED_LANG=de WITH_CUPS=yes WITHOUT_GNOMEVFS=yes WITH_TTF_BYTECODE_ENABLED=yes install clean .... x freetype-2.2.1/include/freetype/internal/psaux.h x freetype-2.2.1/include/freetype/ttnameid.h x freetype-2.2.1/ChangeLog.20 x freetype-2.2.1/ChangeLog.21 make writeable... cd ./unxfbsdi.pro/misc/build && cat ../../../freetype-2.2.1.patch | /usr/local/bin/gpatch -p2 && touch so_patched_so_freetype patching file freetype-2.2.1/include/freetype/config/ftmodule.h Hunk #1 FAILED at 10644. Hunk #2 FAILED at 14420. Hunk #3 FAILED at 17684. Hunk #4 FAILED at 20153. 4 out of 4 hunks FAILED -- saving rejects to file freetype-2.2.1/include/freetype/config/ftmodule.h.rej patching file freetype-2.2.1/include/freetype/config/ftmodule.h patching file freetype-2.2.1/include/freetype/config/ftoption.h patching file freetype-2.2.1/src/truetype/ttgload.c Hunk #1 succeeded at 269 (offset -2 lines). Hunk #2 succeeded at 683 (offset -3 lines). Hunk #3 succeeded at 711 (offset -2 lines). dmake: Error code 1, while making 'unxfbsdi.pro/misc/build/so_patched_so_freetype' ---* tg_merge.mk *--- ERROR: Error 65280 occurred while making /usr/ports/editors/openoffice.org-2/work/OOG680_m5/freetype dmake: Error code 1, while making 'build_instsetoo_native' ---* *--- *** Error code 255 Stop in /usr/ports/editors/openoffice.org-2. 6.2-RELEASE-p4 Volker From owner-freebsd-ports@FreeBSD.ORG Tue Sep 25 14:27:16 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D35F316A417; Tue, 25 Sep 2007 14:27:16 +0000 (UTC) (envelope-from vivek@khera.org) Received: from yertle.kcilink.com (thingy.kcilink.com [74.92.149.59]) by mx1.freebsd.org (Postfix) with ESMTP id 9242713C48A; Tue, 25 Sep 2007 14:27:16 +0000 (UTC) (envelope-from vivek@khera.org) Received: from [192.168.7.121] (host-121.int.kcilink.com [192.168.7.121]) by yertle.kcilink.com (Postfix) with ESMTP id 1D7D7C947D; Tue, 25 Sep 2007 10:27:16 -0400 (EDT) In-Reply-To: <20070924224813.GM1390@k7.mavetju> References: <63204462-6FCE-41AA-89C9-A16707A6A971@khera.org> <20070924224813.GM1390@k7.mavetju> Mime-Version: 1.0 (Apple Message framework v752.3) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Vivek Khera Date: Tue, 25 Sep 2007 10:27:14 -0400 To: Edwin Groothuis X-Mailer: Apple Mail (2.752.3) Cc: freebsd ports , bug-followup@FreeBSD.org Subject: Re: ports/116050: [NEW PORT] devel/p5-Gearman-Server: Gearman server daemon X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2007 14:27:16 -0000 On Sep 24, 2007, at 6:48 PM, Edwin Groothuis wrote: > On Mon, Sep 24, 2007 at 11:11:02AM -0400, Vivek Khera wrote: >> Thanks for submitting this new port, but I object to having a new >> port created and assigned to me as the MAINTAINER. It just seems >> wrong to do that. > > You can't just drop your kitten on our doorstep and expect us to > take care of it. If you want us to help you with your kitten you > should take responsibility for it. Excuse me, but what exactly did *I* do wrong? Did I submit a *new* port and assign maintainership to *you*? I don't think so. From owner-freebsd-ports@FreeBSD.ORG Tue Sep 25 14:44:28 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8F6CE16A419; Tue, 25 Sep 2007 14:44:28 +0000 (UTC) (envelope-from vanilla@fatpipi.com) Received: from mail.fatpipi.com (220-135-222-5.HINET-IP.hinet.net [220.135.222.5]) by mx1.freebsd.org (Postfix) with ESMTP id F182F13C455; Tue, 25 Sep 2007 14:44:26 +0000 (UTC) (envelope-from vanilla@fatpipi.com) Received: by mail.fatpipi.com (Postfix, from userid 1002) id 8B8912E02D; Tue, 25 Sep 2007 22:44:25 +0800 (CST) Date: Tue, 25 Sep 2007 22:44:25 +0800 From: "Vanilla I. Shu" To: Stanislav Sedov Message-ID: <20070925144425.GA57820@fatpipi.cirx.org> References: <46D7D70B.8040404@gmx.de> <20070917211536.887535cb.stas@FreeBSD.org> <20070921095644.GA19047@fatpipi.cirx.org> <20070921213551.67bf2cb7.stas@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="uAKRQypu60I7Lcqm" Content-Disposition: inline In-Reply-To: <20070921213551.67bf2cb7.stas@FreeBSD.org> User-Agent: Mutt/1.5.16 (2007-06-09) X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: "\[LoN\]Kamikaze" , freebsd-ports@freebsd.org Subject: Re: x11/ecore outdated X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2007 14:44:28 -0000 --uAKRQypu60I7Lcqm Content-Type: text/plain; charset=big5 Content-Disposition: inline On Fri, Sep 21, 2007 at 09:35:51PM +0400, Stanislav Sedov wrote: > I'd be glad to view your patches too. BTW, I can give you access to my > hg repo if you want to work on update together. here is the patches' tarball. I use the E's original source tarball. --uAKRQypu60I7Lcqm-- From owner-freebsd-ports@FreeBSD.ORG Tue Sep 25 17:32:45 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 080D716A49C for ; Tue, 25 Sep 2007 17:32:45 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from cp65.agava.net (cp65.agava.net [89.108.66.215]) by mx1.freebsd.org (Postfix) with ESMTP id 924A513C47E for ; Tue, 25 Sep 2007 17:32:44 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from [213.148.20.85] (helo=nexii.panopticon) by cp65.agava.net with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.44 (FreeBSD)) id 1IaEH4-00066O-Rw; Tue, 25 Sep 2007 21:32:42 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.2]) by nexii.panopticon (Postfix) with ESMTP id E06501703D; Tue, 25 Sep 2007 21:31:46 +0400 (MSD) Received: by hades.panopticon (Postfix, from userid 1000) id 33561406F; Tue, 25 Sep 2007 21:34:05 +0400 (MSD) Date: Tue, 25 Sep 2007 21:34:04 +0400 From: Dmitry Marakasov To: Markus Hitter Message-ID: <20070925173404.GA18894@hades.panopticon> Mail-Followup-To: Markus Hitter , freebsd-ports@freebsd.org References: <20070921162208.GA83826@hades.panopticon> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.16 (2007-06-09) X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - cp65.agava.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [26 6] X-AntiAbuse: Sender Address Domain - amdmi3.ru X-Source: X-Source-Args: X-Source-Dir: Cc: freebsd-ports@freebsd.org Subject: Re: porting software using glibc's getline() X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2007 17:32:45 -0000 * Markus Hitter (mah@jump-ing.de) wrote: >> I have a problem porting a piece of software that use >> getline(char**, int*, FILE*). This function is only present in >> glibc so I wonder what do I do in this case? > Ideally, you'd replace getline()'s usage with something similar, like > fgets(3). > > If this isn't reasonable, get inspired by glibc's sources and write your > own. Another inspiration might come from here: I've found implementation of getline function in tar sources that come with FreeBSD. I guess the best thing would be to make simple port out of it, with single .h file with static functions, which can be included in any place where it is needed. Is it OK to place GPL sources into the ports tree? (it would be silly to make distfile for single 3kb .h file) -- Best regards, Dmitry Marakasov mailto:amdmi3@amdmi3.ru From owner-freebsd-ports@FreeBSD.ORG Tue Sep 25 19:12:34 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A5BF016A41B for ; Tue, 25 Sep 2007 19:12:34 +0000 (UTC) (envelope-from aryeh.friedman@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.181]) by mx1.freebsd.org (Postfix) with ESMTP id 4B71F13C455 for ; Tue, 25 Sep 2007 19:12:34 +0000 (UTC) (envelope-from aryeh.friedman@gmail.com) Received: by py-out-1112.google.com with SMTP id u77so3894047pyb for ; Tue, 25 Sep 2007 12:12:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; bh=Sh0TSydR/8vs86GHuOd+02/pk9ZUJt7MRukjR1PRoGE=; b=LXbSDgX3y7wkYzxrVwx9I/R4XQx4N+DPPN1f585ieNA1kzhxpjACq8Dw4BoGHUxrcWg7H3VVe8ioizEOKtI9QPX2rnSnizuj8PkLKhRb/V35PXGA8nVeaCp4trzPlxNu8JDhCsVlrZvMoSieZy8OjB2NidOWN1hUAG45wK3HNhY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=kxirvrW5oGioj9Q3uCL5/lj9E51/d1PJ3L2EaBoovnYomu+tbBqs0En6l0GnDoQLYNP0GMKKbFxAJ+BSSrTCC9rKovOjg1nUhwnSZYat1+TdO4p14+4xD/j2b+NFSfbnQnw0OsySh8SMs52qRo9LlZg7dEwfla9Czuvi1tRM0rs= Received: by 10.65.121.9 with SMTP id y9mr6401788qbm.1190747552979; Tue, 25 Sep 2007 12:12:32 -0700 (PDT) Received: by 10.65.105.2 with HTTP; Tue, 25 Sep 2007 12:12:32 -0700 (PDT) Message-ID: Date: Tue, 25 Sep 2007 19:12:32 +0000 From: "Aryeh Friedman" To: freebsd-ports@freebsd.org, freebsd-x11@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: Subject: xorg 7.3/freebsd 7-current/nvidia cards on p35 chip sets update X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2007 19:12:34 -0000 The new vm code in the kernel (cvsup) seems to have helped some things in this combination. Neither nv or nvidia will recognize my 5200 GT; but vesa now gives me 24 depth and has noticeably better response time. For the people who are having problems with spontanous reboots some progress *MAY* have been made in that when testing a config with nv or nvidia on the above the screen cycles colors but does not crash the machine like it used to. From owner-freebsd-ports@FreeBSD.ORG Tue Sep 25 20:27:37 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AC80A16A418 for ; Tue, 25 Sep 2007 20:27:37 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from cp65.agava.net (cp65.agava.net [89.108.66.215]) by mx1.freebsd.org (Postfix) with ESMTP id 4790713C455 for ; Tue, 25 Sep 2007 20:27:37 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from [213.148.20.85] (helo=nexii.panopticon) by cp65.agava.net with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.44 (FreeBSD)) id 1IaH0J-0006N4-IS; Wed, 26 Sep 2007 00:27:35 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.2]) by nexii.panopticon (Postfix) with ESMTP id 731D21703D; Wed, 26 Sep 2007 00:26:39 +0400 (MSD) Received: by hades.panopticon (Postfix, from userid 1000) id E060F406E; Wed, 26 Sep 2007 00:28:58 +0400 (MSD) Date: Wed, 26 Sep 2007 00:28:58 +0400 From: Dmitry Marakasov To: Milan Obuch Message-ID: <20070925202858.GA89037@hades.panopticon> Mail-Followup-To: Milan Obuch , freebsd-ports@freebsd.org References: <20070917233555.GA74880@hades.panopticon> <200709250905.38470.freebsd-ports@dino.sk> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200709250905.38470.freebsd-ports@dino.sk> User-Agent: Mutt/1.5.16 (2007-06-09) X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - cp65.agava.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [26 6] X-AntiAbuse: Sender Address Domain - amdmi3.ru X-Source: X-Source-Args: X-Source-Dir: Cc: freebsd-ports@freebsd.org Subject: Re: Gnash 0.8.1 submitted X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2007 20:27:37 -0000 * Milan Obuch (freebsd-ports@dino.sk) wrote: > I was able to build gnash with konqueror plugin after applying following patch > (warning, some linewrap is there): [patch skipped] > Trouble is, with gnash build this way I was not able to run X with KDE any > more - with CPU at 100 % and xorg server process consuming 98 % CPU accoding > to top I had basically locked console, even though I was able to login via > ssh and get good response for non CPU intensive command entered in shell. > If anybody have an idea, I can test it and report. Or maybe someone else could > test it too... Does X/KDE start to consume CPU right after it starts? Which exactly process does consume CPU? Does flipping options help (turn off media handlers, switch renderer to AGG)? Does standlalone player with KDE interface work (should be /usr/local/bin/kde-gnash)? Does GTK version cause any bugs? -- Best regards, Dmitry Marakasov mailto:amdmi3@amdmi3.ru From owner-freebsd-ports@FreeBSD.ORG Tue Sep 25 20:37:18 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C125316A417 for ; Tue, 25 Sep 2007 20:37:18 +0000 (UTC) (envelope-from freebsd-ports@dino.sk) Received: from loki.netlab.sk (loki.netlab.sk [84.245.65.11]) by mx1.freebsd.org (Postfix) with ESMTP id 26A8313C459 for ; Tue, 25 Sep 2007 20:37:17 +0000 (UTC) (envelope-from freebsd-ports@dino.sk) Received: from lex.dino.sk (home.dino.sk [84.245.95.252]) (AUTH: PLAIN milan, TLS: TLSv1/SSLv3,256bits,AES256-SHA) by loki.netlab.sk with esmtp; Tue, 25 Sep 2007 22:36:04 +0200 id 0002E022.46F97134.00013796 From: Milan Obuch To: freebsd-ports@freebsd.org Date: Tue, 25 Sep 2007 22:35:43 +0200 User-Agent: KMail/1.9.6 References: <20070917233555.GA74880@hades.panopticon> <200709250905.38470.freebsd-ports@dino.sk> <20070925202858.GA89037@hades.panopticon> In-Reply-To: <20070925202858.GA89037@hades.panopticon> MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200709252235.45977.freebsd-ports@dino.sk> Cc: Dmitry Marakasov Subject: Re: Gnash 0.8.1 submitted X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2007 20:37:18 -0000 On Tuesday 25 September 2007 22:28:58 Dmitry Marakasov wrote: > * Milan Obuch (freebsd-ports@dino.sk) wrote: > > I was able to build gnash with konqueror plugin after applying following > > patch (warning, some linewrap is there): > > [patch skipped] > > > Trouble is, with gnash build this way I was not able to run X with KDE > > any more - with CPU at 100 % and xorg server process consuming 98 % CPU > > accoding to top I had basically locked console, even though I was able to > > login via ssh and get good response for non CPU intensive command entered > > in shell. If anybody have an idea, I can test it and report. Or maybe > > someone else could test it too... > > Does X/KDE start to consume CPU right after it starts? Which exactly > process does consume CPU? Does flipping options help (turn off media > handlers, switch renderer to AGG)? Does standlalone player with KDE > interface work (should be /usr/local/bin/kde-gnash)? Does GTK version cause > any bugs? See above - xorg server process (X itself) does consume almost all CPU. I need to try build a test instance - my working computer has too many konqueror windows and tabs open from the start so it is almost impossible to tell. What do you mean by flipping options? Changing build options when building the port? I can try it in my test instance a bit later. I did not do yet too much checks, but I definitely will, as soom as I have simple test instance running. Regards, Milan -- No need to mail me directly. Just reply to mailing list, please. From owner-freebsd-ports@FreeBSD.ORG Tue Sep 25 21:21:41 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8570916A419; Tue, 25 Sep 2007 21:21:41 +0000 (UTC) (envelope-from edwin@mavetju.org) Received: from mail5out.barnet.com.au (mail5.barnet.com.au [202.83.178.78]) by mx1.freebsd.org (Postfix) with ESMTP id 2D7C413C4A5; Tue, 25 Sep 2007 21:21:40 +0000 (UTC) (envelope-from edwin@mavetju.org) Received: by mail5out.barnet.com.au (Postfix, from userid 1001) id BCDCD2219D46; Wed, 26 Sep 2007 07:21:39 +1000 (EST) X-Viruscan-Id: <46F97BE30000DCB8ED2DF1@BarNet> Received: from mail5auth.barnet.com.au (mail5.barnet.com.au [202.83.178.78]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mail5.barnet.com.au (Postfix) with ESMTP id 6B48321B1081; Wed, 26 Sep 2007 07:21:39 +1000 (EST) Received: from k7.mavetju (k7.mavetju.org [10.251.1.18]) by mail5auth.barnet.com.au (Postfix) with ESMTP id 289F52219D2A; Wed, 26 Sep 2007 07:21:39 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 2A44C5D; Wed, 26 Sep 2007 07:21:41 +1000 (EST) Date: Wed, 26 Sep 2007 07:21:41 +1000 From: Edwin Groothuis To: Vivek Khera Message-ID: <20070925212141.GH17659@k7.mavetju> References: <63204462-6FCE-41AA-89C9-A16707A6A971@khera.org> <20070924224813.GM1390@k7.mavetju> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.3i Cc: freebsd ports , bug-followup@FreeBSD.org Subject: Re: ports/116050: [NEW PORT] devel/p5-Gearman-Server: Gearman server daemon X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2007 21:21:41 -0000 On Tue, Sep 25, 2007 at 10:27:14AM -0400, Vivek Khera wrote: > On Sep 24, 2007, at 6:48 PM, Edwin Groothuis wrote: > > >On Mon, Sep 24, 2007 at 11:11:02AM -0400, Vivek Khera wrote: > >>Thanks for submitting this new port, but I object to having a new > >>port created and assigned to me as the MAINTAINER. It just seems > >>wrong to do that. > > > >You can't just drop your kitten on our doorstep and expect us to > >take care of it. If you want us to help you with your kitten you > >should take responsibility for it. > > Excuse me, but what exactly did *I* do wrong? Did I submit a *new* > port and assign maintainership to *you*? I don't think so. Heh, I meant the other guy :-) Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://www.mavetju.org/weblog/ From owner-freebsd-ports@FreeBSD.ORG Tue Sep 25 22:01:49 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AEF9416A54D for ; Tue, 25 Sep 2007 22:01:49 +0000 (UTC) (envelope-from eculp@encontacto.net) Received: from ns2.bafirst.com (72-12-2-19.wan.networktel.net [72.12.2.19]) by mx1.freebsd.org (Postfix) with ESMTP id 31DA513C459 for ; Tue, 25 Sep 2007 22:01:48 +0000 (UTC) (envelope-from eculp@encontacto.net) Received: from HOME.encontacto.net (softdnserr [189.129.12.64]) by ns2.bafirst.com with esmtp; Tue, 25 Sep 2007 16:35:40 -0500 id 000D52D4.46F97F2C.000053E7 Received: from localhost (localhost [127.0.0.1]) (uid 80) by HOME.encontacto.net with local; Tue, 25 Sep 2007 16:35:39 -0500 id 0004AC2F.46F97F2B.0000CC4E Received: from dsl-189-129-12-64.prod-infinitum.com.mx (dsl-189-129-12-64.prod-infinitum.com.mx [189.129.12.64]) by intranet.encontacto.net (Horde MIME library) with HTTP; Tue, 25 Sep 2007 16:35:39 -0500 Message-ID: <20070925163539.pgse608uso00sw80@intranet.encontacto.net> X-Priority: 3 (Normal) Date: Tue, 25 Sep 2007 16:35:39 -0500 From: eculp@encontacto.net To: freebsd-ports MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.2-cvs) X-Originating-IP: 189.129.12.64 Subject: latest firefox. linux-flashplugin and nspluginwrapper don't want to work together. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2007 22:01:49 -0000 I upgraded firefox, the linux-flashplugin and reinstalled nspluginwrapper, just in case;) firefox-2.0.0.7,1 linux-flashplugin-7.0r70 nspluginwrapper-0.9.91.5 The plugins are recognized in firefox wih about:plugins but no longer work. They have been working nicely for several months now. I guess I should rollback something. The flashplugin doesn't work with linux-firefox-2.0.0.7 either. I don't know if it did before or not but seem to remember that it did. Also, I would really like to know if anyone has flash9 working with somewhat reasonable stability and sound or a way to make the server-side think that flash7 is flash8 or above? There are more and more sites asking for flash8+ and very few that won't work with flash7. Any suggestions appreciated. ed From owner-freebsd-ports@FreeBSD.ORG Tue Sep 25 22:36:34 2007 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3111516A417 for ; Tue, 25 Sep 2007 22:36:34 +0000 (UTC) (envelope-from sales@computerwide.net) Received: from computerwide.net (netblock-68-183-173-229.dslextreme.com [68.183.173.229]) by mx1.freebsd.org (Postfix) with SMTP id 32BE413C474 for ; Tue, 25 Sep 2007 22:36:31 +0000 (UTC) (envelope-from sales@computerwide.net) From: "ComputerWide" To: "ports@freebsd.org" Date: Tue, 25 Sep 2007 15:36:17 -0700 Message-ID: <70692347.20070925153617@computerwide.net> X-Priority: 3 (Normal) MIME-Version: 1.0 Organization: ComputerWide, Inc. Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: quoted-printable Cc: Subject: [ A D V ] Cisco, Toshiba, Apple, HP, 3com, etc. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: ComputerWide List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2007 22:36:34 -0000 If you have received this message in error or if you would like to be removed from our broadcast for any reason, reply to this email with REMOVE as subject followed by the email address you wish to remove. *********************************************************** ComputerWide, Inc. 23679 Calabasas Road #761 Calabasas, CA. 91302, USA Tel: (818) 804-5158 http://www.computerwide.net Email: sales@computerwide.net ***** CISCO ROUTER SPECIAL ***** CISCO3845 Orignial New Open Box includes smartnet 8X5XNBD until June 2008 2 units in stock at $6500 each (50% off GPL $13,000) ******************************** The following are Notebook prices. All NEW models come with 1 year warranty and all RB models with 90 days. For a detailed list, please request our price list in Excel or PDF format. Part# Model Price Condition TOSHIBA PQF43U-008004 Qosmio F45-AV412 $1,403 NEW PQF43U-007004 Qosmio F45-AV411 $1,299 NEW PQF43U-007005 Qosmio F45-AV410 $1,195 NEW PSPB9U-022003 Satellite X205-S9349 $1,767 NEW PSPB0U-01W008 Satellite P205-S6327 $935 NEW PSPBGU-00W016 Satellite P205-S6277 $935 RB PSPB0U-00Y008 Satellite P205-S6297 $862 RB PSPB0U-00X008 Satellite P205-S6287 $831 RB PSPB0U-00W008 Satellite P205-S6267 $758 RB PSPAGU-00J00V Satellite P105-S9337 $1,247 RB PSAEGU-01100U Satellite A215-S4757 $883 NEW PSAEGU-01400U Satellite A215-S4807 $790 NEW PSAEGU-00W00U Satellite A215-S4747 $790 NEW PSAF0U-0CQ009 Satellite A205-S4707 $831 NEW PSAD0U-05400Q Satellite A135-S4637 $706 NEW PSMC0U-01V00P Satellite M205-S3217 $810 NEW PLUA0U-0M1043 Satellite U205-S5058 $987 RB HP RT681AA#ABA Pavilion M7747C-B $966 NEW GA648UA#ABA Pavilion TX1215 $893 RB RV309UA#ABA Pavilion TX1115 $862 RB DV6500#SE6 Pavilion DV6500t $1,351 NEW DV2500#BTO28 Pavilion DV2500t $1,101 NEW RB545UT#ABA NX6325 $540 RB RK973US#ABA NC6400 $987 RB EN352UT#ABA NX7400 $727 RB GU789US#ABA 6510b $935 NEW GK192US#ABA 6515b $623 RB RM237UA#ABA 6910p $1,330 RB RM234UA#ABA 6910p $1,247 RB GU764US#ABA 6910p $1,112 RB RB554UT#ABA NC8430 $1,091 RB RM293UA#ABA NC8430 $1,143 NEW RN040AW#ABA NW8440 $1,372 RB RB549UT#ABA NX9420 $1,205 RB RB552UA#ABA NW9440 $1,684 RB RN019AW#ABA NW9440 $1,663 RB 399279R-999-BV7Z NC6400 $758 RB 411621R-999-BSRN NX7300 $519 RB 435620R-999-BXJZ 6510b $935 RB 435941R-999-BXMW 6515b $852 RB 435941R-999-BXMY 6515b $852 RB 435941R-999-BW99 6515b $623 RB 435620R-999-BXS8 6510b $914 RB 435620R-999-BXH5 6510b $862 RB 435622R-999-BXMR 6710b $1,039 RB 435622R-999-BXR5 6710b $997 RB 435622R-999-BXMP 6710b $935 RB 435622R-999-BXMT 6710b $914 RB 435622R-999-BXVB 6710b $821 RB 435939R-999-BX1R 6715b $873 RB 435939R-999-BXPZ 6715b $602 RB 435939R-999-BW5D 6715b $550 RB 430250R-999-BXPG 6910p $1,351 RB 430250R-999-BXR2 6910p $1,143 RB 430250R-999-BXPK 6910p $987 RB 399456R-999-BWXQ NX9420 $935 RB 399457R-999-BXH3 NW9440 $1,653 RB 406954R-999-BX8W TC4400 $1,195 RB RL875AW#ABA TC4400 $1,091 RB GJ875US#ABA TC4400 $987 RB SONY VGN-AR550U AR550U $2,037 NEW VGN-AR520E AR520E $1,476 NEW VGN-TZ190N/B TZ190N/B $2,651 NEW VGN-TZ150N/B TZ150N/B $2,027 NEW VGN-TZ150N/N TZ150N/N $2,027 NEW VGN-TZ130N/B TZ130N/B $1,923 NEW VGN-UX380N UX380N $1,112 NEW VGN-CR120E/L CR120E/L $1,320 NEW VGN-CR140E/B CR140E/B $1,216 NEW VGN-CR125E/B CR125E/B $1,164 NEW VGN-SZ650N/C SZ650N/C $1,850 NEW VGN-SZ640N/B SZ640N/B $1,788 NEW VGN-SZ430N/B SZ430N/B $1,694 NEW VGN-FZ180E/B FZ180E/B $1,736 NEW VGN-N385E/W N385E/W $883 NEW VGN-N325E/W N325E/W $758 NEW VGN-N230E/B N230E/B $779 NEW APPLE MA897LL/A MacBook Pro $2,495 NEW MA896LL/A MacBook Pro $2,412 NEW MB075LL/A MacBook Pro $2,412 NEW MB077LL/A MacBook Pro $2,651 NEW MB061LL/A MacBook $1,070 NEW MB062LL/A MacBook $1,247 NEW MB063LL/A MacBook $1,434 NEW LENOVO 0768-EFU 3000 N100 $727 NEW ACER AS5570-2977 Aspire AS5570-2977 $561 NEW AS3680-2682 Aspire AS3680-2682 $467 NEW AS3690-2196 Aspire AS3690-2196 $436 RB AS3680-2682 Aspire AS3680-2682 $415 RB ******************************** Fujitsu Plasma TV/Monitor (NEW, 3 years warranty) P42VHA51WS 42" EDTV Plasma Monitor $1,800 P42XHA58EB 42" Plasma HD Monitor $2,450 P42XTA51UB 42" HDTV Plasma TV $2,700 P50XHA58EB 50" Plasma HD Monitor $3,150 P50XTA51UB 50" HDTV Plasma TV $3,500 P55XTA51UB 55" HDTV Plasma TV $5,100 P63XTA51UB 63" HDTV Plasma TV $9,400 P37FT05AUB 37" AVIAMO LCD 1080P TV $3,800 P65FT00AUB 65" AVIAMO Plasma 1080P TV $13,600 LPF-D711 3 LCD AVIAMO 1080P Projector $17,500 ******************************** All Cisco Models in our inventory are at 40% off GPL. Any new item not listed can be supplied at 30% off GPL. Any Refurbished item can be supplied at 47% off GPL. Smartnet Service Contract is available at 10% off GPL. *********************************************************** Quantity discount is available. Prices are in US$ and FOB Los Angeles. For additional information about our company and products, please visit http://www.computerwide.net *********************************************************** The following CISCO, 3com, HP, Juniper, and Watchguard products are ORIGINAL and NEW in RETAIL PACKS. Please visit the following page for more info: http://product.computerwide.net Cisco Router (NEW) CISCO871-K9 $389 CISCO871-SEC-K9 $479 CISCO871W-G-A-K9 $509 CISCO877-K9 $389 CISCO877-SEC/K9 $479 CISCO877W-G-A-K9 $509 CISCO1811/K9 $777 CISCO1811W-AG-A/K9 $957 CISCO1841 $837 CISCO1841-HSEC/K9 $1,797 CISCO1841-SEC/K9 $1,497 CISCO1841-T1 $1,437 CISCO1841-T1SEC/K9 $2,097 CISCO2801 $1,197 CISCO2801-AC-IP $1,422 CISCO2801-HSEC/K9 $2,157 CISCO2801-SEC/K9 $1,737 CISCO2801-V/K9 $1,617 CISCO2811 $1,497 CISCO2811-AC-IP $1,737 CISCO2811-DC $1,737 CISCO2811-HSEC/K9 $2,457 CISCO2811-SEC/K9 $2,037 CISCO2811-V/K9 $1,917 CISCO2821 $2,337 CISCO2821-AC-IP $2,697 CISCO2821-HSEC/K9 $3,297 CISCO2821-SEC/K9 $2,877 CISCO2821-V/K9 $2,817 CISCO2851 $3,897 CISCO2851-AC-IP $4,257 CISCO2851-HSEC/K9 $4,857 CISCO2851-SEC/K9 $4,437 CISCO2851-V/K9 $4,437 CISCO2851-V3PN-K9 $7,257 CISCO3825 $5,700 CISCO3825-AC-IP $6,060 CISCO3825-HSEC/K9 $6,957 CISCO3825-SEC/K9 $6,537 CISCO3825-V/K9 $6,297 CISCO3825-V3PN/K9 $10,437 CISCO3845 $7,800 CISCO3845-AC-IP $8,160 CISCO3845-HSEC/K9 $9,537 CISCO3845-SEC/K9 $8,637 CISCO3845-V/K9 $8,397 CISCO3845-V3PN/K9 $12,957 Cisco Router Module (New) AIM-VPN/HPII-PLUS $2,100 AIM-VPN/SSL-2=3D $1,500 AIM-VPN/SSL-3=3D $2,100 HWIC-1ADSL=3D $450 HWIC-1FE=3D $840 HWIC-2FE=3D $1,500 HWIC-1GE-SFP $2,100 HWIC-4A/S $720 HWIC-4ESW $255 HWIC-4ESW-POE $345 HWIC-4T $1,680 HWIC-8A $690 HWIC-8A/S-232 $1,440 HWIC-16A $1,380 HWIC-AP-AG-A $420 HWIC-AP-G-A $300 HWIC-D-9ESW $480 HWIC-D-9ESW-POE $648 ILPM-4 $90 ILPM-8 $168 NM-1FE2W-V2 $1,380 NM-2FE2W-V2 $1,920 NM-1T3/E3 $5,100 NM-HD-1V $360 NM-HD-2V $600 NME-16ES-1G $1,377 NME-16ES-1G-P $1,635 NME-X-23ES-1G $1,977 NME-X-23ES-1G-P $2,313 NME-XD-24ES-1S-P $3,075 NME-XD-48ES-2S-P $4,137 PVDM2-8 $240 PVDM2-16 $480 PVDM2-32 $960 PVDM2-48 $1,440 PVDM2-64 $1,920 VIC-4FXS/DID $480 VIC2-2E/M $240 VIC2-2FXO $240 VIC2-2FXS $240 VIC2-4FXO $480 VWIC2-1MFT-G703 $1,080 VWIC2-1MFT-T1/E1 $780 VWIC2-2MFT-G703 $1,800 VWIC2-2MFT-T1/E1 $1,200 WIC-1B-S/T-V3=3D $300 WIC-1B-U-V2 $420 WIC-1DSU-T1-V2 $600 WIC-1T $240 WIC-2A/S $300 WIC-2T $420 Cisco Switch (NEW) WS-CE500-24LC $777 WS-CE500-24PC $1,677 WS-CE500-24TT $477 WS-CE500G-12TC $1,173 WS-CE520-8PC-K9 $837 WS-C2960-8TC-L $537 WS-C2960-24TC-L $1,497 WS-C2960-24TT-L $777 WS-C2960-48TC-L $2,697 WS-C2960-48TT-L $1,497 WS-C2960G-8TC-L $837 WS-C2960G-24TC-L $1,977 WS-C2960G-48TC-L $3,597 WS-C3560-24PS-E $3,474 WS-C3560-24PS-S $2,277 WS-C3560-24TS-E $2,994 WS-C3560-24TS-S $1,797 WS-C3560-48PS-E $5,094 WS-C3560-48PS-S $3,897 WS-C3560-48TS-E $4,194 WS-C3560-48TS-S $2,997 WS-C3560E-24PD-E $6,474 WS-C3560E-24PD-S $4,077 WS-C3560E-24TD-E $5,994 WS-C3560E-24TD-S $3,597 WS-C3560E-48PD-E $10,494 WS-C3560E-48PD-S $8,097 WS-C3560E-48TD-E $9,594 WS-C3560E-48TD-S $7,197 WS-C3560G-24PS-E $5,754 WS-C3560G-24PS-S $3,357 WS-C3560G-24TS-E $5,274 WS-C3560G-24TS-S $2,877 WS-C3560G-48PS-E $8,094 WS-C3560G-48PS-S $5,697 WS-C3560G-48TS-E $7,194 WS-C3560G-48TS-S $4,797 WS-C3750-24FS-S $6,477 WS-C3750-24PS-E $4,074 WS-C3750-24PS-S $2,877 WS-C3750-24TS-E $3,594 WS-C3750-24TS-S $2,397 WS-C3750-48PS-E $6,294 WS-C3750-48PS-S $5,097 WS-C3750-48TS-E $5,394 WS-C3750-48TS-S $4,197 WS-C3750E-24PD-S $6,177 WS-C3750E-24TD-S $5,697 WS-C3750E-48PD-S $12,297 WS-C3750E-48TD-S $11,397 WS-C3750G-12S-E $7,194 WS-C3750G-12S-S $4,797 WS-C3750G-24PS-E $7,074 WS-C3750G-24PS-S $4,677 WS-C3750G-24T-E $5,994 WS-C3750G-24T-S $3,597 WS-C3750G-24TS-E $6,894 WS-C3750G-24TS-E1U $6,594 WS-C3750G-24TS-S $4,497 WS-C3750G-24TS-S1U $4,197 WS-C3750G-24WS-S50 $15,300 WS-C3750G-48PS-E $14,094 WS-C3750G-48PS-S $9,297 WS-C3750G-48TS-E $13,194 WS-C3750G-48TS-S $8,397 WS-C4503 $597 WS-C4506 $2,997 WS-C4507R $5,997 WS-C4510R $7,497 WS-C4948-E $8,697 WS-C4948-S $6,297 WS-C4948-10GE-E $12,897 WS-C4948-10GE-S $10,497 WS-C6506-E $3,300 WS-C6506-E-FAN $297 WS-C6509-E $5,700 WS-C6509-E-FAN $297 Cisco Switch Module (NEW) CVR-X2-SFP=3D $117 GLC-FE-100FX=3D $150 GLC-GE-100FX $150 GLC-LH-SM=3D $597 GLC-SX-MM=3D $300 GLC-ZX-SM=3D $2,397 GLC-T=3D $237 WS-G5483 $237 WS-G5484 $300 WS-G5486 $597 WS-G5487 $2,397 WS-X4013+ $3,597 WS-X4013+TS $3,597 WS-X4013+10GE $7,197 WS-X4124-RJ45 $1,497 WS-X4148-RJ $2,697 WS-X4148-RJ21 $2,697 WS-X4232-GB-RJ $2,697 WS-X4248-FE-SFP $4,197 WS-X4248-RJ45V $3,897 WS-X4306-GB $1,797 WS-X4424-GB-RJ45 $2,097 WS-X4448-GB-SFP $9,897 WS-X4506-GB-T $2,097 WS-X4515 $7,197 WS-X4516 $9,897 WS-X4516-10GE $11,997 WS-X4524-GB-RJ45V $2,697 WS-X4548-GB-RJ45 $3,297 WS-X4548-GB-RJ45V $4,497 WS-X4991 $120 WS-X6148A-RJ-45 $3,600 WS-X6548-GE-TX $7,200 WS-X6748-GE-TX $9,000 WS-CAC-3000W $1,800 WS-CAC-6000W $3,000 WS-SUP32-GE-3B $9,000 WS-SUP720-3B $16,800 WS-SVC-CMM $5,997 WS-SVC-CMM-6T1 $7,197 X2-10GB-CX4 $360 X2-10GB-LR $2,400 X2-10GB-LX4 $1,797 X2-10GB-SR $1,800 Cisco FireWall (NEW) ASA5500-SSL-10 $750 ASA5500-SSL-25 $1,857 ASA5500-SSL-50 $2,397 ASA5505-50-BUN-K9 $507 ASA5505-BUN-K9 $357 ASA5505-PWR-AC=3D $48 ASA5505-SEC-BUN-K9 $1,017 ASA5505-SEC-PL=3D $510 ASA5505-SSL10-K9 $1,257 ASA5505-SSL25-K9 $2,364 ASA5505-UL-BUN-K9 $597 ASA5510-BUN-K9 $2,097 ASA5510-AIP10-K9 $4,797 ASA5510-CSC10-K9 $4,317 ASA5510-CSC20-K9 $7,557 ASA5510-SEC-BUN-K9 $2,697 ASA5510-SEC-PL=3D $720 ASA5510-SSL50-K9 $4,497 ASA5510-SSL100-K9 $6,897 ASA5520-AIP10-K9 $7,497 ASA5520-AIP20-K9 $9,597 ASA5520-BUN-K9 $4,797 ASA5520-CSC10-K9 $6,717 ASA5540-AIP20-K9 $14,997 ASA5540-BUN-K9 $10,197 ASA-SSM-AIP-10-K9 $3,600 ASA-SSM-AIP-20-K9 $6,000 ASA-SSM-CSC-10-K9 $2,700 ASA-SSM-CSC-20-K9 $6,300 SSM-4GE=3D $3,000 PIX-1GE-66 $1,800 PIX-501-BUN-K9 $357 PIX-501-50-BUN-K9 $507 PIX-501-UL-BUN-K9 $597 PIX-506E-BUN-K9 $837 Cisco IP Phone (NEW) CP-7906G=3D $105 CP-7906G-CH1 $165 CP-7911G=3D $135 CP-7911G-CH1 $225 CP-7912G-CH1-A $195 CP-7914=3D $237 CP-7931G=3D $195 CP-7936=3D $717 CP-7936-CH1 $807 CP-7936-MIC-KIT=3D $210 CP-7936-PWR-KIT $90 CP-7940G $159 CP-7940G-CH1 $279 CP-7941G $207 CP-7941G-CH1 $327 CP-7941G-GE=3D $261 CP-7941G-GE-CH1 $381 CP-7960G $219 CP-7960G-CH1 $339 CP-7961G $267 CP-7961G-CH1 $387 CP-7961G-GE=3D $339 CP-7961G-GE-CH1 $459 CP-7970G $384 CP-7970G-CH1 $534 CP-7971G-GE $474 CP-7971G-GE-CH1 $624 CP-PWR-CUBE-3 $27 CP-PWR-INJ=3D $75 CUVA-V2=3D $96 ATA186-I1-A=3D $90 ATA186-I1-1P-CH1-A $126 Cisco Wireless (NEW) AIR-ANT1728 $95 AIR-ANT1729 $131 AIR-ANT2460P-R $131 AIR-ANT2465P-R $239 AIR-ANT2485P-R $143 AIR-ANT2506 $95 AIR-ANT4941 $11 AIR-ANT5135D-R $11 AIR-ANT5959 $167 AIR-AP521G-A-K9 $299 AIR-AP1010-A-K9 $359 AIR-AP1020-A-K9 $479 AIR-AP1030-A-K9 $539 AIR-AP1121G-A-K9 $359 AIR-AP1131AG-A-K9 $419 AIR-AP1242AG-A-K9 $539 AIR-BR1310G-A-K9 $779 AIR-BR1310G-A-K9-R $779 AIR-CB21AG-A-K9 $101 AIR-LAP521G-A-K9 $299 AIR-LAP1131AG-A-K9 $419 AIR-LAP1242AG-A-K9 $539 AIR-MP21G-A-K9 $89 AIR-PI21AG-A-K9 $149 AIR-WLC526-K9 $1,079 AIR-PWRINJ3 $36 AIR-PWRINJ-1000AF $36 Cisco Power Supply (NEW) PWR-2801-AC-IP $225 PWR-2811-AC-IP $240 PWR-2821-51-AC-IP $360 PWR-3825-AC $300 PWR-3825-AC-IP=3D $360 PWR-3845-AC=3D $300 PWR-3845-AC-IP=3D $600 PWR-C45-1000AC $597 PWR-C45-1300ACV $897 PWR-C45-1400AC $897 PWR-C45-2800ACV $1,197 PWR-C45-4200ACV $2,397 PWR-C49-300AC=3D $300 PWR675-AC-RPS-N1 $1,137 PWR-RPS2300=3D $720 Cisco Cable (NEW) CAB-***FC $60 CAB-***MT $60 CAB-SS-***FC $60 CAB-SS-***MT $60 CAB-OCT-*** $390 CAB-16AWG-AC=3D $60 CAB-RPS-1614 $45 CAB-SFP-50CM $150 CAB-STACK-50CM=3D $60 CAB-STACK-1M=3D $120 CAB-STACK-3M=3D $180 3Com Switch & Module (NEW) 3C16470 $58 3C16471 $89 3C16472 $151 3C16475CS $164 3C16476CS $306 3C16477A $213 3C16478 $182 3C16479 $251 3C16485A $220 3C16486 $616 3C16490 $616 3C16491 $616 3C1670108 $61 3C1670800B $67 3C1671600 $170 3C17203 $988 3C17204 $2,042 3C17260 $926 3C17261 $1,856 3C17262 $244 3C17263 $306 3C17268 $3,716 3C17300A $279 3C17302A $616 3C17304A $325 3C17462 $151 3C17666 $802 3CBLSG16 $217 3CBLSG24 $306 3CBLSG24PWR $740 3CBLSG48 $430 3CGSU05 $31 3CGSU08 $50 3CR17151-91 $1,856 3CR17152-91 $1,856 3CR17161-91 $988 3CR17162-91 $2,352 3CR17171-91 $1,670 3CR17172-91 $2,910 3CR17250-91 $2,786 3CR17251-91 $4,956 3CR17252-91 $3,468 3CR17253-91 $6,196 3CR17258-91 $4,336 3CR17450-91 $2,166 3CR17561-91 $430 3CR17562-91 $759 3CR17571-91 $1,112 3CR17572-91 $2,042 3CR17660-91 $775 3CR17661-91 $1,236 3CR17662-91 $2,166 3CR17761-91 $2,042 3CR17762-91 $3,096 3CR17771-91 $2,476 3CR17772-91 $4,336 3CRWE920G73 $557 3CRWXR10095A $495 3CSFP91 $213 3CSFP92 $616 3CSFP93 $120 3CXFP92 $2,166 3CXFP94 $1,236 3CXFP96 $6,196 HP Switch & Module (NEW) J4813A#ABA $427 J4858B $284 J4859B $611 J4900B#ABA $427 J4903A#ABA $1,699 J4904A#ABA $2,991 J8164A#ABA $1,563 J8165A#ABA $2,991 J8699A#ABA $4,758 J9019A#ABA $284 J9021A#ABA $1,495 J9022A#ABA $2,685 J9028A#ABA $352 J9029A#ABA $142 J9049A#ABA $2,447 J9050A#ABA $3,739 HP Storage (NEW) EH841A $2,319 EH842A $2,479 EH847A $2,399 EH848A $2,559 EH903A $2,599 Juniper Firewall (NEW) NS-5GT-001 $410 NS-5GT-008 $410 NS-5GT-101 $648 NS-5GT-108 $648 NS-5GT-201 $1,080 NS-5GT-208 $1,080 WatchGuard (NEW) WG50010 $316 WG50020 $396 WG50055 $607 WG50550 $962 WG50750 $1,841 WG51250 $2,501 WGSSL05 $1,841 *********************************************************** Quantity discount is available. Prices are in US$ and FOB Los Angeles. For additional information about our company and products, please visit http://www.computerwide.net *********************************************************** If you have received this message in error or if you would like to be removed from our broadcast for any reason, reply to this email with REMOVE as subject followed by the email address you wish to remove. *********************************************************** From owner-freebsd-ports@FreeBSD.ORG Wed Sep 26 01:43:14 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B50016A41A for ; Wed, 26 Sep 2007 01:43:14 +0000 (UTC) (envelope-from liouxlist@uol.com.br) Received: from goat.gigo.com (goat.gigo.com [216.218.228.114]) by mx1.freebsd.org (Postfix) with ESMTP id 57B4D13C457 for ; Wed, 26 Sep 2007 01:43:14 +0000 (UTC) (envelope-from liouxlist@uol.com.br) Received: from 201.24.13.31 (unknown [201.24.13.31]) by goat.gigo.com (Postfix) with ESMTP id B1AE6B8BC for ; Tue, 25 Sep 2007 18:32:29 -0700 (PDT) Received: (qmail 93628 invoked by uid 1001); 25 Sep 2007 22:31:16 -0300 Message-ID: <20070926013139.93529.qmail@exxodus.fedaykin.here> Date: Tue, 25 Sep 2007 22:31:15 -0300 From: Mario Sergio Fujikawa Ferreira To: Greg Lewis References: <20070924032022.10953.qmail@exxodus.fedaykin.here> <20070924155831.GA90505@misty.eyesbeyond.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070924155831.GA90505@misty.eyesbeyond.com> User-Agent: Mutt/1.5.16 (2007-06-09) Cc: freebsd-ports@freebsd.org Subject: Re: FreeBSD-current cannot build java/jdk15 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2007 01:43:14 -0000 On Mon, Sep 24, 2007 at 08:58:08AM -0700, Greg Lewis wrote: > Delivered-To: lioux-lists@localhost > X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to > glewis@eyesbeyond.com using -f > Date: Mon, 24 Sep 2007 08:58:31 -0700 > From: Greg Lewis > To: Mario Sergio Fujikawa Ferreira > Cc: freebsd-ports@freebsd.org > Subject: Re: FreeBSD-current cannot build java/jdk15 > In-Reply-To: <20070924032022.10953.qmail@exxodus.fedaykin.here> > User-Agent: Mutt/1.4.2.2i > X-SIG5: d0550b87f734f7096cf475953ea1c1d8 > > On Mon, Sep 24, 2007 at 12:19:59AM -0300, Mario Sergio Fujikawa Ferreira wrote: > > I am running -CURRENT as of yesterday (23 of september of > > 2007) and I am unable to build java/jdk15. > > > > FreeBSD exxodus.fedaykin.here 7.0-CURRENT FreeBSD 7.0-CURRENT #7: Fri Sep 21 07:35:14 BRT 2007 lioux@exxodus:/usr/obj/usr/src/sys/LIOUX i386 > > > > I am running all latest ports as of today. My system > > information is attached. Let me know if there is anything else I can do. > > > > My broken build can be found at: > > > > http://people.freebsd.org/~lioux/jdk15.tar.lzma > > MD5 (jdk15.tar.lzma) = 6a5f7e16795f89e20f415b8748ee2c0b > > > > The build log can be found at: > > > > http://people.freebsd.org/~lioux/jdk15.log > > Looks like the gcc 4.2 optimiser bug. Try setting -fno-tree-vrp in your > CFLAGS. Either that or hack the HotSpot compile to use -O0 rather than > -O3. Adding "-fno-tree-vrp" CFLAGS fixed the build. Regards, -- Mario S F Ferreira - DF - Brazil - "I guess this is a signature." feature, n: a documented bug | bug, n: an undocumented feature From owner-freebsd-ports@FreeBSD.ORG Wed Sep 26 05:04:12 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 88BDD16A417 for ; Wed, 26 Sep 2007 05:04:12 +0000 (UTC) (envelope-from vx2@tds.net) Received: from outbound4.mail.tds.net (outbound4.mail.tds.net [216.170.230.94]) by mx1.freebsd.org (Postfix) with ESMTP id 5E5B213C457 for ; Wed, 26 Sep 2007 05:04:12 +0000 (UTC) (envelope-from vx2@tds.net) Received: from outaamta02.mail.tds.net (outaamta02.mail.tds.net [216.170.230.32]) by outbound4.mail.tds.net (8.13.6/8.13.4) with ESMTP id l8Q54Br7011916 for ; Wed, 26 Sep 2007 00:04:11 -0500 Received: from x7.frogdoor.org ([69.130.90.228]) by outaamta02.mail.tds.net with SMTP id <20070926050411.QQSP5687.outaamta02.mail.tds.net@x7.frogdoor.org> for ; Wed, 26 Sep 2007 00:04:11 -0500 Date: Wed, 26 Sep 2007 01:08:24 -0400 From: Rob Clark To: freebsd-ports@freebsd.org Message-Id: <20070926010824.02190e0a.vx2@tds.net> X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: keyboard lock light issues - xorg-7.3_1 or fluxbox X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2007 05:04:12 -0000 Running: 6.2-STABLE FreeBSD 6.2-STABLE #0: Thu Sep 20 12:21:22 EDT 2007, xorg-7.3_1, fluxbox-1.0rc3_3 (window manager) Keyboard: IBM KB-8923 Following both the xorg 7.3 update, and new install of the most recent fluxbox, I've lost the lock lights on the keyboard (i.e., Num Lock and Caps Lock) while running X and fluxbox. Also had another issue with the f key not working. With mplayer full screened, the f key would not allow me to reduce the full screen back to original size -- had to ctrl-alt-backspace and exit X. Keyboard appears and works fine in console mode, lights work without issue. Not sure if this is attributed to the xorg 7.3 update or my late migration over to fluxbox-1.0rc3_3 from fluxbox-0.1.14. I update ports daily, and honestly do not know exactly when this started. Any help appreciated. Thanks, Rob From owner-freebsd-ports@FreeBSD.ORG Wed Sep 26 05:15:33 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E5A7616A418 for ; Wed, 26 Sep 2007 05:15:33 +0000 (UTC) (envelope-from edwin@mavetju.org) Received: from mail5out.barnet.com.au (mail5.barnet.com.au [202.83.178.78]) by mx1.freebsd.org (Postfix) with ESMTP id AAC4D13C45B for ; Wed, 26 Sep 2007 05:15:33 +0000 (UTC) (envelope-from edwin@mavetju.org) Received: by mail5out.barnet.com.au (Postfix, from userid 1001) id 71C8E2219D61; Wed, 26 Sep 2007 15:15:32 +1000 (EST) X-Viruscan-Id: <46F9EAF400004AFE9A3383@BarNet> Received: from mail5auth.barnet.com.au (mail5.barnet.com.au [202.83.178.78]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mail5.barnet.com.au (Postfix) with ESMTP id 28FEB21B1188; Wed, 26 Sep 2007 15:15:32 +1000 (EST) Received: from k7.mavetju (k7.mavetju.org [10.251.1.18]) by mail5auth.barnet.com.au (Postfix) with ESMTP id D7E732219D47; Wed, 26 Sep 2007 15:15:31 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 0CD755B; Wed, 26 Sep 2007 15:15:32 +1000 (EST) Date: Wed, 26 Sep 2007 15:15:32 +1000 From: Edwin Groothuis To: Rob Clark Message-ID: <20070926051532.GN1390@k7.mavetju> References: <20070926010824.02190e0a.vx2@tds.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070926010824.02190e0a.vx2@tds.net> User-Agent: Mutt/1.4.2.3i Cc: freebsd-ports@freebsd.org Subject: Re: keyboard lock light issues - xorg-7.3_1 or fluxbox X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2007 05:15:34 -0000 On Wed, Sep 26, 2007 at 01:08:24AM -0400, Rob Clark wrote: > Following both the xorg 7.3 update, and new install of the > most recent fluxbox, I've lost the lock lights on the > keyboard (i.e., Num Lock and Caps Lock) while running X and > fluxbox. Known issue. Stay tuned on this mailinglist for more information. Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://www.mavetju.org/weblog/ From owner-freebsd-ports@FreeBSD.ORG Wed Sep 26 05:32:49 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 65D6616A418 for ; Wed, 26 Sep 2007 05:32:49 +0000 (UTC) (envelope-from freebsd-ports@dino.sk) Received: from loki.netlab.sk (loki.netlab.sk [84.245.65.11]) by mx1.freebsd.org (Postfix) with ESMTP id 01B1D13C447 for ; Wed, 26 Sep 2007 05:32:48 +0000 (UTC) (envelope-from freebsd-ports@dino.sk) Received: from lex.dino.sk (home.dino.sk [84.245.95.252]) (AUTH: PLAIN milan, TLS: TLSv1/SSLv3,256bits,AES256-SHA) by loki.netlab.sk with esmtp; Wed, 26 Sep 2007 07:31:33 +0200 id 0002E01B.46F9EEB5.00014525 From: Milan Obuch To: freebsd-ports@freebsd.org Date: Wed, 26 Sep 2007 07:32:11 +0200 User-Agent: KMail/1.9.6 References: <20070926010824.02190e0a.vx2@tds.net> In-Reply-To: <20070926010824.02190e0a.vx2@tds.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200709260732.14421.freebsd-ports@dino.sk> Cc: Rob Clark Subject: Re: keyboard lock light issues - xorg-7.3_1 or fluxbox X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2007 05:32:49 -0000 On Wednesday 26 September 2007 07:08:24 Rob Clark wrote: > Running: > 6.2-STABLE FreeBSD 6.2-STABLE #0: Thu Sep 20 12:21:22 EDT > 2007, xorg-7.3_1, fluxbox-1.0rc3_3 (window manager) > > Keyboard: > IBM KB-8923 > > Following both the xorg 7.3 update, and new install of the > most recent fluxbox, I've lost the lock lights on the > keyboard (i.e., Num Lock and Caps Lock) while running X and > fluxbox. > It's the same here - I am using KDE suite, and it happened just after xorg 6.9 -> 7.3 upgrade. I just reported it yesterday on x11 list. > Also had another issue with the f key not working. > With mplayer full screened, the f key would not allow me to > reduce the full screen back to original size -- had to > ctrl-alt-backspace and exit X. > I did not notice any other keyboard related problem, but this says nothing. I just did not notice any. > Keyboard appears and works fine in console mode, lights work > without issue. > Same here - but this is expected, as kernel keyboard driver is set different ways in two cases - raw mode (key press and release reported with scan codes) for X, cooked mode (scan codes converted to characters) for console. > Not sure if this is attributed to the xorg 7.3 update or my > late migration over to fluxbox-1.0rc3_3 from fluxbox-0.1.14. > As my environment is different, I would say xorg update is the culprit. I would like to know what I can test - to me it looks like something in xorg's keyboard driver. If noone has a clue, this would be my starting point for investigation. It has low priority for me, now, it is annoying, but not life damaging bug ;) Regards, Milan -- No need to mail me directly. Just reply to mailing list, please. From owner-freebsd-ports@FreeBSD.ORG Wed Sep 26 06:03:06 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0738016A419 for ; Wed, 26 Sep 2007 06:03:06 +0000 (UTC) (envelope-from lists@socruel.nu) Received: from nairobi.socruel.nu (nairobi.socruel.nu [217.140.4.88]) by mx1.freebsd.org (Postfix) with ESMTP id 6BCC513C48D for ; Wed, 26 Sep 2007 06:03:05 +0000 (UTC) (envelope-from lists@socruel.nu) Received: from localhost (localhost.socruel.nu [127.0.0.1]) by nairobi.socruel.nu (Postfix) with ESMTP id 36C392E0B9; Wed, 26 Sep 2007 07:47:15 +0200 (CEST) X-Virus-Scanned: amavisd-new at socruel.nu Received: from nairobi.socruel.nu ([127.0.0.1]) by localhost (nairobi.socruel.nu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id IoUmXjhV8HI0; Wed, 26 Sep 2007 07:47:12 +0200 (CEST) Received: from imeel.socruel.nu (localhost.socruel.nu [127.0.0.1]) by nairobi.socruel.nu (Postfix) with ESMTP id 23B432E0B6; Wed, 26 Sep 2007 07:47:12 +0200 (CEST) Received: from 80.127.130.242 (SquirrelMail authenticated user lists@socruel.nu) by imeel.socruel.nu with HTTP; Wed, 26 Sep 2007 07:47:12 +0200 (CEST) Message-ID: <53969.80.127.130.242.1190785632.squirrel@imeel.socruel.nu> Date: Wed, 26 Sep 2007 07:47:12 +0200 (CEST) From: lists@socruel.nu To: freebsd-ports@freebsd.org User-Agent: SquirrelMail/1.4.10a MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Cc: chrissicool@chrissicool.net Subject: Error code 1 when upgrading ftp-proxy port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2007 06:03:06 -0000 Hello list, on a 6.2-RELEASE-p7 system with an up to date ports tree I tried to upgrade the ftp-proxy port. The following happened: root@system sbin # portmaster ftp-proxy-4.1p2 ===>>> Port to upgrade: ftp-proxy-4.1p2 ===>>> Port directory: /usr/ports/ftp/ftp-proxy ===>>> Gathering distinfo list for installed ports in background ===>>> Launching 'make checksum' for ftp/ftp-proxy in background ===>>> Gathering dependency list for ftp/ftp-proxy from ports ===>>> Starting recursive 'make config' check ===>>> Recursive 'make config' check complete for ftp/ftp-proxy ===>>> Starting build for ftp/ftp-proxy <<<=== ===>>> The 'make config' check revealed no dependencies to update ===> Cleaning for ftp-proxy-4.1p2_1 ===> Vulnerability check disabled, database not found ===> Extracting for ftp-proxy-4.1p2_1 => MD5 Checksum OK for ftp-proxy-4.1p2.tar.gz. => SHA256 Checksum OK for ftp-proxy-4.1p2.tar.gz. ===> Patching for ftp-proxy-4.1p2_1 ===> ftp-proxy-4.1p2_1 depends on shared library: event-1.3d - found ===> Configuring for ftp-proxy-4.1p2_1 ===> Building for ftp-proxy-4.1p2_1 Warning: Object directory not changed from original /usr/ports/ftp/ftp-proxy/work/ftp-proxy-4.1p2 cc -O -pipe -I/usr/ports/ftp/ftp-proxy/work/ftp-proxy-4.1p2 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -c ftp-proxy.c ftp-proxy.c:32:19: event.h: No such file or directory ftp-proxy.c: In function `client_error': ftp-proxy.c:140: error: `EVBUFFER_EOF' undeclared (first use in this function) ftp-proxy.c:140: error: (Each undeclared identifier is reported only once ftp-proxy.c:140: error: for each function it appears in.) ftp-proxy.c:142: error: `EVBUFFER_ERROR' undeclared (first use in this function) ftp-proxy.c:142: error: `EVBUFFER_READ' undeclared (first use in this function) ftp-proxy.c:144: error: `EVBUFFER_TIMEOUT' undeclared (first use in this function) ftp-proxy.c:146: error: `EVBUFFER_WRITE' undeclared (first use in this function) ftp-proxy.c: In function `client_parse_anon': ftp-proxy.c:186: warning: implicit declaration of function `bufferevent_write' ftp-proxy.c: In function `client_read': ftp-proxy.c:239: warning: implicit declaration of function `bufferevent_read' ftp-proxy.c: In function `end_session': ftp-proxy.c:293: warning: implicit declaration of function `bufferevent_free' ftp-proxy.c: In function `handle_connection': ftp-proxy.c:493: warning: implicit declaration of function `bufferevent_new' ftp-proxy.c:494: warning: assignment makes pointer from integer without a cast ftp-proxy.c:499: warning: implicit declaration of function `bufferevent_settimeout' ftp-proxy.c:500: warning: implicit declaration of function `bufferevent_enable' ftp-proxy.c:500: error: `EV_READ' undeclared (first use in this function) ftp-proxy.c:500: error: `EV_TIMEOUT' undeclared (first use in this function) ftp-proxy.c:503: warning: assignment makes pointer from integer without a cast ftp-proxy.c: In function `main': ftp-proxy.c:592: error: storage size of 'ev' isn't known ftp-proxy.c:592: error: storage size of 'ev_sighup' isn't known ftp-proxy.c:592: error: storage size of 'ev_sigint' isn't known ftp-proxy.c:592: error: storage size of 'ev_sigterm' isn't known ftp-proxy.c:768: warning: implicit declaration of function `event_init' ftp-proxy.c:772: warning: implicit declaration of function `signal_set' ftp-proxy.c:775: warning: implicit declaration of function `signal_add' ftp-proxy.c:779: warning: implicit declaration of function `event_set' ftp-proxy.c:779: error: `EV_READ' undeclared (first use in this function) ftp-proxy.c:779: error: `EV_PERSIST' undeclared (first use in this function) ftp-proxy.c:780: warning: implicit declaration of function `event_add' ftp-proxy.c:785: warning: implicit declaration of function `event_dispatch' ftp-proxy.c:592: warning: unused variable `ev' ftp-proxy.c:592: warning: unused variable `ev_sighup' ftp-proxy.c:592: warning: unused variable `ev_sigint' ftp-proxy.c:592: warning: unused variable `ev_sigterm' ftp-proxy.c: In function `server_error': ftp-proxy.c:904: error: `EVBUFFER_EOF' undeclared (first use in this function) ftp-proxy.c:906: error: `EVBUFFER_ERROR' undeclared (first use in this function) ftp-proxy.c:906: error: `EVBUFFER_READ' undeclared (first use in this function) ftp-proxy.c:908: error: `EVBUFFER_WRITE' undeclared (first use in this function) ftp-proxy.c:910: error: `EVBUFFER_TIMEOUT' undeclared (first use in this function) *** Error code 1 Stop in /usr/ports/ftp/ftp-proxy/work/ftp-proxy-4.1p2. *** Error code 1 Stop in /usr/ports/ftp/ftp-proxy. ===>>> make failed for ftp/ftp-proxy ===>>> Aborting update Terminated Anyone any idea what this is? Thanx in advance. Regards, Lars. From owner-freebsd-ports@FreeBSD.ORG Wed Sep 26 06:13:31 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1C38416A417 for ; Wed, 26 Sep 2007 06:13:31 +0000 (UTC) (envelope-from anderson.gnu@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.177]) by mx1.freebsd.org (Postfix) with ESMTP id D85BF13C455 for ; Wed, 26 Sep 2007 06:13:30 +0000 (UTC) (envelope-from anderson.gnu@gmail.com) Received: by wa-out-1112.google.com with SMTP id k17so2729900waf for ; Tue, 25 Sep 2007 23:13:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; bh=DwoFRs+SBOhFyMONKMX+PVfCrQNU6wSWQXKbkKpsFok=; b=SSHW/ISAyGBIOohb76Yp6L855Qw3kdsey1IA5lm25uYSX/5iyrEmGVp94iFG7rArTbJMA8s9ypy9Pq8Lh0ZhMn2a9L4sopQ+8sca8YUOeIhi6OszfaIlXl8bNg8YiE2XaPtyXHmVa58/GdMXx1QbmhgZrz6h2Kb/sKSxSVa3PaQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=MMFpdT0DML2vTdM26AHZ9Glh6SsHrz9NOnJjEzb+3qnsprosW+Sg6KjDBUqxllA+G3Pju6MpEKPE9SHdYOrTV84qt5/ge1LSf6r9AEwM8Yhg+UQa7rPWpymBFo5o6ezF5KRmXBzT+9cqw1AeYdtaWZVEqu1lTlWSdLjwbi7qSE0= Received: by 10.114.93.17 with SMTP id q17mr431242wab.1190787209917; Tue, 25 Sep 2007 23:13:29 -0700 (PDT) Received: by 10.114.179.12 with HTTP; Tue, 25 Sep 2007 23:13:29 -0700 (PDT) Message-ID: Date: Wed, 26 Sep 2007 16:13:29 +1000 From: "Mr Anderson" To: freebsd-ports@freebsd.org In-Reply-To: <20070918205450.GA2809@dose.local.invalid> MIME-Version: 1.0 References: <20070918205450.GA2809@dose.local.invalid> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Simon Barner Subject: Re: update ports from a file X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2007 06:13:31 -0000 Hello Well, I could find a CD/DVD updated of FreeBSD. Well, I decided to continue manually. I download the last ports.tar.gz file. I unpacked to /usr/ports. :) Then I tried the following and message said about can't cd to systutils/portupgrade (is that fine?) #portversion cd: can't cd to /usr/ports/sysutils/portupgrade ..... and then try to download an index file, but as I dont have internet connection, it start to updateing the ports index.... After it finished I tried #portversion cd: can't cd to /usr/ports/sysutils/portupgrade [missing key: categories] [Updatting the portsdb in /usr/ports ... - 17674 port entries found .... 1000 ... 2000 .... 17000..... done] missing key : categories: Cannot read the portsdb! database file error db41 expat ... the show the lis of pakages So, what is wrong with the database? and also [missing key: categories] ? cd: can't cd to /usr/ports/sysutils/portupgrade ??? How can I fixed those? Anderson On 9/19/07, Simon Barner < barner@freebsd.org> wrote: > > Mr Anderson wrote: > > Hello > > > > I have been using FreeBSD in the Univ recently and quite interesting. I > > decided to installed FreeBSD 6.2 in my laptop (I dont have internet > > connection) and now I want to install apache and other software. So, I > > downloaded ftp://ftp.freebsd.org/pub/FreeBSD/ports/ports/ports.tar.gz > and > > copy to my laptop to update ports. > > How do I update ports from the > > file? Right now, I have an old version of Ports, portsnap fetch does no= t > > > work because I do not have internet > > connection, and FreeBSD does not recognize my netowrk card reader, so > > I want to do it by hand , step by step. > > > > Any tip how to do update? Should I just unzip the file in /usr/ports , > but > > previosly delete everything??? > > I'd mv /usr/ports /usr/ports.orig before unzipping the port. Also have a > look at the `fetch-recursive-list' target. It allows you to generate a > shell script that will download all the required distfiles for a specific > port. E.g. > > cd /usr/ports/www/apache22 > make fetch-recursive-list > > If you are going for packages instead of ports, have a look at > pkg_fetch(1). > > -- > Best regards / Viele Gr=FC=DFe, barner@FreeBS= D.org > Simon Barner barner@gmx.de > > From owner-freebsd-ports@FreeBSD.ORG Wed Sep 26 06:35:02 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5423A16A418 for ; Wed, 26 Sep 2007 06:35:02 +0000 (UTC) (envelope-from edwin@mavetju.org) Received: from mail5out.barnet.com.au (mail5.barnet.com.au [202.83.178.78]) by mx1.freebsd.org (Postfix) with ESMTP id 2589913C447 for ; Wed, 26 Sep 2007 06:35:01 +0000 (UTC) (envelope-from edwin@mavetju.org) Received: by mail5out.barnet.com.au (Postfix, from userid 1001) id ADC0E2219D32; Wed, 26 Sep 2007 16:35:00 +1000 (EST) X-Viruscan-Id: <46F9FD940000F9FCAECE35@BarNet> Received: from mail5auth.barnet.com.au (mail5.barnet.com.au [202.83.178.78]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mail5.barnet.com.au (Postfix) with ESMTP id 6E2AA21B11AC; Wed, 26 Sep 2007 16:35:00 +1000 (EST) Received: from k7.mavetju (k7.mavetju.org [10.251.1.18]) by mail5auth.barnet.com.au (Postfix) with ESMTP id 2D9472218E25; Wed, 26 Sep 2007 16:35:00 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 5C59B59; Wed, 26 Sep 2007 16:35:02 +1000 (EST) Date: Wed, 26 Sep 2007 16:35:02 +1000 From: Edwin Groothuis To: Rob Clark , freebsd-ports@freebsd.org Message-ID: <20070926063502.GO1390@k7.mavetju> References: <20070926010824.02190e0a.vx2@tds.net> <20070926051532.GN1390@k7.mavetju> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070926051532.GN1390@k7.mavetju> User-Agent: Mutt/1.4.2.3i Cc: Subject: Re: keyboard lock light issues - xorg-7.3_1 or fluxbox X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2007 06:35:02 -0000 On Wed, Sep 26, 2007 at 03:15:32PM +1000, Edwin Groothuis wrote: > On Wed, Sep 26, 2007 at 01:08:24AM -0400, Rob Clark wrote: > > Following both the xorg 7.3 update, and new install of the > > most recent fluxbox, I've lost the lock lights on the > > keyboard (i.e., Num Lock and Caps Lock) while running X and > > fluxbox. > > Known issue. Stay tuned on this mailinglist for more information. xkbvleds helps here :-) Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://www.mavetju.org/weblog/ From owner-freebsd-ports@FreeBSD.ORG Wed Sep 26 07:31:50 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0FD8B16A479 for ; Wed, 26 Sep 2007 07:31:50 +0000 (UTC) (envelope-from anderson.gnu@gmail.com) Received: from rv-out-0910.google.com (rv-out-0910.google.com [209.85.198.189]) by mx1.freebsd.org (Postfix) with ESMTP id EC46C13C48A for ; Wed, 26 Sep 2007 07:31:49 +0000 (UTC) (envelope-from anderson.gnu@gmail.com) Received: by rv-out-0910.google.com with SMTP id l15so1742475rvb for ; Wed, 26 Sep 2007 00:31:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; bh=hhJcYnu/OHawprEtTYk7JpCF8ohyo3PwcV99Ie2INNo=; b=hzhG0pubXJlFDVO5sxjaxF90537Im2iDtwZDzaeTRIfaIesbYhbx+ebYBttdp+gKpaSqXTY8UcGMhGgmmh01nmNacw1iP0P3JgHoPlWA5q82Fzjn3X/+urVdceubr/n9bx12NdFuFuLHr5Y1063dQlfW7Qa2ITiylNmXnyvLacM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=UroufYZO7shrQut3dMZY4oJcN3DkT9cZ3CqrXLdCW4FRUHh3uaXkXAcizPkegmGrefdSkffb7IlV2saExe47mwKUFyEL9dNCgkvAV9UZoeS0jyQwzjZ0DWXxWjlf0440eOvGPmOOKgyYJFdTDPoK/PnoMduAWqJdg0PEFjgwK2w= Received: by 10.114.106.1 with SMTP id e1mr494679wac.1190791908169; Wed, 26 Sep 2007 00:31:48 -0700 (PDT) Received: by 10.114.179.12 with HTTP; Wed, 26 Sep 2007 00:31:48 -0700 (PDT) Message-ID: Date: Wed, 26 Sep 2007 17:31:48 +1000 From: "Mr Anderson" To: freebsd-ports@freebsd.org In-Reply-To: <46FA043D.1050504@takizo.com> MIME-Version: 1.0 References: <20070918205450.GA2809@dose.local.invalid> <46FA043D.1050504@takizo.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Paul Ooi Cong Jen Subject: Re: update ports from a file X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2007 07:31:50 -0000 Hi Paul First of all, In my scenario I dont have internet connection and I am doing the installations from scratch. So, I first update ports manually, and now = I CAN INSTALL packages by hand. I know it is not the ideal, but my network card works only for Windows. I am not a server administrator , I am only a student who whish to learn more about freeBSD. So, as I am able to install more ports packages, I am installing more software, but I noticed those messages (everytime I install something with portinstall) cd: can't cd to /usr/ports/sysutils/portupgrade [missing key: categories] [Updatting the portsdb in /usr/ports ... - 17674 port entries found .... 1000 ... 2000 .... 17000..... done] missing key : categories: Cannot read the portsdb! database file error an I am not sure how to get rid of them Thank you for your support Alberto On 9/26/07, Paul Ooi Cong Jen wrote: > > btw, you need internet connection for port installation. else can try > pkg_add media from ROM > > then try run > sh> portsnap fetch > sh> portsnap extract > > then you will see portupgrade is actually in > sh> cd /usr/ports/ports-mgmt/portupgrade > > the port tree has been updated for portupgrade > > Regards, > Paul Ooi Cong Jen > http://www.takizo.com/blog > > Mr Anderson wrote: > > Hello > > > > Well, I could find a CD/DVD updated of FreeBSD. Well, I decided to > continue > > manually. I download the last ports.tar.gz file. I unpacked to > /usr/ports. > > :) > > Then I tried the following and message said about can't cd to > > systutils/portupgrade (is that fine?) > > > > #portversion > > cd: can't cd to /usr/ports/sysutils/portupgrade > > ..... > > and then try to download an index file, but as I dont have internet > > connection, it start to > > updateing the ports index.... > > > > > > After it finished I tried > > > > #portversion > > cd: can't cd to /usr/ports/sysutils/portupgrade > > [missing key: categories] [Updatting the portsdb in > > /usr/ports ... - 17674 port entries found > > .... 1000 ... 2000 .... 17000..... done] > > missing key : categories: Cannot read the portsdb! > > database file error > > db41 > > expat > > ... the show the lis of pakages > > > > So, what is wrong with the database? and also > > [missing key: categories] ? > > cd: can't cd to /usr/ports/sysutils/portupgrade ??? > > > > How can I fixed those? > > > > Anderson > > > > > > > > On 9/19/07, Simon Barner < barner@freebsd.org> wrote: > >> Mr Anderson wrote: > >>> Hello > >>> > >>> I have been using FreeBSD in the Univ recently and quite interesting. > I > >>> decided to installed FreeBSD 6.2 in my laptop (I dont have internet > >>> connection) and now I want to install apache and other software. So, = I > >>> downloaded ftp://ftp.freebsd.org/pub/FreeBSD/ports/ports/ports.tar.g= z > >> and > >>> copy to my laptop to update ports. > >>> How do I update ports from the > >>> file? Right now, I have an old version of Ports, portsnap fetch does > not > >>> work because I do not have internet > >>> connection, and FreeBSD does not recognize my netowrk card reader, so > >>> I want to do it by hand , step by step. > >>> > >>> Any tip how to do update? Should I just unzip the file in /usr/ports = , > >> but > >>> previosly delete everything??? > >> I'd mv /usr/ports /usr/ports.orig before unzipping the port. Also have > a > >> look at the `fetch-recursive-list' target. It allows you to generate a > >> shell script that will download all the required distfiles for a > specific > >> port. E.g. > >> > >> cd /usr/ports/www/apache22 > >> make fetch-recursive-list > >> > >> If you are going for packages instead of ports, have a look at > >> pkg_fetch(1). > >> > >> -- > >> Best regards / Viele Gr=FC=DFe, > barner@FreeBSD.org > >> Simon Barner > barner@gmx.de > >> > >> > > _______________________________________________ > > freebsd-ports@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org= " > > > From owner-freebsd-ports@FreeBSD.ORG Wed Sep 26 08:10:31 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 37E5516A417 for ; Wed, 26 Sep 2007 08:10:31 +0000 (UTC) (envelope-from vx2@tds.net) Received: from outbound3.mail.tds.net (outbound3.mail.tds.net [216.170.230.93]) by mx1.freebsd.org (Postfix) with ESMTP id 108B513C45D for ; Wed, 26 Sep 2007 08:10:30 +0000 (UTC) (envelope-from vx2@tds.net) Received: from outaamta02.mail.tds.net (outaamta02.mail.tds.net [216.170.230.32]) by outbound3.mail.tds.net (8.13.6/8.13.4) with ESMTP id l8Q8ATip028195; Wed, 26 Sep 2007 03:10:30 -0500 Received: from x7.frogdoor.org ([69.130.90.228]) by outaamta02.mail.tds.net with SMTP id <20070926081029.RBCW5687.outaamta02.mail.tds.net@x7.frogdoor.org>; Wed, 26 Sep 2007 03:10:29 -0500 Date: Wed, 26 Sep 2007 04:14:42 -0400 From: Rob Clark To: Edwin Groothuis Message-Id: <20070926041442.69290988.vx2@tds.net> In-Reply-To: <20070926063502.GO1390@k7.mavetju> References: <20070926010824.02190e0a.vx2@tds.net> <20070926051532.GN1390@k7.mavetju> <20070926063502.GO1390@k7.mavetju> X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: keyboard lock light issues - xorg-7.3_1 or fluxbox X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2007 08:10:31 -0000 > > Known issue. Stay tuned on this mailinglist for more > > information. > > xkbvleds helps here :-) > > Edwin > Edwin & Milan, a sincere thanks for the quick responses. I'll continue to monitor the mailing lists for this issue. In the meantime I'll take a look at xkbvleds. I'm not a programmer, but if there is something I can do to help please let me know. Regards, Rob From owner-freebsd-ports@FreeBSD.ORG Wed Sep 26 08:31:35 2007 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D3C4616A41A; Wed, 26 Sep 2007 08:31:35 +0000 (UTC) (envelope-from Mavka_temp@mail.ru) Received: from mx4.mail.ru (fallback.mail.ru [194.67.57.14]) by mx1.freebsd.org (Postfix) with ESMTP id 9C27313C45A; Wed, 26 Sep 2007 08:31:35 +0000 (UTC) (envelope-from Mavka_temp@mail.ru) Received: from mx3.mail.ru (mx3.mail.ru [194.67.23.149]) by mx4.mail.ru (mPOP.Fallback_MX) with ESMTP id DA3262AE98; Wed, 26 Sep 2007 11:25:27 +0400 (MSD) Received: from [83.239.64.248] (port=38071 helo=[83.239.64.248]) by mx3.mail.ru with asmtp id 1IaRGv-0008pi-00; Wed, 26 Sep 2007 11:25:25 +0400 X-AntiVirus: Checked by Dr.Web [version: 4.33, engine: 4.33.5.10110, virus records: 254384, updated: 24.09.2007] Date: Wed, 26 Sep 2007 11:25:25 +0400 From: Mavka X-Mailer: The Bat! (v2.11.02) Business X-Priority: 3 (Normal) Message-ID: <793824852.20070926112525@mail.ru> To: stas@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: ports@FreeBSD.org Subject: FreeBSD Port: libieee1284-0.2.10 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Mavka List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2007 08:31:35 -0000 Hello, stas Can you apply this patch to prevent amd64 restriction? http://www.mail-archive.com/debian-bugs-dist@lists.debian.org/msg310002.html From owner-freebsd-ports@FreeBSD.ORG Wed Sep 26 09:01:48 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 98B0A16A420 for ; Wed, 26 Sep 2007 09:01:48 +0000 (UTC) (envelope-from david@vizion2000.net) Received: from dns1.vizion2000.net (77-99-36-42.cable.ubr04.chap.blueyonder.co.uk [77.99.36.42]) by mx1.freebsd.org (Postfix) with ESMTP id 7DB1013C44B for ; Wed, 26 Sep 2007 09:01:48 +0000 (UTC) (envelope-from david@vizion2000.net) Received: by dns1.vizion2000.net (Postfix, from userid 1007) id 25DE91CC49; Wed, 26 Sep 2007 02:16:52 -0700 (PDT) From: David Southwell Organization: Voice and Vision To: freebsd-ports@freebsd.org Date: Wed, 26 Sep 2007 02:16:51 -0700 User-Agent: KMail/1.9.7 References: <46FA043D.1050504@takizo.com> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200709260216.51942.david@vizion2000.net> Cc: Paul Ooi Cong Jen , Mr Anderson Subject: Re: update ports from a file X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2007 09:01:48 -0000 On Wednesday 26 September 2007 00:31:48 Mr Anderson wrote: > Hi Paul > . . > I know it is not the ideal, but my network > card works only for Windows. Why?? From owner-freebsd-ports@FreeBSD.ORG Wed Sep 26 11:14:48 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4ECD616A419 for ; Wed, 26 Sep 2007 11:14:48 +0000 (UTC) (envelope-from eculp@encontacto.net) Received: from ns2.bafirst.com (72-12-2-19.wan.networktel.net [72.12.2.19]) by mx1.freebsd.org (Postfix) with ESMTP id 1FA4013C459 for ; Wed, 26 Sep 2007 11:14:47 +0000 (UTC) (envelope-from eculp@encontacto.net) Received: from HOME.encontacto.net ([189.129.12.64]) by ns2.bafirst.com with esmtp; Wed, 26 Sep 2007 06:14:45 -0500 id 000D4E5B.46FA3F25.0000490E Received: from localhost (localhost [127.0.0.1]) (uid 80) by HOME.encontacto.net with local; Wed, 26 Sep 2007 06:14:44 -0500 id 0004AC28.46FA3F24.00017AD7 Received: from dsl-189-129-12-64.prod-infinitum.com.mx (dsl-189-129-12-64.prod-infinitum.com.mx [189.129.12.64]) by intranet.encontacto.net (Horde MIME library) with HTTP; Wed, 26 Sep 2007 06:14:44 -0500 Message-ID: <20070926061444.ffnwqfpf4s0gg0w0@intranet.encontacto.net> X-Priority: 3 (Normal) Date: Wed, 26 Sep 2007 06:14:44 -0500 From: eculp@encontacto.net To: freebsd-ports References: <20070925163539.pgse608uso00sw80@intranet.encontacto.net> In-Reply-To: <20070925163539.pgse608uso00sw80@intranet.encontacto.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (4.2-cvs) X-Originating-IP: 189.129.12.64 Subject: Re: latest firefox. linux-flashplugin and nspluginwrapper don't want to work together. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2007 11:14:48 -0000 Quoting eculp@encontacto.net: > I upgraded firefox, the linux-flashplugin and reinstalled =20 > nspluginwrapper, just in case;) > > firefox-2.0.0.7,1 > linux-flashplugin-7.0r70 > nspluginwrapper-0.9.91.5 > > The plugins are recognized in firefox wih about:plugins but no =20 > longer work. They have been working nicely for several months now. =20 > I guess I should rollback something. More info: - Box with issue: 6.2-STABLE FreeBSD 6.2-STABLE #372: Mon Sep 24 05:41:04 CDT 2007 - On Linux-opera I get sound but no flash movie. - I tried it on a 7.0 current box and it worked. So maybe it is time to quite procrastinating and upgrade ;) - I would still love to hear a Flash9 success story. TIA > The flashplugin doesn't work with linux-firefox-2.0.0.7 either. I =20 > don't know if it did before or not but seem to remember that it did. > > Also, I would really like to know if anyone has flash9 working with =20 > somewhat reasonable stability and sound or a way to make the =20 > server-side think that flash7 is flash8 or above? There are more =20 > and more sites asking for flash8+ and very few that won't work with =20 > flash7. > > Any suggestions appreciated. > > ed > > From owner-freebsd-ports@FreeBSD.ORG Wed Sep 26 11:16:17 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1B1F216A418 for ; Wed, 26 Sep 2007 11:16:17 +0000 (UTC) (envelope-from lioux-list@uol.com.br) Received: from goat.gigo.com (goat.gigo.com [216.218.228.114]) by mx1.freebsd.org (Postfix) with ESMTP id 2333313C46E for ; Wed, 26 Sep 2007 11:16:17 +0000 (UTC) (envelope-from lioux-list@uol.com.br) Received: from 201.24.13.31 (unknown [201.24.13.31]) by goat.gigo.com (Postfix) with ESMTP id E1724B882 for ; Wed, 26 Sep 2007 04:16:15 -0700 (PDT) Received: (qmail 93834 invoked by uid 1001); 26 Sep 2007 08:14:54 -0300 Message-ID: <20070926111517.93749.qmail@exxodus.fedaykin.here> Date: Wed, 26 Sep 2007 08:14:54 -0300 From: Mario Sergio Fujikawa Ferreira To: Rob Clark References: <20070926010824.02190e0a.vx2@tds.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070926010824.02190e0a.vx2@tds.net> User-Agent: Mutt/1.5.16 (2007-06-09) Cc: freebsd-ports@freebsd.org Subject: Re: keyboard lock light issues - xorg-7.3_1 or fluxbox X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2007 11:16:17 -0000 On Wed, Sep 26, 2007 at 01:08:01AM -0400, Rob Clark wrote: > Delivered-To: lioux-lists@localhost > Delivered-To: freebsd-ports@freebsd.org > Date: Wed, 26 Sep 2007 01:08:24 -0400 > From: Rob Clark > To: freebsd-ports@freebsd.org > X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; i386-portbld-freebsd6.2) > Subject: keyboard lock light issues - xorg-7.3_1 or fluxbox > X-BeenThere: freebsd-ports@freebsd.org > X-Mailman-Version: 2.1.5 > Precedence: list > Errors-To: owner-freebsd-ports@freebsd.org > X-SIG5: 1ab2f6cc330b76f3e30492f4a03b6886 > > Running: > 6.2-STABLE FreeBSD 6.2-STABLE #0: Thu Sep 20 12:21:22 EDT > 2007, xorg-7.3_1, fluxbox-1.0rc3_3 (window manager) > > Keyboard: > IBM KB-8923 > > Following both the xorg 7.3 update, and new install of the > most recent fluxbox, I've lost the lock lights on the > keyboard (i.e., Num Lock and Caps Lock) while running X and > fluxbox. Using KDE here with xorg 7.3. > > Also had another issue with the f key not working. > With mplayer full screened, the f key would not allow me to > reduce the full screen back to original size -- had to > ctrl-alt-backspace and exit X. I lost the whole keyboard. :) I can't type a thing. > Keyboard appears and works fine in console mode, lights work > without issue. > > Not sure if this is attributed to the xorg 7.3 update or my > late migration over to fluxbox-1.0rc3_3 from fluxbox-0.1.14. > > I update ports daily, and honestly do not know exactly when > this started. Any help appreciated. I have a paleative fix for you. :) Remove the port xkbcomp. The keyboard will begin to respond correctly instantaneously. I have just used it this adhoc "fix" and I can use my keyboard again. Regards, -- Mario S F Ferreira - DF - Brazil - "I guess this is a signature." feature, n: a documented bug | bug, n: an undocumented feature From owner-freebsd-ports@FreeBSD.ORG Wed Sep 26 12:00:05 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DDE8116A47E for ; Wed, 26 Sep 2007 12:00:05 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from redbull.bpaserver.net (redbullneu.bpaserver.net [213.198.78.217]) by mx1.freebsd.org (Postfix) with ESMTP id 4B4A313C46A for ; Wed, 26 Sep 2007 12:00:03 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from outgoing.leidinger.net (p54A54ADC.dip.t-dialin.net [84.165.74.220]) by redbull.bpaserver.net (Postfix) with ESMTP id 70F542E14E; Wed, 26 Sep 2007 13:59:56 +0200 (CEST) Received: from webmail.leidinger.net (webmail.Leidinger.net [192.168.1.102]) by outgoing.leidinger.net (Postfix) with ESMTP id 5A6CB5B4812; Wed, 26 Sep 2007 13:59:29 +0200 (CEST) Received: (from www@localhost) by webmail.leidinger.net (8.14.1/8.13.8/Submit) id l8QBxTfB067577; Wed, 26 Sep 2007 13:59:29 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from pslux.cec.eu.int (pslux.cec.eu.int [158.169.9.14]) by webmail.leidinger.net (Horde MIME library) with HTTP; Wed, 26 Sep 2007 13:59:28 +0200 Message-ID: <20070926135928.auvddwatc4kgoskw@webmail.leidinger.net> X-Priority: 3 (Normal) Date: Wed, 26 Sep 2007 13:59:28 +0200 From: Alexander Leidinger To: eculp@encontacto.net References: <20070925163539.pgse608uso00sw80@intranet.encontacto.net> <20070926061444.ffnwqfpf4s0gg0w0@intranet.encontacto.net> In-Reply-To: <20070926061444.ffnwqfpf4s0gg0w0@intranet.encontacto.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (4.1.4) / FreeBSD-7.0 X-BPAnet-MailScanner-Information: Please contact the ISP for more information X-BPAnet-MailScanner: Found to be clean X-BPAnet-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-14.8, required 8, BAYES_00 -15.00, J_CHICKENPOX_57 0.60, RDNS_DYNAMIC 0.10, SMILEY -0.50) X-BPAnet-MailScanner-From: alexander@leidinger.net X-Spam-Status: No Cc: freebsd-ports Subject: Re: latest firefox. linux-flashplugin and nspluginwrapper don't want to work together. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2007 12:00:06 -0000 Quoting eculp@encontacto.net (from Wed, 26 Sep 2007 06:14:44 -0500): > Quoting eculp@encontacto.net: > >> I upgraded firefox, the linux-flashplugin and reinstalled =20 >> nspluginwrapper, just in case;) >> >> firefox-2.0.0.7,1 >> linux-flashplugin-7.0r70 >> nspluginwrapper-0.9.91.5 >> >> The plugins are recognized in firefox wih about:plugins but no =20 >> longer work. They have been working nicely for several months now. =20 >> I guess I should rollback something. > > More info: > - Box with issue: > 6.2-STABLE FreeBSD 6.2-STABLE #372: Mon Sep 24 05:41:04 CDT 2007 Is this RELENG_6 or RELENG_6_2? If the former, when did you cvsup? > - On Linux-opera I get sound but no flash movie. > - I tried it on a 7.0 current box and it worked. So maybe it is > time to quite procrastinating and upgrade ;) > - I would still love to hear a Flash9 success story. There are kernel bugs preventing flash9 to work even on -current. You =20 can head over to emulation@ if you want to help debugging the problem =20 (you have to run -current then). Bye, Alexander. --=20 Ferengi Rule of Acquisition #18: =09 A Ferengi without profit is no Ferengi at all. =09=09-- ST:DS9, "Heart of Stone" http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID =3D B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID =3D 72077137 From owner-freebsd-ports@FreeBSD.ORG Wed Sep 26 12:27:39 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2766D16A417 for ; Wed, 26 Sep 2007 12:27:39 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from smtp02.lnh.mail.rcn.net (smtp02.lnh.mail.rcn.net [207.172.157.102]) by mx1.freebsd.org (Postfix) with ESMTP id EBEAB13C4A5 for ; Wed, 26 Sep 2007 12:27:38 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from mr02.lnh.mail.rcn.net ([207.172.157.22]) by smtp02.lnh.mail.rcn.net with ESMTP; 26 Sep 2007 08:27:37 -0400 Received: from smtp01.lnh.mail.rcn.net (smtp01.lnh.mail.rcn.net [207.172.4.11]) by mr02.lnh.mail.rcn.net (MOS 3.8.3-GA) with ESMTP id NVC04397; Wed, 26 Sep 2007 08:27:37 -0400 (EDT) Received: from 65-78-26-179.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com (HELO jerusalem.litteratus.org.litteratus.org) ([65.78.26.179]) by smtp01.lnh.mail.rcn.net with ESMTP; 26 Sep 2007 08:27:36 -0400 From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18170.20535.875076.616230@jerusalem.litteratus.org> Date: Wed, 26 Sep 2007 08:27:35 -0400 To: freebsd-ports@freebsd.org In-Reply-To: <200709260732.14421.freebsd-ports@dino.sk> References: <20070926010824.02190e0a.vx2@tds.net> <200709260732.14421.freebsd-ports@dino.sk> X-Mailer: VM 7.17 under 21.5 (beta28) "fuki" XEmacs Lucid X-Junkmail-Whitelist: YES (by domain whitelist at mr02.lnh.mail.rcn.net) Subject: Re: keyboard lock light issues - xorg-7.3_1 or fluxbox X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2007 12:27:39 -0000 Milan Obuch writes: > > Also had another issue with the f key not working. > > With mplayer full screened, the f key would not allow me to > > reduce the full screen back to original size -- had to > > ctrl-alt-backspace and exit X. > > > > I did not notice any other keyboard related problem, but this > says nothing. I just did not notice any. (I reported this on x11@ but haven't had a response.) I also am having problems with "keys not working". Specific cases: 1) 'e', 'b', 'm', and 'n' frequently don't register. For 'b' and 'n' I can (temporarily) fix things by hitting 'm' (which sometimes doesn't register and sometimes does) which activates the other keys. 2) += no effect. += double quote. 3) +{, }= no effect. +{, }= correct movement. Either plus right-/left-arrow works correctly. 4) the keyoard lights are also semi-disfuctional, but they've been that way since the jump fro 6.9 to 7.2. Is there a PR open on this? Robert Huff From owner-freebsd-ports@FreeBSD.ORG Wed Sep 26 12:40:09 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6733D16A418 for ; Wed, 26 Sep 2007 12:40:09 +0000 (UTC) (envelope-from eculp@encontacto.net) Received: from ns2.bafirst.com (72-12-2-19.wan.networktel.net [72.12.2.19]) by mx1.freebsd.org (Postfix) with ESMTP id 3335613C45A for ; Wed, 26 Sep 2007 12:40:08 +0000 (UTC) (envelope-from eculp@encontacto.net) Received: from HOME.encontacto.net ([189.129.12.64]) by ns2.bafirst.com with esmtp; Wed, 26 Sep 2007 07:40:07 -0500 id 000D5247.46FA5327.000038B5 Received: from localhost (localhost [127.0.0.1]) (uid 80) by HOME.encontacto.net with local; Wed, 26 Sep 2007 07:40:06 -0500 id 0004AC28.46FA5326.0001826F Received: from dsl-189-129-12-64.prod-infinitum.com.mx (dsl-189-129-12-64.prod-infinitum.com.mx [189.129.12.64]) by intranet.encontacto.net (Horde MIME library) with HTTP; Wed, 26 Sep 2007 07:40:06 -0500 Message-ID: <20070926074006.nxs0bmj4bosg0g4s@intranet.encontacto.net> X-Priority: 3 (Normal) Date: Wed, 26 Sep 2007 07:40:06 -0500 From: eculp@encontacto.net To: Alexander Leidinger References: <20070925163539.pgse608uso00sw80@intranet.encontacto.net> <20070926061444.ffnwqfpf4s0gg0w0@intranet.encontacto.net> <20070926135928.auvddwatc4kgoskw@webmail.leidinger.net> In-Reply-To: <20070926135928.auvddwatc4kgoskw@webmail.leidinger.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (4.2-cvs) X-Originating-IP: 189.129.12.64 Cc: freebsd-ports Subject: Re: Re: latest firefox. linux-flashplugin and nspluginwrapper don't want to work together. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2007 12:40:09 -0000 Quoting Alexander Leidinger : > Quoting eculp@encontacto.net (from Wed, 26 Sep 2007 06:14:44 -0500): > >> Quoting eculp@encontacto.net: >> >>> I upgraded firefox, the linux-flashplugin and reinstalled =20 >>> nspluginwrapper, just in case;) >>> >>> firefox-2.0.0.7,1 >>> linux-flashplugin-7.0r70 >>> nspluginwrapper-0.9.91.5 >>> >>> The plugins are recognized in firefox wih about:plugins but no =20 >>> longer work. They have been working nicely for several months =20 >>> now. I guess I should rollback something. >> >> More info: >> - Box with issue: >> 6.2-STABLE FreeBSD 6.2-STABLE #372: Mon Sep 24 05:41:04 CDT 2007 > > Is this RELENG_6 or RELENG_6_2? If the former, when did you cvsup? Hello Alexander, It is RELENG_6 and I cvsup and build daily. I clean libraries, =20 includes and reboot every 10 days, more or less. It is pretty up to =20 date. > >> - On Linux-opera I get sound but no flash movie. >> - I tried it on a 7.0 current box and it worked. So maybe it is >> time to quite procrastinating and upgrade ;) >> - I would still love to hear a Flash9 success story. > > There are kernel bugs preventing flash9 to work even on -current. =20 > You can head over to emulation@ if you want to help debugging the =20 > problem (you have to run -current then). I have decided to go to current, using a cd, probably this weekend. =20 This is my last RELENG_6 box so I don't really need to keep it =20 anymore. I'm building a release on a current box right now and will =20 build another tomorrow to have a couple of cd's just in case ;). Thanks, ed > > Bye, > Alexander. > > --=20 > Ferengi Rule of Acquisition #18: > =09 A Ferengi without profit is no Ferengi at all. > =09=09-- ST:DS9, "Heart of Stone" > > http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID =3D B0063FE7 > http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID =3D 72077137 > From owner-freebsd-ports@FreeBSD.ORG Wed Sep 26 12:56:45 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0F05B16A46D for ; Wed, 26 Sep 2007 12:56:45 +0000 (UTC) (envelope-from ml.freebsd.ports2@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.174]) by mx1.freebsd.org (Postfix) with ESMTP id B234A13C4A7 for ; Wed, 26 Sep 2007 12:56:44 +0000 (UTC) (envelope-from ml.freebsd.ports2@gmail.com) Received: by ug-out-1314.google.com with SMTP id a2so1309085ugf for ; Wed, 26 Sep 2007 05:56:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; bh=Bs7Yd/XVdIxVHbNyYk5LNvXrxldkJq/blBkd9KliWk0=; b=mHVK5H1dXRdQ0SQil5GhFc+5Xk+ZfgmG8/cUEykr/JBT7ICHg1+w82CzlpL3FdVtwiqg2JslFH6PkTYhJx2iwtPHxk+mcW5HZYmbljw9SkaaWtrprvFjf++nr7MUVZtItiqE5uwp7qOlvow1mxQeMxhvy5UszeQt6uItQ9yg7Vc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=jMsJP6a6AEXV0vZQlOQ0lzlkrR3WCuENAHgNTv+3gGRKCUtVyZsbMfSXmsla3NpGWH7mZXqCZyojtVN9L0lTSJdrLkgUIPdwYL8neODOjCTiUwtkkGnj7rK/NUCaPdT1ZLzPDahFBCaG9YHxEkh34wuc6xfbCFGCUpoGl/lUhlY= Received: by 10.67.22.2 with SMTP id z2mr2114009ugi.1190809860567; Wed, 26 Sep 2007 05:31:00 -0700 (PDT) Received: by 10.67.40.12 with HTTP; Wed, 26 Sep 2007 05:31:00 -0700 (PDT) Message-ID: <5577a4870709260531x41104adal430cd4b734468555@mail.gmail.com> Date: Wed, 26 Sep 2007 08:31:00 -0400 From: "FreeBSD Ports" To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: Error: Cannot read the portsdb! X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2007 12:56:45 -0000 System info: # uname -a FreeBSD hr-stc-itlab3.virginiadot.org 6.2-STABLE FreeBSD 6.2-STABLE #0: Tue Sep 25 13:26:00 EDT 2007 toor@hr-stc-itlab3.virginiadot.org:/usr/obj/usr/src/sys/HR-STC-ITLAB3 i386 Message: I'm trying to upgrade my ports, but I keep getting an error message. My ports were last updated July 2nd, 2007 and all installed ports were at their current versions then. I've updated my ports tree with cvs and remade INDEX the day before yesterday. Now I'm following instructions in UPDATING to upgrade ports that have special instructions. This is the error message I get: # portupgrade -f 'autoconf*' cd: can't cd to /usr/ports/sysutils/portupgrade [missing key: categories] [Updating the portsdb in /usr/ports ... - 17670 port entries found .........1000.........2000.........3000.........4000.........5000.........6000.........7000.........8000.........9000.........10000.........11000.........12000.........13000.........14000.........15000.........16000.........17000...... ..... done] missing key: categories: Cannot read the portsdb! /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:548:in `open_db': database file error (PortsDB::DBError) from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:702:in `port' from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:890:in `all_depends_list' from /usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:809:in `tsort_build' from /usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:801:in `each' from /usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:801:in `tsort_build' from /usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:823:in `sort_build' from /usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:827:in `sort_build!' from /usr/local/sbin/portupgrade:721:in `main' from /usr/local/lib/ruby/1.8/optparse.rb:755:in `initialize' from /usr/local/sbin/portupgrade:220:in `new' from /usr/local/sbin/portupgrade:220:in `main' from /usr/local/sbin/portupgrade:2084 Can anyone help me? Thanks, Kevin From owner-freebsd-ports@FreeBSD.ORG Wed Sep 26 13:25:11 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9FDBA16A419 for ; Wed, 26 Sep 2007 13:25:11 +0000 (UTC) (envelope-from bst2006@dva.dyndns.org) Received: from dva.homeunix.org (dva.homeunix.org [217.91.119.60]) by mx1.freebsd.org (Postfix) with ESMTP id 7C64613C469 for ; Wed, 26 Sep 2007 13:25:10 +0000 (UTC) (envelope-from bst2006@dva.dyndns.org) Received: from dva.intranet.local (dva [10.0.0.10]) by dva.homeunix.org (Postfix) with ESMTP id 059AD230B2 for ; Wed, 26 Sep 2007 15:17:59 +0200 (CEST) Message-ID: <46FA5C06.40400@dva.dyndns.org> Date: Wed, 26 Sep 2007 15:17:58 +0200 From: "Boris S." User-Agent: Thunderbird 2.0.0.6 (X11/20070817) MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <5577a4870709260531x41104adal430cd4b734468555@mail.gmail.com> In-Reply-To: <5577a4870709260531x41104adal430cd4b734468555@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: Error: Cannot read the portsdb! X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2007 13:25:11 -0000 FreeBSD Ports schrieb: > Can anyone help me? Maybe portupgrade is too old. Try to pkg_delete -f /var/db/pkg/ruby\* /var/db/pkg/portupgrade\* then cd /usr/ports/ports-mgmt/portupgrade ; make install clean when portupgrade are ready: cd /usr/ports make fetchindex portsdb -u Boris From owner-freebsd-ports@FreeBSD.ORG Wed Sep 26 13:25:11 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A63CF16A41B for ; Wed, 26 Sep 2007 13:25:11 +0000 (UTC) (envelope-from bst2006@dva.dyndns.org) Received: from dva.homeunix.org (dva.homeunix.org [217.91.119.60]) by mx1.freebsd.org (Postfix) with ESMTP id 8073C13C46A for ; Wed, 26 Sep 2007 13:25:10 +0000 (UTC) (envelope-from bst2006@dva.dyndns.org) Received: from dva.intranet.local (dva [10.0.0.10]) by dva.homeunix.org (Postfix) with ESMTP id DBA0D2325E; Wed, 26 Sep 2007 15:09:31 +0200 (CEST) Message-ID: <46FA5A0B.2030404@dva.dyndns.org> Date: Wed, 26 Sep 2007 15:09:31 +0200 From: "Boris S." User-Agent: Thunderbird 2.0.0.6 (X11/20070817) MIME-Version: 1.0 To: eculp@encontacto.net References: <20070925163539.pgse608uso00sw80@intranet.encontacto.net> In-Reply-To: <20070925163539.pgse608uso00sw80@intranet.encontacto.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports Subject: Re: latest firefox. linux-flashplugin and nspluginwrapper don't want to work together. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2007 13:25:11 -0000 eculp@encontacto.net schrieb: > Also, I would really like to know if anyone has flash9 working with > somewhat reasonable stability and sound or a way to make the server-side > think that flash7 is flash8 or above? There are more and more sites > asking for flash8+ and very few that won't work with flash7. Because of the raising demand of flash9 i switched yesterday to linux-firefox-2.0.0.7 and flash9. This combination is much more stable and compatible than bsd-firefox with flash6 or 7 and wrapper. I'm using -CURRENT (AMD64) as of 21. Sept., with Linuxulator switched to "2.6.16" Mode and installed linux_base-fc6. I did't test sound and things like youtube didn't work. But I'm very happy now because MY often visited websites are much more useable now. Boris From owner-freebsd-ports@FreeBSD.ORG Wed Sep 26 13:39:07 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D5DE016A41A for ; Wed, 26 Sep 2007 13:39:07 +0000 (UTC) (envelope-from eculp@encontacto.net) Received: from ns2.bafirst.com (72-12-2-19.wan.networktel.net [72.12.2.19]) by mx1.freebsd.org (Postfix) with ESMTP id 8E16313C447 for ; Wed, 26 Sep 2007 13:39:07 +0000 (UTC) (envelope-from eculp@encontacto.net) Received: from HOME.encontacto.net ([189.129.12.64]) by ns2.bafirst.com with esmtp; Wed, 26 Sep 2007 08:39:05 -0500 id 000D51FC.46FA60F9.00004C8F Received: from localhost (localhost [127.0.0.1]) (uid 80) by HOME.encontacto.net with local; Wed, 26 Sep 2007 08:39:05 -0500 id 0004AC33.46FA60F9.00000208 Received: from dsl-189-129-12-64.prod-infinitum.com.mx (dsl-189-129-12-64.prod-infinitum.com.mx [189.129.12.64]) by intranet.encontacto.net (Horde MIME library) with HTTP; Wed, 26 Sep 2007 08:39:05 -0500 Message-ID: <20070926083905.zr6eeisfswkg4c8c@intranet.encontacto.net> X-Priority: 3 (Normal) Date: Wed, 26 Sep 2007 08:39:05 -0500 From: eculp@encontacto.net To: freebsd-ports References: <20070925163539.pgse608uso00sw80@intranet.encontacto.net> <46FA5A0B.2030404@dva.dyndns.org> In-Reply-To: <46FA5A0B.2030404@dva.dyndns.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (4.2-cvs) X-Originating-IP: 189.129.12.64 Subject: Re: Re: latest firefox. linux-flashplugin and nspluginwrapper don't want to work together. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2007 13:39:07 -0000 Quoting "Boris S." : > eculp@encontacto.net schrieb: >> Also, I would really like to know if anyone has flash9 working with =20 >> somewhat reasonable stability and sound or a way to make the =20 >> server-side think that flash7 is flash8 or above? There are more =20 >> and more sites asking for flash8+ and very few that won't work with =20 >> flash7. > > > Because of the raising demand of flash9 i switched yesterday to =20 > linux-firefox-2.0.0.7 and flash9. > This combination is much more stable and compatible than bsd-firefox =20 > with flash6 or 7 and wrapper. > I'm using -CURRENT (AMD64) as of 21. Sept., with Linuxulator =20 > switched to "2.6.16" Mode and installed linux_base-fc6. > I did't test sound and things like youtube didn't work. But I'm very =20 > happy now because MY often visited websites are much more useable now. Thanks a lot Boris. That is the same problem I'm seeing, the =20 proliferation of flash for links on websites, that really sucks but .. =20 .. I'll give all a try once I get upgraded to current on this machine. ed > Boris > > From owner-freebsd-ports@FreeBSD.ORG Wed Sep 26 14:22:57 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6778A16A468 for ; Wed, 26 Sep 2007 14:22:57 +0000 (UTC) (envelope-from toomany@toomany.net) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.182]) by mx1.freebsd.org (Postfix) with ESMTP id 591B013C469 for ; Wed, 26 Sep 2007 14:22:56 +0000 (UTC) (envelope-from toomany@toomany.net) Received: by wa-out-1112.google.com with SMTP id k17so2867621waf for ; Wed, 26 Sep 2007 07:22:56 -0700 (PDT) Received: by 10.114.59.1 with SMTP id h1mr1016068waa.1190816576091; Wed, 26 Sep 2007 07:22:56 -0700 (PDT) Received: by 10.114.36.11 with HTTP; Wed, 26 Sep 2007 07:22:56 -0700 (PDT) Message-ID: Date: Wed, 26 Sep 2007 16:22:56 +0200 From: "TooMany Secrets" To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: base64 Content-Disposition: inline Cc: ale@freebsd.org Subject: Updating php4. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2007 14:22:57 -0000 SGkhCgpUd28gb3IgdGhyZWUgZGF5cyBhZ28sIEkgcmVjaWV2ZWQgbm90aWZpY2F0aW9uIGZyb20g cG9ydGF1ZGl0IHByb2dyYW0KaW5pZGljYXRpbmcgdGhhdCB0aGVyZSBpcyBhIHByb2JsZW0gd2l0 aCBsYW5nL3BocDQgcG9ydCBiZWNhdXNlIHNvbWUKYnVncyBpbiBpdC4KSSB3b3VsZCBrbm93IChp ZiBpdCBpcyBwb3NzaWJsZSkgd2hlbiB3aWxsIGJlIHVwZGF0ZWQgdG8gYSBidWcgZnJlZSB2ZXJz aW9uLgoKVGhhbmsgeW91LCBhbmQgdGhhbmsgeW91IHZlcnkgbXVjaCBmb3IgeW91ciBncmVhdCBq b2IuCgotLSAKSGF2ZSBhIG5pY2UgZGF5ICA7LSkKVG9vTWFueVNlY3JldHMKCj09PT09PT09PT09 PT09PT09PT09PT09PT09PT0KRGlqbyBDb25mdWNpbzoKIkV4w61nZXRlIG11Y2hvIGEgdGkgbWlz bW8geSBlc3BlcmEgcG9jbyBkZSBsb3MgZGVtw6FzLiBBc8OtIHRlIGFob3JyYXLDoXMKZGlzZ3Vz dG9zLiIKPT09PT09PT09PT09PT09PT09PT09PT09PT09PQo= From owner-freebsd-ports@FreeBSD.ORG Wed Sep 26 14:26:22 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 94D1F16A417; Wed, 26 Sep 2007 14:26:22 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from tarsier.geekcn.org (tarsier.geekcn.org [210.51.165.229]) by mx1.freebsd.org (Postfix) with ESMTP id 501BC13C480; Wed, 26 Sep 2007 14:26:22 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from localhost (tarsier.geekcn.org [210.51.165.229]) by tarsier.geekcn.org (Postfix) with ESMTP id 2A6FDEBA6E8; Wed, 26 Sep 2007 22:26:52 +0800 (CST) X-Virus-Scanned: amavisd-new at geekcn.org Received: from tarsier.geekcn.org ([210.51.165.229]) by localhost (mail.geekcn.org [210.51.165.229]) (amavisd-new, port 10024) with ESMTP id uBI6xwikIbOh; Wed, 26 Sep 2007 22:26:42 +0800 (CST) Received: from LI-Xins-MacBook.local (adsl-68-122-10-197.dsl.pltn13.pacbell.net [68.122.10.197]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tarsier.geekcn.org (Postfix) with ESMTP id D5CACEB2B31; Wed, 26 Sep 2007 22:26:34 +0800 (CST) DomainKey-Signature: a=rsa-sha1; s=default; d=delphij.net; c=nofws; q=dns; h=message-id:date:from:reply-to:organization:user-agent: mime-version:to:cc:subject:references:in-reply-to: x-enigmail-version:openpgp:content-type; b=lgui+XbwwIb88Kh5zReEx5BLOQX/fb6juV4AoaidgYqmDwIEdXuABcbBp17zxA8+b ZaXDNTvKM7shGsQ06Mmjw== Message-ID: <46FA6BF0.9090504@delphij.net> Date: Wed, 26 Sep 2007 07:25:52 -0700 From: LI Xin Organization: The FreeBSD Project User-Agent: Thunderbird 2.0.0.6 (Macintosh/20070728) MIME-Version: 1.0 To: TooMany Secrets References: In-Reply-To: X-Enigmail-Version: 0.95.3 OpenPGP: url=http://www.delphij.net/delphij.asc Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="------------enig66147E9C99B31A576E904A24" Cc: ale@freebsd.org, freebsd-ports@freebsd.org Subject: Re: Updating php4. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: d@delphij.net List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2007 14:26:22 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig66147E9C99B31A576E904A24 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable TooMany Secrets wrote: > Hi! >=20 > Two or three days ago, I recieved notification from portaudit program > inidicating that there is a problem with lang/php4 port because some > bugs in it. > I would know (if it is possible) when will be updated to a bug free ver= sion. According to the PHP development team, PHP 4.x will be discontinued soon so perhaps the better solution is to upgrade to PHP 5.x. Cheers, --=20 Xin LI http://www.delphij.net/ FreeBSD - The Power to Serve! --------------enig66147E9C99B31A576E904A24 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFG+mvwOfuToMruuMARCigJAJ964UUe/B099dEUruRX4JTnm8JvHQCaA9xM Tx7faWjc8++SEdYDyCftkek= =kzyh -----END PGP SIGNATURE----- --------------enig66147E9C99B31A576E904A24-- From owner-freebsd-ports@FreeBSD.ORG Wed Sep 26 15:23:40 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4E50B16A420 for ; Wed, 26 Sep 2007 15:23:40 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from redbull.bpaserver.net (redbullneu.bpaserver.net [213.198.78.217]) by mx1.freebsd.org (Postfix) with ESMTP id E430813C4A3 for ; Wed, 26 Sep 2007 15:23:39 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from outgoing.leidinger.net (p54A54ADC.dip.t-dialin.net [84.165.74.220]) by redbull.bpaserver.net (Postfix) with ESMTP id A66552E07A; Wed, 26 Sep 2007 17:23:17 +0200 (CEST) Received: from webmail.leidinger.net (webmail.Leidinger.net [192.168.1.102]) by outgoing.leidinger.net (Postfix) with ESMTP id 982115B4812; Wed, 26 Sep 2007 17:22:50 +0200 (CEST) Received: (from www@localhost) by webmail.leidinger.net (8.14.1/8.13.8/Submit) id l8QFMoBd001581; Wed, 26 Sep 2007 17:22:50 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from pslux.cec.eu.int (pslux.cec.eu.int [158.169.9.14]) by webmail.leidinger.net (Horde MIME library) with HTTP; Wed, 26 Sep 2007 17:22:50 +0200 Message-ID: <20070926172250.tx0zdc3qhw4swkco@webmail.leidinger.net> X-Priority: 3 (Normal) Date: Wed, 26 Sep 2007 17:22:50 +0200 From: Alexander Leidinger To: eculp@encontacto.net References: <20070925163539.pgse608uso00sw80@intranet.encontacto.net> <20070926061444.ffnwqfpf4s0gg0w0@intranet.encontacto.net> <20070926135928.auvddwatc4kgoskw@webmail.leidinger.net> <20070926074006.nxs0bmj4bosg0g4s@intranet.encontacto.net> In-Reply-To: <20070926074006.nxs0bmj4bosg0g4s@intranet.encontacto.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (4.1.4) / FreeBSD-7.0 X-BPAnet-MailScanner-Information: Please contact the ISP for more information X-BPAnet-MailScanner: Found to be clean X-BPAnet-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-14.8, required 8, BAYES_00 -15.00, J_CHICKENPOX_57 0.60, RDNS_DYNAMIC 0.10, SMILEY -0.50) X-BPAnet-MailScanner-From: alexander@leidinger.net X-Spam-Status: No Cc: freebsd-ports Subject: Re: Re: latest firefox. linux-flashplugin and nspluginwrapper don't want to work together. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2007 15:23:40 -0000 Quoting eculp@encontacto.net (from Wed, 26 Sep 2007 07:40:06 -0500): > Quoting Alexander Leidinger : > >> Quoting eculp@encontacto.net (from Wed, 26 Sep 2007 06:14:44 -0500): >> >>> Quoting eculp@encontacto.net: >>> >>>> I upgraded firefox, the linux-flashplugin and reinstalled =20 >>>> nspluginwrapper, just in case;) >>>> >>>> firefox-2.0.0.7,1 >>>> linux-flashplugin-7.0r70 >>>> nspluginwrapper-0.9.91.5 >>>> >>>> The plugins are recognized in firefox wih about:plugins but no =20 >>>> longer work. They have been working nicely for several months What does it mean exactly? Problems with sound, problems with graphics =20 (no display at all), or both? Can you please check in the sysctl's =20 related to sound for a mmap or linux related sysctl and set it to "1"? Have you updated FreeBSD at the same time (as in "before the last use =20 of flash and the update of firefox")? >>>> now. I guess I should rollback something. >>> >>> More info: >>> - Box with issue: >>> 6.2-STABLE FreeBSD 6.2-STABLE #372: Mon Sep 24 05:41:04 CDT 2007 >> >> Is this RELENG_6 or RELENG_6_2? If the former, when did you cvsup? > > Hello Alexander, > > It is RELENG_6 and I cvsup and build daily. I clean libraries, > includes and reboot every 10 days, more or less. It is pretty up to > date. > >> >>> - On Linux-opera I get sound but no flash movie. >>> - I tried it on a 7.0 current box and it worked. So maybe it is >>> time to quite procrastinating and upgrade ;) >>> - I would still love to hear a Flash9 success story. >> >> There are kernel bugs preventing flash9 to work even on -current. =20 >> You can head over to emulation@ if you want to help debugging the =20 >> problem (you have to run -current then). > > I have decided to go to current, using a cd, probably this weekend. > This is my last RELENG_6 box so I don't really need to keep it anymore. > I'm building a release on a current box right now and will build > another tomorrow to have a couple of cd's just in case ;). Please keep it on RELENG_6. I merged some changes from -current and it =20 would be nice if you could check if the problem is not because of =20 those changes. If you have changed FreeBSD, and if it worked before, it would be nice =20 if you could go back on RELENG_6 and try to nail down a commit which =20 caused this problem. Bye, Alexander. --=20 Sometimes it happens. People just explode. Natural causes. =09=09-- Repo Man http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID =3D B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID =3D 72077137 From owner-freebsd-ports@FreeBSD.ORG Wed Sep 26 17:28:13 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DDD9916A417 for ; Wed, 26 Sep 2007 17:28:13 +0000 (UTC) (envelope-from eculp@encontacto.net) Received: from ns2.bafirst.com (72-12-2-19.wan.networktel.net [72.12.2.19]) by mx1.freebsd.org (Postfix) with ESMTP id B9A8013C46A for ; Wed, 26 Sep 2007 17:28:13 +0000 (UTC) (envelope-from eculp@encontacto.net) Received: from HOME.encontacto.net ([189.129.12.64]) by ns2.bafirst.com with esmtp; Wed, 26 Sep 2007 12:28:11 -0500 id 000D4CA5.46FA96AB.0000D643 Received: from localhost (localhost [127.0.0.1]) (uid 80) by HOME.encontacto.net with local; Wed, 26 Sep 2007 12:28:10 -0500 id 0004AC33.46FA96AA.000119E2 Received: from dsl-189-129-12-64.prod-infinitum.com.mx (dsl-189-129-12-64.prod-infinitum.com.mx [189.129.12.64]) by intranet.encontacto.net (Horde MIME library) with HTTP; Wed, 26 Sep 2007 12:28:10 -0500 Message-ID: <20070926122810.n6illbi9cow48kgo@intranet.encontacto.net> X-Priority: 3 (Normal) Date: Wed, 26 Sep 2007 12:28:10 -0500 From: eculp@encontacto.net To: freebsd-ports References: <20070925163539.pgse608uso00sw80@intranet.encontacto.net> <20070926061444.ffnwqfpf4s0gg0w0@intranet.encontacto.net> <20070926135928.auvddwatc4kgoskw@webmail.leidinger.net> <20070926074006.nxs0bmj4bosg0g4s@intranet.encontacto.net> <20070926172250.tx0zdc3qhw4swkco@webmail.leidinger.net> In-Reply-To: <20070926172250.tx0zdc3qhw4swkco@webmail.leidinger.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (4.2-cvs) X-Originating-IP: 189.129.12.64 Subject: Re: Re: Re: latest firefox. linux-flashplugin and nspluginwrapper don't want to work together. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2007 17:28:13 -0000 Quoting Alexander Leidinger : > Quoting eculp@encontacto.net (from Wed, 26 Sep 2007 07:40:06 -0500): > >> Quoting Alexander Leidinger : >> >>> Quoting eculp@encontacto.net (from Wed, 26 Sep 2007 06:14:44 -0500): >>> >>>> Quoting eculp@encontacto.net: >>>> >>>>> I upgraded firefox, the linux-flashplugin and reinstalled =20 >>>>> nspluginwrapper, just in case;) >>>>> >>>>> firefox-2.0.0.7,1 >>>>> linux-flashplugin-7.0r70 >>>>> nspluginwrapper-0.9.91.5 >>>>> >>>>> The plugins are recognized in firefox wih about:plugins but no =20 >>>>> longer work. They have been working nicely for several months > > What does it mean exactly? When I put the about:plugins as the URL. I get, among others: Shockwave Flash File name: npwrapper.libflashplayer.so Shockwave Flash 7.0 r70 MIME Type =09Description =09Suffixes =09Enabled application/x-shockwave-flash =09Shockwave Flash =09swf =09Yes application/futuresplash =09FutureSplash Player =09spl =09Yes > Problems with sound, problems with graphics (no display at all), or both? Both. Where the flash player should be is totally blank in firefox. =20 Screen shot at: http://encontacto.net/YouTubeScreen.png > Can you please check in the sysctl's related to sound for a mmap or =20 > linux related sysctl and set it to "1"? I just set hw.snd.compat_linux_mmap: 1 but still no change. > Have you updated FreeBSD at the same time (as in "before the last =20 > use of flash and the update of firefox")? > >>>>> now. I guess I should rollback something. >>>> >>>> More info: >>>> - Box with issue: >>>> 6.2-STABLE FreeBSD 6.2-STABLE #372: Mon Sep 24 05:41:04 CDT 2007 >>> >>> Is this RELENG_6 or RELENG_6_2? If the former, when did you cvsup? >> >> Hello Alexander, >> >> It is RELENG_6 and I cvsup and build daily. I clean libraries, >> includes and reboot every 10 days, more or less. It is pretty up to >> date. >> >>> >>>> - On Linux-opera I get sound but no flash movie. >>>> - I tried it on a 7.0 current box and it worked. So maybe it is >>>> time to quite procrastinating and upgrade ;) >>>> - I would still love to hear a Flash9 success story. >>> >>> There are kernel bugs preventing flash9 to work even on -current. =20 >>> You can head over to emulation@ if you want to help debugging the =20 >>> problem (you have to run -current then). >> >> I have decided to go to current, using a cd, probably this weekend. >> This is my last RELENG_6 box so I don't really need to keep it anymore. >> I'm building a release on a current box right now and will build >> another tomorrow to have a couple of cd's just in case ;). > > Please keep it on RELENG_6. I merged some changes from -current and =20 > it would be nice if you could check if the problem is not because of =20 > those changes. Will do. > If you have changed FreeBSD, and if it worked before, it would be =20 > nice if you could go back on RELENG_6 and try to nail down a commit =20 > which caused this problem. I can try over the weekend and before if I can get a couple of spare minutes= . Thanks, Alexander. ed > Bye, > Alexander. > > --=20 > Sometimes it happens. People just explode. Natural causes. > =09=09-- Repo Man > > http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID =3D B0063FE7 > http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID =3D 72077137 > From owner-freebsd-ports@FreeBSD.ORG Wed Sep 26 18:13:51 2007 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B72E16A46B for ; Wed, 26 Sep 2007 18:13:51 +0000 (UTC) (envelope-from mi+mill@aldan.algebra.com) Received: from mail2.sea5.speakeasy.net (mail2.sea5.speakeasy.net [69.17.117.4]) by mx1.freebsd.org (Postfix) with ESMTP id 2AFF313C468 for ; Wed, 26 Sep 2007 18:13:51 +0000 (UTC) (envelope-from mi+mill@aldan.algebra.com) Received: (qmail 32311 invoked from network); 26 Sep 2007 17:47:10 -0000 Received: from aldan.algebra.com (HELO aldan-mlp) ([216.254.65.224]) (envelope-sender ) by mail2.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 26 Sep 2007 17:47:09 -0000 From: Mikhail Teterin To: ports@freebsd.org Date: Wed, 26 Sep 2007 13:47:07 -0400 User-Agent: KMail/1.7.1 Organization: Virtual Estates, Inc. MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200709261347.08174.mi+mill@aldan.algebra.com> Cc: nork@freebsd.org Subject: the right way to link pthread into shared libraries? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2007 18:13:51 -0000 Hello! I was always under the impression, that using ${PTHREAD_LIBS} on compiler's command line would produce a library, which is properly linked with the correct threading implementation. Unfortunately, that does not seem to be the case: /bin/sh /opt/bin/libtool --tag=CXX --mode=link c++ -pipe -O2 -fno-strict-aliasing -pipe -march=opteron -D_THREAD_SAFE -o libIlmThread.la -rpath /opt/lib -version-info 4:0:0 -no-undefined IlmThreadPool.lo IlmThread.lo IlmThreadSemaphore.lo IlmThreadMutex.lo IlmThreadPosix.lo IlmThreadSemaphorePosix.lo IlmThreadSemaphorePosixCompat.lo IlmThreadMutexPosix.lo ../Iex/libIex.la -pthread c++ -shared -nostdlib /usr/lib/crti.o /usr/lib/crtbeginS.o .libs/IlmThreadPool.o .libs/IlmThread.o .libs/IlmThreadSemaphore.o .libs/IlmThreadMutex.o .libs/IlmThreadPosix.o .libs/IlmThreadSemaphorePosix.o .libs/IlmThreadSemaphorePosixCompat.o .libs/IlmThreadMutexPosix.o -Wl,--rpath -Wl,/var/ports/graphics/OpenEXR/work/openexr-1.4.0/Iex/.libs -Wl,--rpath -Wl,/opt/lib ../Iex/.libs/libIex.so -pthread -L/usr/lib -lstdc++ -lm -lgcc_pic /usr/lib/crtendS.o /usr/lib/crtn.o -march=opteron -pthread -pthread -pthread -Wl,-soname -Wl,libIlmThread.so.4 -o .libs/libIlmThread.so.4 (cd .libs && rm -f libIlmThread.so && ln -s libIlmThread.so.4 libIlmThread.so) (cd .libs && rm -f libIlmThread.so && ln -s libIlmThread.so.4 libIlmThread.so) ar cru .libs/libIlmThread.a IlmThreadPool.o IlmThread.o IlmThreadSemaphore.o IlmThreadMutex.o IlmThreadPosix.o IlmThreadSemaphorePosix.o IlmThreadSemaphorePosixCompat.o IlmThreadMutexPosix.o ranlib .libs/libIlmThread.a creating libIlmThread.la (cd .libs && rm -f libIlmThread.la && ln -s ../libIlmThread.la libIlmThread.la) mi@aldan:work/openexr-1.4.0/IlmThread (1403) ldd .libs/libIlmThread.so.4 .libs/libIlmThread.so.4: libIex.so.4 => /var/ports/graphics/OpenEXR/work/openexr-1.4.0/Iex/.libs/libIex.so.4 (0x800943000) libstdc++.so.5 => /usr/lib/libstdc++.so.5 (0x800a59000) libm.so.4 => /lib/libm.so.4 (0x800c50000) Although `-pthread' can be seen several times on the command line, the resulting executable is NOT linked with libpthread.so and the pthread_* functions called from the library are left undefined... Please, advise. Thanks! -mi From owner-freebsd-ports@FreeBSD.ORG Wed Sep 26 22:49:16 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B33016A417 for ; Wed, 26 Sep 2007 22:49:16 +0000 (UTC) (envelope-from mah@jump-ing.de) Received: from mail.ud03.udmedia.de (ud03.udmedia.de [194.117.254.43]) by mx1.freebsd.org (Postfix) with ESMTP id 83E3B13C465 for ; Wed, 26 Sep 2007 22:49:15 +0000 (UTC) (envelope-from mah@jump-ing.de) Received: (qmail 12219 invoked from network); 27 Sep 2007 00:49:15 +0200 Received: from unknown (HELO ?10.0.0.50?) (ud03?291p1@91.89.219.223) by mail.ud03.udmedia.de with ESMTPA; 27 Sep 2007 00:49:15 +0200 In-Reply-To: <20070925173404.GA18894@hades.panopticon> References: <20070921162208.GA83826@hades.panopticon> <20070925173404.GA18894@hades.panopticon> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Markus Hitter Date: Thu, 27 Sep 2007 00:49:00 +0200 To: Dmitry Marakasov X-Mailer: Apple Mail (2.752.2) Cc: freebsd-ports@freebsd.org Subject: Re: porting software using glibc's getline() X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Sep 2007 22:49:16 -0000 Am 25.09.2007 um 19:34 schrieb Dmitry Marakasov: > Is it OK to place GPL sources into the ports tree? You "infect" the port, then. It doesn't matter if other parts of the ports are already GPL but if this is the only GPL part, everybody using this port's code has to make his use (of the GPL'd part) public. > (it would be silly to make distfile for single 3kb .h file) This is why I recommended replacing getline() usage with something similar. Removing code is better than replacing code is better than adding code. Markus - - - - - - - - - - - - - - - - - - - Dipl. Ing. Markus Hitter http://www.jump-ing.de/ From owner-freebsd-ports@FreeBSD.ORG Thu Sep 27 07:49:24 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 28E8916A418 for ; Thu, 27 Sep 2007 07:49:24 +0000 (UTC) (envelope-from g.v.tjongahung@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.181]) by mx1.freebsd.org (Postfix) with ESMTP id 15AE113C45A for ; Thu, 27 Sep 2007 07:49:22 +0000 (UTC) (envelope-from g.v.tjongahung@gmail.com) Received: by py-out-1112.google.com with SMTP id u77so4840568pyb for ; Thu, 27 Sep 2007 00:49:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; bh=LzwQ4s4eVwG+LSyhSreHn4woisSqzUjF+ryOiXUBzdM=; b=N/20YNMfWftu00zSC80CwwJLn6xJcYzxnJF8WdImwqwLr5GxADrIM474AAxMCDOmVVefnUbVDXMANpJW75MmDCLmuqRsomdmZP1E3jxJ125aGaWkHh3bXpuKiOltyGl394lIkXsJ9njvPMFNxLXibsxRHlWqQYxCL6eUXSEMDec= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=e675TsKWAb+BpWA0E9D9xu1LQFbTh45U8h08CVP742NFoxq/2I7TtVAhUYatU1iryo5XBgNOudgMA/XRSgu1a4Y6iWQ5S8sdO0IB779i+ElXHbsJueIaCNMiNQErYufyjJ3Kkh4dmLP+ISDvXRcCWzCyGDuUPX2yJ7SBn8nEAYQ= Received: by 10.115.89.1 with SMTP id r1mr458350wal.1190879341703; Thu, 27 Sep 2007 00:49:01 -0700 (PDT) Received: by 10.114.210.11 with HTTP; Thu, 27 Sep 2007 00:49:01 -0700 (PDT) Message-ID: <822946050709270049q7be7382bo900a6402776b4fee@mail.gmail.com> Date: Thu, 27 Sep 2007 09:49:01 +0200 From: "Gabor Tjong A Hung" To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=WINDOWS-1252 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: PostgreSQL-PL\Java X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2007 07:49:24 -0000 Dear all, I've been trying to create a port for PostgreSQL-plJava, I've tried to copy the same structure as in postgresql-pl*, however these seem to be slave ports, and I can't find any adequate information in the portershandbook on how to handle these. That's why I turn to you my friends. Is there any documentation you can point me to to finish this port? Kind regards, Gabor # New ports collection makefile for: PostgreSQL PL/Java # Date created: September 25, 2007 # Whom: G.V. Tjong A Hung # # $FreeBSD$ # PORTNAME=3D postgresql #PORTVERSION=3D 1.3.0 CATEGORIES=3D databases java PKGNAMESUFFIX=3D -pljava MAINTAINER=3D ports@FreeBSD.org COMMENT=3D A module for using Java to write SQL functions RUN_DEPENDS=3D postgres:${PORTSDIR}/${POSTGRESQL_PORT} MASTERDIR=3D ${.CURDIR}/../postgresql${PGSQL_VER}-server MASTER_SITES=3D ${MASTER_SITE_PGSQL} MASTER_SITE_SUBDIR=3Dprojects/pgFoundry/pljava/ #ftp://ftp2.nl.postgresql.org/mirror/postgresql/projects/pgFoundry/pljava/ #http://pgfoundry.org/frs/download.php/966/pljava-src-1.3.0.tar.gz #http://wwwmaster.postgresql.org/redir?setmir=3D107&typ=3Df&url=3D ftp://ftp2.nl.postgresql.org/mirror/postgresql/projects/pgFoundry/pljava/pl= java-src-1.3.0.tar.gz #http://wwwmaster.postgresql.org/download/mirrors-ftp?file=3Dprojects/pgFou= ndry/pljava/pljava- src-1.3.0.tar.gz DISTNAME=3D pljava-src-${PORTVERSION} # The following options are recognized (aside from normal options like # CFLAGS etc.) # # PGSQLDIR=3D For old style (not pgxs based) compilation # USE_GCJ=3D1 Builds a shared object file containing both # C and Java code. Requires GCJ 3.4 or later. # can't include in a slave port # so set these instead: LOCALBASE?=3D /usr/local SED?=3D /usr/bin/sed # Setting/finding PostgreSQL version we want. .if exists(${LOCALBASE}/bin/postmaster) PGSQL_VER!=3D ${LOCALBASE}/bin/postmaster -V | ${SED} -n 's/.*PostgreSQL[^0-9]*\([0-9][0-9]*\)\.\([0-9][0-9]*\)\..*/\1\2/p' .elif exists(${LOCALBASE}/bin/pg_config) PGSQL_VER!=3D ${LOCALBASE}/bin/pg_config --version | ${SED} -n 's/PostgreSQL[^0-9]*\([0-9][0-9]*\)\.\([0-9][0-9]*\)\..*/\1\2/p' .else PGSQL_VER=3D ${DEFAULT_PGSQL_VER} .endif USE_PYTHON=3D yes CONFIGURE_ARGS=3D --with-python BUILD_DIRS=3D src/pl/pljava SLAVE_ONLY=3D yes POSTGRESQL_PORT=3Ddatabases/postgresql${PGSQL_VER}-server .include "${MASTERDIR}/Makefile" --=20 "If you don't know where you are going, any road will take you there" =96 George Harrison From owner-freebsd-ports@FreeBSD.ORG Thu Sep 27 09:19:29 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DFCF116A419 for ; Thu, 27 Sep 2007 09:19:29 +0000 (UTC) (envelope-from Johan@double-l.nl) Received: from smtp-vbr14.xs4all.nl (smtp-vbr14.xs4all.nl [194.109.24.34]) by mx1.freebsd.org (Postfix) with ESMTP id 5CDC813C4B2 for ; Thu, 27 Sep 2007 09:19:29 +0000 (UTC) (envelope-from Johan@double-l.nl) Received: from w2003s01.double-l.local (dpm.xs4all.nl [80.126.205.144]) by smtp-vbr14.xs4all.nl (8.13.8/8.13.8) with ESMTP id l8R9JRCG009684 for ; Thu, 27 Sep 2007 11:19:28 +0200 (CEST) (envelope-from Johan@double-l.nl) MIME-Version: 1.0 Content-class: urn:content-classes:message X-MimeOLE: Produced By Microsoft Exchange V6.5 Date: Thu, 27 Sep 2007 11:21:02 +0200 Message-ID: <57200BF94E69E54880C9BB1AF714BBCB011187@w2003s01.double-l.local> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: ImageMagick Thread-Index: AcgA57jpB2R2GwPiQx6mclFCiEVu3A== From: "Johan Hendriks" To: X-Virus-Scanned: by XS4ALL Virus Scanner Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: ImageMagick X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2007 09:19:30 -0000 I can not update Image Magick on all of my machines. This is on 6.2 and 6.1 =20 it errors out with the following error: =20 =20 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D All 696 tests passed =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D cd PerlMagick && make CC=3D'cc' test /bin/sh ../magick.sh PERL_DL_NONLAZY=3D1 /usr/local/bin/perl5.8.8 = "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', = 'blib/arch')" t/*.t t/bzlib/*.t t/fpx/*.t t/jbig/*.t t/jpeg/*.t = t/jp2/*.t t/png/*.t t/tiff/*.t t/zlib/*.t t/blob............ok t/bzlib/read......ok t/bzlib/write.....ok t/composite.......ok t/filter..........ok t/fpx/read........dubious Test returned status 0 (wstat 139, 0x8b) DIED. FAILED tests 1-5 Failed 5/5 tests, 0.00% okay t/fpx/write.......dubious Test returned status 0 (wstat 139, 0x8b) DIED. FAILED tests 1-4 Failed 4/4 tests, 0.00% okay t/getattribute....ok t/jbig/read.......ok t/jbig/write......ok t/jp2/read........ok t/jpeg/read.......ok t/jpeg/write......ok t/montage.........ok t/png/read-16.....ok t/png/read........ok t/png/write-16....ok t/png/write.......ok t/read............ok t/setattribute....ok t/tiff/read.......ok t/tiff/write......ok t/write...........ok t/zlib/read.......ok t/zlib/write......ok Failed Test Stat Wstat Total Fail List of Failed -------------------------------------------------------------------------= ------ t/fpx/read.t 0 139 5 10 1-5 t/fpx/write.t 0 139 4 8 1-4 Failed 2/25 test scripts. 9/343 subtests failed. Files=3D25, Tests=3D343, 15 wallclock secs ( 9.58 cusr + 1.63 csys =3D = 11.21 CPU) Failed 2/25 test programs. 9/343 subtests failed. *** Error code 255 Stop in = /usr/var/ports/usr/ports/graphics/ImageMagick/work/ImageMagick-6.3.5/Perl= Magick. *** Error code 1 Stop in = /usr/var/ports/usr/ports/graphics/ImageMagick/work/ImageMagick-6.3.5. *** Error code 1 Stop in = /usr/var/ports/usr/ports/graphics/ImageMagick/work/ImageMagick-6.3.5. *** Error code 1 Stop in /usr/ports/graphics/ImageMagick. *** Error code 1 Stop in /usr/ports/graphics/ImageMagick. ** Command failed [exit code 1]: /usr/bin/script -qa = /tmp/portupgrade.13874.0 env UPGRADE_TOOL=3Dportupgrade = UPGRADE_PORT=3DImageMagick-6.3.3.5_1 UPGRADE_PORT_VER=3D6.3.3.5_1 make ** Fix the problem and try again. ** Listing the failed packages (*:skipped / !:failed) ! graphics/ImageMagick (ImageMagick-6.3.3.5_1) (unknown build = error) ---> Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed =20 regards Johan From owner-freebsd-ports@FreeBSD.ORG Thu Sep 27 09:22:48 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D2DB16A418 for ; Thu, 27 Sep 2007 09:22:48 +0000 (UTC) (envelope-from freebsd-ports@dino.sk) Received: from loki.netlab.sk (loki.netlab.sk [84.245.65.11]) by mx1.freebsd.org (Postfix) with ESMTP id AA31013C455 for ; Thu, 27 Sep 2007 09:22:47 +0000 (UTC) (envelope-from freebsd-ports@dino.sk) Received: from lex.dino.sk (home.dino.sk [84.245.95.252]) (AUTH: PLAIN milan, TLS: TLSv1/SSLv3,256bits,AES256-SHA) by loki.netlab.sk with esmtp; Thu, 27 Sep 2007 11:21:25 +0200 id 0002E023.46FB7615.000173A0 From: Milan Obuch To: freebsd-ports@freebsd.org Date: Thu, 27 Sep 2007 11:21:46 +0200 User-Agent: KMail/1.9.6 References: <57200BF94E69E54880C9BB1AF714BBCB011187@w2003s01.double-l.local> In-Reply-To: <57200BF94E69E54880C9BB1AF714BBCB011187@w2003s01.double-l.local> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200709271121.48232.freebsd-ports@dino.sk> Subject: Re: ImageMagick X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2007 09:22:48 -0000 On Thursday 27 September 2007 11:21:02 Johan Hendriks wrote: > I can not update Image Magick on all of my machines. > This is on 6.2 and 6.1 > > it errors out with the following error: > [snip] > ** Command failed [exit code 1]: /usr/bin/script -qa > /tmp/portupgrade.13874.0 env UPGRADE_TOOL=portupgrade > UPGRADE_PORT=ImageMagick-6.3.3.5_1 UPGRADE_PORT_VER=6.3.3.5_1 make ** Fix > the problem and try again. > ** Listing the failed packages (*:skipped / !:failed) > ! graphics/ImageMagick (ImageMagick-6.3.3.5_1) (unknown build > error) ---> Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed > > regards > Johan > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" Just a 'me too' - I did experience the same error. Milan -- No need to mail me directly. Just reply to mailing list, please. From owner-freebsd-ports@FreeBSD.ORG Thu Sep 27 09:28:58 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4DFC016A419 for ; Thu, 27 Sep 2007 09:28:58 +0000 (UTC) (envelope-from mail@sysfault.org) Received: from smtprelay05.ispgateway.de (smtprelay05.ispgateway.de [80.67.18.43]) by mx1.freebsd.org (Postfix) with ESMTP id B07F813C4B2 for ; Thu, 27 Sep 2007 09:28:57 +0000 (UTC) (envelope-from mail@sysfault.org) Received: (qmail 25566 invoked from network); 27 Sep 2007 09:28:55 -0000 Received: from unknown (HELO medusa.sysfault.org) (936934@[89.182.20.230]) (envelope-sender ) by smtprelay05.ispgateway.de (qmail-ldap-1.03) with AES256-SHA encrypted SMTP for ; 27 Sep 2007 09:28:55 -0000 Received: from localhost ([127.0.0.1] helo=medusa.sysfault.org) by medusa.sysfault.org with esmtp (Exim 4.68 (FreeBSD)) (envelope-from ) id 1Iapif-000Msr-1v for freebsd-ports@freebsd.org; Thu, 27 Sep 2007 11:31:42 +0200 Received: (from marcus@localhost) by medusa.sysfault.org (8.14.1/8.14.1/Submit) id l8R9Vc0k087968 for freebsd-ports@freebsd.org; Thu, 27 Sep 2007 11:31:38 +0200 (CEST) (envelope-from marcus) Date: Thu, 27 Sep 2007 11:31:38 +0200 From: Marcus von Appen To: freebsd-ports@freebsd.org Message-ID: <20070927093138.GC1101@medusa.sysfault.org> Mail-Followup-To: freebsd-ports@freebsd.org References: <57200BF94E69E54880C9BB1AF714BBCB011187@w2003s01.double-l.local> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="84ND8YJRMFlzkrP4" Content-Disposition: inline In-Reply-To: <57200BF94E69E54880C9BB1AF714BBCB011187@w2003s01.double-l.local> User-Agent: Mutt/1.5.16 (2007-06-09) X-Spam-Score: -4.4 (----) Subject: Re: ImageMagick X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Marcus von Appen List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2007 09:28:58 -0000 --84ND8YJRMFlzkrP4 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On, Thu Sep 27, 2007, Johan Hendriks wrote: > I can not update Image Magick on all of my machines. > This is on 6.2 and 6.1 > =20 > it errors out with the following error: [Test broken] Deactivate the IMAGEMAGICK_TESTS knob. This circumvents the test issue and ImageMagick will be installed without any problems. The failed tests however indicate, that someone should look into it :-). Regards Marcus --84ND8YJRMFlzkrP4 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQFG+3h6o/JpszXavhwRAuWKAJ4pr85OwBhywM1DVJ2DCBEHJpuGJQCglMYW 3uSaJv6v3N88qxdP+okrbF4= =PF9o -----END PGP SIGNATURE----- --84ND8YJRMFlzkrP4-- From owner-freebsd-ports@FreeBSD.ORG Thu Sep 27 11:28:13 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A238A16A419 for ; Thu, 27 Sep 2007 11:28:13 +0000 (UTC) (envelope-from lioux-list@uol.com.br) Received: from goat.gigo.com (goat.gigo.com [216.218.228.114]) by mx1.freebsd.org (Postfix) with ESMTP id 9833A13C48D for ; Thu, 27 Sep 2007 11:28:13 +0000 (UTC) (envelope-from lioux-list@uol.com.br) Received: from 201.24.13.31 (unknown [201.24.13.31]) by goat.gigo.com (Postfix) with ESMTP id 90F7DB892 for ; Thu, 27 Sep 2007 04:28:12 -0700 (PDT) Received: (qmail 53763 invoked by uid 1001); 27 Sep 2007 08:21:55 -0300 Message-ID: <20070927112218.53665.qmail@exxodus.fedaykin.here> Date: Thu, 27 Sep 2007 08:21:55 -0300 From: Mario Sergio Fujikawa Ferreira To: Mario Sergio Fujikawa Ferreira References: <20070926010824.02190e0a.vx2@tds.net> <20070926111517.93749.qmail@exxodus.fedaykin.here> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070926111517.93749.qmail@exxodus.fedaykin.here> User-Agent: Mutt/1.5.16 (2007-06-09) Cc: freebsd-ports@freebsd.org, Rob Clark Subject: Re: keyboard lock light issues - xorg-7.3_1 or fluxbox X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2007 11:28:13 -0000 On Wed, Sep 26, 2007 at 08:14:31AM -0300, Mario Sergio Fujikawa Ferreira wrote: > Delivered-To: lioux-lists@localhost > Delivered-To: freebsd-ports@freebsd.org > Date: Wed, 26 Sep 2007 08:14:54 -0300 > From: Mario Sergio Fujikawa Ferreira > To: Rob Clark > In-Reply-To: <20070926010824.02190e0a.vx2@tds.net> > User-Agent: Mutt/1.5.16 (2007-06-09) > Cc: freebsd-ports@freebsd.org > Subject: Re: keyboard lock light issues - xorg-7.3_1 or fluxbox > X-BeenThere: freebsd-ports@freebsd.org > X-Mailman-Version: 2.1.5 > Precedence: list > Errors-To: owner-freebsd-ports@freebsd.org > X-SIG5: f35f1d59cc911d99373a26acaeb91600 > > On Wed, Sep 26, 2007 at 01:08:01AM -0400, Rob Clark wrote: > > Delivered-To: lioux-lists@localhost > > Delivered-To: freebsd-ports@freebsd.org > > Date: Wed, 26 Sep 2007 01:08:24 -0400 > > From: Rob Clark > > To: freebsd-ports@freebsd.org > > X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; i386-portbld-freebsd6.2) > > Subject: keyboard lock light issues - xorg-7.3_1 or fluxbox > > X-BeenThere: freebsd-ports@freebsd.org > > X-Mailman-Version: 2.1.5 > > Precedence: list > > Errors-To: owner-freebsd-ports@freebsd.org > > X-SIG5: 1ab2f6cc330b76f3e30492f4a03b6886 > > > > Running: > > 6.2-STABLE FreeBSD 6.2-STABLE #0: Thu Sep 20 12:21:22 EDT > > 2007, xorg-7.3_1, fluxbox-1.0rc3_3 (window manager) > > > > Keyboard: > > IBM KB-8923 > > > > Following both the xorg 7.3 update, and new install of the > > most recent fluxbox, I've lost the lock lights on the > > keyboard (i.e., Num Lock and Caps Lock) while running X and > > fluxbox. > > Using KDE here with xorg 7.3. > > > > > Also had another issue with the f key not working. > > With mplayer full screened, the f key would not allow me to > > reduce the full screen back to original size -- had to > > ctrl-alt-backspace and exit X. > > I lost the whole keyboard. :) I can't type a thing. > > > Keyboard appears and works fine in console mode, lights work > > without issue. > > > > Not sure if this is attributed to the xorg 7.3 update or my > > late migration over to fluxbox-1.0rc3_3 from fluxbox-0.1.14. > > > > I update ports daily, and honestly do not know exactly when > > this started. Any help appreciated. > > I have a paleative fix for you. :) Remove the port > xkbcomp. The keyboard will begin to respond correctly instantaneously. > I have just used it this adhoc "fix" and I can use my keyboard > again. I spoke too soon. The keyboard responds for a few seconds when I start KDE before some internal routine kicks in that screws up everything. The keyboard is lost once again. I hope the hack works better for you. Regards, -- Mario S F Ferreira - DF - Brazil - "I guess this is a signature." feature, n: a documented bug | bug, n: an undocumented feature From owner-freebsd-ports@FreeBSD.ORG Thu Sep 27 11:28:15 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3D80B16A41B for ; Thu, 27 Sep 2007 11:28:15 +0000 (UTC) (envelope-from lioux-list@uol.com.br) Received: from goat.gigo.com (goat.gigo.com [216.218.228.114]) by mx1.freebsd.org (Postfix) with ESMTP id 35C0013C4BD for ; Thu, 27 Sep 2007 11:28:15 +0000 (UTC) (envelope-from lioux-list@uol.com.br) Received: from 201.24.13.31 (unknown [201.24.13.31]) by goat.gigo.com (Postfix) with ESMTP id 7D9D6B966 for ; Thu, 27 Sep 2007 04:28:14 -0700 (PDT) Received: (qmail 55623 invoked by uid 1001); 27 Sep 2007 08:22:38 -0300 Message-ID: <20070927112301.55527.qmail@exxodus.fedaykin.here> Date: Thu, 27 Sep 2007 08:22:38 -0300 From: Mario Sergio Fujikawa Ferreira To: Milan Obuch References: <57200BF94E69E54880C9BB1AF714BBCB011187@w2003s01.double-l.local> <200709271121.48232.freebsd-ports@dino.sk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200709271121.48232.freebsd-ports@dino.sk> User-Agent: Mutt/1.5.16 (2007-06-09) Cc: freebsd-ports@freebsd.org Subject: Re: ImageMagick X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2007 11:28:15 -0000 On Thu, Sep 27, 2007 at 11:21:23AM +0200, Milan Obuch wrote: > Delivered-To: lioux-lists@localhost > Delivered-To: freebsd-ports@freebsd.org > From: Milan Obuch > To: freebsd-ports@freebsd.org > Date: Thu, 27 Sep 2007 11:21:46 +0200 > User-Agent: KMail/1.9.6 > In-Reply-To: <57200BF94E69E54880C9BB1AF714BBCB011187@w2003s01.double-l.local> > Subject: Re: ImageMagick > X-BeenThere: freebsd-ports@freebsd.org > X-Mailman-Version: 2.1.5 > Precedence: list > Errors-To: owner-freebsd-ports@freebsd.org > X-SIG5: 47b0fcfa3413c1bf8934c9c6e9e66972 > > On Thursday 27 September 2007 11:21:02 Johan Hendriks wrote: > > I can not update Image Magick on all of my machines. > > This is on 6.2 and 6.1 > > > > it errors out with the following error: > > > > [snip] > > > ** Command failed [exit code 1]: /usr/bin/script -qa > > /tmp/portupgrade.13874.0 env UPGRADE_TOOL=portupgrade > > UPGRADE_PORT=ImageMagick-6.3.3.5_1 UPGRADE_PORT_VER=6.3.3.5_1 make ** Fix > > the problem and try again. > > ** Listing the failed packages (*:skipped / !:failed) > > ! graphics/ImageMagick (ImageMagick-6.3.3.5_1) (unknown build > > error) ---> Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed > > > > regards > > Johan > > _______________________________________________ > > freebsd-ports@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" > > Just a 'me too' - I did experience the same error. > Milan Same here. -- Mario S F Ferreira - DF - Brazil - "I guess this is a signature." feature, n: a documented bug | bug, n: an undocumented feature From owner-freebsd-ports@FreeBSD.ORG Thu Sep 27 11:48:30 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CC6CE16A417 for ; Thu, 27 Sep 2007 11:48:30 +0000 (UTC) (envelope-from freebsd-ports@dino.sk) Received: from loki.netlab.sk (loki.netlab.sk [84.245.65.11]) by mx1.freebsd.org (Postfix) with ESMTP id 5475A13C458 for ; Thu, 27 Sep 2007 11:48:30 +0000 (UTC) (envelope-from freebsd-ports@dino.sk) Received: from lex.dino.sk (home.dino.sk [84.245.95.252]) (AUTH: PLAIN milan, TLS: TLSv1/SSLv3,256bits,AES256-SHA) by loki.netlab.sk with esmtp; Thu, 27 Sep 2007 13:47:08 +0200 id 0002E025.46FB983C.000177C8 From: Milan Obuch To: freebsd-ports@freebsd.org Date: Thu, 27 Sep 2007 13:48:01 +0200 User-Agent: KMail/1.9.6 References: <57200BF94E69E54880C9BB1AF714BBCB011187@w2003s01.double-l.local> <20070927093138.GC1101@medusa.sysfault.org> In-Reply-To: <20070927093138.GC1101@medusa.sysfault.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200709271348.02708.freebsd-ports@dino.sk> Subject: Re: ImageMagick X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2007 11:48:30 -0000 On Thursday 27 September 2007 11:31:38 Marcus von Appen wrote: > On, Thu Sep 27, 2007, Johan Hendriks wrote: > > I can not update Image Magick on all of my machines. > > This is on 6.2 and 6.1 > > > > it errors out with the following error: > > [Test broken] > > Deactivate the IMAGEMAGICK_TESTS knob. This circumvents the test issue > and ImageMagick will be installed without any problems. The failed tests > however indicate, that someone should look into it :-). > > Regards > Marcus Works for me. Good workaround pretending nothing else is broken ;) Regards, Milan -- No need to mail me directly. Just reply to mailing list, please. From owner-freebsd-ports@FreeBSD.ORG Thu Sep 27 11:48:31 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E69E416A46D for ; Thu, 27 Sep 2007 11:48:31 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from smtp02.lnh.mail.rcn.net (smtp02.lnh.mail.rcn.net [207.172.157.102]) by mx1.freebsd.org (Postfix) with ESMTP id AFA5F13C4AC for ; Thu, 27 Sep 2007 11:48:31 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from mr08.lnh.mail.rcn.net ([207.172.157.28]) by smtp02.lnh.mail.rcn.net with ESMTP; 27 Sep 2007 07:48:30 -0400 Received: from smtp01.lnh.mail.rcn.net (smtp01.lnh.mail.rcn.net [207.172.4.11]) by mr08.lnh.mail.rcn.net (MOS 3.8.3-GA) with ESMTP id JDM74503; Thu, 27 Sep 2007 07:48:30 -0400 (EDT) Received: from 65-78-26-179.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com (HELO jerusalem.litteratus.org.litteratus.org) ([65.78.26.179]) by smtp01.lnh.mail.rcn.net with ESMTP; 27 Sep 2007 07:48:30 -0400 From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18171.39053.415301.291894@jerusalem.litteratus.org> Date: Thu, 27 Sep 2007 07:48:29 -0400 To: Milan Obuch In-Reply-To: <200709271121.48232.freebsd-ports@dino.sk> References: <57200BF94E69E54880C9BB1AF714BBCB011187@w2003s01.double-l.local> <200709271121.48232.freebsd-ports@dino.sk> X-Mailer: VM 7.17 under 21.5 (beta28) "fuki" XEmacs Lucid X-Junkmail-Whitelist: YES (by domain whitelist at mr08.lnh.mail.rcn.net) Cc: freebsd-ports@freebsd.org Subject: Re: ImageMagick X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2007 11:48:32 -0000 Milan Obuch writes: > > I can not update Image Magick on all of my machines. > > This is on 6.2 and 6.1 > > > > it errors out with the following error: > > Just a 'me too' - I did experience the same error. And here. Robert Huff From owner-freebsd-ports@FreeBSD.ORG Thu Sep 27 13:09:52 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 02B8316A41A for ; Thu, 27 Sep 2007 13:09:52 +0000 (UTC) (envelope-from christopher.illies@ki.se) Received: from smtp2.ki.se (smtp2.ki.se [130.237.98.101]) by mx1.freebsd.org (Postfix) with ESMTP id B91D513C457 for ; Thu, 27 Sep 2007 13:09:51 +0000 (UTC) (envelope-from christopher.illies@ki.se) Received: from smtp2.ki.se (smtp2.ki.se [127.0.0.1]) by localhost (Postfix) with SMTP id CC90753468D for ; Thu, 27 Sep 2007 14:39:36 +0200 (CEST) Received: from Klabautermann.ks.se (unknown [136.155.136.187]) by smtp2.ki.se (Postfix) with SMTP id A6BDF53468A for ; Thu, 27 Sep 2007 14:39:36 +0200 (CEST) Received: by Klabautermann.ks.se (Postfix, from userid 1001) id 59912BE5E; Thu, 27 Sep 2007 14:44:21 +0200 (CEST) Date: Thu, 27 Sep 2007 14:44:21 +0200 From: Christopher Illies To: freebsd-ports@freebsd.org Message-ID: <20070927124421.GA70278@Klabautermann.ks.se> Mail-Followup-To: Christopher Illies , freebsd-ports@freebsd.org References: <57200BF94E69E54880C9BB1AF714BBCB011187@w2003s01.double-l.local> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <57200BF94E69E54880C9BB1AF714BBCB011187@w2003s01.double-l.local> User-Agent: Mutt/1.4.2.3i X-PMX-Version: 5.3.3.310218, Antispam-Engine: 2.5.2.313940, Antispam-Data: 2007.9.27.51107 X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='BODY_SIZE_300_399 0, __CD 0, __CP_MEDIA_BODY 0, __CT 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' Subject: Re: ImageMagick X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2007 13:09:52 -0000 On Thu, Sep 27, 2007 at 11:21:02AM +0200, Johan Hendriks wrote: > I can not update Image Magick on all of my machines. > This is on 6.2 and 6.1 > > it errors out with the following error: [...] I had the same error. Now I switched SVG format support on and it passes the tests. Christopher From owner-freebsd-ports@FreeBSD.ORG Thu Sep 27 13:35:01 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 76E2216A417 for ; Thu, 27 Sep 2007 13:35:01 +0000 (UTC) (envelope-from rpratt1950@embarqmail.com) Received: from mailrelay.embarq.synacor.com (mailrelay.embarq.synacor.com [208.47.184.3]) by mx1.freebsd.org (Postfix) with ESMTP id 227AD13C448 for ; Thu, 27 Sep 2007 13:35:00 +0000 (UTC) (envelope-from rpratt1950@embarqmail.com) X_CMAE_Category: 0,0 Undefined,Undefined X-CNFS-Analysis: v=1.0 c=1 a=aZrenTUAAAAA:8 a=G4a-ae6pf1XhkDOvpFwA:9 a=alDett9lRtPTuBd518UA:7 a=cRPNIdDd7rZxGuojOCnTIfSnltAA:4 a=LY0hPdMaydYA:10 X-CM-Score: 0 X-Scanned-by: Cloudmark Authority Engine Authentication-Results: smtp07.embarq.synacor.com smtp.mail=rpratt1950@embarqmail.com; spf=neutral Authentication-Results: smtp07.embarq.synacor.com smtp.user=rpratt1950@embarqmail.com; auth=pass (LOGIN) Received-SPF: neutral (smtp07.embarq.synacor.com: 76.6.199.180 is neither permitted nor denied by domain of embarqmail.com) Received: from [76.6.199.180] ([76.6.199.180:52693] helo=kt.weeeble.com) by mailrelay.embarq.synacor.com (envelope-from ) (ecelerity 2.2.0.18 r(18773)) with ESMTPA id C4/26-30344-381BBF64; Thu, 27 Sep 2007 09:35:00 -0400 Date: Thu, 27 Sep 2007 09:34:58 -0400 From: Randy Pratt To: Christopher Illies Message-Id: <20070927093458.bf3c5a75.rpratt1950@embarqmail.com> In-Reply-To: <20070927124421.GA70278@Klabautermann.ks.se> References: <57200BF94E69E54880C9BB1AF714BBCB011187@w2003s01.double-l.local> <20070927124421.GA70278@Klabautermann.ks.se> X-Mailer: Sylpheed 2.4.6 (GTK+ 2.10.14; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: ImageMagick X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2007 13:35:01 -0000 On Thu, 27 Sep 2007 14:44:21 +0200 Christopher Illies wrote: > On Thu, Sep 27, 2007 at 11:21:02AM +0200, Johan Hendriks wrote: > > I can not update Image Magick on all of my machines. > > This is on 6.2 and 6.1 > > > > it errors out with the following error: > [...] > > I had the same error. Now I switched SVG format support on and it > passes the tests. I tried turning on the SVG format and it still fails. Could you show the output of your "make showconfig" for ImageMagick? Mine is: X11=on "X11 support" IMAGEMAGICK_TESTS=on "Run bundled self-tests after build" IMAGEMAGICK_PERL=on "Perl support" IMAGEMAGICK_MODULES=off "Modules support (broken)" IMAGEMAGICK_BZLIB=on "Bzlib support" IMAGEMAGICK_16BIT_PIXEL=on "16bit pixel support" IMAGEMAGICK_LCMS=on "LCMS support" IMAGEMAGICK_TTF=on "Freetype support" IMAGEMAGICK_FONTCONFIG=on "Fontconfig support" IMAGEMAGICK_JPEG=on "JPG format support" IMAGEMAGICK_PNG=on "PNG format support" IMAGEMAGICK_TIFF=on "TIFF format support" IMAGEMAGICK_FPX=on "FPX format support" IMAGEMAGICK_JBIG=on "JBIG format support" IMAGEMAGICK_JPEG2000=on "JPEG2000 format support" IMAGEMAGICK_DOT=off "GraphViz dot graphs support" IMAGEMAGICK_WMF=off "WMF format support" IMAGEMAGICK_SVG=on "SVG format support" IMAGEMAGICK_PDF=on "PDF format support" IMAGEMAGICK_MPEG2=on "MPEG2 format support" IMAGEMAGICK_GSLIB=off "libgs (Postscript SHLIB) support" There has been a PR 116682 filed and a thread started on: http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=9782 The developers can't reproduce the failure we're seeing. Thanks, Randy -- From owner-freebsd-ports@FreeBSD.ORG Thu Sep 27 13:44:33 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 482FF16A41B for ; Thu, 27 Sep 2007 13:44:33 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from smtp02.lnh.mail.rcn.net (smtp02.lnh.mail.rcn.net [207.172.157.102]) by mx1.freebsd.org (Postfix) with ESMTP id 0CC0C13C458 for ; Thu, 27 Sep 2007 13:44:32 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from mr08.lnh.mail.rcn.net ([207.172.157.28]) by smtp02.lnh.mail.rcn.net with ESMTP; 27 Sep 2007 09:44:32 -0400 Received: from smtp01.lnh.mail.rcn.net (smtp01.lnh.mail.rcn.net [207.172.4.11]) by mr08.lnh.mail.rcn.net (MOS 3.8.3-GA) with ESMTP id JDN02197; Thu, 27 Sep 2007 09:44:32 -0400 (EDT) Received: from 65-78-26-179.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com (HELO jerusalem.litteratus.org.litteratus.org) ([65.78.26.179]) by smtp01.lnh.mail.rcn.net with ESMTP; 27 Sep 2007 09:44:29 -0400 From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18171.46012.650526.732387@jerusalem.litteratus.org> Date: Thu, 27 Sep 2007 09:44:28 -0400 To: freebsd-ports@freebsd.org In-Reply-To: <20070927093458.bf3c5a75.rpratt1950@embarqmail.com> References: <57200BF94E69E54880C9BB1AF714BBCB011187@w2003s01.double-l.local> <20070927124421.GA70278@Klabautermann.ks.se> <20070927093458.bf3c5a75.rpratt1950@embarqmail.com> X-Mailer: VM 7.17 under 21.5 (beta28) "fuki" XEmacs Lucid X-Junkmail-Whitelist: YES (by domain whitelist at mr08.lnh.mail.rcn.net) Subject: Re: ImageMagick X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2007 13:44:33 -0000 Randy Pratt writes: > > I had the same error. Now I switched SVG format support on and it > > passes the tests. > > I tried turning on the SVG format and it still fails. Mine failed with SVG also. Robert Huff From owner-freebsd-ports@FreeBSD.ORG Thu Sep 27 14:09:16 2007 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AE17816A41B; Thu, 27 Sep 2007 14:09:16 +0000 (UTC) (envelope-from stefan.lambrev@moneybookers.com) Received: from blah.sun-fish.com (blah.sun-fish.com [217.18.249.150]) by mx1.freebsd.org (Postfix) with ESMTP id 52FC113C474; Thu, 27 Sep 2007 14:09:16 +0000 (UTC) (envelope-from stefan.lambrev@moneybookers.com) Received: by blah.sun-fish.com (Postfix, from userid 1002) id 0E4881B10EBB; Thu, 27 Sep 2007 15:53:38 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on blah.cmotd.com X-Spam-Level: X-Spam-Status: No, score=-104.4 required=5.0 tests=ALL_TRUSTED,BAYES_00, USER_IN_WHITELIST autolearn=ham version=3.2.3 Received: from hater.haters.org (hater.cmotd.com [192.168.3.125]) by blah.sun-fish.com (Postfix) with ESMTP id 4FEAC1B10C26; Thu, 27 Sep 2007 15:53:31 +0200 (CEST) Message-ID: <46FBB5C6.2090402@moneybookers.com> Date: Thu, 27 Sep 2007 16:53:10 +0300 From: Stefan Lambrev User-Agent: Thunderbird 2.0.0.6 (X11/20070918) MIME-Version: 1.0 To: shaun@FreeBSD.org Content-Type: text/plain; charset=windows-1251; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV 0.91.2/4411/Wed Sep 26 23:43:35 2007 on blah.cmotd.com X-Virus-Status: Clean Cc: ports@freebsd.org Subject: heimdal-1.0.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2007 14:09:16 -0000 Hello, There is a problem with new heimdal port in this part: post-build: .if defined(WITH_CRACKLIB) ${SED} -e "s;%%LOCALBASE%%;${LOCALBASE};g" \ ${FILESDIR}/kpasswdd-cracklib.c.in > ${WRKSRC}/kpasswdd-cracklib.c (cd ${WRKSRC} && \ ${CC} ${CFLAGS} -fPIC -shared -I${LOCALBASE}/include -I./include \ -L${LOCALBASE}/lib -o ./kpasswdd-cracklib.so ./kpasswdd-cracklib.c -lcrack) .endif but files/kpasswdd-cracklib.c.in does not exist, so remove CRACKLIB as option or add the missing patch ? :) -- Best Wishes, Stefan Lambrev ICQ# 24134177 From owner-freebsd-ports@FreeBSD.ORG Thu Sep 27 14:31:45 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0D14B16A41B for ; Thu, 27 Sep 2007 14:31:45 +0000 (UTC) (envelope-from vdemart1@tin.it) Received: from smtp3.aruba.it (smtpd3.aruba.it [62.149.128.208]) by mx1.freebsd.org (Postfix) with SMTP id 43CFE13C447 for ; Thu, 27 Sep 2007 14:31:43 +0000 (UTC) (envelope-from vdemart1@tin.it) Received: (qmail 13640 invoked by uid 89); 27 Sep 2007 14:31:41 -0000 Received: by simscan 1.1.0 ppid: 13611, pid: 13633, t: 0.1861s scanners: clamav: 0.88.4/m:40/d:1722 Received: from unknown (HELO ?10.155.100.7?) (ml-vic@de-martino.it@79.9.218.56) by smtp3.aruba.it with SMTP; 27 Sep 2007 14:31:41 -0000 Content-Disposition: inline From: vittorio To: freebsd-ports@freebsd.org, freebsd-questions@freebsd.org Date: Thu, 27 Sep 2007 16:31:44 +0000 User-Agent: KMail/1.9.7 MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200709271631.44600.vdemart1@tin.it> X-Spam-Rating: smtp3.aruba.it 1.6.2 0/1000/N Cc: Subject: Missing libgfortran: what package is it in? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2007 14:31:45 -0000 I'm trying to update some packages of R. In compiling them freebsd 6.2 fails systematically because a libgfortran library is missing (and, as a matter of fact, it is!). What package should I install to have these lib available? Ciao Vittorio ------------------------------------------------------- From owner-freebsd-ports@FreeBSD.ORG Thu Sep 27 15:10:14 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B297316A418 for ; Thu, 27 Sep 2007 15:10:14 +0000 (UTC) (envelope-from rhurlin@gwdg.de) Received: from amailer.gwdg.de (amailer.gwdg.de [134.76.10.18]) by mx1.freebsd.org (Postfix) with ESMTP id 54F3E13C4B7 for ; Thu, 27 Sep 2007 15:10:14 +0000 (UTC) (envelope-from rhurlin@gwdg.de) Received: from p578b68b8.dip0.t-ipconnect.de ([87.139.104.184] helo=krabat.raven.hur) by mailer.gwdg.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.67) (envelope-from ) id 1IauYS-00017C-2w; Thu, 27 Sep 2007 16:41:28 +0200 Message-ID: <46FBC114.2080208@gwdg.de> Date: Thu, 27 Sep 2007 16:41:24 +0200 From: Rainer Hurling User-Agent: Thunderbird 2.0.0.6 (X11/20070803) MIME-Version: 1.0 To: vittorio References: <200709271631.44600.vdemart1@tin.it> In-Reply-To: <200709271631.44600.vdemart1@tin.it> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Authenticated: Id:rhurlin X-Spam-Level: - X-Virus-Scanned: (clean) by exiscan+sophie Cc: freebsd-ports@freebsd.org Subject: Re: Missing libgfortran: what package is it in? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2007 15:10:14 -0000 Install lang/gcc42 and you will be able to compile R and its packages. Hope this helps, Rainer vittorio schrieb: > I'm trying to update some packages of R. In compiling them freebsd 6.2 fails > systematically because a libgfortran library is missing (and, as a matter of > fact, it is!). > > What package should I install to have these lib available? > > Ciao > Vittorio > > ------------------------------------------------------- > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" From owner-freebsd-ports@FreeBSD.ORG Thu Sep 27 15:39:37 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 40F3016A418 for ; Thu, 27 Sep 2007 15:39:37 +0000 (UTC) (envelope-from christopher.illies@ki.se) Received: from smtp2.ki.se (smtp2.ki.se [130.237.98.101]) by mx1.freebsd.org (Postfix) with ESMTP id B869313C467 for ; Thu, 27 Sep 2007 15:39:36 +0000 (UTC) (envelope-from christopher.illies@ki.se) Received: from smtp2.ki.se (smtp2.ki.se [127.0.0.1]) by localhost (Postfix) with SMTP id 6EA56534725; Thu, 27 Sep 2007 17:34:50 +0200 (CEST) Received: from Klabautermann.ks.se (unknown [136.155.136.187]) by smtp2.ki.se (Postfix) with SMTP id 0046E534729; Thu, 27 Sep 2007 17:34:47 +0200 (CEST) Received: by Klabautermann.ks.se (Postfix, from userid 1001) id DC7F5BE5F; Thu, 27 Sep 2007 17:39:31 +0200 (CEST) Date: Thu, 27 Sep 2007 17:39:31 +0200 From: Christopher Illies To: Randy Pratt Message-ID: <20070927153931.GB70278@Klabautermann.ks.se> Mail-Followup-To: Christopher Illies , Randy Pratt , freebsd-ports@freebsd.org References: <57200BF94E69E54880C9BB1AF714BBCB011187@w2003s01.double-l.local> <20070927124421.GA70278@Klabautermann.ks.se> <20070927093458.bf3c5a75.rpratt1950@embarqmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070927093458.bf3c5a75.rpratt1950@embarqmail.com> User-Agent: Mutt/1.4.2.3i X-PMX-Version: 5.3.3.310218, Antispam-Engine: 2.5.2.313940, Antispam-Data: 2007.9.27.80756 X-PerlMx-Spam: Gauge=IIIIIII, Probability=7%, Report='__CD 0, __CP_MEDIA_BODY 0, __CP_URI_IN_BODY 0, __CT 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' Cc: freebsd-ports@freebsd.org Subject: Re: ImageMagick X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2007 15:39:37 -0000 On Thu, Sep 27, 2007 at 09:34:58AM -0400, Randy Pratt wrote: > On Thu, 27 Sep 2007 14:44:21 +0200 > Christopher Illies wrote: > > > On Thu, Sep 27, 2007 at 11:21:02AM +0200, Johan Hendriks wrote: > > > I can not update Image Magick on all of my machines. > > > This is on 6.2 and 6.1 > > > > > > it errors out with the following error: > > [...] > > > > I had the same error. Now I switched SVG format support on and it > > passes the tests. > > I tried turning on the SVG format and it still fails. Could you > show the output of your "make showconfig" for ImageMagick? > > Mine is: > X11=on "X11 support" > IMAGEMAGICK_TESTS=on "Run bundled self-tests after build" > IMAGEMAGICK_PERL=on "Perl support" > IMAGEMAGICK_MODULES=off "Modules support (broken)" > IMAGEMAGICK_BZLIB=on "Bzlib support" > IMAGEMAGICK_16BIT_PIXEL=on "16bit pixel support" > IMAGEMAGICK_LCMS=on "LCMS support" > IMAGEMAGICK_TTF=on "Freetype support" > IMAGEMAGICK_FONTCONFIG=on "Fontconfig support" > IMAGEMAGICK_JPEG=on "JPG format support" > IMAGEMAGICK_PNG=on "PNG format support" > IMAGEMAGICK_TIFF=on "TIFF format support" > IMAGEMAGICK_FPX=on "FPX format support" > IMAGEMAGICK_JBIG=on "JBIG format support" > IMAGEMAGICK_JPEG2000=on "JPEG2000 format support" > IMAGEMAGICK_DOT=off "GraphViz dot graphs support" > IMAGEMAGICK_WMF=off "WMF format support" > IMAGEMAGICK_SVG=on "SVG format support" > IMAGEMAGICK_PDF=on "PDF format support" > IMAGEMAGICK_MPEG2=on "MPEG2 format support" > IMAGEMAGICK_GSLIB=off "libgs (Postscript SHLIB) support" > > There has been a PR 116682 filed and a thread started on: > > http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=9782 > > The developers can't reproduce the failure we're seeing. > > Thanks, > > Randy > -- Here it is: $ make showconfig ===> The following configuration options are available for ImageMagick-6.3.5.10: X11=on "X11 support" IMAGEMAGICK_TESTS=on "Run bundled self-tests after build" IMAGEMAGICK_PERL=off "Perl support" IMAGEMAGICK_MODULES=off "Modules support (broken)" IMAGEMAGICK_BZLIB=on "Bzlib support" IMAGEMAGICK_16BIT_PIXEL=on "16bit pixel support" IMAGEMAGICK_LCMS=on "LCMS support" IMAGEMAGICK_TTF=on "Freetype support" IMAGEMAGICK_FONTCONFIG=on "Fontconfig support" IMAGEMAGICK_JPEG=on "JPG format support" IMAGEMAGICK_PNG=on "PNG format support" IMAGEMAGICK_TIFF=on "TIFF format support" IMAGEMAGICK_FPX=on "FPX format support" IMAGEMAGICK_JBIG=on "JBIG format support" IMAGEMAGICK_JPEG2000=on "JPEG2000 format support" IMAGEMAGICK_DOT=off "GraphViz dot graphs support" IMAGEMAGICK_WMF=off "WMF format support" IMAGEMAGICK_SVG=on "SVG format support" IMAGEMAGICK_PDF=on "PDF format support" IMAGEMAGICK_MPEG2=on "MPEG2 format support" IMAGEMAGICK_GSLIB=off "libgs (Postscript SHLIB) support" ===> Use 'make config' to modify these settings $ And as I see now, I also turned off Perl support. Probably that did it. Sorry about the confusion. Christopher From owner-freebsd-ports@FreeBSD.ORG Thu Sep 27 16:00:01 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5F99016A421; Thu, 27 Sep 2007 16:00:01 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from ella.lautre.net (ella.lautre.net [80.67.160.76]) by mx1.freebsd.org (Postfix) with ESMTP id 0E68213C478; Thu, 27 Sep 2007 16:00:01 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from graf.pompo.net (graf.pompo.net [81.56.186.139]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx.lautre.net (Postfix) with ESMTP id 6C3EE4C28A; Thu, 27 Sep 2007 17:05:09 +0200 (CEST) Received: by graf.pompo.net (Postfix, from userid 80) id 5F7D711440; Thu, 27 Sep 2007 17:05:06 +0200 (CEST) Received: from 192.54.193.52 ([192.54.193.52]) by graf.pompo.net (Horde MIME library) with HTTP; Thu, 27 Sep 2007 17:05:06 +0200 Message-ID: <20070927170506.5uuridqsg00w8gok@graf.pompo.net> X-Priority: 3 (Normal) Date: Thu, 27 Sep 2007 17:05:06 +0200 From: Thierry Thomas To: vittorio References: <200709271631.44600.vdemart1@tin.it> In-Reply-To: <200709271631.44600.vdemart1@tin.it> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.1.4) / FreeBSD-6.2 X-Originating-IP: 192.54.193.52 X-Remote-Browser: Mozilla/5.0 (Windows; U; Windows NT 5.0; fr; rv:1.8.1.7) Gecko/20070914 Firefox/2.0.0.7 Cc: freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: Missing libgfortran: what package is it in? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2007 16:00:01 -0000 Selon vittorio le Jeu 27 sep 18:31:44 2007 : > I'm trying to update some packages of R. In compiling them freebsd 6.2 fails > systematically because a libgfortran library is missing (and, as a matter of > fact, it is!). > > What package should I install to have these lib available? It should be provided by lang/gcc42. Actually, if gcc42 is only registered as a build_depends, this is a bug. Regards, -- Th. Thomas. From owner-freebsd-ports@FreeBSD.ORG Thu Sep 27 16:34:36 2007 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B195616A417 for ; Thu, 27 Sep 2007 16:34:36 +0000 (UTC) (envelope-from Helko.Glathe@freenet.de) Received: from mout0.freenet.de (mout0.freenet.de [IPv6:2001:748:100:40::2:2]) by mx1.freebsd.org (Postfix) with ESMTP id 6548413C458 for ; Thu, 27 Sep 2007 16:34:36 +0000 (UTC) (envelope-from Helko.Glathe@freenet.de) Received: from [195.4.92.15] (helo=mx5.freenet.de) by mout0.freenet.de with esmtpa (Exim 4.68) (envelope-from ) id 1IawJv-0002Vd-3Q for ports@freebsd.org; Thu, 27 Sep 2007 18:34:35 +0200 Received: from e178236023.adsl.alicedsl.de ([85.178.236.23]:61973 helo=freebsd-tws29) by mx5.freenet.de with esmtpsa (ID helko.glathe@freenet.de) (TLSv1:AES256-SHA:256) (port 587) (Exim 4.68 #6) id 1IawJv-0003DA-1I for ports@freebsd.org; Thu, 27 Sep 2007 18:34:35 +0200 From: Helko Glathe Organization: privat To: ports@freebsd.org Date: Thu, 27 Sep 2007 18:29:06 +0200 User-Agent: KMail/1.9.7 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200709271829.07375.Helko.Glathe@freenet.de> Cc: Subject: FreeBSD Port: google-earth-4.1.7076.4458 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Helko.Glathe@freenet.de List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2007 16:34:36 -0000 > It seems that the patch was damaged by some MUA. Try > http://people.freebsd.org/~kib/misc/i915_dma.patch I've sucessfully applied the patch. Is it necessary to make make && make install in /usr/src/sys? Regards, Helko. From owner-freebsd-ports@FreeBSD.ORG Thu Sep 27 16:43:55 2007 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 25E3D16A41B for ; Thu, 27 Sep 2007 16:43:55 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from relay02.kiev.sovam.com (relay02.kiev.sovam.com [62.64.120.197]) by mx1.freebsd.org (Postfix) with ESMTP id B873913C474 for ; Thu, 27 Sep 2007 16:43:54 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from [212.82.216.226] (helo=deviant.kiev.zoral.com.ua) by relay02.kiev.sovam.com with esmtps (TLSv1:AES256-SHA:256) (Exim 4.67) (envelope-from ) id 1IawSv-0006h3-H4 for ports@freebsd.org; Thu, 27 Sep 2007 19:43:54 +0300 Received: from deviant.kiev.zoral.com.ua (kostik@localhost [127.0.0.1]) by deviant.kiev.zoral.com.ua (8.14.1/8.14.1) with ESMTP id l8RGhojK047459; Thu, 27 Sep 2007 19:43:50 +0300 (EEST) (envelope-from kostikbel@gmail.com) Received: (from kostik@localhost) by deviant.kiev.zoral.com.ua (8.14.1/8.14.1/Submit) id l8RGhoGa047458; Thu, 27 Sep 2007 19:43:50 +0300 (EEST) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: deviant.kiev.zoral.com.ua: kostik set sender to kostikbel@gmail.com using -f Date: Thu, 27 Sep 2007 19:43:50 +0300 From: Kostik Belousov To: Helko Glathe Message-ID: <20070927164350.GQ87366@deviant.kiev.zoral.com.ua> References: <200709271829.07375.Helko.Glathe@freenet.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="f0Ums9VvOMUG7syy" Content-Disposition: inline In-Reply-To: <200709271829.07375.Helko.Glathe@freenet.de> User-Agent: Mutt/1.4.2.3i X-Scanner-Signature: 6f32a619495bd298c8ed4cb100af0918 X-DrWeb-checked: yes X-SpamTest-Envelope-From: kostikbel@gmail.com X-SpamTest-Group-ID: 00000000 X-SpamTest-Info: Profiles 1521 [September 27 2007] X-SpamTest-Info: helo_type=3 X-SpamTest-Info: {received from trusted relay: not dialup} X-SpamTest-Method: none X-SpamTest-Method: Local Lists X-SpamTest-Rate: 0 X-SpamTest-Status: Not detected X-SpamTest-Status-Extended: not_detected X-SpamTest-Version: SMTP-Filter Version 3.0.0 [0255], KAS30/Release Cc: ports@freebsd.org Subject: Re: FreeBSD Port: google-earth-4.1.7076.4458 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2007 16:43:55 -0000 --f0Ums9VvOMUG7syy Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Sep 27, 2007 at 06:29:06PM +0200, Helko Glathe wrote: > > It seems that the patch was damaged by some MUA. Try > > http://people.freebsd.org/~kib/misc/i915_dma.patch >=20 > I've sucessfully applied the patch. >=20 > Is it necessary to make > make && make install=20 > in /usr/src/sys? You need to follow the procedure for rebuilding the kernel, see handbook for instructions. --f0Ums9VvOMUG7syy Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQFG+93FC3+MBN1Mb4gRAvtxAKCq7kM9OO3FMUTdW7StBMypseXMoQCglOSy aOxSvJmyNIMqON/UTWjaRt8= =GHbz -----END PGP SIGNATURE----- --f0Ums9VvOMUG7syy-- From owner-freebsd-ports@FreeBSD.ORG Thu Sep 27 17:02:52 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 901C616A41B for ; Thu, 27 Sep 2007 17:02:52 +0000 (UTC) (envelope-from ml.freebsd.ports2@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.174]) by mx1.freebsd.org (Postfix) with ESMTP id 8E38713C4A8 for ; Thu, 27 Sep 2007 17:02:51 +0000 (UTC) (envelope-from ml.freebsd.ports2@gmail.com) Received: by ug-out-1314.google.com with SMTP id a2so1575958ugf for ; Thu, 27 Sep 2007 10:02:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; bh=91C3R32O5wxMfV8VxTfVDqiKCRX7VHmedc2qXoSU5/w=; b=XhsymDvCztKXk3MVFkECtAHGiFUV529yHYVecipMNg4EG84ySJ+YMHkOkifhcCGIHCWbYVAp7rWZU/h/VojjjoOiAQG529baarpBwmqNuGsGIFl1FaBZ+8S02X38dRWwIuZ4KCuQyy7Cn/hcu5y1qBGxoz5DFwiAOm0epgfqRYw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=lBA2uM7KAvh6Nt20d85vzbsWB51Hh+hq26XK13CTTuiVFwkI6i8lHV6qRMiar8sdOggGBu3sy44wzLJQ7jEool030zcT6EbA02515UumiyiL+egVnYcSgipkMx4+EY2qyIkU/zsFXPHm9TfaLutGj0OAaFRDRDuAuHou7hG5+9c= Received: by 10.66.221.5 with SMTP id t5mr3808925ugg.1190912570265; Thu, 27 Sep 2007 10:02:50 -0700 (PDT) Received: by 10.67.40.12 with HTTP; Thu, 27 Sep 2007 10:02:50 -0700 (PDT) Message-ID: <5577a4870709271002r62f939fdw7f4515c17de06dd4@mail.gmail.com> Date: Thu, 27 Sep 2007 13:02:50 -0400 From: "FreeBSD Ports" To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: Failure building Vim dependancies X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2007 17:02:52 -0000 # uname -a FreeBSD hr-stc-itlab3.virginiadot.org 6.2-STABLE FreeBSD 6.2-STABLE #0: Tue Sep 25 13:26:00 EDT 2007 toor@hr-stc-itlab3.virginiadot.org:/usr/obj/usr/src/sys/HR-STC-ITLAB3 i386 My ports tree was updated September 24, 2007; all installed ports are up-to-date as of this date. I'm trying to install the latest version of Vim via portupgrade-devel 2.3.1. I'm using the command 'portinstall --use-packages vim'. The build seems to go well, and then--on a seemingly random port--a build will fail and the installation process will exit. Each time that I've looked, the failure occurred when the port's configure script was looking for some dependency. For example, when libXres was beginning it's install, it went looking for resourceproto, couldn't find it, and then bombed out. It did the same thing when configuring libXTrap; the configure script bombed out when looking for trapproto. Here's the funny thing. If, without doing anything else, I rerun portinstall, the installation will continue and install another half dozen or so ports before failing again in a similar fashion. What's going on here? Kevin From owner-freebsd-ports@FreeBSD.ORG Thu Sep 27 17:31:30 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5AAF416A418 for ; Thu, 27 Sep 2007 17:31:30 +0000 (UTC) (envelope-from rpratt1950@embarqmail.com) Received: from mailrelay.embarq.synacor.com (mailrelay.embarq.synacor.com [208.47.184.3]) by mx1.freebsd.org (Postfix) with ESMTP id E3C6113C4A5 for ; Thu, 27 Sep 2007 17:31:29 +0000 (UTC) (envelope-from rpratt1950@embarqmail.com) X_CMAE_Category: 0,0 Undefined,Undefined X-CNFS-Analysis: v=1.0 c=1 a=aZrenTUAAAAA:8 a=XOhA1aqtmQTdX4Fo3pUA:9 a=uP_3KYYI5BxZFQueFrIA:7 a=8twgex93vn9d48Xi60z7olEzogkA:4 a=LY0hPdMaydYA:10 X-CM-Score: 0 X-Scanned-by: Cloudmark Authority Engine Authentication-Results: smtp08.embarq.synacor.com smtp.mail=rpratt1950@embarqmail.com; spf=neutral Authentication-Results: smtp08.embarq.synacor.com smtp.user=rpratt1950@embarqmail.com; auth=pass (LOGIN) Received-SPF: neutral (smtp08.embarq.synacor.com: 76.6.199.180 is neither permitted nor denied by domain of embarqmail.com) Received: from [76.6.199.180] ([76.6.199.180:55084] helo=kt.weeeble.com) by mailrelay.embarq.synacor.com (envelope-from ) (ecelerity 2.2.0.18 r(18773)) with ESMTPA id 51/52-03765-0F8EBF64; Thu, 27 Sep 2007 13:31:28 -0400 Date: Thu, 27 Sep 2007 13:31:27 -0400 From: Randy Pratt To: Christopher Illies Message-Id: <20070927133127.93b676be.rpratt1950@embarqmail.com> In-Reply-To: <20070927153931.GB70278@Klabautermann.ks.se> References: <57200BF94E69E54880C9BB1AF714BBCB011187@w2003s01.double-l.local> <20070927124421.GA70278@Klabautermann.ks.se> <20070927093458.bf3c5a75.rpratt1950@embarqmail.com> <20070927153931.GB70278@Klabautermann.ks.se> X-Mailer: Sylpheed 2.4.6 (GTK+ 2.10.14; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: mi@aldan.algebra.com, freebsd-ports@freebsd.org Subject: Re: ImageMagick X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2007 17:31:30 -0000 On Thu, 27 Sep 2007 17:39:31 +0200 Christopher Illies wrote: > On Thu, Sep 27, 2007 at 09:34:58AM -0400, Randy Pratt wrote: > > On Thu, 27 Sep 2007 14:44:21 +0200 > > Christopher Illies wrote: > > > > > On Thu, Sep 27, 2007 at 11:21:02AM +0200, Johan Hendriks wrote: > > > > I can not update Image Magick on all of my machines. > > > > This is on 6.2 and 6.1 > > > > > > > > it errors out with the following error: > > > [...] > > > > > > I had the same error. Now I switched SVG format support on and it > > > passes the tests. > > > > I tried turning on the SVG format and it still fails. Could you > > show the output of your "make showconfig" for ImageMagick? > > > > Mine is: > > X11=on "X11 support" > > IMAGEMAGICK_TESTS=on "Run bundled self-tests after build" > > IMAGEMAGICK_PERL=on "Perl support" > > IMAGEMAGICK_MODULES=off "Modules support (broken)" > > IMAGEMAGICK_BZLIB=on "Bzlib support" > > IMAGEMAGICK_16BIT_PIXEL=on "16bit pixel support" > > IMAGEMAGICK_LCMS=on "LCMS support" > > IMAGEMAGICK_TTF=on "Freetype support" > > IMAGEMAGICK_FONTCONFIG=on "Fontconfig support" > > IMAGEMAGICK_JPEG=on "JPG format support" > > IMAGEMAGICK_PNG=on "PNG format support" > > IMAGEMAGICK_TIFF=on "TIFF format support" > > IMAGEMAGICK_FPX=on "FPX format support" > > IMAGEMAGICK_JBIG=on "JBIG format support" > > IMAGEMAGICK_JPEG2000=on "JPEG2000 format support" > > IMAGEMAGICK_DOT=off "GraphViz dot graphs support" > > IMAGEMAGICK_WMF=off "WMF format support" > > IMAGEMAGICK_SVG=on "SVG format support" > > IMAGEMAGICK_PDF=on "PDF format support" > > IMAGEMAGICK_MPEG2=on "MPEG2 format support" > > IMAGEMAGICK_GSLIB=off "libgs (Postscript SHLIB) support" > > > > There has been a PR 116682 filed and a thread started on: > > > > http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=9782 > > > > The developers can't reproduce the failure we're seeing. > > > > Thanks, > > > > Randy > > -- > > Here it is: > $ make showconfig > ===> The following configuration options are available for > ImageMagick-6.3.5.10: > X11=on "X11 support" > IMAGEMAGICK_TESTS=on "Run bundled self-tests after build" > IMAGEMAGICK_PERL=off "Perl support" > IMAGEMAGICK_MODULES=off "Modules support (broken)" > IMAGEMAGICK_BZLIB=on "Bzlib support" > IMAGEMAGICK_16BIT_PIXEL=on "16bit pixel support" > IMAGEMAGICK_LCMS=on "LCMS support" > IMAGEMAGICK_TTF=on "Freetype support" > IMAGEMAGICK_FONTCONFIG=on "Fontconfig support" > IMAGEMAGICK_JPEG=on "JPG format support" > IMAGEMAGICK_PNG=on "PNG format support" > IMAGEMAGICK_TIFF=on "TIFF format support" > IMAGEMAGICK_FPX=on "FPX format support" > IMAGEMAGICK_JBIG=on "JBIG format support" > IMAGEMAGICK_JPEG2000=on "JPEG2000 format support" > IMAGEMAGICK_DOT=off "GraphViz dot graphs support" > IMAGEMAGICK_WMF=off "WMF format support" > IMAGEMAGICK_SVG=on "SVG format support" > IMAGEMAGICK_PDF=on "PDF format support" > IMAGEMAGICK_MPEG2=on "MPEG2 format support" > IMAGEMAGICK_GSLIB=off "libgs (Postscript SHLIB) support" > ===> Use 'make config' to modify these settings > $ > > And as I see now, I also turned off Perl support. Probably that did > it. Sorry about the confusion. I turned off IMAGEMAGICK_PERL and it does complete with or without IMAGEMAGICK_SVG support and IMAGEMAGICK_TESTS on. I'm not sure how this affects the port or its capabilities. It may help someone track down the cause. Its beyond my meager abilities bit I'm willing to do testing. Thanks for the clarification, Randy -- From owner-freebsd-ports@FreeBSD.ORG Thu Sep 27 17:56:23 2007 Return-Path: Delivered-To: ports@FreeBSD.org Received: by hub.freebsd.org (Postfix, from userid 991) id 960A616A41B; Thu, 27 Sep 2007 17:56:23 +0000 (UTC) Date: Thu, 27 Sep 2007 17:56:23 +0000 From: Mark Linimon To: ports@FreeBSD.org Message-ID: <20070927175623.GA2797@hub.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Cc: linimon@FreeBSD.org Subject: failure mode in build of devel/e4graph X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2007 17:56:23 -0000 Nothing has changed in the port, but this is showing up on both 5 and 5-exp now. Any ideas? The offending item is the extra space after '/usr/local/lib': mkdir -p /usr/local/lib /tcl8.4/tgraph1.0 cp ../../all/pkgIndex.tcl /usr/local/lib /tcl8.4/tgraph1.0 cp: /usr/local/lib is a directory (not copied). http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.5.2007092509/e4graph-1.0a11_2.log Is anyone else seeing an error like this? mcl From owner-freebsd-ports@FreeBSD.ORG Thu Sep 27 18:04:41 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1970316A418 for ; Thu, 27 Sep 2007 18:04:41 +0000 (UTC) (envelope-from mi+mill@aldan.algebra.com) Received: from mail6.sea5.speakeasy.net (mail6.sea5.speakeasy.net [69.17.117.8]) by mx1.freebsd.org (Postfix) with ESMTP id D8E2313C459 for ; Thu, 27 Sep 2007 18:04:40 +0000 (UTC) (envelope-from mi+mill@aldan.algebra.com) Received: (qmail 7451 invoked from network); 27 Sep 2007 17:38:00 -0000 Received: from aldan.algebra.com (HELO aldan-mlp) ([216.254.65.224]) (envelope-sender ) by mail6.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 27 Sep 2007 17:38:00 -0000 From: Mikhail Teterin To: Randy Pratt Date: Thu, 27 Sep 2007 13:37:57 -0400 User-Agent: KMail/1.7.1 References: <57200BF94E69E54880C9BB1AF714BBCB011187@w2003s01.double-l.local> <20070927153931.GB70278@Klabautermann.ks.se> <20070927133127.93b676be.rpratt1950@embarqmail.com> In-Reply-To: <20070927133127.93b676be.rpratt1950@embarqmail.com> Organization: Virtual Estates, Inc. MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-u" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200709271337.58208.mi+mill@aldan.algebra.com> Cc: Christopher Illies , freebsd-ports@freebsd.org Subject: Re: ImageMagick X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2007 18:04:41 -0000 =DE=C5=D4=D7=C5=D2 27 =D7=C5=D2=C5=D3=C5=CE=D8 2007 01:31 =D0=CF, Randy Pra= tt =F7=C9 =CE=C1=D0=C9=D3=C1=CC=C9: > I turned off IMAGEMAGICK_PERL and it does complete with or without > IMAGEMAGICK_SVG support and IMAGEMAGICK_TESTS on. =9AI'm not sure how > this affects the port or its capabilities. =9AIt may help someone track > down the cause. Its beyond my meager abilities bit I'm willing to do > testing. There is a number of issues currently with PerlMagick and fxp, all of them,= =20 apparently, /exposed/ (rather than /triggered/) by the tests. A solution is= =20 being worked on. Another problem -- with optional libraries like -ltiff being not found in s= ome=20 configurations (such as -nox11) -- was corrected yesterday. The LDFLAGS are= =20 now passed on correctly. -mi From owner-freebsd-ports@FreeBSD.ORG Thu Sep 27 22:31:20 2007 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0004D16A418 for ; Thu, 27 Sep 2007 22:31:19 +0000 (UTC) (envelope-from lavalamp@spiritual-machines.org) Received: from mx00.pub.collaborativefusion.com (mx00.pub.collaborativefusion.com [206.210.89.199]) by mx1.freebsd.org (Postfix) with ESMTP id 8974C13C458 for ; Thu, 27 Sep 2007 22:31:19 +0000 (UTC) (envelope-from lavalamp@spiritual-machines.org) Received: from [192.168.2.62] (pr40.pitbpa0.pub.collaborativefusion.com [206.210.89.202]) (AUTH: LOGIN seklecki, TLS: TLSv1/SSLv3,128bits,RC4-MD5) by wingspan with esmtp; Thu, 27 Sep 2007 18:21:16 -0400 id 00056423.46FC2CDC.000101EE From: "Brian A. Seklecki" To: Stephen Hocking In-Reply-To: <6300771b0706261512q2c765045j6e1234cfb9ee6ebb@mail.gmail.com> References: <6300771b0706261512q2c765045j6e1234cfb9ee6ebb@mail.gmail.com> Date: Mon, 24 Sep 2007 18:30:51 -0400 Message-Id: <1190673051.3625.4.camel@localhost.localdomain> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 7bit X-Mailer: Evolution 2.10.3 (2.10.3-4.fc7) Cc: ports@freebsd.org Subject: Re: Keeping /dev/dsp in digital out mode? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2007 22:31:20 -0000 Perhaps there is a sysctl for the drive you use that enables upsampling/resampling on-demand? I seem to remember on NetBSD. ~BAS On Wed, 2007-06-27 at 08:12 +1000, Stephen Hocking wrote: > Hi, > > All of my systems are connected to a home theatre amp via an analogue > connection except for one, which used an optical connection. > Unsuprisingly, the digital connection sounds better (less noise etc). > Has anyone experimented with keeping the output in digital mode all > the time? I guess that some things would have to be resampled (I'm > thinking of some games that only use 22KHz output etc, and some cards > will only output digital at 48KHz). Any ideas? > > > > Stephen > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" > > > > > > From owner-freebsd-ports@FreeBSD.ORG Fri Sep 28 01:59:20 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E12BA16A420 for ; Fri, 28 Sep 2007 01:59:20 +0000 (UTC) (envelope-from stephano@dht.ig3.net) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.186]) by mx1.freebsd.org (Postfix) with ESMTP id 9A2F013C459 for ; Fri, 28 Sep 2007 01:59:20 +0000 (UTC) (envelope-from stephano@dht.ig3.net) Received: by nf-out-0910.google.com with SMTP id b2so2093189nfb for ; Thu, 27 Sep 2007 18:59:19 -0700 (PDT) Received: by 10.78.130.6 with SMTP id c6mr2461142hud.1190943211509; Thu, 27 Sep 2007 18:33:31 -0700 (PDT) Received: by 10.78.17.14 with HTTP; Thu, 27 Sep 2007 18:33:31 -0700 (PDT) Message-ID: Date: Thu, 27 Sep 2007 22:33:31 -0300 From: "Stephano Zanzin" To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Hi!... How to maintain a ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2007 01:59:21 -0000 Hello! Im new in this list, and I want to know how I can maintain a ports. I want very much to contribute with the Ports project. Please folks, help me! Thanks!! From owner-freebsd-ports@FreeBSD.ORG Fri Sep 28 02:11:29 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A06BF16A421 for ; Fri, 28 Sep 2007 02:11:29 +0000 (UTC) (envelope-from beech@freebsd.org) Received: from stargate.alaskaparadise.com (137-42-178-69.gci.net [69.178.42.137]) by mx1.freebsd.org (Postfix) with ESMTP id 98B3313C46A for ; Fri, 28 Sep 2007 02:11:29 +0000 (UTC) (envelope-from beech@freebsd.org) Received: by stargate.alaskaparadise.com (Postfix, from userid 0) id CDFD47E08; Thu, 27 Sep 2007 18:11:28 -0800 (AKDT) From: Beech Rintoul To: freebsd-ports@freebsd.org Date: Thu, 27 Sep 2007 18:11:23 -0800 User-Agent: KMail/1.9.7 References: In-Reply-To: X-Face: jC2w\k*Q1\0DA2Q0Eh&BrP/Rt2M,^2O#R07VoT98m*>miQF9%Bi9vy`F6cPjwEe?m,)=?utf-8?q?2=0A=09X=3FM=5C=3AOE9QgZ?="xT3/n3,3MJ7N=Cfkmi%f(w^~X"SUxn>; 27NO; C+)g[7J`$G*SN>{<=?utf-8?q?O=3Bg7=7C=0A=09o=7D=265A=5D4?=@7D`=Eb@Zs1Ln814?]|k@'bG=.Ca"[|8+_.OsNAo8!#?4u MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200709271811.25486.beech@freebsd.org> Cc: Stephano Zanzin Subject: Re: Hi!... How to maintain a ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Beech Rintoul List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2007 02:11:29 -0000 On Thursday 27 September 2007, Stephano Zanzin said: > Hello! Im new in this list, and I want to know how I can maintain a > ports. I want very much to contribute with the Ports project. > Please folks, help me! Start by reading the Porters Handbook. On your machine: /usr/share/doc/en_US.ISO8859-1/books/porters-handbook/index.html On the web: http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/index.html Beech -- --------------------------------------------------------------------------------------- Beech Rintoul - FreeBSD Developer - beech@FreeBSD.org /"\ ASCII Ribbon Campaign | FreeBSD Since 4.x \ / - NO HTML/RTF in e-mail | http://www.freebsd.org X - NO Word docs in e-mail | Latest Release: / \ - http://www.FreeBSD.org/releases/6.2R/announce.html --------------------------------------------------------------------------------------- From owner-freebsd-ports@FreeBSD.ORG Fri Sep 28 04:37:11 2007 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 373D216A418 for ; Fri, 28 Sep 2007 04:37:11 +0000 (UTC) (envelope-from maho.nakata@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.244]) by mx1.freebsd.org (Postfix) with ESMTP id E52AF13C46E for ; Fri, 28 Sep 2007 04:37:10 +0000 (UTC) (envelope-from maho.nakata@gmail.com) Received: by an-out-0708.google.com with SMTP id c14so638204anc for ; Thu, 27 Sep 2007 21:37:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:date:message-id:to:cc:subject:from:in-reply-to:references:x-mailer:mime-version:content-type:content-transfer-encoding:sender; bh=yCbLJLPU2Xw3BPXw8zUK4nrsz+3YftSy+BbnjpENT1o=; b=FHOWEpnlGhaUX2hUodhBc+IIh/KGWLo9WRQ4oF81twW0gLdFrId+LMRdmpvF+w49jhxeqfgoSo4BW2VhTar7FSYyg0le+nmLS5ogvsNG3/LX9f1dwwcp6Hsv0WvxghaZZRBVxpQULQoNDf8hND9ktJ5KZ6ubliSLj/QHOUgUCm4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:date:message-id:to:cc:subject:from:in-reply-to:references:x-mailer:mime-version:content-type:content-transfer-encoding:sender; b=OLyXIj/VrK4lIHIJlyKb+TQ6FcdHOXu+O4rMvr0Ho1OJmx8qC2EvQhwsHrYZBl60Hk83FbS0+hhMMIoBedNBGn84Qt8BNTutc5N1hbckK+k/7uq+KfUXeG20cypjaety+UyLqOiqaS4rbAedrgVGddDqLqfbyEB1atfjkHp5plw= Received: by 10.90.75.10 with SMTP id x10mr4525091aga.1190952680918; Thu, 27 Sep 2007 21:11:20 -0700 (PDT) Received: from localhost ( [134.160.214.85]) by mx.google.com with ESMTPS id 62sm2883299wri.2007.09.27.21.11.17 (version=SSLv3 cipher=OTHER); Thu, 27 Sep 2007 21:11:19 -0700 (PDT) Date: Fri, 28 Sep 2007 13:11:14 +0900 (JST) Message-Id: <20070928.131114.55844077.chat95@mac.com> To: rainer.alves@gmail.com From: Maho NAKATA In-Reply-To: <46F51B8E.6050606@gmail.com> References: <46F51B8E.6050606@gmail.com> X-Mailer: Mew version 5.2 on Emacs 22.1 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: Maho NAKATA Cc: maho@FreeBSD.org, ports@FreeBSD.org Subject: Re: Build error - openoffice.org 2.3.0 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2007 04:37:11 -0000 From: Rainer Alves Subject: Build error - openoffice.org 2.3.0 Date: Sat, 22 Sep 2007 10:41:34 -0300 > Maho, > > I've noticed the following error while building openoffice.org 2.3.0 on > 6.2-STABLE (amd64). Knobs used were WITH_TTF_BYTECODE_ENABLED and WITH_CUPS It has also reported by Ben Stuyts. Don Lewis has sent me a patch. Now it should be fine. Please verify, thanks for your report. All the best, -- Nakata Maho (maho@FreeBSD.org) From owner-freebsd-ports@FreeBSD.ORG Fri Sep 28 10:00:09 2007 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6B83516A468 for ; Fri, 28 Sep 2007 10:00:09 +0000 (UTC) (envelope-from fenner@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 487F613C461 for ; Fri, 28 Sep 2007 10:00:09 +0000 (UTC) (envelope-from fenner@FreeBSD.org) Received: from freefall.freebsd.org (fenner@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.1/8.14.1) with ESMTP id l8SA09sw087641 for ; Fri, 28 Sep 2007 10:00:09 GMT (envelope-from fenner@freefall.freebsd.org) Received: (from fenner@localhost) by freefall.freebsd.org (8.14.1/8.14.1/Submit) id l8SA08mL087640 for ports@freebsd.org; Fri, 28 Sep 2007 10:00:08 GMT (envelope-from fenner) Date: Fri, 28 Sep 2007 10:00:08 GMT From: Bill Fenner Message-Id: <200709281000.l8SA08mL087640@freefall.freebsd.org> To: ports@freebsd.org Cc: Subject: Possibly unbuildable ports reminder X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2007 10:00:09 -0000 Dear porters, This is just a reminder to please periodically check the list of unbuildable ports at http://pointyhat.freebsd.org/errorlogs/ . A list by MAINTAINER is http://people.freebsd.org/~fenner/errorlogs/ so you can easily check the status of ports that you maintain. In addition, the list of ports with no MAINTAINER with build problems is http://people.freebsd.org/~fenner/errorlogs/ports@freebsd.org.html Since no one is responsible for these ports, the problem won't get fixed unless someone on this list takes the initiative. Thanks for your help! Bill "annoying port email" Fenner From owner-freebsd-ports@FreeBSD.ORG Fri Sep 28 10:44:19 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4548416A418 for ; Fri, 28 Sep 2007 10:44:19 +0000 (UTC) (envelope-from vdemart1@tin.it) Received: from smtp4.aruba.it (smtpd3.aruba.it [62.149.128.208]) by mx1.freebsd.org (Postfix) with SMTP id 9083413C4B6 for ; Fri, 28 Sep 2007 10:44:18 +0000 (UTC) (envelope-from vdemart1@tin.it) Received: (qmail 15810 invoked by uid 89); 28 Sep 2007 10:44:12 -0000 Received: by simscan 1.1.0 ppid: 15788, pid: 15802, t: 0.0933s scanners: clamav: 0.88.4/m:40/d:1722 Received: from unknown (HELO ?10.155.100.7?) (ml-vic@de-martino.it@79.13.211.90) by smtp4.aruba.it with SMTP; 28 Sep 2007 10:44:12 -0000 Content-Disposition: inline From: vittorio To: freebsd-ports@freebsd.org Date: Fri, 28 Sep 2007 12:44:17 +0000 User-Agent: KMail/1.9.7 MIME-Version: 1.0 Message-Id: <200709281244.17962.vdemart1@tin.it> Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Spam-Rating: smtp4.aruba.it 1.6.2 0/1000/N Subject: Fwd: Compilation error libpcre.so.0: ELF file OS ABI invalid X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2007 10:44:19 -0000 =2D--------- Messaggio inoltrato ---------- Oggetto: Compilation error libpcre.so.0: ELF file OS ABI invalid Data: venerd=EC 28 settembre 2007 Da: vittorio A: freebsd-questions@freebsd.org Context: Intel Core Duo, FreeBSD 6.2-p7, latest portsnap, gcc-4.2.2. Updating the statistical program R, some packages fail to compile (I use=20 tarballs) because this cryptic error pops up * Installing *source* package 'MCMCpack' ... checking for C++ compiler default output file name... a.out checking whether the C++ compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C++ compiler... grep: error while=20 loading shared libraries: /usr/local/lib/libpcre.so.0: ELF file OS ABI=20 invalid yes checking whether c++ accepts -g... grep: error while loading shared=20 libraries: /usr/local/lib/libpcre.so.0: ELF file OS ABI invalid yes It seems that during the compilation a-linux-connected-lib is being looked= =20 for, doesn't it?=20 Anyway, what should I do? Ciao Vittorio _______________________________________________ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" =2D------------------------------------------------------ From owner-freebsd-ports@FreeBSD.ORG Fri Sep 28 12:21:44 2007 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C9DA416A418 for ; Fri, 28 Sep 2007 12:21:44 +0000 (UTC) (envelope-from Helko.Glathe@freenet.de) Received: from mout2.freenet.de (mout2.freenet.de [IPv6:2001:748:100:40::2:4]) by mx1.freebsd.org (Postfix) with ESMTP id 8FF3413C448 for ; Fri, 28 Sep 2007 12:21:44 +0000 (UTC) (envelope-from Helko.Glathe@freenet.de) Received: from [195.4.92.14] (helo=mx4.freenet.de) by mout2.freenet.de with esmtpa (Exim 4.68) (envelope-from ) id 1IbEql-0005F0-Na for ports@freebsd.org; Fri, 28 Sep 2007 14:21:43 +0200 Received: from e178205100.adsl.alicedsl.de ([85.178.205.100]:53552 helo=freebsd-tws29) by mx4.freenet.de with esmtpsa (ID helko.glathe@freenet.de) (TLSv1:AES256-SHA:256) (port 587) (Exim 4.68 #6) id 1IbEql-0003Nl-La for ports@freebsd.org; Fri, 28 Sep 2007 14:21:43 +0200 From: Helko Glathe Organization: privat To: ports@freebsd.org Date: Fri, 28 Sep 2007 14:16:09 +0200 User-Agent: KMail/1.9.7 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200709281416.09727.Helko.Glathe@freenet.de> Cc: Subject: FreeBSD Port: google-earth-4.1.7076.4458 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Helko.Glathe@freenet.de List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2007 12:21:44 -0000 Thank you! It seems to work. Regards, Helko. From owner-freebsd-ports@FreeBSD.ORG Fri Sep 28 12:36:18 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F414016A41A for ; Fri, 28 Sep 2007 12:36:17 +0000 (UTC) (envelope-from chrissicool@chrissicool.net) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id BBAA213C457 for ; Fri, 28 Sep 2007 12:36:17 +0000 (UTC) (envelope-from chrissicool@chrissicool.net) Received: from [10.0.0.240] (port-83-236-4-239.dynamic.qsc.de [83.236.4.239]) by mx01.qsc.de (Postfix) with ESMTP id 7DC19C7EAC; Fri, 28 Sep 2007 14:12:27 +0200 (CEST) From: Christian Ludwig To: lists@socruel.nu In-Reply-To: <53969.80.127.130.242.1190785632.squirrel@imeel.socruel.nu> References: <53969.80.127.130.242.1190785632.squirrel@imeel.socruel.nu> Content-Type: text/plain Date: Fri, 28 Sep 2007 14:12:30 +0200 Message-Id: <1190981550.6103.9.camel@weasel.chrissicool.shacknet.nu> Mime-Version: 1.0 X-Mailer: Evolution 2.10.1 Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: Error code 1 when upgrading ftp-proxy port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2007 12:36:18 -0000 Hello, your errors seem to be related to libevent. From your logs portmaster shows that you have libevent-1.3d installed. Is that really the case? Does /usr/local/include/event.h exist? Because this file could not be found by the compiler. Try reinstalling libevent and after that try to update ftp-proxy again. - Christian From owner-freebsd-ports@FreeBSD.ORG Fri Sep 28 16:01:50 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 62AA816A417 for ; Fri, 28 Sep 2007 16:01:50 +0000 (UTC) (envelope-from david@vizion2000.net) Received: from dns1.vizion2000.net (77-99-36-42.cable.ubr04.chap.blueyonder.co.uk [77.99.36.42]) by mx1.freebsd.org (Postfix) with ESMTP id 1FAAA13C45B for ; Fri, 28 Sep 2007 16:01:49 +0000 (UTC) (envelope-from david@vizion2000.net) Received: by dns1.vizion2000.net (Postfix, from userid 1007) id 0F5561CC47; Fri, 28 Sep 2007 09:17:08 -0700 (PDT) From: David Southwell Organization: Voice and Vision To: freebsd-ports@freebsd.org Date: Fri, 28 Sep 2007 09:17:07 -0700 User-Agent: KMail/1.9.7 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200709280917.07844.david@vizion2000.net> Subject: Cups upgrade compile failure X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2007 16:01:50 -0000 On Upgrade: Making all in cups... gmake[1]: Entering directory `/usr/ports/print/cups-base/work/cups-1.3.0/cups' gmake[1]: Nothing to be done for `all'. gmake[1]: Leaving directory `/usr/ports/print/cups-base/work/cups-1.3.0/cups' Making all in backend... gmake[1]: Entering directory `/usr/ports/print/cups-base/work/cups-1.3.0/backend' gmake[1]: Nothing to be done for `all'. gmake[1]: Leaving directory `/usr/ports/print/cups-base/work/cups-1.3.0/backend' Making all in berkeley... gmake[1]: Entering directory `/usr/ports/print/cups-base/work/cups-1.3.0/berkeley' gmake[1]: Nothing to be done for `all'. gmake[1]: Leaving directory `/usr/ports/print/cups-base/work/cups-1.3.0/berkeley' Making all in cgi-bin... gmake[1]: Entering directory `/usr/ports/print/cups-base/work/cups-1.3.0/cgi-bin' echo Compiling admin.c... Compiling admin.c... cc -Wshadow -Wunused -Wall -Wno-format-y2k -fPIC -Os -g -I/usr/local/include -I/usr/local/include -I/usr/local/include -I/usr/local/include -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_THREAD_SAFE -D_REENTRANT -I.. -I/usr/local/include -O2 -fno-strict-aliasing -pipe -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_THREAD_SAFE -D_REENTRANT -c admin.c admin.c: In function `do_config_server': admin.c:1364: warning: implicit declaration of function `cupsAdminGetServerSettings' admin.c:1383: error: `CUPS_SERVER_REMOTE_ANY' undeclared (first use in this function) admin.c:1383: error: (Each undeclared identifier is reported only once admin.c:1383: error: for each function it appears in.) admin.c:1421: warning: implicit declaration of function `cupsAdminSetServerSettings' admin.c: In function `do_menu': admin.c:2278: error: `CUPS_SERVER_REMOTE_ANY' undeclared (first use in this function) gmake[1]: *** [admin.o] Error 1 gmake[1]: Leaving directory `/usr/ports/print/cups-base/work/cups-1.3.0/cgi-bin' gmake: *** [all] Error 1 *** Error code 2 Stop in /usr/ports/print/cups-base. *** Error code 1 Stop in /usr/ports/print/cups-base. From owner-freebsd-ports@FreeBSD.ORG Fri Sep 28 16:58:39 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3644416A469 for ; Fri, 28 Sep 2007 16:58:39 +0000 (UTC) (envelope-from null@pozo.com) Received: from pozo.com (pozo.com [216.101.162.50]) by mx1.freebsd.org (Postfix) with ESMTP id 883C013C44B for ; Fri, 28 Sep 2007 16:58:38 +0000 (UTC) (envelope-from null@pozo.com) Received: from T41p.pozo.com (t41p.pozo.com [192.168.0.4]) (authenticated bits=0) by pozo.com (8.14.1/8.14.1) with ESMTP id l8SGknje086075 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 28 Sep 2007 09:46:50 -0700 (PDT) (envelope-from null@pozo.com) Message-Id: <200709281646.l8SGknje086075@pozo.com> X-Mailer: QUALCOMM Windows Eudora Version 7.1.0.9 Date: Fri, 28 Sep 2007 09:46:49 -0700 To: David Southwell , freebsd-ports@freebsd.org From: Manfred Antar In-Reply-To: <200709280917.07844.david@vizion2000.net> References: <200709280917.07844.david@vizion2000.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Cc: Subject: Re: Cups upgrade compile failure X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2007 16:58:39 -0000 At 09:17 AM 9/28/2007, David Southwell wrote: >On Upgrade: > Making all in cups... >gmake[1]: Entering directory `/usr/ports/print/cups-base/work/cups-1.3.0/cups' >gmake[1]: Nothing to be done for `all'. >gmake[1]: Leaving directory `/usr/ports/print/cups-base/work/cups-1.3.0/cups' >Making all in backend... >gmake[1]: Entering directory >`/usr/ports/print/cups-base/work/cups-1.3.0/backend' >gmake[1]: Nothing to be done for `all'. >gmake[1]: Leaving directory >`/usr/ports/print/cups-base/work/cups-1.3.0/backend' >Making all in berkeley... >gmake[1]: Entering directory >`/usr/ports/print/cups-base/work/cups-1.3.0/berkeley' >gmake[1]: Nothing to be done for `all'. >gmake[1]: Leaving directory >`/usr/ports/print/cups-base/work/cups-1.3.0/berkeley' >Making all in cgi-bin... >gmake[1]: Entering directory >`/usr/ports/print/cups-base/work/cups-1.3.0/cgi-bin' >echo Compiling admin.c... >Compiling admin.c... >cc -Wshadow -Wunused -Wall -Wno-format-y2k -fPIC -Os -g -I/usr/local/include -I/usr/local/include -I/usr/local/include -I/usr/local/include -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_THREAD_SAFE -D_REENTRANT -I.. -I/usr/local/include -O2 -fno-strict-aliasing -pipe -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_THREAD_SAFE -D_REENTRANT -c >admin.c >admin.c: In function `do_config_server': >admin.c:1364: warning: implicit declaration of function >`cupsAdminGetServerSettings' >admin.c:1383: error: `CUPS_SERVER_REMOTE_ANY' undeclared (first use in this >function) >admin.c:1383: error: (Each undeclared identifier is reported only once >admin.c:1383: error: for each function it appears in.) >admin.c:1421: warning: implicit declaration of function >`cupsAdminSetServerSettings' >admin.c: In function `do_menu': >admin.c:2278: error: `CUPS_SERVER_REMOTE_ANY' undeclared (first use in this >function) >gmake[1]: *** [admin.o] Error 1 >gmake[1]: Leaving directory >`/usr/ports/print/cups-base/work/cups-1.3.0/cgi-bin' >gmake: *** [all] Error 1 >*** Error code 2 > >Stop in /usr/ports/print/cups-base. >*** Error code 1 > >Stop in /usr/ports/print/cups-base. >_______________________________________________ >freebsd-ports@freebsd.org mailing list >http://lists.freebsd.org/mailman/listinfo/freebsd-ports >To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" If you get rid of /usr/local/include/cups directory , it works Somehow it picks up those includes instead of the ones in the port diectory Manfred ================================== || null@pozo.com || || Ph. (415) 681-6235 || ================================== From owner-freebsd-ports@FreeBSD.ORG Fri Sep 28 17:28:27 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2ECDA16A417 for ; Fri, 28 Sep 2007 17:28:27 +0000 (UTC) (envelope-from david@vizion2000.net) Received: from dns1.vizion2000.net (77-99-36-42.cable.ubr04.chap.blueyonder.co.uk [77.99.36.42]) by mx1.freebsd.org (Postfix) with ESMTP id CDED713C467 for ; Fri, 28 Sep 2007 17:28:26 +0000 (UTC) (envelope-from david@vizion2000.net) Received: by dns1.vizion2000.net (Postfix, from userid 1007) id 53BEE1CC48; Fri, 28 Sep 2007 10:43:45 -0700 (PDT) From: David Southwell Organization: Voice and Vision To: freebsd-ports@freebsd.org Date: Fri, 28 Sep 2007 10:43:44 -0700 User-Agent: KMail/1.9.7 References: <200709280917.07844.david@vizion2000.net> <200709281646.l8SGknje086075@pozo.com> In-Reply-To: <200709281646.l8SGknje086075@pozo.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200709281043.45104.david@vizion2000.net> Cc: Subject: Re: Cups upgrade compile failure X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2007 17:28:27 -0000 On Friday 28 September 2007 09:46:49 Manfred Antar wrote: > At 09:17 AM 9/28/2007, David Southwell wrote: > >On Upgrade: > > Making all in cups... > >gmake[1]: Entering directory > > `/usr/ports/print/cups-base/work/cups-1.3.0/cups' gmake[1]: Nothing to be > > done for `all'. > >gmake[1]: Leaving directory > > `/usr/ports/print/cups-base/work/cups-1.3.0/cups' Making all in > > backend... > >gmake[1]: Entering directory > >`/usr/ports/print/cups-base/work/cups-1.3.0/backend' > >gmake[1]: Nothing to be done for `all'. > >gmake[1]: Leaving directory > >`/usr/ports/print/cups-base/work/cups-1.3.0/backend' > >Making all in berkeley... > >gmake[1]: Entering directory > >`/usr/ports/print/cups-base/work/cups-1.3.0/berkeley' > >gmake[1]: Nothing to be done for `all'. > >gmake[1]: Leaving directory > >`/usr/ports/print/cups-base/work/cups-1.3.0/berkeley' > >Making all in cgi-bin... > >gmake[1]: Entering directory > >`/usr/ports/print/cups-base/work/cups-1.3.0/cgi-bin' > >echo Compiling admin.c... > >Compiling admin.c... > >cc -Wshadow -Wunused -Wall -Wno-format-y2k -fPIC -Os -g > > -I/usr/local/include -I/usr/local/include -I/usr/local/include > > -I/usr/local/include -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE > > -D_THREAD_SAFE -D_REENTRANT -I.. -I/usr/local/include -O2 > > -fno-strict-aliasing -pipe -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE > > -D_THREAD_SAFE -D_REENTRANT -c admin.c > >admin.c: In function `do_config_server': > >admin.c:1364: warning: implicit declaration of function > >`cupsAdminGetServerSettings' > >admin.c:1383: error: `CUPS_SERVER_REMOTE_ANY' undeclared (first use in > > this function) > >admin.c:1383: error: (Each undeclared identifier is reported only once > >admin.c:1383: error: for each function it appears in.) > >admin.c:1421: warning: implicit declaration of function > >`cupsAdminSetServerSettings' > >admin.c: In function `do_menu': > >admin.c:2278: error: `CUPS_SERVER_REMOTE_ANY' undeclared (first use in > > this function) > >gmake[1]: *** [admin.o] Error 1 > >gmake[1]: Leaving directory > >`/usr/ports/print/cups-base/work/cups-1.3.0/cgi-bin' > >gmake: *** [all] Error 1 > >*** Error code 2 > > > >Stop in /usr/ports/print/cups-base. > >*** Error code 1 > > > >Stop in /usr/ports/print/cups-base. > >_______________________________________________ > >freebsd-ports@freebsd.org mailing list > >http://lists.freebsd.org/mailman/listinfo/freebsd-ports > >To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" > > If you get rid of /usr/local/include/cups directory , it works > Somehow it picks up those includes instead of the ones in the port diectory > Manfred > Thanks v. much that did it!! :-) david From owner-freebsd-ports@FreeBSD.ORG Fri Sep 28 18:25:51 2007 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B43E216A418 for ; Fri, 28 Sep 2007 18:25:51 +0000 (UTC) (envelope-from pgollucci@p6m7g8.com) Received: from vegeta.p6m7g8.net (static-71-166-166-68.washdc.east.verizon.net [71.166.166.68]) by mx1.freebsd.org (Postfix) with ESMTP id 44BF713C447 for ; Fri, 28 Sep 2007 18:25:51 +0000 (UTC) (envelope-from pgollucci@p6m7g8.com) Received: from vegeta.p6m7g8.net (vegeta.p6m7g8.net [71.166.166.68]) by vegeta.p6m7g8.net (8.13.8/8.13.1) with ESMTP id l8SIEe8D006230 for ; Fri, 28 Sep 2007 14:14:40 -0400 Date: Fri, 28 Sep 2007 14:14:40 -0400 (EDT) From: "Philip M. Gollucci" X-X-Sender: pgollucci@vegeta.p6m7g8.net To: ports@freebsd.org Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: ClamAV version 0.90.2, clamav-milter version 0.90.2 on vegeta.p6m7g8.net X-Virus-Status: Clean X-Spam-Status: No, score=-2.4 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.1.8 X-Spam-Checker-Version: SpamAssassin 3.1.8 (2007-02-13) on vegeta.p6m7g8.net Cc: Subject: biology/p5-AcePerl X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2007 18:25:51 -0000 Hi, http://pointyhat.freebsd.org/errorlogs/amd64-errorlogs/e.5.2007092316/p5-AcePerl-1.91.log I'm the maintainer for this port. I don't have access to a 5.5-STABLE machine esp on amd64. If anyone wants to provide access I'll look at it but I can't gaurantee I can fix it. If not, I'm inclided to make it as IGNGORE or BROKEN on < 6.0 -- ------------------------------------------------------------------------ Philip M. Gollucci (philip@riderway.com) 323.219.4708 Senior System Admin - Riderway, Inc. http://riderway.com 1024D/EC88A0BF 0DE5 C55C 6BF3 B235 2DAB B89E 1324 9B4F EC88 A0BF Work like you don't need the money, love like you'll never get hurt, and dance like nobody's watching. From owner-freebsd-ports@FreeBSD.ORG Fri Sep 28 19:24:23 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0269416A41B for ; Fri, 28 Sep 2007 19:24:23 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmmtao101.cox.net (eastrmmtao101.cox.net [68.230.240.7]) by mx1.freebsd.org (Postfix) with ESMTP id 8F7B013C45D for ; Fri, 28 Sep 2007 19:24:22 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmimpo02.cox.net ([68.1.16.120]) by eastrmmtao101.cox.net (InterMail vM.7.08.02.01 201-2186-121-102-20070209) with ESMTP id <20070928192422.WXNL12042.eastrmmtao101.cox.net@eastrmimpo02.cox.net>; Fri, 28 Sep 2007 15:24:22 -0400 Received: from mezz.mezzweb.com ([24.255.149.218]) by eastrmimpo02.cox.net with bizsmtp id tvQL1X00L4iy4EG0000000; Fri, 28 Sep 2007 15:24:21 -0400 Date: Fri, 28 Sep 2007 14:28:15 -0500 To: "Manfred Antar" From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=us-ascii MIME-Version: 1.0 References: <200709280917.07844.david@vizion2000.net> <200709281646.l8SGknje086075@pozo.com> Content-Transfer-Encoding: 7bit Message-ID: In-Reply-To: <200709281646.l8SGknje086075@pozo.com> User-Agent: Opera Mail/9.23 (Linux) Cc: David Southwell , freebsd-ports@freebsd.org Subject: Re: Cups upgrade compile failure X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2007 19:24:23 -0000 On Fri, 28 Sep 2007 11:46:49 -0500, Manfred Antar wrote: > At 09:17 AM 9/28/2007, David Southwell wrote: > >> On Upgrade: >> Making all in cups... >> gmake[1]: Entering directory >> `/usr/ports/print/cups-base/work/cups-1.3.0/cups' >> gmake[1]: Nothing to be done for `all'. >> gmake[1]: Leaving directory >> `/usr/ports/print/cups-base/work/cups-1.3.0/cups' >> Making all in backend... >> gmake[1]: Entering directory >> `/usr/ports/print/cups-base/work/cups-1.3.0/backend' >> gmake[1]: Nothing to be done for `all'. >> gmake[1]: Leaving directory >> `/usr/ports/print/cups-base/work/cups-1.3.0/backend' >> Making all in berkeley... >> gmake[1]: Entering directory >> `/usr/ports/print/cups-base/work/cups-1.3.0/berkeley' >> gmake[1]: Nothing to be done for `all'. >> gmake[1]: Leaving directory >> `/usr/ports/print/cups-base/work/cups-1.3.0/berkeley' >> Making all in cgi-bin... >> gmake[1]: Entering directory >> `/usr/ports/print/cups-base/work/cups-1.3.0/cgi-bin' >> echo Compiling admin.c... >> Compiling admin.c... >> cc -Wshadow -Wunused -Wall -Wno-format-y2k -fPIC -Os -g >> -I/usr/local/include -I/usr/local/include -I/usr/local/include >> -I/usr/local/include -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE >> -D_THREAD_SAFE -D_REENTRANT -I.. -I/usr/local/include -O2 >> -fno-strict-aliasing -pipe -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE >> -D_THREAD_SAFE -D_REENTRANT -c >> admin.c >> admin.c: In function `do_config_server': >> admin.c:1364: warning: implicit declaration of function >> `cupsAdminGetServerSettings' >> admin.c:1383: error: `CUPS_SERVER_REMOTE_ANY' undeclared (first use in >> this >> function) >> admin.c:1383: error: (Each undeclared identifier is reported only once >> admin.c:1383: error: for each function it appears in.) >> admin.c:1421: warning: implicit declaration of function >> `cupsAdminSetServerSettings' >> admin.c: In function `do_menu': >> admin.c:2278: error: `CUPS_SERVER_REMOTE_ANY' undeclared (first use in >> this >> function) >> gmake[1]: *** [admin.o] Error 1 >> gmake[1]: Leaving directory >> `/usr/ports/print/cups-base/work/cups-1.3.0/cgi-bin' >> gmake: *** [all] Error 1 >> *** Error code 2 >> >> Stop in /usr/ports/print/cups-base. >> *** Error code 1 >> >> Stop in /usr/ports/print/cups-base. >> _______________________________________________ >> freebsd-ports@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-ports >> To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" > > If you get rid of /usr/local/include/cups directory , it works > Somehow it picks up those includes instead of the ones in the port > diectory Above shows that it has four of '-I/usr/local/include' before that '-I..'. I had to solve problem in libsndfile by using '-isystem ${LOCALBASE}/include' instead '-I${LOCALBASE}/include' in CPPFLAGS, so it may works for CUPS too. If that '-I/usr/local/include' don't come from CPPFLAGS in port's Makefile then it's a bug in CUPS. I have taken a look at CUPS website and there has 1.3.2 released back in Sept 18th. In the 1.3.1 release notes said that it fixes some build issues. It might be has to do with this or not. Cheers, Mezz > Manfred -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team - FreeBSD Multimedia Hat (ports, not src) http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org http://wiki.freebsd.org/multimedia - multimedia@FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Fri Sep 28 20:03:28 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6F82816A419 for ; Fri, 28 Sep 2007 20:03:28 +0000 (UTC) (envelope-from cmt@burggraben.net) Received: from smtp.burggraben.net (ns.haidundneu23.net [213.133.108.24]) by mx1.freebsd.org (Postfix) with ESMTP id E66AE13C448 for ; Fri, 28 Sep 2007 20:03:27 +0000 (UTC) (envelope-from cmt@burggraben.net) Received: from localhost (localhost [127.0.0.1]) by smtp.burggraben.net (Postfix) with ESMTP id B6EF368192; Fri, 28 Sep 2007 21:36:17 +0200 (CEST) X-Spam-Scanned: by amavisd-new at haidundneu23.net Received: from smtp.burggraben.net ([127.0.0.1]) by localhost (ns.haidundneu23.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lzFc5t-gklT5; Fri, 28 Sep 2007 21:36:11 +0200 (CEST) Received: from storage.haidundneu23.net (p54A3EAC5.dip.t-dialin.net [84.163.234.197]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "storage.haidundneu23.net", Issuer "Christoph Moench-Tegeder" (verified OK)) by smtp.burggraben.net (Postfix) with ESMTP; Fri, 28 Sep 2007 21:36:11 +0200 (CEST) Received: from elch.haidundneu23.net (elch.haidundneu23.net [10.0.42.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "elch.haidundneu23.net", Issuer "Christoph Moench-Tegeder" (verified OK)) by storage.haidundneu23.net (Postfix) with ESMTP id D2319181644; Fri, 28 Sep 2007 21:36:10 +0200 (CEST) Received: by elch.haidundneu23.net (Postfix, from userid 1000) id 6E0D8C48A; Fri, 28 Sep 2007 21:36:10 +0200 (CEST) Date: Fri, 28 Sep 2007 21:36:10 +0200 From: Christoph Moench-Tegeder To: freebsd-ports@freebsd.org Message-ID: <20070928193609.GA1182@elch.haidundneu23.net> References: <200709280917.07844.david@vizion2000.net> <200709281646.l8SGknje086075@pozo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: X-PGP-Key: RSA/2048 0xB816EBBD X-PGP-Fingerprint: 89 2E 6D 05 95 B8 D7 1F 7C 1D C3 1E 95 A0 9B 5D X-GPG: supported User-Agent: mutt-ng/devel-r804 (FreeBSD) Cc: Jeremy Messenger , David Southwell Subject: Re: Cups upgrade compile failure X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2007 20:03:28 -0000 ## Jeremy Messenger (mezz7@cox.net): > >If you get rid of /usr/local/include/cups directory , it works > >Somehow it picks up those includes instead of the ones in the port diectory > Above shows that it has four of '-I/usr/local/include' before that '-I..'. I > had to solve problem in libsndfile by using '-isystem ${LOCALBASE}/include' > instead '-I${LOCALBASE}/include' in CPPFLAGS, so it may works for CUPS too. I just filed ports/116721 for that, patch included. See http://www.freebsd.org/cgi/query-pr.cgi?pr=116721 or put this in files/patch-Makedefs.in --- Makedefs.in.orig Fri Sep 28 21:13:27 2007 +++ Makedefs.in Fri Sep 28 21:13:48 2007 @@ -108,8 +108,8 @@ # for extra debug info) # -ALL_CFLAGS = $(SSLFLAGS) @LARGEFILE@ @PTHREAD_FLAGS@ \ - $(OPTIONS) $(CFLAGS) +ALL_CFLAGS = $(CFLAGS) $(SSLFLAGS) @LARGEFILE@ @PTHREAD_FLAGS@ \ + $(OPTIONS) ARCHFLAGS = @ARCHFLAGS@ ARFLAGS = @ARFLAGS@ BACKLIBS = @BACKLIBS@ Regards Christoph -- Spare Space From owner-freebsd-ports@FreeBSD.ORG Fri Sep 28 20:31:59 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3295316A46D for ; Fri, 28 Sep 2007 20:31:59 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmmtao102.cox.net (eastrmmtao102.cox.net [68.230.240.8]) by mx1.freebsd.org (Postfix) with ESMTP id BF5BA13C461 for ; Fri, 28 Sep 2007 20:31:58 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmimpo02.cox.net ([68.1.16.120]) by eastrmmtao102.cox.net (InterMail vM.7.08.02.01 201-2186-121-102-20070209) with ESMTP id <20070928203158.HGLA924.eastrmmtao102.cox.net@eastrmimpo02.cox.net>; Fri, 28 Sep 2007 16:31:58 -0400 Received: from mezz.mezzweb.com ([24.255.149.218]) by eastrmimpo02.cox.net with bizsmtp id twXx1X0054iy4EG0000000; Fri, 28 Sep 2007 16:31:57 -0400 Date: Fri, 28 Sep 2007 15:35:51 -0500 To: "Christoph Moench-Tegeder" From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=us-ascii MIME-Version: 1.0 References: <200709280917.07844.david@vizion2000.net> <200709281646.l8SGknje086075@pozo.com> <20070928193609.GA1182@elch.haidundneu23.net> Content-Transfer-Encoding: Quoted-Printable Message-ID: In-Reply-To: <20070928193609.GA1182@elch.haidundneu23.net> User-Agent: Opera Mail/9.23 (Linux) Cc: David Southwell , freebsd-ports@freebsd.org Subject: Re: Cups upgrade compile failure X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2007 20:31:59 -0000 On Fri, 28 Sep 2007 14:36:10 -0500, Christoph Moench-Tegeder = wrote: > ## Jeremy Messenger (mezz7@cox.net): > >> >If you get rid of /usr/local/include/cups directory , it works >> >Somehow it picks up those includes instead of the ones in the port = >> diectory >> Above shows that it has four of '-I/usr/local/include' before that = >> '-I..'. I >> had to solve problem in libsndfile by using '-isystem = >> ${LOCALBASE}/include' >> instead '-I${LOCALBASE}/include' in CPPFLAGS, so it may works for CUP= S = >> too. > > I just filed ports/116721 for that, patch included. See > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D116721 or put this in > files/patch-Makedefs.in Thanks! This is a better solution as I have pointed about that if that = '-I/usr/local/include' do not come from -I${LOCALBASE}/include' in port = = Makefile's CPPFLAGS then it's a CUPS bug. I think you should file a bug = = report in CUPS's bugzilla or whatever what tool they have. Unless it has= = been solved in CUPS 1.3.2. /me goes to fetch this patch for he can upgrade his system tonight or = tomorrow. Cheers, Mezz > --- Makedefs.in.orig Fri Sep 28 21:13:27 2007 > +++ Makedefs.in Fri Sep 28 21:13:48 2007 > @@ -108,8 +108,8 @@ > # for extra debug info) > # > -ALL_CFLAGS =3D $(SSLFLAGS) @LARGEFILE@ @PTHREAD_FLAGS@ \ > - $(OPTIONS) $(CFLAGS) > +ALL_CFLAGS =3D $(CFLAGS) $(SSLFLAGS) @LARGEFILE@ @PTHREAD_FLAGS@ \ > + $(OPTIONS) > ARCHFLAGS =3D @ARCHFLAGS@ > ARFLAGS =3D @ARFLAGS@ > BACKLIBS =3D @BACKLIBS@ > > > Regards > Christoph -- = mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team - FreeBSD Multimedia Hat (ports, not src) http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org http://wiki.freebsd.org/multimedia - multimedia@FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Fri Sep 28 21:18:41 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DF3BD16A418 for ; Fri, 28 Sep 2007 21:18:41 +0000 (UTC) (envelope-from cmt@burggraben.net) Received: from smtp.burggraben.net (ns.haidundneu23.net [213.133.108.24]) by mx1.freebsd.org (Postfix) with ESMTP id DAEEF13C46A for ; Fri, 28 Sep 2007 21:18:40 +0000 (UTC) (envelope-from cmt@burggraben.net) Received: from localhost (localhost [127.0.0.1]) by smtp.burggraben.net (Postfix) with ESMTP id 9C4826816B; Fri, 28 Sep 2007 23:18:39 +0200 (CEST) X-Spam-Scanned: by amavisd-new at haidundneu23.net Received: from smtp.burggraben.net ([127.0.0.1]) by localhost (ns.haidundneu23.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0NYZy3k7ra-M; Fri, 28 Sep 2007 23:18:33 +0200 (CEST) Received: from storage.haidundneu23.net (p54A3EAC5.dip.t-dialin.net [84.163.234.197]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "storage.haidundneu23.net", Issuer "Christoph Moench-Tegeder" (verified OK)) by smtp.burggraben.net (Postfix) with ESMTP; Fri, 28 Sep 2007 23:18:33 +0200 (CEST) Received: from elch.haidundneu23.net (elch.haidundneu23.net [10.0.42.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "elch.haidundneu23.net", Issuer "Christoph Moench-Tegeder" (verified OK)) by storage.haidundneu23.net (Postfix) with ESMTP id 58112181644; Fri, 28 Sep 2007 23:18:32 +0200 (CEST) Received: by elch.haidundneu23.net (Postfix, from userid 1000) id D9F4EC524; Fri, 28 Sep 2007 23:18:31 +0200 (CEST) Date: Fri, 28 Sep 2007 23:18:31 +0200 From: Christoph Moench-Tegeder To: Jeremy Messenger Message-ID: <20070928211831.GC1182@elch.haidundneu23.net> References: <200709280917.07844.david@vizion2000.net> <200709281646.l8SGknje086075@pozo.com> <20070928193609.GA1182@elch.haidundneu23.net> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: X-PGP-Key: RSA/2048 0xB816EBBD X-PGP-Fingerprint: 89 2E 6D 05 95 B8 D7 1F 7C 1D C3 1E 95 A0 9B 5D X-GPG: supported User-Agent: mutt-ng/devel-r804 (FreeBSD) Cc: David Southwell , freebsd-ports@freebsd.org Subject: Re: Cups upgrade compile failure X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2007 21:18:42 -0000 ## Jeremy Messenger (mezz7@cox.net): > I think you should file a bug report > in CUPS's bugzilla or whatever what tool they have. Unless it has been solved > in CUPS 1.3.2. Well, cups-1.3.2 usess the same Makedefs.in, resulting in the same Makedefs and the same error. Whoops. See here: http://www.cups.org/str.php?L2538+P0+S-2+C0+I0+E0+M10+Q I'll hold my upgrade-request for cups 1.3.0->1.3.2 until this is fixed :) Regards Christoph -- Spare Space From owner-freebsd-ports@FreeBSD.ORG Fri Sep 28 21:49:05 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B26AD16A468 for ; Fri, 28 Sep 2007 21:49:05 +0000 (UTC) (envelope-from cmt@burggraben.net) Received: from smtp.burggraben.net (ns.haidundneu23.net [213.133.108.24]) by mx1.freebsd.org (Postfix) with ESMTP id 5E0BD13C46A for ; Fri, 28 Sep 2007 21:49:05 +0000 (UTC) (envelope-from cmt@burggraben.net) Received: from localhost (localhost [127.0.0.1]) by smtp.burggraben.net (Postfix) with ESMTP id 59BBB68339 for ; Fri, 28 Sep 2007 23:49:04 +0200 (CEST) X-Spam-Scanned: by amavisd-new at haidundneu23.net Received: from smtp.burggraben.net ([127.0.0.1]) by localhost (ns.haidundneu23.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ool74cRRFNXt for ; Fri, 28 Sep 2007 23:48:57 +0200 (CEST) Received: from storage.haidundneu23.net (p54A3EAC5.dip.t-dialin.net [84.163.234.197]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "storage.haidundneu23.net", Issuer "Christoph Moench-Tegeder" (verified OK)) by smtp.burggraben.net (Postfix) with ESMTP for ; Fri, 28 Sep 2007 23:48:57 +0200 (CEST) Received: from elch.haidundneu23.net (elch.haidundneu23.net [10.0.42.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "elch.haidundneu23.net", Issuer "Christoph Moench-Tegeder" (verified OK)) by storage.haidundneu23.net (Postfix) with ESMTP id 6B53818162F for ; Fri, 28 Sep 2007 23:48:57 +0200 (CEST) Received: by elch.haidundneu23.net (Postfix, from userid 1000) id 05F5BC524; Fri, 28 Sep 2007 23:48:56 +0200 (CEST) Date: Fri, 28 Sep 2007 23:48:56 +0200 From: Christoph Moench-Tegeder To: freebsd-ports@freebsd.org Message-ID: <20070928214856.GD1182@elch.haidundneu23.net> References: <200709280917.07844.david@vizion2000.net> <200709281646.l8SGknje086075@pozo.com> <20070928193609.GA1182@elch.haidundneu23.net> <20070928211831.GC1182@elch.haidundneu23.net> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: <20070928211831.GC1182@elch.haidundneu23.net> X-PGP-Key: RSA/2048 0xB816EBBD X-PGP-Fingerprint: 89 2E 6D 05 95 B8 D7 1F 7C 1D C3 1E 95 A0 9B 5D X-GPG: supported User-Agent: mutt-ng/devel-r804 (FreeBSD) Subject: Re: Cups upgrade compile failure X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Sep 2007 21:49:05 -0000 Quoting myself, > I'll hold my upgrade-request for cups 1.3.0->1.3.2 until this is fixed :) If anyone's bold enough to test, here's the port: http://www.burggraben.net/hacks/ports/cups_cups-base.tar.gz (containing print/cups and print/cups/base version 1.3.2). Regards Christoph -- Spare Space From owner-freebsd-ports@FreeBSD.ORG Sat Sep 29 07:44:14 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DFDD416A419 for ; Sat, 29 Sep 2007 07:44:13 +0000 (UTC) (envelope-from makc@issp.ac.ru) Received: from issp1.issp.ac.ru (issp1.issp.ac.ru [77.236.34.3]) by mx1.freebsd.org (Postfix) with ESMTP id 58FAC13C48A for ; Sat, 29 Sep 2007 07:44:12 +0000 (UTC) (envelope-from makc@issp.ac.ru) Received: from issp1.issp.ac.ru [77.236.34.3:21466] (HELO/EHLO localhost) by issp1.issp.ac.ru with ESMTP/inet id l8T7T9Cr001165 Sat, 29 Sep 2007 11:29:10 +0400 (MSD) From: Max Brazhnikov Organization: ISSP RAS To: Dmitry Marakasov Date: Sat, 29 Sep 2007 11:27:53 +0400 User-Agent: KMail/1.9.7 References: <20070917233555.GA74880@hades.panopticon> <200709250905.38470.freebsd-ports@dino.sk> <20070925202858.GA89037@hades.panopticon> In-Reply-To: <20070925202858.GA89037@hades.panopticon> MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200709291127.54110.makc@issp.ac.ru> X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (issp1.issp.ac.ru [77.236.34.3]); Sat, 29 Sep 2007 11:29:10 +0400 (MSD) X-Antivirus: Dr.Web (R) for Mail Servers on issp1.issp.ac.ru host X-Antivirus-Code: 100000 Cc: freebsd-ports@freebsd.org Subject: Re: Gnash 0.8.1 submitted X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2007 07:44:14 -0000 I can't build port without plugin, while it builds fine with default option= s=20 set. /usr/ports/graphics/gnash# make -DWITHOUT_PLUGIN -DWITHOUT_GTK Making all in utilities gmake[2]: Entering directory=20 `/usr/ports/graphics/gnash/work/gnash-0.8.1/utilities' c++ -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -I../libgeometry -I../libbase -I../= server -I../server/parser -I../server/vm -DLOCALEDIR=3D\"/usr/local/share/l= ocale\" -I/usr/local/include -I/usr/local/include/libxml2 -I/usr/local/incl= ude -I/usr/local/include -O2 -fno-strict-aliasing -pipe -march=3Dpent= ium4 -D_THREAD_SAFE -pthread -W -Wall -Wcast-align -Wcast-= qual -Wpointer-arith -Wreturn-type -MT=20 parser.o -MD -MP -MF .deps/parser.Tpo -c -o parser.o parser.cpp mv -f .deps/parser.Tpo .deps/parser.Po /bin/sh ../libtool --tag=3DCXX --mode=3Dlink=20 c++ -O2 -fno-strict-aliasing -pipe -march=3Dpentium4 -D_THREAD_SAFE -pthr= ead -W -Wall -Wcast-align -Wcast-qual -Wpointer-arith = -Wreturn-type -export-dynamic -lltdl -L/usr/local/lib -Wl,--as-need= ed -o=20 gparser=20 parser.o ../server/libgnashserver.la ../libbase/libgnashbase.la ../backend/= libgnashbackend.la ../libamf/libgnashamf.la -pthread -L/usr/local/lib -lavc= odec -lz -la52 -lfaad -lgsm -lmp3lame -lx264 -lxvidcore -ltheora -lvorbisen= c -lavutil -lvorbis -lm -logg -L/usr/local/lib -ldca -L/usr/local/lib -= lvorbisenc -lvorbis -lm -logg -pthread -L/usr/local/lib -lavformat -lavco= dec -lz -la52 -lfaad -lgsm -lmp3lame -lx264 -lxvidcore -ltheora -lvorbisenc= -lavutil -lvorbis -lm -logg -L/usr/local/lib -lavutil -L/usr/local/lib= -ltheora -logg -lgsm -pthread -L/usr/local/lib -lavcodec -lz -la52 -lfaa= d -lgsm -lmp3lame -lx264 -lxvidcore -ltheora -lvorbisenc -lavutil -lvorbis = =2Dlm -logg -lm mkdir .libs c++ -O2 -fno-strict-aliasing -pipe -march=3Dpentium4 -D_THREAD_SAFE -pthrea= d -W -Wall -Wcast-align -Wcast-qual -Wpointer-arith -Wreturn-type -Wl,--as-= needed -o .libs/gparser=20 parser.o -pthread -pthread -pthread -Wl,--export-dynamic -L/usr/local/lib = =2E./server/.libs/libgnashserver.so ../libbase/.libs/libgnashbase.so ../bac= kend/.libs/libgnashbackend.so /usr/ports/graphics/gnash/work/gnash-0.8.1/se= rver/.libs/libgnashserver.so /usr/ports/graphics/gnash/work/gnash-0.8.1/lib= amf/.libs/libgnashamf.so /usr/ports/graphics/gnash/work/gnash-0.8.1/libgeom= etry/.libs/libgnashgeo.so /usr/local/lib/libxml2.so /usr/local/lib/libfontc= onfig.so /usr/local/lib/libfreetype.so /usr/local/lib/libexpat.so /usr/loca= l/lib/libSDL.so /usr/local/lib/libiconv.so /usr/local/lib/libXrandr.so /usr= /local/lib/libXext.so /usr/local/lib/libXrender.so -lvga -lvgl /usr/local/l= ib/libaa.so -lncurses /usr/local/lib/libX11.so /usr/local/lib/libXau.so /us= r/local/lib/libXdmcp.so -lrpcsvc -lusbhid ../libamf/.libs/libgnashamf.so /u= sr/ports/graphics/gnash/work/gnash-0.8.1/libbase/.libs/libgnashbase.so /usr= /local/lib/libjpeg.so /usr/local/lib/libcurl.so -lssl -lcrypto -lGL -lGLU /= usr/local/lib/libltdl.so -lboost_date_time -lboost_thread /usr/local/lib/li= bdca.so -lavformat -lavcodec -lz /usr/local/lib/liba52.so -ldjbfft /usr/loc= al/lib/libfaad.so -pthread -lgsm /usr/local/lib/libmp3lame.so -lx264 -lxvid= core /usr/local/lib/libtheora.so /usr/local/lib/libvorbisenc.so -lavutil /u= sr/local/lib/libvorbis.so /usr/local/lib/libogg.so -lm -Wl,--rpath -Wl,/us= r/local/lib/gnash -Wl,--rpath -Wl,/usr/local/lib /usr/bin/ld: warning: libm.so.3, needed by /usr/local/lib/libGL.so, may=20 conflict with libm.so.4 parser.o(.text+0x28): In function `parser::parse_end_movie(gnash::stream*,= =20 int)': : undefined reference to `gettext' parser.o(.text+0x74): In function `parser::parse_end_movie(gnash::stream*,= =20 int)': : undefined reference to `gettext' parser.o(.text+0x2f9): In function `parser::parse_place_object12 (gnash::stream*, int)': : undefined reference to `gettext' parser.o(.text+0x5f5): In function `parser::parse_place_object12 (gnash::stream*, int)': : undefined reference to `gettext' parser.o(.text+0x609): In function `parser::parse_place_object12 (gnash::stream*, int)': : undefined reference to `gettext' parser.o(.text+0x7c8): more undefined references to `gettext' follow parser.o(.text+0x18d1): In function `main': : undefined reference to `libintl_bindtextdomain' parser.o(.text+0x18dd): In function `main': : undefined reference to `libintl_textdomain' parser.o(.text+0x1a24): In function `main': : undefined reference to `gettext' parser.o(.text+0x1a4c): In function `main': : undefined reference to `gettext' parser.o(.text+0x1ad3): In function `main': : undefined reference to `gettext' parser.o(.text+0x1b6a): In function `main': : undefined reference to `gettext' parser.o(.text+0x1c4b): In function `main': : undefined reference to `gettext' gmake[2]: *** [gparser] Error 1 gmake[2]: Leaving directory=20 `/usr/ports/graphics/gnash/work/gnash-0.8.1/utilities' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/graphics/gnash/work/gnash-0.8.1' gmake: *** [all] Error 2 *** Error code 2 Stop in /usr/ports/graphics/gnash. From owner-freebsd-ports@FreeBSD.ORG Sat Sep 29 08:11:34 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7D97716A41A; Sat, 29 Sep 2007 08:11:34 +0000 (UTC) (envelope-from softwareleute@freenet.de) Received: from mout0.freenet.de (mout0.freenet.de [IPv6:2001:748:100:40::2:2]) by mx1.freebsd.org (Postfix) with ESMTP id 126EE13C458; Sat, 29 Sep 2007 08:11:34 +0000 (UTC) (envelope-from softwareleute@freenet.de) Received: from [195.4.92.22] (helo=mx12.freenet.de) by mout0.freenet.de with esmtpa (Exim 4.68) (envelope-from ) id 1IbXQC-0002IB-PJ; Sat, 29 Sep 2007 10:11:32 +0200 Received: from i3ed6c530.versanet.de ([62.214.197.48]:62811 helo=rheingold.walhalla) by mx12.freenet.de with esmtpsa (ID softwareleute@freenet.de) (TLSv1:AES256-SHA:256) (port 25) (Exim 4.68 #6) id 1IbXQC-0001qK-Kq; Sat, 29 Sep 2007 10:11:32 +0200 From: Volker Glatz To: freebsd-ports@freebsd.org Date: Sat, 29 Sep 2007 10:11:30 +0200 User-Agent: KMail/1.9.7 References: <46F51B8E.6050606@gmail.com> <20070928.131114.55844077.chat95@mac.com> In-Reply-To: <20070928.131114.55844077.chat95@mac.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200709291011.30945.softwareleute@freenet.de> Cc: maho@freebsd.org, ports@freebsd.org Subject: Re: Build error - openoffice.org 2.3.0 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2007 08:11:34 -0000 Am Freitag 28 September 2007 schrieb Maho NAKATA: > From: Rainer Alves > Subject: Build error - openoffice.org 2.3.0 > Date: Sat, 22 Sep 2007 10:41:34 -0300 > > > Maho, > > > > I've noticed the following error while building openoffice.org 2.3.0 on > > 6.2-STABLE (amd64). Knobs used were WITH_TTF_BYTECODE_ENABLED and > > WITH_CUPS > > It has also reported by Ben Stuyts. Don Lewis has sent me a patch. Now it > should be fine. Please verify, thanks for your report. > Thanks a lot for your work. Now it compiled fine. Greetings, Volker From owner-freebsd-ports@FreeBSD.ORG Sat Sep 29 08:11:34 2007 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7D97716A41A; Sat, 29 Sep 2007 08:11:34 +0000 (UTC) (envelope-from softwareleute@freenet.de) Received: from mout0.freenet.de (mout0.freenet.de [IPv6:2001:748:100:40::2:2]) by mx1.freebsd.org (Postfix) with ESMTP id 126EE13C458; Sat, 29 Sep 2007 08:11:34 +0000 (UTC) (envelope-from softwareleute@freenet.de) Received: from [195.4.92.22] (helo=mx12.freenet.de) by mout0.freenet.de with esmtpa (Exim 4.68) (envelope-from ) id 1IbXQC-0002IB-PJ; Sat, 29 Sep 2007 10:11:32 +0200 Received: from i3ed6c530.versanet.de ([62.214.197.48]:62811 helo=rheingold.walhalla) by mx12.freenet.de with esmtpsa (ID softwareleute@freenet.de) (TLSv1:AES256-SHA:256) (port 25) (Exim 4.68 #6) id 1IbXQC-0001qK-Kq; Sat, 29 Sep 2007 10:11:32 +0200 From: Volker Glatz To: freebsd-ports@freebsd.org Date: Sat, 29 Sep 2007 10:11:30 +0200 User-Agent: KMail/1.9.7 References: <46F51B8E.6050606@gmail.com> <20070928.131114.55844077.chat95@mac.com> In-Reply-To: <20070928.131114.55844077.chat95@mac.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200709291011.30945.softwareleute@freenet.de> Cc: maho@freebsd.org, ports@freebsd.org Subject: Re: Build error - openoffice.org 2.3.0 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2007 08:11:34 -0000 Am Freitag 28 September 2007 schrieb Maho NAKATA: > From: Rainer Alves > Subject: Build error - openoffice.org 2.3.0 > Date: Sat, 22 Sep 2007 10:41:34 -0300 > > > Maho, > > > > I've noticed the following error while building openoffice.org 2.3.0 on > > 6.2-STABLE (amd64). Knobs used were WITH_TTF_BYTECODE_ENABLED and > > WITH_CUPS > > It has also reported by Ben Stuyts. Don Lewis has sent me a patch. Now it > should be fine. Please verify, thanks for your report. > Thanks a lot for your work. Now it compiled fine. Greetings, Volker From owner-freebsd-ports@FreeBSD.ORG Sat Sep 29 11:17:23 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 99BF716A421 for ; Sat, 29 Sep 2007 11:17:23 +0000 (UTC) (envelope-from yurtesen@ispro.net) Received: from mail.ispro.net (mail.ispro.net [87.251.0.19]) by mx1.freebsd.org (Postfix) with ESMTP id AC88513C4B2 for ; Sat, 29 Sep 2007 11:17:22 +0000 (UTC) (envelope-from yurtesen@ispro.net) Received: (qmail 31117 invoked by uid 399); 29 Sep 2007 13:50:39 +0300 Received: from dsl-tkubrasgw1-fe26fa00-203.dhcp.inet.fi (HELO ?84.250.38.203?) (yurtesen@ispro.net@84.250.38.203) by mail.ispro.net with ESMTP; 29 Sep 2007 13:50:39 +0300 X-Originating-IP: 84.250.38.203 Message-ID: <46FE2DF2.7050402@ispro.net> Date: Sat, 29 Sep 2007 13:50:26 +0300 From: Evren Yurtesen User-Agent: Thunderbird 2.0.0.6 (Windows/20070728) MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: mysql 5.1.21 config file location problem... X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2007 11:17:23 -0000 I recently upgraded to 5.1.21 and received the following message: 070929 06:48:41 mysqld_safe WARNING: Found /var/db/mysql/my.cnf The data directory is a deprecated location for my.cnf, please move it to /usr/local/my.cnf FreeBSD configuration files are located in /usr/local/etc thus mysql should be looking the file at /usr/local/etc/my.cnf Perhaps there is a mistake somewhere? Thanks, Evren From owner-freebsd-ports@FreeBSD.ORG Sat Sep 29 11:44:53 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6CABD16A41A for ; Sat, 29 Sep 2007 11:44:53 +0000 (UTC) (envelope-from jdc@parodius.com) Received: from mx01.sc1.parodius.com (mx01.sc1.parodius.com [72.20.106.3]) by mx1.freebsd.org (Postfix) with ESMTP id 5F73313C4A5 for ; Sat, 29 Sep 2007 11:44:53 +0000 (UTC) (envelope-from jdc@parodius.com) Received: by mx01.sc1.parodius.com (Postfix, from userid 1000) id 2C62C1CC02F; Sat, 29 Sep 2007 04:44:53 -0700 (PDT) Date: Sat, 29 Sep 2007 04:44:53 -0700 From: Jeremy Chadwick To: Evren Yurtesen Message-ID: <20070929114453.GA87895@eos.sc1.parodius.com> Mail-Followup-To: Evren Yurtesen , freebsd-ports@freebsd.org References: <46FE2DF2.7050402@ispro.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <46FE2DF2.7050402@ispro.net> User-Agent: Mutt/1.5.16 (2007-06-09) Cc: freebsd-ports@freebsd.org Subject: Re: mysql 5.1.21 config file location problem... X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2007 11:44:53 -0000 On Sat, Sep 29, 2007 at 01:50:26PM +0300, Evren Yurtesen wrote: > I recently upgraded to 5.1.21 and received the following message: > > 070929 06:48:41 mysqld_safe WARNING: Found /var/db/mysql/my.cnf > The data directory is a deprecated location for my.cnf, please move it to > /usr/local/my.cnf > > FreeBSD configuration files are located in /usr/local/etc thus mysql should > be looking the file at /usr/local/etc/my.cnf > > Perhaps there is a mistake somewhere? Or you could do what I do: keep your my.cnf in your mysql data directory (e.g. rc.conf variable `mysql_dbdir', default is /var/db/mysql) and not worry about it. -- | Jeremy Chadwick jdc at parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, USA | | Making life hard for others since 1977. PGP: 4BD6C0CB | From owner-freebsd-ports@FreeBSD.ORG Sat Sep 29 12:02:13 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D58C516A41A for ; Sat, 29 Sep 2007 12:02:13 +0000 (UTC) (envelope-from yurtesen@ispro.net) Received: from mail.ispro.net (mail.ispro.net [87.251.0.19]) by mx1.freebsd.org (Postfix) with ESMTP id 4301E13C4B3 for ; Sat, 29 Sep 2007 12:02:12 +0000 (UTC) (envelope-from yurtesen@ispro.net) Received: (qmail 66793 invoked by uid 399); 29 Sep 2007 15:02:10 +0300 X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on mail.ispro.net X-Spam-Level: X-Spam-Status: No, score=0.1 required=7.0 tests=RDNS_DYNAMIC autolearn=disabled version=3.2.3 X-Virus-Scan: Scanned by ClamAV 0.91.2 (no viruses); Sat, 29 Sep 2007 15:02:10 +0300 Received: from dsl-tkubrasgw1-fe26fa00-203.dhcp.inet.fi (HELO ?84.250.38.203?) (yurtesen@ispro.net@84.250.38.203) by mail.ispro.net with ESMTP; 29 Sep 2007 15:02:10 +0300 X-Originating-IP: 84.250.38.203 Message-ID: <46FE3EB5.5020108@ispro.net> Date: Sat, 29 Sep 2007 15:01:57 +0300 From: Evren Yurtesen User-Agent: Thunderbird 2.0.0.6 (Windows/20070728) MIME-Version: 1.0 To: Evren Yurtesen , freebsd-ports@freebsd.org References: <46FE2DF2.7050402@ispro.net> <20070929114453.GA87895@eos.sc1.parodius.com> In-Reply-To: <20070929114453.GA87895@eos.sc1.parodius.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Re: mysql 5.1.21 config file location problem... X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2007 12:02:13 -0000 Jeremy Chadwick wrote: > On Sat, Sep 29, 2007 at 01:50:26PM +0300, Evren Yurtesen wrote: > >> I recently upgraded to 5.1.21 and received the following message: >> >> 070929 06:48:41 mysqld_safe WARNING: Found /var/db/mysql/my.cnf >> The data directory is a deprecated location for my.cnf, please move it to >> /usr/local/my.cnf >> >> FreeBSD configuration files are located in /usr/local/etc thus mysql should >> be looking the file at /usr/local/etc/my.cnf >> >> Perhaps there is a mistake somewhere? >> > > Or you could do what I do: keep your my.cnf in your mysql data directory > (e.g. rc.conf variable `mysql_dbdir', default is /var/db/mysql) and not > worry about it. > > I just think that the port maintainer should fix the message and it should say /usr/local/etc/my.cnf it might be confusing for people to see this warning. Thanks, Evren From owner-freebsd-ports@FreeBSD.ORG Sat Sep 29 18:20:10 2007 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 09CA816A41A for ; Sat, 29 Sep 2007 18:20:10 +0000 (UTC) (envelope-from freebsd-ports@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id A9FD413C458 for ; Sat, 29 Sep 2007 18:20:09 +0000 (UTC) (envelope-from freebsd-ports@m.gmane.org) Received: from root by ciao.gmane.org with local (Exim 4.43) id 1Ibgv4-0000T0-V6 for freebsd-ports@freebsd.org; Sat, 29 Sep 2007 18:20:03 +0000 Received: from xdsl-10260.wroclaw.dialog.net.pl ([84.40.242.20]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 29 Sep 2007 18:20:02 +0000 Received: from mwisnicki+freebsd by xdsl-10260.wroclaw.dialog.net.pl with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 29 Sep 2007 18:20:02 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: Marcin Wisnicki Date: Sat, 29 Sep 2007 18:11:39 +0000 (UTC) Lines: 16 Message-ID: References: <200709280917.07844.david@vizion2000.net> <200709281646.l8SGknje086075@pozo.com> <20070928193609.GA1182@elch.haidundneu23.net> <20070928211831.GC1182@elch.haidundneu23.net> <20070928214856.GD1182@elch.haidundneu23.net> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: xdsl-10260.wroclaw.dialog.net.pl User-Agent: Pan/0.131 (Ghosts: First Variation) Sender: news Subject: Re: Cups upgrade compile failure X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Sep 2007 18:20:10 -0000 On Fri, 28 Sep 2007 23:48:56 +0200, Christoph Moench-Tegeder wrote: > Quoting myself, > >> I'll hold my upgrade-request for cups 1.3.0->1.3.2 until this is fixed >> :) > > If anyone's bold enough to test, here's the port: > http://www.burggraben.net/hacks/ports/cups_cups-base.tar.gz (containing > print/cups and print/cups/base version 1.3.2). > > Regards > Christoph I've submitted update to 1.3.3 so you may want to test that: http://www.freebsd.org/cgi/query-pr.cgi?pr=116743