From owner-freebsd-ports@FreeBSD.ORG Sun Oct 3 08:22:48 2010 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 7B3AB106566B; Sun, 3 Oct 2010 08:22:48 +0000 (UTC) (envelope-from demelier.david@gmail.com) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id B89E38FC0C; Sun, 3 Oct 2010 08:22:47 +0000 (UTC) Received: by bwz15 with SMTP id 15so4055732bwz.13 for ; Sun, 03 Oct 2010 01:22:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=y31CYQXzMAEuCv+ZQ5jIXQoxcaPXSWAMVYt9u8M7iAo=; b=HXlTjhAGGODJcxVpwg0hmykm6k0UaTtHLifDWMbgM9sCsCoPYSDRNkvwU1DTIqQkC3 QLQGKA7LVLTB/gZHqVSC0dabsulxAUhkEvI01IyINJG39qQW/zYLz9X/DXLTaZM+KofF rrRccZs7hBZQYomtApO40hd2peNsH4d7dxZL0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=fHPwC6tnAbKDGqna1f2MaPoHHai8368bh0iA/h7nzQ3czTysAd263PdQlWIdaXZXk8 gH+zb48aMRA7OKfZ9Q5Zo3EeGNFC+BKuD+miuh+g2k16gmAGnALkv64/OpQbUlETPGoY 465XM1RqTP0EE+yX9xiGl67vWIM1/JGjG3y2Y= MIME-Version: 1.0 Received: by 10.204.46.23 with SMTP id h23mr5846651bkf.75.1286094166439; Sun, 03 Oct 2010 01:22:46 -0700 (PDT) Received: by 10.204.97.208 with HTTP; Sun, 3 Oct 2010 01:22:46 -0700 (PDT) In-Reply-To: <20101002002605.GA8018@dragon.NUXI.org> References: <4C93AA31.5080202@DataIX.net> <20100918223933.GB85995@dragon.NUXI.org> <20101002002605.GA8018@dragon.NUXI.org> Date: Sun, 3 Oct 2010 10:22:46 +0200 Message-ID: From: David DEMELIER To: obrien@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD Ports Subject: Re: OPTIONS (was: editors/vim installs to /) 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, 03 Oct 2010 08:22:48 -0000 2010/10/2 David O'Brien : > On Sun, Sep 19, 2010 at 10:24:59AM +0200, David DEMELIER wrote: >> What is "sufficiently clean" ? I wonder what is not clean in the >> options framework, so please tell me then we still can clean it? > > When the Ports Collection was invented, ports maintainers were to > choose a reasonable set of configuration for the FreeBSD community > and have the port build that way. > > Today we have ports that seem to expose every single option to GNU > configure and giving the user a puzzling choice of too many things. > Often the explanations are nothing more than restating the option > name and the user is left wondering what is X? =C2=A0What does Y mean? > How do I know if I really want Z or not? =C2=A0Why is threading so often > an OPTION and not just the default? =C2=A0Why do I have to go read the > packages README and INSTALLING to figure out the caveats of say > enabling threading? =C2=A0Or what the other list of things are and their > caveats? > > 1. One should not have to deal with the OPTIONS dialog just to > 'make extract' if one wants to check the license or otherwise > investigate a port before deciding to install it. > > 2. With the way OPTIONS handling is done, there isn't a way for me > to query if I built with the defaults or not. > Thus leading to every port I manually install looking like it was > customized just because /var/db/ports/${PORTNAME} exists. =C2=A0Thus > implying I can no longer install the pre-build package. > make rmconfig ? > 3. OPTIONS are limited to only checkbox YES/NO settings. > Why can I not set PREFIX thru the OPTIONS framework and have it come > from /var/db/ports/${PORTNAME}/options on the 2nd and later builds? > Even the boolean NOPORTDOCS isn't available thru OPTIONS. > Thus it is an inconsistent way to configure a port. > I agree. As I said in 4, OPTIONS should follow the defined knob in make.conf. But for not boolean knobs there is something we can also do, spawn a little textbox to define an option with a string. Example : [X] WITH_X foo bar [ ] WITH_Y foo bar baz [fr_FR en_GB] LANGS to be build Here pressing enter on LANGS would spawn a little textbox that can be fulfilled by the user. The little problem is how to tell to OPTIONS that it's not a boolean entry. > 4. When I build misc/mc-light and have "WITHOUT_NLS=3Dyes" in > /etc/make.conf, why does the OPTIONS dialog offer me > "[X] NLS Enable gettext support" instead of defaulting the > dialog to unchecked? > I agree with this inconsistency, I think with a little of work OPTIONS framework should be to follow KNOB to enable an option if it's already defined by the user. This would be great for people that use WITHOUT_GNOME, WITHOUT_X11 and so on. I think it's possible to do it. pkgsrc do it with PKG_DEFAULT_OPTIONS=3D setting. > 5. One cannot opt-out of OPTIONS. > WITHOUT_OPTIONS does not work to just get the defaults while skipping > the OPTIONS dialog. =C2=A0Note, setting BATCH does a lot more than just > make OPTIONS non-interactive (for some ports it stops other > non-OPTIONS interaction with the user that one should see). =C2=A0Thus > there is no way to get an uninterrupted default build of something. > > 6. One cannot opt-in/opt-out on a per-port basis. > WITH[OUT]_${PORTNAME}_OPTIONS and ${PORTNAME}_WITH[OUT]_OPTIONS > should be supported to control the OPTIONS dialog just when > building ${PORTNAME}. > > 7. Setting ${PORTNAME}_WITH[OUT]_ (or > WITH[OUT]_${PORTNAME}_) should set > WITH[OUT]_ just when building ${PORTNAME}. > So that folks who don't want to be interrupted with OPTIONS every > time there is an update to the list can hardcode their choices in > /etc/make.conf. > Yes, check my answer at 4. > 8. OPTIONS make a mess in the typescript file from > 'script typescript make', and the choices are totally unreadable vs. > 'script typescript make -DWITH_FOO -WITHOUT_BAR'. > There is a disadvantages with knobs here, you must define knob each time you install/upgrade a port. Of course you can do it with the make.conf or the portconf system. OPTIONS also prints -DSOMETHING when compiling. Definitely, I like knobs and I like options. But mixing the both is painful. You should check by typing make config or sometime lsknobs or even reading the makefile. The best thing to do is switch totally to a way to configure a port and remove the other one. I think we should try to upgrade the options framework with what I said at 4. and 3. It's possible but we need some work. Kind regards, --=20 Demelier David From owner-freebsd-ports@FreeBSD.ORG Sun Oct 3 08:55:13 2010 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 6EC5F106564A; Sun, 3 Oct 2010 08:55:13 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3fd3:cd67:fafa:3d78]) by mx1.freebsd.org (Postfix) with ESMTP id C82C68FC12; Sun, 3 Oct 2010 08:55:12 +0000 (UTC) Received: from seedling.black-earth.co.uk (seedling.black-earth.co.uk [81.187.76.163]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.4/8.14.4) with ESMTP id o938t83r039577 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Sun, 3 Oct 2010 09:55:08 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) X-DKIM: Sendmail DKIM Filter v2.8.3 smtp.infracaninophile.co.uk o938t83r039577 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=infracaninophile.co.uk; s=201001-infracaninophile; t=1286096108; bh=TDHEdOtfR7sYc007lTWftwlE9w166AA5Ii/GVM6FuZY=; h=Message-ID:Date:From:MIME-Version:To:CC:Subject:References: In-Reply-To:Content-Type:Cc:Content-Type:Date:From:In-Reply-To: Message-ID:Mime-Version:References:To; z=Message-ID:=20<4CA844E5.7060303@infracaninophile.co.uk>|Date:=20S un,=2003=20Oct=202010=2009:55:01=20+0100|From:=20Matthew=20Seaman= 20|Organization:=20Infracaninophi le|User-Agent:=20Mozilla/5.0=20(Macintosh=3B=20U=3B=20Intel=20Mac= 20OS=20X=2010.6=3B=20en-GB=3B=20rv:1.9.2.9)=20Gecko/20100915=20Thu nderbird/3.1.4|MIME-Version:=201.0|To:=20David=20DEMELIER=20|CC:=20obrien@freebsd.org,=20FreeBSD=20Ports=2 0|Subject:=20Re:=20OPTIONS|References:=20<4C93A A31.5080202@DataIX.net>=09=09<20100918223933.GB85995@dragon.NUXI.org>= 09=09<20101002002605.GA8018@dragon.NUXI.org>=20|In-Reply-To:=20|X-Enigmail -Version:=201.1.1|OpenPGP:=20id=3D60AE908C|Content-Type:=20multipa rt/signed=3B=20micalg=3Dpgp-sha1=3B=0D=0A=20protocol=3D"applicatio n/pgp-signature"=3B=0D=0A=20boundary=3D"------------enig079054F18D BB9F95DF353C07"; b=k4G6EK5QHyt5lRQ8cwEb9MmiTKwMfbT/9+rGpzqB83Egwzc7r/Ltqu5J+Zt4oa7s+ gZeMWnfRPKo3YYY2BIdL94WuRtu1TD/0a1f+qs0P7QgonWWy4Mbpm/oTYtakfjX5w9 mp/o9QQA/yLE7ynZZ1TKlUZ0gGU4jvAYtaH29Mo8= Message-ID: <4CA844E5.7060303@infracaninophile.co.uk> Date: Sun, 03 Oct 2010 09:55:01 +0100 From: Matthew Seaman Organization: Infracaninophile User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-GB; rv:1.9.2.9) Gecko/20100915 Thunderbird/3.1.4 MIME-Version: 1.0 To: David DEMELIER References: <4C93AA31.5080202@DataIX.net> <20100918223933.GB85995@dragon.NUXI.org> <20101002002605.GA8018@dragon.NUXI.org> In-Reply-To: X-Enigmail-Version: 1.1.1 OpenPGP: id=60AE908C Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig079054F18DBB9F95DF353C07" X-Virus-Scanned: clamav-milter 0.96.3 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-0.1 required=5.0 tests=BAYES_40,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,SPF_FAIL autolearn=no version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on lucid-nonsense.infracaninophile.co.uk Cc: FreeBSD Ports Subject: Re: OPTIONS 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, 03 Oct 2010 08:55:13 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig079054F18DBB9F95DF353C07 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On 03/10/2010 09:22:46, David DEMELIER wrote: >> 3. OPTIONS are limited to only checkbox YES/NO settings. >> > Why can I not set PREFIX thru the OPTIONS framework and have it come= >> > from /var/db/ports/${PORTNAME}/options on the 2nd and later builds? >> > Even the boolean NOPORTDOCS isn't available thru OPTIONS. >> > Thus it is an inconsistent way to configure a port. >> > > I agree. As I said in 4, OPTIONS should follow the defined knob in > make.conf. But for not boolean knobs there is something we can also > do, spawn a little textbox to define an option with a string. Example > : >=20 > [X] WITH_X foo bar > [ ] WITH_Y foo bar baz > [fr_FR en_GB] LANGS to be build >=20 > Here pressing enter on LANGS would spawn a little textbox that can be > fulfilled by the user. The little problem is how to tell to OPTIONS > that it's not a boolean entry. >=20 And the rest? Pursuing this idea through to its logical conclusion, you'ld end up implementing radio buttons, text entry boxes, drop down lists -- all the normal bits used in html forms. In fact, you might just as well write a small HTML form, display it using lynx or w3c or some other text mode browser[*], and then have the form action feed into a CGI program that outputs a small Makefile with appropriate variable definitions in it. Hmmm... doesn't address David's point about options dialogs not showing pre-existing options settings, but it should be simple enough to have a 'Use default settings' check box. Cheers, Matthew [*] Or FF if you really must. --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate JID: matthew@infracaninophile.co.uk Kent, CT11 9PW --------------enig079054F18DBB9F95DF353C07 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.14 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAkyoROwACgkQ8Mjk52CukIwJXgCfeNvj6XtdrwaDxK+0jA6DwfA8 3U4AnR+Q0tCxVSU+IIxYgB1dP5cJeKcU =NBgC -----END PGP SIGNATURE----- --------------enig079054F18DBB9F95DF353C07-- From owner-freebsd-ports@FreeBSD.ORG Sun Oct 3 09:23:56 2010 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 36464106566B for ; Sun, 3 Oct 2010 09:23:56 +0000 (UTC) (envelope-from norman@khine.net) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id C74B48FC14 for ; Sun, 3 Oct 2010 09:23:55 +0000 (UTC) Received: by bwz15 with SMTP id 15so4071889bwz.13 for ; Sun, 03 Oct 2010 02:23:54 -0700 (PDT) MIME-Version: 1.0 Received: by 10.204.103.207 with SMTP id l15mr5700172bko.196.1286097834457; Sun, 03 Oct 2010 02:23:54 -0700 (PDT) Received: by 10.204.67.212 with HTTP; Sun, 3 Oct 2010 02:23:54 -0700 (PDT) Date: Sun, 3 Oct 2010 11:23:54 +0200 Message-ID: From: Norman Khine To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: swftools and Python 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, 03 Oct 2010 09:23:56 -0000 hello, i have built the swftools port but from the make/install configure it does not seem to find Python.h so when i run: $ python -c 'import gfx' Traceback (most recent call last): File "", line 1, in ImportError: No module named gfx how do i enable this? thanks norman --=20 =CB=99u=CA=8Dop =C7=9Dp=C4=B1sdn p,u=C9=B9n=CA=87 p=D7=9F=C9=B9o=CA=8D =C7= =9D=C9=A5=CA=87 =C7=9D=C7=9Ds no=CA=8E '=CA=87u=C7=9D=C9=AF=C9=90=D7=9F s= =C7=9D=C9=AF=C4=B1=CA=87 =C7=9D=C9=A5=CA=87 pu=C9=90 '=CA=87u=C7=9D=CA=87uo= =C9=94 =C7=9Dq s,=CA=87=C7=9D=D7=9F =CA=87=C7=9D=CA=8E %>>> "".join( [ {'*':'@','^':'.'}.get(c,None) or chr(97+(ord(c)-83)%26) for c in ",adym,*)&uzq^zqf" ] ) From owner-freebsd-ports@FreeBSD.ORG Sun Oct 3 09:45:03 2010 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 5E2C0106566B; Sun, 3 Oct 2010 09:45:03 +0000 (UTC) (envelope-from demelier.david@gmail.com) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id AE5EF8FC20; Sun, 3 Oct 2010 09:45:02 +0000 (UTC) Received: by bwz15 with SMTP id 15so4077361bwz.13 for ; Sun, 03 Oct 2010 02:45:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=Cc3PQDZ8zCgrPVtgBXQDaO80sV/fXZBpiknyxbtEpzQ=; b=gdW3w+zdOsuXK7CnLE+zOOjneNNoKDeH2mAoj09ICKhiK39co/j+wa313sweWd8L6j Y1Gip+wLuWmc7xvu4gc9Tp38fojxAW+NBMaE36jfwnmXjWM0o3Kf51Jv0pkDyNdBuw60 U+56dWxsv4/EFxiqRiUUJYfRz/b36mc8K0uKY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=xAYyB0jnkr8fNZJJm9lhu//WTWxaPgSgGgZ0NipLNG895+yVC9dpzOedsDjaNUTI4J hH9WEpH7nixFFCNUHtSLmGgOMOWiB5CV0w2JodFwKjZpLQexbXI7O/KB2/j5pdnxlIc7 2WFz5lD+AOSFYngU33YywVAVGZ8oMyslW1/kc= MIME-Version: 1.0 Received: by 10.204.98.198 with SMTP id r6mr5708601bkn.51.1286099101472; Sun, 03 Oct 2010 02:45:01 -0700 (PDT) Received: by 10.204.97.208 with HTTP; Sun, 3 Oct 2010 02:45:01 -0700 (PDT) In-Reply-To: <4CA844E5.7060303@infracaninophile.co.uk> References: <4C93AA31.5080202@DataIX.net> <20100918223933.GB85995@dragon.NUXI.org> <20101002002605.GA8018@dragon.NUXI.org> <4CA844E5.7060303@infracaninophile.co.uk> Date: Sun, 3 Oct 2010 11:45:01 +0200 Message-ID: From: David DEMELIER To: Matthew Seaman Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD Ports Subject: Re: OPTIONS 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, 03 Oct 2010 09:45:03 -0000 2010/10/3 Matthew Seaman : > On 03/10/2010 09:22:46, David DEMELIER wrote: >>> 3. OPTIONS are limited to only checkbox YES/NO settings. >>> > Why can I not set PREFIX thru the OPTIONS framework and have it come >>> > from /var/db/ports/${PORTNAME}/options on the 2nd and later builds? >>> > Even the boolean NOPORTDOCS isn't available thru OPTIONS. >>> > Thus it is an inconsistent way to configure a port. >>> > >> I agree. As I said in 4, OPTIONS should follow the defined knob in >> make.conf. But for not boolean knobs there is something we can also >> do, spawn a little textbox to define an option with a string. Example >> : >> >> [X] WITH_X foo bar >> [ ] WITH_Y foo bar baz >> [fr_FR en_GB] LANGS to be build >> >> Here pressing enter on LANGS would spawn a little textbox that can be >> fulfilled by the user. The little problem is how to tell to OPTIONS >> that it's not a boolean entry. >> > > And the rest? =C2=A0Pursuing this idea through to its logical conclusion, > you'ld end up implementing radio buttons, text entry boxes, drop down > lists -- all the normal bits used in html forms. > Don't you like this? sysinstall was made with dialog. And radiobuttons could be used to choose a group of options yes, for example when you only need to choose one option in three available choices, then BROKEN lines could be removed :-) > In fact, you might just as well write a small HTML form, display it > using lynx or w3c or some other text mode browser[*], and then have the > form action feed into a CGI program that outputs a small Makefile with > appropriate variable definitions in it. > I don't want something complex, checkbox, textbox, radiobuttons is enough. > Hmmm... doesn't address David's point about options dialogs not showing > pre-existing options settings, but it should be simple enough to have a > 'Use default settings' check box. > > =C2=A0 =C2=A0 =C2=A0 =C2=A0Cheers, > > =C2=A0 =C2=A0 =C2=A0 =C2=A0Matthew > > [*] Or FF if you really must. > > -- > Dr Matthew J Seaman MA, D.Phil. =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0= =C2=A0 =C2=A0 =C2=A0 7 Priory Courtyard > =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2= =A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0Flat 3 > PGP: http://www.infracaninophile.co.uk/pgpkey =C2=A0 =C2=A0 Ramsgate > JID: matthew@infracaninophile.co.uk =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 Kent, CT11 9PW > > --=20 Demelier David From owner-freebsd-ports@FreeBSD.ORG Sun Oct 3 10:08:25 2010 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 AC001106564A for ; Sun, 3 Oct 2010 10:08:25 +0000 (UTC) (envelope-from kamikaze@bsdforen.de) Received: from mail.bsdforen.de (bsdforen.de [212.204.60.79]) by mx1.freebsd.org (Postfix) with ESMTP id 688F48FC16 for ; Sun, 3 Oct 2010 10:08:25 +0000 (UTC) Received: from mobileKamikaze.norad (HSI-KBW-078-042-098-160.hsi3.kabel-badenwuerttemberg.de [78.42.98.160]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.bsdforen.de (Postfix) with ESMTP id 1B64E8A2867; Sun, 3 Oct 2010 12:08:24 +0200 (CEST) Message-ID: <4CA85617.7060503@bsdforen.de> Date: Sun, 03 Oct 2010 12:08:23 +0200 From: Dominic Fandrey User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-GB; rv:1.9.1.12) Gecko/20100918 Thunderbird/3.0.8 MIME-Version: 1.0 To: David DEMELIER References: <4C93AA31.5080202@DataIX.net> <20100918223933.GB85995@dragon.NUXI.org> <20101002002605.GA8018@dragon.NUXI.org> <4CA844E5.7060303@infracaninophile.co.uk> In-Reply-To: X-Enigmail-Version: 1.0.1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: FreeBSD Ports Subject: Re: OPTIONS 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, 03 Oct 2010 10:08:25 -0000 On 03/10/2010 11:45, David DEMELIER wrote: > 2010/10/3 Matthew Seaman : > I don't want something complex, checkbox, textbox, radiobuttons is enough. Textbox is _very_ complex. Think of all the code you'd have to add to ports to check what was entered by the user. At the very least you have to verify that whatever was provided is valid. For the feature not to become annoying you'd have to be a lot more fuzzy and complex, though. -- A: Because it fouls the order in which people normally read text. Q: Why is top-posting such a bad thing? A: Top-posting. Q: What is the most annoying thing on usenet and in e-mail? From owner-freebsd-ports@FreeBSD.ORG Sun Oct 3 10:29:11 2010 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 47C70106564A for ; Sun, 3 Oct 2010 10:29:11 +0000 (UTC) (envelope-from demelier.david@gmail.com) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id C5A808FC13 for ; Sun, 3 Oct 2010 10:29:10 +0000 (UTC) Received: by bwz15 with SMTP id 15so4089214bwz.13 for ; Sun, 03 Oct 2010 03:29:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type; bh=rLWxgIy6pJ7eVYPy7mZQof+JHIFFxsJ3xQNjrewjaXg=; b=GcZ6LcELGP686MswKmo2bZ77rj16Bn1M3qq5w9/KurUjcTKn4voclEOvnIxXv18aAK clqSecu5GQsqoaYVH7I+VsoLfml1hULppUjHoeB5unnmUu20/d89yfVC12AbJB6dNzvg q0jkAY89KFvh4EfjgGDE+ucK7qBxUwYHbhZcA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=kJ6Xo0p62i9GR4h0B+jttG6+LoaSALfsz2YCi1mX6Be8lJxk9eqqYkSsky+VQLUab5 bGBsJYM/1KSkcOMDozPk7hFbERgysFx7jhE4BA9DTMWzOOOgKCGnKQHFn7nJJPFIGnGv yCkEk4mujkBVMVk7HlRWr0EBMGIhXVq6s/QSc= MIME-Version: 1.0 Received: by 10.204.98.198 with SMTP id r6mr5729788bkn.51.1286101749522; Sun, 03 Oct 2010 03:29:09 -0700 (PDT) Received: by 10.204.97.208 with HTTP; Sun, 3 Oct 2010 03:29:09 -0700 (PDT) In-Reply-To: <4CA85617.7060503@bsdforen.de> References: <4C93AA31.5080202@DataIX.net> <20100918223933.GB85995@dragon.NUXI.org> <20101002002605.GA8018@dragon.NUXI.org> <4CA844E5.7060303@infracaninophile.co.uk> <4CA85617.7060503@bsdforen.de> Date: Sun, 3 Oct 2010 12:29:09 +0200 Message-ID: From: David DEMELIER To: Dominic Fandrey Content-Type: text/plain; charset=UTF-8 Cc: FreeBSD Ports Subject: Re: OPTIONS 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, 03 Oct 2010 10:29:11 -0000 2010/10/3 Dominic Fandrey : > On 03/10/2010 11:45, David DEMELIER wrote: >> 2010/10/3 Matthew Seaman : >> I don't want something complex, checkbox, textbox, radiobuttons is enough. > > Textbox is _very_ complex. Think of all the code you'd have to > add to ports to check what was entered by the user. > At the very least you have to verify that whatever was provided > is valid. For the feature not to become annoying you'd have to > be a lot more fuzzy and complex, though. > What do you mean by valid? In the way that the user can't insert any no alpha-numeric characters or an entry that is only valid to the application ? -- Demelier David From owner-freebsd-ports@FreeBSD.ORG Sun Oct 3 10:40:21 2010 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 F3D0C1065672 for ; Sun, 3 Oct 2010 10:40:20 +0000 (UTC) (envelope-from kamikaze@bsdforen.de) Received: from mail.bsdforen.de (bsdforen.de [212.204.60.79]) by mx1.freebsd.org (Postfix) with ESMTP id AB21B8FC14 for ; Sun, 3 Oct 2010 10:40:20 +0000 (UTC) Received: from mobileKamikaze.norad (HSI-KBW-078-042-098-160.hsi3.kabel-badenwuerttemberg.de [78.42.98.160]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.bsdforen.de (Postfix) with ESMTP id 572398A286A; Sun, 3 Oct 2010 12:40:19 +0200 (CEST) Message-ID: <4CA85D92.8070500@bsdforen.de> Date: Sun, 03 Oct 2010 12:40:18 +0200 From: Dominic Fandrey User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-GB; rv:1.9.1.12) Gecko/20100918 Thunderbird/3.0.8 MIME-Version: 1.0 To: David DEMELIER References: <4C93AA31.5080202@DataIX.net> <20100918223933.GB85995@dragon.NUXI.org> <20101002002605.GA8018@dragon.NUXI.org> <4CA844E5.7060303@infracaninophile.co.uk> <4CA85617.7060503@bsdforen.de> In-Reply-To: X-Enigmail-Version: 1.0.1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: FreeBSD Ports Subject: Re: OPTIONS 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, 03 Oct 2010 10:40:21 -0000 On 03/10/2010 12:29, David DEMELIER wrote: > 2010/10/3 Dominic Fandrey : >> On 03/10/2010 11:45, David DEMELIER wrote: >>> 2010/10/3 Matthew Seaman : >>> I don't want something complex, checkbox, textbox, radiobuttons is enough. >> >> Textbox is _very_ complex. Think of all the code you'd have to >> add to ports to check what was entered by the user. >> At the very least you have to verify that whatever was provided >> is valid. For the feature not to become annoying you'd have to >> be a lot more fuzzy and complex, though. >> > > What do you mean by valid? In the way that the user can't insert any > no alpha-numeric characters or an entry that is only valid to the > application ? > Text fields are arbitrary and you'd probably want to limit it to a specific purpose, like a list of languages. So is de_* an acceptable language? Do you delimit with space, pipe or semicolon? Do people really want to be bothered with learning the specific syntax of your ports text input fields? -- A: Because it fouls the order in which people normally read text. Q: Why is top-posting such a bad thing? A: Top-posting. Q: What is the most annoying thing on usenet and in e-mail? From owner-freebsd-ports@FreeBSD.ORG Sun Oct 3 10:40:35 2010 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 6E7B6106566B for ; Sun, 3 Oct 2010 10:40:35 +0000 (UTC) (envelope-from demelier.david@gmail.com) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 01C8A8FC17 for ; Sun, 3 Oct 2010 10:40:34 +0000 (UTC) Received: by bwz15 with SMTP id 15so4092432bwz.13 for ; Sun, 03 Oct 2010 03:40:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=dXEy9lA6ghbX491VM81HGOuq8vfm2ZWowEap/yqj6LU=; b=Pv/3uPKoO3LB0Nz90nRg3cegKpzNAOrK+nrHatCPpQT38q03Ymfd/kGlWINBryTWba dBjsFXdpg2KeOslFixYITmYIHZPw80BNUZ1YSoVFODOPPzZwkOiNk816r/2ZJuGDLmz3 YjlpRKY3GBpk+rio0TLsXsNSMbbN1A0Br6LHI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=cJYbqB7AluVAnT5ozNMXmgZFMDmXs1jgAsWyeguCocayEnz6lnQO6YhskqxWPg7i6e RR/m//PmYoMhby8Izgtk7GBWYX4sWlO4CtV7HEKbHfCGiYgmASOyqcwir7Ax+A1/2siY BdXu98y8vE1agufK5mjiUPQ/5Q5gz5vuYwJxI= MIME-Version: 1.0 Received: by 10.204.55.135 with SMTP id u7mr5871667bkg.122.1286102433824; Sun, 03 Oct 2010 03:40:33 -0700 (PDT) Received: by 10.204.97.208 with HTTP; Sun, 3 Oct 2010 03:40:33 -0700 (PDT) Date: Sun, 3 Oct 2010 12:40:33 +0200 Message-ID: From: David DEMELIER To: freebsd-ports Content-Type: text/plain; charset=UTF-8 Subject: openoffice.org-3 does not build anymore 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, 03 Oct 2010 10:40:35 -0000 Hi, I can't build openoffice.org-3 anymore, readlicense_oo need(s) to be rebuilt Reason(s): ERROR: error 65280 occurred while making /usr/obj/usr/ports/editors/openoffice.o rg-3/work/OOO320_m19/readlicense_oo/ Attention: if you build and deliver the above module(s) you may prolongue your t he build issuing command "build --from readlicense_oo" rmdir /tmp/aTcGY4w2lp *** Error code 1 Stop in /usr/ports/editors/openoffice.org-3. Cheers, -- Demelier David From owner-freebsd-ports@FreeBSD.ORG Sun Oct 3 10:48:42 2010 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 38B8D106564A for ; Sun, 3 Oct 2010 10:48:42 +0000 (UTC) (envelope-from demelier.david@gmail.com) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id B568B8FC0A for ; Sun, 3 Oct 2010 10:48:40 +0000 (UTC) Received: by bwz15 with SMTP id 15so4094591bwz.13 for ; Sun, 03 Oct 2010 03:48:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type; bh=CIcW87trovt+kQFf3uFntmcjrGk2PGNHDRNAZ0+kSwE=; b=HsmtuHG9fRBVpvxrgg35d1xZbU/+7APbx0kpdyud3rVYED1Q6WUg4TxDeIS0zpoFD/ 8/GSXLHp/Jjunb5YO38NP9LfkHALgfWmKYft1APZYQc8jV+j/caG1HTk05pcb1IJA6KF +VEI0H/hq64ZpJ4OKtW1FoI4/uE7jvKVo+e2Y= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=MR2clzxtRpxqs7Gm6qWflOe/bEmyBnWlLC7vtrJ9MiQof9g8PEl6zZz91otuLCjEyO Q+prdpHuZza0/tC5o2risHggd83Z6+2guAIyHOoO6EtsvvvaRtbvhANw1mBrS08eYgen 1HaXtvgYPGyIEpuHXj20haeQoltKrVD2sfo0I= MIME-Version: 1.0 Received: by 10.204.60.82 with SMTP id o18mr5770246bkh.174.1286102919754; Sun, 03 Oct 2010 03:48:39 -0700 (PDT) Received: by 10.204.97.208 with HTTP; Sun, 3 Oct 2010 03:48:39 -0700 (PDT) In-Reply-To: <4CA85D92.8070500@bsdforen.de> References: <4C93AA31.5080202@DataIX.net> <20100918223933.GB85995@dragon.NUXI.org> <20101002002605.GA8018@dragon.NUXI.org> <4CA844E5.7060303@infracaninophile.co.uk> <4CA85617.7060503@bsdforen.de> <4CA85D92.8070500@bsdforen.de> Date: Sun, 3 Oct 2010 12:48:39 +0200 Message-ID: From: David DEMELIER To: Dominic Fandrey Content-Type: text/plain; charset=UTF-8 Cc: FreeBSD Ports Subject: Re: OPTIONS 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, 03 Oct 2010 10:48:42 -0000 2010/10/3 Dominic Fandrey : > On 03/10/2010 12:29, David DEMELIER wrote: >> 2010/10/3 Dominic Fandrey : >>> On 03/10/2010 11:45, David DEMELIER wrote: >>>> 2010/10/3 Matthew Seaman : >>>> I don't want something complex, checkbox, textbox, radiobuttons is enough. >>> >>> Textbox is _very_ complex. Think of all the code you'd have to >>> add to ports to check what was entered by the user. >>> At the very least you have to verify that whatever was provided >>> is valid. For the feature not to become annoying you'd have to >>> be a lot more fuzzy and complex, though. >>> >> >> What do you mean by valid? In the way that the user can't insert any >> no alpha-numeric characters or an entry that is only valid to the >> application ? >> > > Text fields are arbitrary and you'd probably want to limit it to > a specific purpose, like a list of languages. > > So is de_* an acceptable language? Do you delimit with space, pipe > or semicolon? Do people really want to be bothered with learning > the specific syntax of your ports text input fields? > In the openoffice ports you have LOCALIZED_LANG knob, I needed to check which kind of delimiters was needed and it's a space, so delimit by space is enough. -- Demelier David From owner-freebsd-ports@FreeBSD.ORG Sun Oct 3 11:10:38 2010 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 A4B1B106564A for ; Sun, 3 Oct 2010 11:10:38 +0000 (UTC) (envelope-from 000.fbsd@quip.cz) Received: from elsa.codelab.cz (elsa.codelab.cz [94.124.105.4]) by mx1.freebsd.org (Postfix) with ESMTP id 585CF8FC1D for ; Sun, 3 Oct 2010 11:10:37 +0000 (UTC) Received: from elsa.codelab.cz (localhost.codelab.cz [127.0.0.1]) by elsa.codelab.cz (Postfix) with ESMTP id B488F19E02E; Sun, 3 Oct 2010 12:54:29 +0200 (CEST) Received: from [192.168.1.2] (ip-86-49-61-235.net.upcbroadband.cz [86.49.61.235]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by elsa.codelab.cz (Postfix) with ESMTPSA id 495BE19E02A; Sun, 3 Oct 2010 12:54:27 +0200 (CEST) Message-ID: <4CA860E2.2080402@quip.cz> Date: Sun, 03 Oct 2010 12:54:26 +0200 From: Miroslav Lachman <000.fbsd@quip.cz> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.9.1.13) Gecko/20100914 SeaMonkey/2.0.8 MIME-Version: 1.0 To: Dominic Fandrey References: <4C93AA31.5080202@DataIX.net> <20100918223933.GB85995@dragon.NUXI.org> <20101002002605.GA8018@dragon.NUXI.org> <4CA844E5.7060303@infracaninophile.co.uk> <4CA85617.7060503@bsdforen.de> In-Reply-To: <4CA85617.7060503@bsdforen.de> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: David DEMELIER , FreeBSD Ports Subject: Re: OPTIONS 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, 03 Oct 2010 11:10:38 -0000 Dominic Fandrey wrote: > On 03/10/2010 11:45, David DEMELIER wrote: >> 2010/10/3 Matthew Seaman: >> I don't want something complex, checkbox, textbox, radiobuttons is enough. > > Textbox is _very_ complex. Think of all the code you'd have to > add to ports to check what was entered by the user. > At the very least you have to verify that whatever was provided > is valid. For the feature not to become annoying you'd have to > be a lot more fuzzy and complex, though. You don't need to. It is the same as if user put something wrong in to make.conf, ports.conf or even if somebody do: cd /usr/ports/databases/mysql51-server make WITH_CHARSET=UTF13 WITH_XCHARSET=1 WITH_COLLATION=true All of them are invalid and not checked by ports framework, so if somebody implements textbox in to OPTIONS framework, the situation will not be worse! Situation will be better for those users not familiar with WITH_XXXX knobs. Miroslav Lachman From owner-freebsd-ports@FreeBSD.ORG Sun Oct 3 11:18:49 2010 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 A72BE106564A for ; Sun, 3 Oct 2010 11:18:49 +0000 (UTC) (envelope-from rde@tavi.co.uk) Received: from kipling.tavi.co.uk (kipling.tavi.co.uk [81.187.145.130]) by mx1.freebsd.org (Postfix) with ESMTP id 5C9698FC15 for ; Sun, 3 Oct 2010 11:18:49 +0000 (UTC) Received: by kipling.tavi.co.uk (Postfix, from userid 2000) id E54B22E02C; Sun, 3 Oct 2010 12:18:46 +0100 (BST) Received: from raksha.tavi.co.uk (raksha.tavi.co.uk [81.187.145.139]) by kipling.tavi.co.uk (Postfix) with ESMTP id 160752E026 for ; Sun, 3 Oct 2010 12:18:46 +0100 (BST) Date: Sun, 3 Oct 2010 12:18:45 +0100 From: Bob Eager To: freebsd-ports@freebsd.org Message-ID: <20101003121845.5b707d94@raksha.tavi.co.uk> In-Reply-To: References: X-Mailer: Claws Mail 3.7.6 (GTK+ 2.20.1; i386-portbld-freebsd7.3) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAMFBMVEUwXjFLc0vD0cS7y7zw9PDZ4tkWSRaVrZZ+m39qi2tXfVj////7+/utwK4IPggAOAAJUUA7AAABKklEQVQ4jWPYjQMwDFYJp0NKEKCNJmEf9h8CsimXiL2e33s3/e7F7K2Cs3f3dCMkQkMKj4YuCY3K3iR+e7fMaiSjvkX0/5cFGrWpe2uLzOpaExUVqMS/8PX/Re5ey960OLBTZpFA8+IlSBKPQ92zNyUUBsosN58uIY0k8f+/ONCoYytkVuhWzVwNkYiYbqk5M3NmOVBi41YZ8RsGF7shEtFb5KJ3r969CyixM7OTPeFUxG2IxLO8/9/SvqXlc+/x3h295YzLlj2nIRJQj//nRvc5TEIal8RsXBLVuCQwIgoq/u80DomP6HEOk/iOS+IJLonZOCT+ReOQ+Lkbh0QKLonbOCR+7MYhsRqHBJrVcIl/1TgklqKLQyQ+tGKIgyQOqXpjig94diZRAgAXmDX6jyWafAAAAABJRU5ErkJggg====== Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Bogosity: No, tests=bogofilter, spamicity=0.000000, version=1.2.1 Subject: Re: openoffice.org-3 does not build anymore 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, 03 Oct 2010 11:18:49 -0000 On Sun, 3 Oct 2010 12:40:33 +0200 David DEMELIER wrote: > Hi, > > I can't build openoffice.org-3 anymore, > > readlicense_oo > need(s) to be rebuilt > > Reason(s): > > ERROR: error 65280 occurred while > making /usr/obj/usr/ports/editors/openoffice.o > rg-3/work/OOO320_m19/readlicense_oo/ > > Attention: if you build and deliver the above module(s) you may > prolongue your t he build issuing command "build --from > readlicense_oo" > > rmdir /tmp/aTcGY4w2lp > *** Error code 1 > > Stop in /usr/ports/editors/openoffice.org-3. Quite often caused by running out of swap space. Or possibly actual disk space. From owner-freebsd-ports@FreeBSD.ORG Sun Oct 3 11:22:15 2010 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 108A41065695 for ; Sun, 3 Oct 2010 11:22:15 +0000 (UTC) (envelope-from cmt@burggraben.net) Received: from smtp.burggraben.net (ns.exwg.net [88.198.69.35]) by mx1.freebsd.org (Postfix) with ESMTP id C290C8FC08 for ; Sun, 3 Oct 2010 11:22:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp.burggraben.net (Postfix) with ESMTP id 58DE56000AF for ; Sun, 3 Oct 2010 13:06:04 +0200 (CEST) X-Spam-Scanned: by amavisd-new at exwg.net Received: from smtp.burggraben.net ([127.0.0.1]) by localhost (ns.burggraben.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Mj0FOWSFTRwo for ; Sun, 3 Oct 2010 13:06:03 +0200 (CEST) Received: from elch.exwg.net (p4FE39814.dip.t-dialin.net [79.227.152.20]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "elch.exwg.net", Issuer "Christoph Moench-Tegeder" (verified OK)) by smtp.burggraben.net (Postfix) with ESMTPS for ; Sun, 3 Oct 2010 13:06:03 +0200 (CEST) Received: by elch.exwg.net (Postfix, from userid 1000) id 6681FAC822; Sun, 3 Oct 2010 13:06:03 +0200 (CEST) Date: Sun, 3 Oct 2010 13:06:03 +0200 From: Christoph Moench-Tegeder To: freebsd-ports@freebsd.org Message-ID: <20101003110602.GA1995@elch.exwg.net> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Subject: Re: openoffice.org-3 does not build anymore 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, 03 Oct 2010 11:22:15 -0000 ## David DEMELIER (demelier.david@gmail.com): > I can't build openoffice.org-3 anymore, > > readlicense_oo > need(s) to be rebuilt > > Reason(s): > > ERROR: error 65280 occurred while making /usr/obj/usr/ports/editors/openoffice.o > rg-3/work/OOO320_m19/readlicense_oo/ I've not yet seen errors in readlicense_oo, but... OpenOffice ships a lot of libraries in their source tarball and installs them in it's build environment. When compiling and linking the actual OpenOffice modules, this results in conflicts with those versions of these libraries which are already installed on your system. Right now, I believe the surest way to build OpenOffice is to set up a jail for compiling OpenOffice only. Have you tried that (it worked for me a few weeks ago)? Regards, Christoph -- Spare Space From owner-freebsd-ports@FreeBSD.ORG Sun Oct 3 11:36:52 2010 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 7939D1065672; Sun, 3 Oct 2010 11:36:52 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3fd3:cd67:fafa:3d78]) by mx1.freebsd.org (Postfix) with ESMTP id B5BCF8FC20; Sun, 3 Oct 2010 11:36:51 +0000 (UTC) Received: from seedling.black-earth.co.uk (seedling.black-earth.co.uk [81.187.76.163]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.4/8.14.4) with ESMTP id o93BalV9041216 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Sun, 3 Oct 2010 12:36:47 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) X-DKIM: Sendmail DKIM Filter v2.8.3 smtp.infracaninophile.co.uk o93BalV9041216 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=infracaninophile.co.uk; s=201001-infracaninophile; t=1286105808; bh=mxzjwBx1U+3qd6fI9isJ5eQNZWcdFWHiuZV/uSQMbIg=; h=Message-ID:Date:From:MIME-Version:To:CC:Subject:References: In-Reply-To:Content-Type:Cc:Content-Type:Date:From:In-Reply-To: Message-ID:Mime-Version:References:To; z=Message-ID:=20<4CA86AC8.9080108@infracaninophile.co.uk>|Date:=20S un,=2003=20Oct=202010=2012:36:40=20+0100|From:=20Matthew=20Seaman= 20|Organization:=20Infracaninophi le|User-Agent:=20Mozilla/5.0=20(Macintosh=3B=20U=3B=20Intel=20Mac= 20OS=20X=2010.6=3B=20en-GB=3B=20rv:1.9.2.9)=20Gecko/20100915=20Thu nderbird/3.1.4|MIME-Version:=201.0|To:=20David=20DEMELIER=20|CC:=20obrien@freebsd.org,=20FreeBSD=20Ports=2 0|Subject:=20Re:=20OPTIONS|References:=20<4C93A A31.5080202@DataIX.net>=09=09<20100918223933.GB85995@dragon.NUXI.org>= 09=09<20101002002605.GA8018@dragon.NUXI.org>=09=09<4CA844E5.7060303@in fracaninophile.co.uk>=20|In-Reply-To:=20|X-Enigmail-Version:=201.1 .1|OpenPGP:=20id=3D60AE908C|Content-Type:=20multipart/signed=3B=20 micalg=3Dpgp-sha1=3B=0D=0A=20protocol=3D"application/pgp-signature "=3B=0D=0A=20boundary=3D"------------enig186DF80F4803C804B12EF5BF" ; b=uQU7R7O9oW7Cx+Xakls0GIqyv0oFK6b3q7ZZOv7/HDtqayjxo9yr0x3+JKgixUQ3V 03+ycPZVKSWb2aFJd5O8tbZB+Ez91gVWITcZ0ShVYBYZzOyqpUpaeDV5a7qLKPYgx9 NVRQvRwBCuRrfDAXMoskFu1ozNuBdFGm/aVZ9sE4= Message-ID: <4CA86AC8.9080108@infracaninophile.co.uk> Date: Sun, 03 Oct 2010 12:36:40 +0100 From: Matthew Seaman Organization: Infracaninophile User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-GB; rv:1.9.2.9) Gecko/20100915 Thunderbird/3.1.4 MIME-Version: 1.0 To: David DEMELIER References: <4C93AA31.5080202@DataIX.net> <20100918223933.GB85995@dragon.NUXI.org> <20101002002605.GA8018@dragon.NUXI.org> <4CA844E5.7060303@infracaninophile.co.uk> In-Reply-To: X-Enigmail-Version: 1.1.1 OpenPGP: id=60AE908C Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig186DF80F4803C804B12EF5BF" X-Virus-Scanned: clamav-milter 0.96.3 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-0.1 required=5.0 tests=BAYES_20,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,SPF_FAIL autolearn=no version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on lucid-nonsense.infracaninophile.co.uk Cc: FreeBSD Ports Subject: Re: OPTIONS 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, 03 Oct 2010 11:36:52 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig186DF80F4803C804B12EF5BF Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On 03/10/2010 10:45:01, David DEMELIER wrote: > 2010/10/3 Matthew Seaman : >> On 03/10/2010 09:22:46, David DEMELIER wrote: >>>> 3. OPTIONS are limited to only checkbox YES/NO settings. >>>>> Why can I not set PREFIX thru the OPTIONS framework and have it com= e >>>>> from /var/db/ports/${PORTNAME}/options on the 2nd and later builds?= >>>>> Even the boolean NOPORTDOCS isn't available thru OPTIONS. >>>>> Thus it is an inconsistent way to configure a port. >>>>> >>> I agree. As I said in 4, OPTIONS should follow the defined knob in >>> make.conf. But for not boolean knobs there is something we can also >>> do, spawn a little textbox to define an option with a string. Example= >>> : >>> >>> [X] WITH_X foo bar >>> [ ] WITH_Y foo bar baz >>> [fr_FR en_GB] LANGS to be build >>> >>> Here pressing enter on LANGS would spawn a little textbox that can be= >>> fulfilled by the user. The little problem is how to tell to OPTIONS >>> that it's not a boolean entry. >>> >> >> And the rest? Pursuing this idea through to its logical conclusion, >> you'ld end up implementing radio buttons, text entry boxes, drop down >> lists -- all the normal bits used in html forms. >> >=20 > Don't you like this? sysinstall was made with dialog. And radiobuttons > could be used to choose a group of options yes, for example when you > only need to choose one option in three available choices, then BROKEN > lines could be removed :-) Don't get me wrong -- I think the current OPTIONS processing is at once too limited and too intrusive, and that it is ripe for some serious improvement. I'm all for your idea; I just don't think you've gone far enough. Now, personally, I quite like the idea of simply sticking entries into /etc/make.conf to control port compilation settings. Which would be fine for me managing my small number of home machines, but certainly not suitable for all users. There is also the problem of knowing what controls are available and having some reasonable idea of what they do, without the necessity of being a make(1) guru or grovelling through the guts of dozens of ports. Giving OPTIONS processing a lot more flexibility, and the capability to display help text etc. (yes -- I know there have been attempts in this direction already) plus pushing some of the logic up from the Makefile into the OPTIONS dialogue[*] would certainly improve the user experience.= Something with the capabilities of sysinstall would be a step in the right direction, but I think most would agree, sysinstall is a bit clunky and confusing to new users. An alternative that behaves like a web form is going to be a lot more accessible to J. Random User. But that is really beyond the limits of what I have any idea about coding. I can see how to prototype it readily enough as a web app, but having to fire up an instance of apache or something just to install a few ports just ain't right. Cheers, Matthew [*] Ever had the experience of clicking on OPTIONS settings and then finding the port won't accept that combination of OPTIONS? That's frustrating, especially when combined with the use of eg. portmaster(8) where choosing OPTIONS can happen quite a while before attempting to build the port. --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate JID: matthew@infracaninophile.co.uk Kent, CT11 9PW --------------enig186DF80F4803C804B12EF5BF Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.14 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAkyoas8ACgkQ8Mjk52CukIy+HgCfXUNDCCDgC26zFe0H/g025pXd cFgAn1aYO9TS9YNwkBhHiiyNplfx0gI2 =i3j1 -----END PGP SIGNATURE----- --------------enig186DF80F4803C804B12EF5BF-- From owner-freebsd-ports@FreeBSD.ORG Sun Oct 3 11:39:55 2010 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 24DF81065670; Sun, 3 Oct 2010 11:39:55 +0000 (UTC) (envelope-from demelier.david@gmail.com) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 767738FC17; Sun, 3 Oct 2010 11:39:53 +0000 (UTC) Received: by bwz15 with SMTP id 15so4110007bwz.13 for ; Sun, 03 Oct 2010 04:39:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=Oy9dcpZjuTDYf3nPeTHlVOl0Et8QiTadkR7afRFHpFw=; b=BXT5jXXZGouHG32EnnWaxCAJGgzMVxvAbYtQLGyoEiLKhOlyoHSAJrtiaOJEA+trZ1 CnKQv0nVP/Y5D1hWq3d4UkmN22qm8fyoNp+guciUxuuF7+1FM2EBlYQPyp+AgcPOYKu2 g1HDg2oQF+wdZzaot4bahaQEebgCUwAnRW9xM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=jU7up5ZXSlm9tQ2xEnywxIuM9JMvTXZ+eigalHizWidalBTRMTsffJckGGiwDRe8Gs AN6aiAJI991IStuIOwWybUavNLWliTkxQVQcdg1bAmJxVD93B0Lv7qJgJU9XzaNg7w0K btuP/aGI3F/OrqDzLdATaKSk1ZEp1+ZJ9T6tE= MIME-Version: 1.0 Received: by 10.204.60.82 with SMTP id o18mr5796115bkh.174.1286105992407; Sun, 03 Oct 2010 04:39:52 -0700 (PDT) Received: by 10.204.97.208 with HTTP; Sun, 3 Oct 2010 04:39:52 -0700 (PDT) In-Reply-To: <4CA86AC8.9080108@infracaninophile.co.uk> References: <4C93AA31.5080202@DataIX.net> <20100918223933.GB85995@dragon.NUXI.org> <20101002002605.GA8018@dragon.NUXI.org> <4CA844E5.7060303@infracaninophile.co.uk> <4CA86AC8.9080108@infracaninophile.co.uk> Date: Sun, 3 Oct 2010 13:39:52 +0200 Message-ID: From: David DEMELIER To: Matthew Seaman Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD Ports Subject: Re: OPTIONS 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, 03 Oct 2010 11:39:55 -0000 2010/10/3 Matthew Seaman : > On 03/10/2010 10:45:01, David DEMELIER wrote: >> 2010/10/3 Matthew Seaman : >>> On 03/10/2010 09:22:46, David DEMELIER wrote: >>>>> 3. OPTIONS are limited to only checkbox YES/NO settings. >>>>>> Why can I not set PREFIX thru the OPTIONS framework and have it come >>>>>> from /var/db/ports/${PORTNAME}/options on the 2nd and later builds? >>>>>> Even the boolean NOPORTDOCS isn't available thru OPTIONS. >>>>>> Thus it is an inconsistent way to configure a port. >>>>>> >>>> I agree. As I said in 4, OPTIONS should follow the defined knob in >>>> make.conf. But for not boolean knobs there is something we can also >>>> do, spawn a little textbox to define an option with a string. Example >>>> : >>>> >>>> [X] WITH_X foo bar >>>> [ ] WITH_Y foo bar baz >>>> [fr_FR en_GB] LANGS to be build >>>> >>>> Here pressing enter on LANGS would spawn a little textbox that can be >>>> fulfilled by the user. The little problem is how to tell to OPTIONS >>>> that it's not a boolean entry. >>>> >>> >>> And the rest? =C2=A0Pursuing this idea through to its logical conclusio= n, >>> you'ld end up implementing radio buttons, text entry boxes, drop down >>> lists -- all the normal bits used in html forms. >>> >> >> Don't you like this? sysinstall was made with dialog. And radiobuttons >> could be used to choose a group of options yes, for example when you >> only need to choose one option in three available choices, then BROKEN >> lines could be removed :-) > > Don't get me wrong -- I think the current OPTIONS processing is at once > too limited and too intrusive, and that it is ripe for some serious > improvement. =C2=A0I'm all for your idea; I just don't think you've gone = far > enough. > > Now, personally, I quite like the idea of simply sticking entries into > /etc/make.conf to control port compilation settings. =C2=A0Which would be > fine for me managing my small number of home machines, but certainly not > suitable for all users. =C2=A0There is also the problem of knowing what > controls are available and having some reasonable idea of what they do, > without the necessity of being a make(1) guru or grovelling through the > guts of dozens of ports. > Yes that's why I would like that OPTIONS must read make.conf to set default ports options and only after make a individual change for it. > Giving OPTIONS processing a lot more flexibility, and the capability to > display help text etc. (yes -- I know there have been attempts in this > direction already) plus pushing some of the logic up from the Makefile > into the OPTIONS dialogue[*] would certainly improve the user experience. > > Something with the capabilities of sysinstall would be a step in the > right direction, but I think most would agree, sysinstall is a bit > clunky and confusing to new users. =C2=A0An alternative that behaves like= a > web form is going to be a lot more accessible to J. Random User. > > But that is really beyond the limits of what I have any idea about > coding. =C2=A0I can see how to prototype it readily enough as a web app, = but > having to fire up an instance of apache or something just to install a > few ports just ain't right. > > =C2=A0 =C2=A0 =C2=A0 =C2=A0Cheers, > > =C2=A0 =C2=A0 =C2=A0 =C2=A0Matthew > > [*] Ever had the experience of clicking on OPTIONS settings and then > finding the port won't accept that combination of OPTIONS? =C2=A0That's > frustrating, especially when combined with the use of eg. portmaster(8) > where choosing OPTIONS can happen quite a while before attempting to > build the port. > > -- > Dr Matthew J Seaman MA, D.Phil. =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0= =C2=A0 =C2=A0 =C2=A0 7 Priory Courtyard > =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2= =A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0Flat 3 > PGP: http://www.infracaninophile.co.uk/pgpkey =C2=A0 =C2=A0 Ramsgate > JID: matthew@infracaninophile.co.uk =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 Kent, CT11 9PW > > --=20 Demelier David From owner-freebsd-ports@FreeBSD.ORG Sun Oct 3 11:40:22 2010 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 97A2C1065694 for ; Sun, 3 Oct 2010 11:40:22 +0000 (UTC) (envelope-from lumiwa@gmail.com) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 5B7318FC19 for ; Sun, 3 Oct 2010 11:40:21 +0000 (UTC) Received: by iwn10 with SMTP id 10so961701iwn.13 for ; Sun, 03 Oct 2010 04:40:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:subject:date :user-agent:cc:references:in-reply-to:mime-version:content-type :content-transfer-encoding:message-id; bh=+6+4l774f+r2phD3dEFk5Bfnl23JZnOU8Fsl1Pvo5vc=; b=KseVBc/fX7BZrPYrOKRp/Fg3DDCstMBKeBpDff5j2OpCrw4wkvhN1588cgfQZ6Hngl Kl7Mkc5m+x2ZktR9dyfZePGyPSqKEJQ12gPvEdEtj+O63EmrKdt4fYe26QLgLXnmacve C5CWe1HQ7qlaQPvG64e5JCTY8AnVDBSAkGn7E= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:subject:date:user-agent:cc:references:in-reply-to :mime-version:content-type:content-transfer-encoding:message-id; b=efZTJGoWImsLaSOEP+yceRUijBumjiJ254n7MsuOOxPpiQREZZyJbnAOfFjyPfamGP rdKWQF5OpAT49KRfpLVlvGH9Tk2FET0aqajHJCzz9sBmN9ezezCqCe5Bi8LlG62Ka9gX ZRMdB6vHLnN7nssRddGP2/23PHbzZ902IBuYg= Received: by 10.231.152.143 with SMTP id g15mr8356056ibw.76.1286106021557; Sun, 03 Oct 2010 04:40:21 -0700 (PDT) Received: from athena.wi.rr.com (CPE-65-29-60-73.wi.res.rr.com [65.29.60.73]) by mx.google.com with ESMTPS id u6sm1960910ibd.0.2010.10.03.04.40.20 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 03 Oct 2010 04:40:20 -0700 (PDT) From: ajtiM To: freebsd-ports@freebsd.org Date: Sun, 3 Oct 2010 06:40:13 -0500 User-Agent: KMail/1.13.5 (FreeBSD/8.0-RELEASE-p4; KDE/4.5.1; i386; ; ) References: In-Reply-To: MIME-Version: 1.0 Content-Type: Text/Plain; charset="utf-8" Content-Transfer-Encoding: 7bit Message-Id: <201010030640.13676.lumiwa@gmail.com> Cc: David DEMELIER Subject: Re: openoffice.org-3 does not build anymore 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, 03 Oct 2010 11:40:22 -0000 On Sunday 03 October 2010 05:40:33 David DEMELIER wrote: > Hi, > > I can't build openoffice.org-3 anymore, > > readlicense_oo > need(s) to be rebuilt > > Reason(s): > > ERROR: error 65280 occurred while making > /usr/obj/usr/ports/editors/openoffice.o > rg-3/work/OOO320_m19/readlicense_oo/ > > Attention: if you build and deliver the above module(s) you may prolongue > your t he build issuing command "build --from readlicense_oo" > > rmdir /tmp/aTcGY4w2lp > *** Error code 1 > > Stop in /usr/ports/editors/openoffice.org-3. > > Cheers, I didn't have problem with RC-3 and it works very good (started yesterday about eight in the evening and it is done). Mitja -------- http://starikarp.redbubble.com From owner-freebsd-ports@FreeBSD.ORG Sun Oct 3 11:46:58 2010 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 7C236106564A for ; Sun, 3 Oct 2010 11:46:58 +0000 (UTC) (envelope-from demelier.david@gmail.com) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 0A3848FC15 for ; Sun, 3 Oct 2010 11:46:57 +0000 (UTC) Received: by bwz15 with SMTP id 15so4112035bwz.13 for ; Sun, 03 Oct 2010 04:46:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=zJMkZ24pTwZrjGJu1cAXaujYlxhgcof4eUWDsXnkOk4=; b=U9yEsT4ws0CpzXWuAXtMoN/MZlmQEDzFWk7EyGe3ORw23IsGeAX11AyvDO5cVPcXTG 3mX/3f1H4VnSd5dTnviifGXe4KTT25rvAsZsj0MyrMxhl1kqU8y61V28SDRID2Y2+PBc TyjZGGJOJr6Z3M2BOdBgdn1vjvGg7Bmyw5ATA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=H9IDTpedNkkduu1r8/k14B749qzryBt0gtgeiAbhAQfLsl5csIF3LlPB9no8mYgnSa G1Ty904wCiBVmPGePlI/s1yM7lIKcZzz6DqgaiCZQMyd3XOiK2ZCKT8zoqlvHCthcx5t Yd6REUTHu9xXHns2/cfpOOgkaVYKZnEW1dksc= MIME-Version: 1.0 Received: by 10.204.78.8 with SMTP id i8mr5785154bkk.176.1286106416850; Sun, 03 Oct 2010 04:46:56 -0700 (PDT) Received: by 10.204.97.208 with HTTP; Sun, 3 Oct 2010 04:46:56 -0700 (PDT) In-Reply-To: <201010030640.13676.lumiwa@gmail.com> References: <201010030640.13676.lumiwa@gmail.com> Date: Sun, 3 Oct 2010 13:46:56 +0200 Message-ID: From: David DEMELIER To: ajtiM Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: freebsd-ports@freebsd.org Subject: Re: openoffice.org-3 does not build anymore 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, 03 Oct 2010 11:46:58 -0000 2010/10/3 ajtiM : > On Sunday 03 October 2010 05:40:33 David DEMELIER wrote: >> Hi, >> >> I can't build openoffice.org-3 anymore, >> >> =C2=A0 =C2=A0 =C2=A0 =C2=A0 readlicense_oo >> need(s) to be rebuilt >> >> Reason(s): >> >> ERROR: error 65280 occurred while making >> /usr/obj/usr/ports/editors/openoffice.o >> rg-3/work/OOO320_m19/readlicense_oo/ >> >> Attention: if you build and deliver the above module(s) you may prolongu= e >> your t he build issuing command "build --from readlicense_oo" >> >> rmdir /tmp/aTcGY4w2lp >> *** Error code 1 >> >> Stop in /usr/ports/editors/openoffice.org-3. >> >> Cheers, > > I didn't have problem with RC-3 and it works very good (started yesterday > about eight in the evening and it is done). > > Mitja > -------- > http://starikarp.redbubble.com > So I don't understand. --=20 Demelier David From owner-freebsd-ports@FreeBSD.ORG Sun Oct 3 12:09:21 2010 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 24F561065670 for ; Sun, 3 Oct 2010 12:09:21 +0000 (UTC) (envelope-from kamikaze@bsdforen.de) Received: from mail.bsdforen.de (bsdforen.de [212.204.60.79]) by mx1.freebsd.org (Postfix) with ESMTP id D1BBE8FC16 for ; Sun, 3 Oct 2010 12:09:20 +0000 (UTC) Received: from mobileKamikaze.norad (HSI-KBW-078-042-098-160.hsi3.kabel-badenwuerttemberg.de [78.42.98.160]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.bsdforen.de (Postfix) with ESMTP id A28888A286E; Sun, 3 Oct 2010 14:09:19 +0200 (CEST) Message-ID: <4CA8726F.6030105@bsdforen.de> Date: Sun, 03 Oct 2010 14:09:19 +0200 From: Dominic Fandrey User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-GB; rv:1.9.1.12) Gecko/20100918 Thunderbird/3.0.8 MIME-Version: 1.0 To: David DEMELIER References: <4C93AA31.5080202@DataIX.net> <20100918223933.GB85995@dragon.NUXI.org> <20101002002605.GA8018@dragon.NUXI.org> <4CA844E5.7060303@infracaninophile.co.uk> <4CA85617.7060503@bsdforen.de> <4CA85D92.8070500@bsdforen.de> In-Reply-To: X-Enigmail-Version: 1.0.1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: FreeBSD Ports Subject: Re: OPTIONS 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, 03 Oct 2010 12:09:21 -0000 On 03/10/2010 12:48, David DEMELIER wrote: > 2010/10/3 Dominic Fandrey : >> On 03/10/2010 12:29, David DEMELIER wrote: >>> 2010/10/3 Dominic Fandrey : >>>> On 03/10/2010 11:45, David DEMELIER wrote: >>>>> 2010/10/3 Matthew Seaman : >>>>> I don't want something complex, checkbox, textbox, radiobuttons is enough. >>>> >>>> Textbox is _very_ complex. Think of all the code you'd have to >>>> add to ports to check what was entered by the user. >>>> At the very least you have to verify that whatever was provided >>>> is valid. For the feature not to become annoying you'd have to >>>> be a lot more fuzzy and complex, though. >>>> >>> >>> What do you mean by valid? In the way that the user can't insert any >>> no alpha-numeric characters or an entry that is only valid to the >>> application ? >>> >> >> Text fields are arbitrary and you'd probably want to limit it to >> a specific purpose, like a list of languages. >> >> So is de_* an acceptable language? Do you delimit with space, pipe >> or semicolon? Do people really want to be bothered with learning >> the specific syntax of your ports text input fields? >> > > In the openoffice ports you have LOCALIZED_LANG knob, I needed to > check which kind of delimiters was needed and it's a space, so delimit > by space is enough. > I have set LOCALIZED_LANG wrongly before. An excellent example, why text input boxes are /very dangerous/. -- A: Because it fouls the order in which people normally read text. Q: Why is top-posting such a bad thing? A: Top-posting. Q: What is the most annoying thing on usenet and in e-mail? From owner-freebsd-ports@FreeBSD.ORG Sun Oct 3 12:19:55 2010 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 779031065670 for ; Sun, 3 Oct 2010 12:19:55 +0000 (UTC) (envelope-from kamikaze@bsdforen.de) Received: from mail.bsdforen.de (bsdforen.de [212.204.60.79]) by mx1.freebsd.org (Postfix) with ESMTP id 2FA608FC16 for ; Sun, 3 Oct 2010 12:19:55 +0000 (UTC) Received: from mobileKamikaze.norad (HSI-KBW-078-042-098-160.hsi3.kabel-badenwuerttemberg.de [78.42.98.160]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.bsdforen.de (Postfix) with ESMTP id EA29D8A2872; Sun, 3 Oct 2010 14:19:53 +0200 (CEST) Message-ID: <4CA874E9.2070807@bsdforen.de> Date: Sun, 03 Oct 2010 14:19:53 +0200 From: Dominic Fandrey User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-GB; rv:1.9.1.12) Gecko/20100918 Thunderbird/3.0.8 MIME-Version: 1.0 To: Miroslav Lachman <000.fbsd@quip.cz> References: <4C93AA31.5080202@DataIX.net> <20100918223933.GB85995@dragon.NUXI.org> <20101002002605.GA8018@dragon.NUXI.org> <4CA844E5.7060303@infracaninophile.co.uk> <4CA85617.7060503@bsdforen.de> <4CA860E2.2080402@quip.cz> In-Reply-To: <4CA860E2.2080402@quip.cz> X-Enigmail-Version: 1.0.1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: David DEMELIER , FreeBSD Ports Subject: Re: OPTIONS 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, 03 Oct 2010 12:19:55 -0000 On 03/10/2010 12:54, Miroslav Lachman wrote: > Dominic Fandrey wrote: >> On 03/10/2010 11:45, David DEMELIER wrote: >>> 2010/10/3 Matthew Seaman: >>> I don't want something complex, checkbox, textbox, radiobuttons is >>> enough. >> >> Textbox is _very_ complex. Think of all the code you'd have to >> add to ports to check what was entered by the user. >> At the very least you have to verify that whatever was provided >> is valid. For the feature not to become annoying you'd have to >> be a lot more fuzzy and complex, though. > > You don't need to. It is the same as if user put something wrong in to > make.conf, ports.conf or even if somebody do: > > cd /usr/ports/databases/mysql51-server > make WITH_CHARSET=UTF13 WITH_XCHARSET=1 WITH_COLLATION=true No, it's technically the same, but from a usability standpoint this is entirely different. In your examples a user makes an educated and competent change, the user acted on his own behalf. When you pop up a dialogue and ask the user for something you better have a) a good reason, b) good defaults, c) give thorough guidance and explanation and d) offer a way to roll back the changes made. Or you can kiss your users good bye. > All of them are invalid and not checked by ports framework, so if > somebody implements textbox in to OPTIONS framework, the situation will > not be worse! Situation will be better for those users not familiar with > WITH_XXXX knobs. You're mistaking a usability issue with a technical one. Jef Raskin's Humane Interface is a good starting point. Regards -- A: Because it fouls the order in which people normally read text. Q: Why is top-posting such a bad thing? A: Top-posting. Q: What is the most annoying thing on usenet and in e-mail? From owner-freebsd-ports@FreeBSD.ORG Sun Oct 3 13:45:11 2010 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 B1A061065672 for ; Sun, 3 Oct 2010 13:45:11 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from smtp.timeweb.ru (smtp.timeweb.ru [92.53.116.15]) by mx1.freebsd.org (Postfix) with ESMTP id 6EFAC8FC0C for ; Sun, 3 Oct 2010 13:45:11 +0000 (UTC) Received: from [213.148.20.85] (helo=hive.panopticon) by smtp.timeweb.ru with esmtpsa (TLSv1:CAMELLIA256-SHA:256) (Exim 4.71) (envelope-from ) id 1P2OsG-0007j7-Sd; Sun, 03 Oct 2010 17:45:08 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id 3E48DB865; Sun, 3 Oct 2010 17:45:08 +0400 (MSD) Received: by hades.panopticon (Postfix, from userid 1000) id 4F8F2B829; Sun, 3 Oct 2010 17:45:07 +0400 (MSD) Date: Sun, 3 Oct 2010 17:45:07 +0400 From: Dmitry Marakasov To: Andriy Gapon Message-ID: <20101003134507.GF11112@hades.panopticon> References: <4CA36014.6040201@cineca.it> <20101001110539.GD11112@hades.panopticon> <4CA5EF31.9020403@icyb.net.ua> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <4CA5EF31.9020403@icyb.net.ua> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: gnash-0.8.7_4 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, 03 Oct 2010 13:45:11 -0000 * Andriy Gapon (avg@icyb.net.ua) wrote: > > Gnash port was updated, sorry for delay and thanks for waiting! > > The following patch is required for compilation with gcc44+. > It's definitely an upstream issue: > --- libbase/tu_file.h.orig 2010-10-01 16:39:16.419334667 +0300 > +++ libbase/tu_file.h 2010-10-01 16:39:55.565197173 +0300 > @@ -12,6 +12,7 @@ > #include "dsodefs.h" // DSOEXPORT > #include "utility.h" > #include "IOChannel.h" // for inheritance > +#include Added, thanks. I will submit it upstream when I find time for it, along with other ports patches. -- Dmitry Marakasov . 55B5 0596 FF1E 8D84 5F56 9510 D35A 80DD F9D2 F77D amdmi3@amdmi3.ru ..: jabber: amdmi3@jabber.ru http://www.amdmi3.ru From owner-freebsd-ports@FreeBSD.ORG Sun Oct 3 22:27:25 2010 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 5D1B6106566C for ; Sun, 3 Oct 2010 22:27:25 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-qy0-f182.google.com (mail-qy0-f182.google.com [209.85.216.182]) by mx1.freebsd.org (Postfix) with ESMTP id 09BD98FC08 for ; Sun, 3 Oct 2010 22:27:24 +0000 (UTC) Received: by qyk35 with SMTP id 35so221780qyk.13 for ; Sun, 03 Oct 2010 15:27:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :x-enigmail-version:content-type:content-transfer-encoding; bh=1EpP3UU7ETiqoczEUTOkZCgA/F3nIqW8Z8ENO63yTsQ=; b=Mt205n7TQNBb4ZG79cryEPAsaYaZztpr9Mv7XzhZkNiDz6ucPoSs08DmIUrNVJX8YT MLkrAS8njHJK3a/JlrIUn3xU/+ULVhIvRnMcPom+FPiIwJukFZCU3WifhCZ+KNhu1xdw v6zH+N5NQHqG+cPIJ4VqShVhzXexOPNJocNqM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; b=lOz4gyq9ponVSXKJfC/6NCsTIwnhEexqKzggdx2Uvuvjsr4JxXqhwxei4AxZoG2l7i wd9Guq+prIRgw1JHJlm9KaB4EQki6OkCnnwk/al5h8s7uQk7SANmY+bt3G0RnUZlcXKL poyoQVmDr3FLfA8Elg9TLzEIuufeMzUfnTBBE= Received: by 10.224.69.14 with SMTP id x14mr6220142qai.212.1286144843685; Sun, 03 Oct 2010 15:27:23 -0700 (PDT) Received: from centel.dataix.local (adsl-99-181-144-115.dsl.klmzmi.sbcglobal.net [99.181.144.115]) by mx.google.com with ESMTPS id r1sm4560239qcq.22.2010.10.03.15.27.20 (version=SSLv3 cipher=RC4-MD5); Sun, 03 Oct 2010 15:27:21 -0700 (PDT) Sender: "J. Hellenthal" Message-ID: <4CA90347.3020207@DataIX.net> Date: Sun, 03 Oct 2010 18:27:19 -0400 From: jhell User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.2.9) Gecko/20100917 Lightning/1.0b1 Thunderbird MIME-Version: 1.0 To: Ade Lovett References: <4C93AA31.5080202@DataIX.net> <20100917205404.GA66620@atarininja.org> <20100917232437.GC67059@atarininja.org> <20101002060201.GA8287@dragon.NUXI.org> <32055F40-C8F9-4A65-9985-B1FA4AE11A38@FreeBSD.org> In-Reply-To: <32055F40-C8F9-4A65-9985-B1FA4AE11A38@FreeBSD.org> X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: FreeBSD Ports , obrien@NUXI.org Subject: Re: editors/vim installs to / 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, 03 Oct 2010 22:27:25 -0000 On 10/02/2010 02:49, Ade Lovett wrote: > editors/vim -- fully functional console-only (no X11) > editors/vim-lite -- stripped down version (again, no X11, perhaps even linked static for use within embedded systems) > editors/vim-gui -- take your pick. X11 is implied. athena/motif widgets are pretty much dead, so unless there's a QT version floating around, GTK2. editors/vim editors/vim-lite editors/gvim editors/gvim-lite ? Makes sense does it not ? -- jhell,v From owner-freebsd-ports@FreeBSD.ORG Sun Oct 3 22:29:03 2010 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 84AE6106566C; Sun, 3 Oct 2010 22:29:03 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3fd3:cd67:fafa:3d78]) by mx1.freebsd.org (Postfix) with ESMTP id 1DCA18FC1C; Sun, 3 Oct 2010 22:29:01 +0000 (UTC) Received: from seedling.black-earth.co.uk (seedling.black-earth.co.uk [81.187.76.163]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.4/8.14.4) with ESMTP id o93MSpY0055852 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Sun, 3 Oct 2010 23:28:57 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) X-DKIM: Sendmail DKIM Filter v2.8.3 smtp.infracaninophile.co.uk o93MSpY0055852 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=infracaninophile.co.uk; s=201001-infracaninophile; t=1286144937; bh=rlJqQaXRGVb4ZNZG9QLAVh8mAlahfR6jhRaEkTwv13c=; h=Message-ID:Date:From:MIME-Version:To:Subject:Content-Type:Cc: Content-Type:Date:From:In-Reply-To:Message-ID:Mime-Version: References:To; z=Message-ID:=20<4CA9039A.3080407@infracaninophile.co.uk>|Date:=20S un,=2003=20Oct=202010=2023:28:42=20+0100|From:=20Matthew=20Seaman= 20|Organization:=20Infracaninophi le|User-Agent:=20Mozilla/5.0=20(Macintosh=3B=20U=3B=20Intel=20Mac= 20OS=20X=2010.6=3B=20en-GB=3B=20rv:1.9.2.9)=20Gecko/20100915=20Thu nderbird/3.1.4|MIME-Version:=201.0|To:=20"freebsd-ports@FreeBSD.or g"=20,=20=0D=0A=20Palle=20Girgensohn=20 |Subject:=20databases/postgresql90-{client,ser ver,contrib}=20not=20hooked=20up=20to=20ports|X-Enigmail-Version:= 201.1.1|OpenPGP:=20id=3D60AE908C|Content-Type:=20multipart/signed= 3B=20micalg=3Dpgp-sha1=3B=0D=0A=20protocol=3D"application/pgp-sign ature"=3B=0D=0A=20boundary=3D"------------enig4ED07EDC03DC0A0518DE C234"; b=IzQuTh1cZrpSZ+K+sFxqj42uVr/qXHfgF6LXtvfMfZ98OfeCWuoFBq/r5TJCHdGm9 le3lXXsLVkBtxKDKsv72PDjjO2QTZTq1jnB/4gdhBUzcyid/b9coRyFp2JdbnsjR2B akQ1HiqmJpwUcsRYgO0XEXskJY1waDAyEIgVvhBw= Message-ID: <4CA9039A.3080407@infracaninophile.co.uk> Date: Sun, 03 Oct 2010 23:28:42 +0100 From: Matthew Seaman Organization: Infracaninophile User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-GB; rv:1.9.2.9) Gecko/20100915 Thunderbird/3.1.4 MIME-Version: 1.0 To: "freebsd-ports@FreeBSD.org" , Palle Girgensohn X-Enigmail-Version: 1.1.1 OpenPGP: id=60AE908C Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig4ED07EDC03DC0A0518DEC234" X-Virus-Scanned: clamav-milter 0.96.3 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-0.1 required=5.0 tests=BAYES_20,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,SPF_FAIL autolearn=no version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on lucid-nonsense.infracaninophile.co.uk Cc: Subject: databases/postgresql90-{client, server, contrib} not hooked up to 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: Sun, 03 Oct 2010 22:29:03 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig4ED07EDC03DC0A0518DEC234 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Is there any reason why the 3 postgresql90 ports aren't mentioned in ${PORTSDIR}/databases/Makefile ? They seem to work perfectly well for installing postgresql-9.0.0 Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate JID: matthew@infracaninophile.co.uk Kent, CT11 9PW --------------enig4ED07EDC03DC0A0518DEC234 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.14 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEUEARECAAYFAkypA6IACgkQ8Mjk52CukIx+5gCdHbEd8iI6jh7lSHu4Q6gspj1c H7MAl1IOXl45m/tfnSrp2CqRmtYJk+M= =4RNv -----END PGP SIGNATURE----- --------------enig4ED07EDC03DC0A0518DEC234-- From owner-freebsd-ports@FreeBSD.ORG Sun Oct 3 22:55:59 2010 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 E94681065673 for ; Sun, 3 Oct 2010 22:55:59 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from melon.pingpong.net (dadel.pingpong.net [79.136.116.226]) by mx1.freebsd.org (Postfix) with ESMTP id A4A1A8FC14 for ; Sun, 3 Oct 2010 22:55:59 +0000 (UTC) Received: from melon.pingpong.net (localhost [127.0.0.1]) by melon.pingpong.net (Postfix) with ESMTP id A8EC75F54; Mon, 4 Oct 2010 00:37:42 +0200 (CEST) X-Virus-Scanned: by amavisd-new at pingpong.net Received: from melon.pingpong.net ([127.0.0.1]) by melon.pingpong.net (melon.pingpong.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id gJikKZiK5rQN; Mon, 4 Oct 2010 00:37:42 +0200 (CEST) Received: from [172.16.1.6] (c-7957e155.1521-1-64736c12.cust.bredbandsbolaget.se [85.225.87.121]) by melon.pingpong.net (Postfix) with ESMTPA id DDDF75F45; Mon, 4 Oct 2010 00:37:40 +0200 (CEST) Date: Mon, 04 Oct 2010 00:37:40 +0200 From: Palle Girgensohn To: Matthew Seaman , freebsd-ports@FreeBSD.org Message-ID: <8A35D5B08AE8B3E0BDF5C1AE@girgBook.local> In-Reply-To: <4CA9039A.3080407@infracaninophile.co.uk> References: <4CA9039A.3080407@infracaninophile.co.uk> X-Mailer: Mulberry/4.0.8 (Mac OS X) Errors-To: girgen+uustuds@pingpong.net MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: Subject: Re: databases/postgresql90-{client, server, contrib} not hooked up to 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: Sun, 03 Oct 2010 22:56:00 -0000 Nope, no reason, my mistake! Thanks, I will fix that. PAlle --On 3 oktober 2010 23.28.42 +0100 Matthew Seaman wrote: > > Is there any reason why the 3 postgresql90 ports aren't mentioned in > ${PORTSDIR}/databases/Makefile ? They seem to work perfectly well for > installing postgresql-9.0.0 > > Cheers, > > Matthew > > -- > Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard > Flat 3 > PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate > JID: matthew@infracaninophile.co.uk Kent, CT11 9PW > From owner-freebsd-ports@FreeBSD.ORG Sun Oct 3 22:58:03 2010 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 346101065670 for ; Sun, 3 Oct 2010 22:58:03 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx21.fluidhosting.com [204.14.89.4]) by mx1.freebsd.org (Postfix) with ESMTP id B6BF38FC18 for ; Sun, 3 Oct 2010 22:58:02 +0000 (UTC) Received: (qmail 24446 invoked by uid 399); 3 Oct 2010 22:58:01 -0000 Received: from localhost (HELO ?192.168.0.142?) (dougb@dougbarton.us@127.0.0.1) by localhost with ESMTPAM; 3 Oct 2010 22:58:01 -0000 X-Originating-IP: 127.0.0.1 X-Sender: dougb@dougbarton.us Message-ID: <4CA90A78.5010806@FreeBSD.org> Date: Sun, 03 Oct 2010 15:58:00 -0700 From: Doug Barton Organization: http://SupersetSolutions.com/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.9) Gecko/20100915 Thunderbird/3.1.4 MIME-Version: 1.0 To: John Hein References: <19625.2146.758021.796409@gossamer.timing.com> In-Reply-To: <19625.2146.758021.796409@gossamer.timing.com> X-Enigmail-Version: 1.2a1pre OpenPGP: id=1A1ABC84 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: "Philip M. Gollucci" , freebsd-ports@FreeBSD.org Subject: ident strings in pkg-plist 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, 03 Oct 2010 22:58:03 -0000 Changing the list to have a real discussion about this. On 10/3/2010 3:49 PM, John Hein wrote: > I'll mention that > it has come in handy for me in the past. I put it into the category > of ident strings in binaries. It has a similar utility. > > Because I find it useful in maintaining and using a port/package, > I've been one that has added it to pkg-plist in the past. I'm curious about what your use case for the information is. You can always know if you have the latest version of the plist via cvs, c[v]sup, portsnap, etc. Other than knowing that you have the latest version, what utility does the $Id string in the file itself have? Doug -- Breadth of IT experience, and | Nothin' ever doesn't change, depth of knowledge in the DNS. | but nothin' changes much. Yours for the right price. :) | -- OK Go http://SupersetSolutions.com/ From owner-freebsd-ports@FreeBSD.ORG Sun Oct 3 23:50:56 2010 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 07731106564A; Sun, 3 Oct 2010 23:50:56 +0000 (UTC) (envelope-from jhein@gossamer.timing.com) Received: from mout.perfora.net (mout.perfora.net [74.208.4.195]) by mx1.freebsd.org (Postfix) with ESMTP id C760A8FC19; Sun, 3 Oct 2010 23:50:55 +0000 (UTC) Received: from gossamer.timing.com ([206.168.13.144]) by mrelay.perfora.net (node=mrus4) with ESMTP (Nemesis) id 0MZTnx-1PIqzq1sZ3-00LwWd; Sun, 03 Oct 2010 19:38:19 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <19625.5094.895017.729445@gossamer.timing.com> Date: Sun, 3 Oct 2010 17:38:14 -0600 From: John Hein To: Doug Barton In-Reply-To: <4CA90A78.5010806@FreeBSD.org> References: <19625.2146.758021.796409@gossamer.timing.com> <4CA90A78.5010806@FreeBSD.org> X-Provags-ID: V02:K0:hsY9MtDYzMeIRcMRsU/5Q5CJuO5fD3iK9K3+X5aC5fn nb+5WNcWttQg/lYKhTHexsmYVjb9mM8+HZzmnld2CnilbfxFGx LolE7iw6FrW/L9+5hKdft/pPg7RIIeOfrdIWiJ2/jIJFwc7YNC GbZclfZmUGfPHmP1ZY1GYkeJ36dDRkwOaKda+uNST9Fp9EyTZM uRM+y5i2wlcvvCUxn+Qww== Cc: "Philip M. Gollucci" , freebsd-ports@FreeBSD.org Subject: Re: ident strings in pkg-plist 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, 03 Oct 2010 23:50:56 -0000 Doug Barton wrote at 15:58 -0700 on Oct 3, 2010: > Changing the list to have a real discussion about this. > > On 10/3/2010 3:49 PM, John Hein wrote: > > I'll mention that > > it has come in handy for me in the past. I put it into the category > > of ident strings in binaries. It has a similar utility. > > > > Because I find it useful in maintaining and using a port/package, > > I've been one that has added it to pkg-plist in the past. > > I'm curious about what your use case for the information is. You can > always know if you have the latest version of the plist via cvs, > c[v]sup, portsnap, etc. Other than knowing that you have the latest > version, what utility does the $Id string in the file itself have? Mostly convenience (one less level of indirection). For identifying sub-changes between PORTVERSION/PORTREVISION bumps. For keeping track of heritage when using a local mirror of FreeBSD ports, but slightly divergent, for local products. Mainstream FreeBSD users don't care about this one, but people who use FreeBSD and add value might. For instance, PC-BSD might fall into this category (not trying to put words in their mouth - just guessing). $work users might. Just one specific use case here - we have to maintain some older 4.x based products and have to have our own branch of the ports tree. For aberrant maintenance issues where I have had local screwups. These, of course, are _extremely_ rare personally ;) Anyway this is quite a weak entry on the use case list. Just like for ident strings in binaries where you can generally get close enough by knowing uname, you can (as you mention) generally get close enough to the plist source version from PORTVERSION/PORTREVISION and cvs, et. al. Removal doesn't bother me that much, but I found it useful on occasion over the years. From owner-freebsd-ports@FreeBSD.ORG Mon Oct 4 00:47:54 2010 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 AFDCB106566B for ; Mon, 4 Oct 2010 00:47:54 +0000 (UTC) (envelope-from corky1951@comcast.net) Received: from qmta11.emeryville.ca.mail.comcast.net (qmta11.emeryville.ca.mail.comcast.net [76.96.27.211]) by mx1.freebsd.org (Postfix) with ESMTP id 951DB8FC08 for ; Mon, 4 Oct 2010 00:47:54 +0000 (UTC) Received: from omta10.emeryville.ca.mail.comcast.net ([76.96.30.28]) by qmta11.emeryville.ca.mail.comcast.net with comcast id EKJj1f0040cQ2SLABQnu93; Mon, 04 Oct 2010 00:47:54 +0000 Received: from comcast.net ([98.203.142.76]) by omta10.emeryville.ca.mail.comcast.net with comcast id EQns1f0021f6R9u8WQnsGi; Mon, 04 Oct 2010 00:47:53 +0000 Received: by comcast.net (sSMTP sendmail emulation); Sun, 03 Oct 2010 17:47:51 -0700 Date: Sun, 3 Oct 2010 17:47:51 -0700 From: Charlie Kester To: freebsd-ports@freebsd.org Message-ID: <20101004004751.GA74984@comcast.net> Mail-Followup-To: freebsd-ports@freebsd.org References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: X-Mailer: Mutt 1.5.20 X-Composer: Vim 7.2 User-Agent: Mutt/1.5.20 (2009-06-14) Subject: Re: porting: Linux to Freebsd 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, 04 Oct 2010 00:47:55 -0000 On Fri 01 Oct 2010 at 23:42:30 PDT Chetan Shukla wrote: >Hi, >Could someone please outline the steps needed in porting a general >application from Linux to FreeBSD. As others have already pointed out, there are no shortcuts to the righthand side of the learning curve. For most apps, the usual "configure; make; make install" works. It's when it doesn't that you need to be able to draw on the kind of experience that puts you on the righthand side of the curve. In some cases, you really do need to be able to debug and write some code yourself. Apps written in Python or Perl tend to port fairly easily, because the folks who have ported the languages and their main libraries have already done most of the hard work. C and C++ apps, on the other hand, are more likely to surface differences in the Linux and FreeBSD API's. If you're porting one of those, you need to be willing and able to dig in and research those APIs. For a good grounding in the UNIX API's, I'd recommend the Stevens/Rago book "Advanced Programming in the UNIX Environment". The Avoiding Linuxisms article also has a lot of useful information. The Porter's Handbook contains most of what you'll need to know once you've got the app built and running OK and you want to add it to the portstree. (I say "most" because you'll still need to have some profiency with BSD makefiles, and the Handbook doesn't teach you that.) From owner-freebsd-ports@FreeBSD.ORG Mon Oct 4 01:11:46 2010 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 E82E1106566B for ; Mon, 4 Oct 2010 01:11:46 +0000 (UTC) (envelope-from dereckson@espace-win.org) Received: from mail-qy0-f175.google.com (mail-qy0-f175.google.com [209.85.216.175]) by mx1.freebsd.org (Postfix) with ESMTP id A7A228FC13 for ; Mon, 4 Oct 2010 01:11:46 +0000 (UTC) Received: by qyk8 with SMTP id 8so2391656qyk.13 for ; Sun, 03 Oct 2010 18:11:45 -0700 (PDT) MIME-Version: 1.0 Received: by 10.229.1.163 with SMTP id 35mr6158435qcf.299.1286153268950; Sun, 03 Oct 2010 17:47:48 -0700 (PDT) Sender: dereckson@espace-win.org Received: by 10.229.83.209 with HTTP; Sun, 3 Oct 2010 17:47:48 -0700 (PDT) In-Reply-To: <201009291623.11001.lumiwa@gmail.com> References: <201009291623.11001.lumiwa@gmail.com> Date: Mon, 4 Oct 2010 02:47:48 +0200 X-Google-Sender-Auth: 84A_W7iXZKzorXuMcjaQ-t4bfxo Message-ID: From: Dereckson To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: ajtiM , Guido Falsi Subject: Re: pokerTH 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, 04 Oct 2010 01:11:47 -0000 Good evening, I contacted the port maintainer Thursday evening. All is fine, he already submitted an update the Tuesday. See http://www.freebsd.org/cgi/query-pr.cgi?pr=3D151020 -- S=E9bastien Santoro aka Dereckson http://www.dereckson.be/ ---------- Forwarded message ---------- From: Guido Falsi Date: Sun, Oct 3, 2010 at 11:11 PM Subject: Re: Fwd: pokerTH To: S=E9bastien Santoro On 09/30/10 04:52, S=E9bastien Santoro wrote: > > Good evening, > > There is a request on the FreeBSD ports mailing list from an user who > wish to know if you could update your port. Hi! Thank you for the information. I already answered this request I think. I filed a PR for this update: http://www.freebsd.org/cgi/query-pr.cgi?pr=3D151020 it should be committed in a few days. -- Guido Falsi From owner-freebsd-ports@FreeBSD.ORG Mon Oct 4 08:07:07 2010 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 1F2B5106566B; Mon, 4 Oct 2010 08:07:07 +0000 (UTC) (envelope-from SNasonov@BCC.RU) Received: from extmx.bcc.ru (extmx.bcc.ru [217.170.85.214]) by mx1.freebsd.org (Postfix) with ESMTP id 96E6B8FC12; Mon, 4 Oct 2010 08:07:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by extmx.bcc.ru (Postfix) with ESMTP id E8F32E60B; Mon, 4 Oct 2010 11:38:32 +0400 (MSD) Received: from extmx.bcc.ru ([127.0.0.1]) by localhost (extmx.bcc.ru [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06577-07; Mon, 4 Oct 2010 11:38:31 +0400 (MSD) Received: from mail.bcc (unknown [172.16.250.23]) by extmx.bcc.ru (Postfix) with ESMTP id E6BA7F922; Mon, 4 Oct 2010 11:38:31 +0400 (MSD) Received: from snasonovnbwxp.bcc ([192.168.201.205]) by mail.bcc over TLS secured channel with Microsoft SMTPSVC(6.0.3790.1830); Mon, 4 Oct 2010 11:42:36 +0400 From: Sergey G Nasonov Organization: BCC To: freebsd-x11@freebsd.org, jimmiejaz@gmail.com Date: Mon, 4 Oct 2010 11:42:58 +0400 User-Agent: KMail/1.13.5 (FreeBSD/8.1-STABLE; KDE/4.5.1; i386; ; ) References: <4CA3E322.9050501@gmail.com> In-Reply-To: <4CA3E322.9050501@gmail.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <201010041142.58737.snasonov@bcc.ru> X-OriginalArrivalTime: 04 Oct 2010 07:42:36.0619 (UTC) FILETIME=[B6ACF1B0:01CB6397] X-Virus-Scanned: amavisd-new at bcc.ru Cc: ports@freebsd.org, x11@freebsd.org Subject: Re: FreeBSD Port: xf86-video-ati-6.13.0 update to 6.13.2? 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, 04 Oct 2010 08:07:07 -0000 On Thursday 30 September 2010 05:08:50 Jimmie James wrote: > >>>> Now i'm running with 6.13.2, but my graphical errors are the same. > >>>> I have a screenshot make of my errors. > >>> > >>> Please don't send image attachments to the mailing lists. Having said > >>> that, it looks bad. > >>> > >>> Comparing your xorg.conf to the sample at > >>> http://www.wonkity.com/~wblock/radeon/x1650/xorg.conf might reveal > >>> something useful. > >>> > >> Have compared it and some settings tested, but doesn't help. > > > Well, there are the standard tricks. Disable composite, maybe disable acceleration even though it should work. > > > > The card works in other operating systems, right? > > I also have the same issue, and updated this ati driver. > > pciconf: > ATI RADEON X300/X550/X1050 Series (RV370) > dmesg |grep vga: > vgapci0: port 0x9800-0x98ff mem > 0xd8000000-0xdfffffff,0xffa20000-0xffa2ffff irq 16 at device 0.0 on pci1 > drm0: on vgapci0 > vgapci0: child drm0 requested pci_enable_busmaster > vgapci1: mem 0xffa30000-0xffa3ffff at device > 0.1 on pci1 > vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 > > http://pastebin.com/pvgj9NLt xorg.conf (with ati commented out, using > vesa at the moment) > http://pastebin.com/ZpJgbLpi Xorg.log.0 > http://i.imgur.com/S1aCb.png screen and font corruption while using the > ATI driver, which happens at all resolutions and depths. > > The previous version of Xorg worked perfectly with this card/setup. and > there's no evidence using any liveCD with an ATI driver. > > P.S Sorry if I missed anyone on the C.C. > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" > At home I have PC with FBSD 8 Stable. Video card is ATI HD 5750. This card worked fine only with vesa driver. After release ATI driver 6.13.2 I tried this and get screen corruption. For me it was some progress because older version ati drivers (6.13.0. and 6.13.1) led to lockup at X start. These screen corruptions was resolved after mesa upgrade to version 7.8.2. Currently mesa version in ports is 7.4.4. So maybe there is benefit for upgrade mesa version in ports to latest. All whats need for upgrade mesa is just modify Makefiles. I am tested only this card (HD 5750) and dont know how latest mesa verison will work with another video cards. PS Sorry for my english. Thanks. -- Best Regards, Nasonov Sergey From owner-freebsd-ports@FreeBSD.ORG Mon Oct 4 11:06:08 2010 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 39EB2106564A for ; Mon, 4 Oct 2010 11:06:08 +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 275C58FC12 for ; Mon, 4 Oct 2010 11:06:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o94B68qC065110 for ; Mon, 4 Oct 2010 11:06:08 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o94B67Jj065108 for freebsd-ports@FreeBSD.org; Mon, 4 Oct 2010 11:06:07 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 4 Oct 2010 11:06:07 GMT Message-Id: <201010041106.o94B67Jj065108@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, 04 Oct 2010 11:06:08 -0000 (Note: an HTML version of this report is available at http://www.freebsd.org/cgi/query-pr-summary.cgi?category=ports .) 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. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/151197 [sysutils/monitorix] Fixed URL for fetch o ports/151196 [NEW PORT] games/inform7: Inform 7 programming languag o ports/151195 Update ports: japanese/yc.el o ports/151193 [MAINTAINER] deskutils/q4wine: update to 0.120 o ports/151192 [mail/horde-imp] Upgrade o ports/151191 [www/horde-base] Upgrade o ports/151190 wine needs prelink o ports/151188 Maintainer update: lang/s9fes o ports/151182 Port munin-node creates wrong newsyslog.conf entry f ports/151175 [PATCH] sysutils/xfce4-cpugraph-plugin to 1.0.0, chang f ports/151174 [UPDATE] sysutils/xfce4-cpugraph-plugin to 1.0.0 o ports/151172 [ports] graphics/mesa-demos marked as broken with WITH o ports/151171 Update port: print/latex-etoolbox update to 2.0a o ports/151165 php 5.3.3_2 has undocumented version dependence on pcr o ports/151163 [MAINTAINER] net-im/centerim-devel: Update to 4.22.9.3 o ports/151162 sysutils/gdisk needs to be updated to 0.6.11 o ports/151161 [PATCH] textproc/rst.el: update to 6390 o ports/151157 [PATCH] graphics/sane-backends: link with pthread o ports/151156 Update port: databases/ocaml-pgocaml f ports/151154 audio/amarok-kde4 crashes on network activity if ports f ports/151153 Update of cad/linux-eagle5 to the most recent version o ports/151140 USE_PERL5_BUILD in lang/gcc* ports fails to compile o ports/151126 deskutils/fet: Software update f ports/151118 net-mgmt/pnp: bump version to 0.6.7 o ports/151113 www/py-django-registration - fix breakage o ports/151110 mysqlbackup 2.4 incompatability with mysql Ver 14.14 D o ports/151087 sysutils/pcpustat: Update Makefile to be compatible wi o ports/151077 NEW port devel/gdb72 o ports/151062 New port: www/trac-OhlohWidgetsMacro Trac macro to emb o ports/151060 Update ports: japanese/yc.el o ports/151058 New port: devel/py-pycerberus Highly flexible, no magi o ports/151005 New port: www/peraperaprv, a pure java twitter client o ports/151001 Update port net/ipa_ip6fw to 1.0.2 version o ports/150974 www/cybercalendar : port fix / deprecate o ports/150973 [NEW PORT] games/inform7: Inform 7 programming languag o ports/150937 [REPOCOPY] www/typo3 --> www/typo343 o ports/150900 net-p2p/gift-fasttrack: deprecate umaintained gift-plu o ports/150896 [PATCH] Unbreak, restore editors/xml2rfc-xxe4.6.1 and o ports/150895 astro/stellarium and games/viruskiller [Segmentation f f ports/150883 Ports games/openastromenace won't compile on 64 bit o ports/150881 [patch] sysutils/backuppc: remove %%RC_SUBR%%, etc. o ports/150879 [NEW PORT] sysutils/downtimed: System downtime monitor o ports/150863 Update port: www/piwigo (former phpwebgallery) update o ports/150790 New port: mail/dovecot20-pigeonhole o ports/150789 New port: mail/dovecot20 f ports/150783 mail/qpopper: fails to configure ocasionally f ports/150770 [patch] devel/geany v0.19 o ports/150765 [Maintainer Update] Give sysutils/radmind its own UID/ f ports/150757 [patch] update astro/merkaartor to 0.16.3 o ports/150743 New port: graphics/commons-utilities o ports/150728 [PATCH] sysutils/duplicity-devel: update to 0.6.10 o ports/150698 [patch] graphics/mupdf: restore some vendor CFLAGS o ports/150683 New port: devel/dragon, Combined C++ scanner/parser ge o ports/150653 OGG/Vorbis playback with multimedia/mplayer is broken o ports/150608 Mk/bsd.license.mk Add OWL license o ports/150605 [PATCH] audio/liblastfm: Fix build with alternate LOCA o ports/150592 AX_BOOST_FILESYSTEM macro from devel/autoconf-archive o ports/150574 [PATCH] mail/dkimproxy: Simplify the rc scripts o ports/150563 bugfix for /usr/ports/lang/p5-JavaScript-SpiderMonkey f ports/150542 [new port] createrepo - creates rpm metadata for yum o ports/150541 [new port] sysutils/yum - Installer/updater for rpm o ports/150493 Update for: security/openssh-portable port from 5.2p1 o ports/150489 [NEW PORT] devel/d-feet: D-Feet is a D-Bus debugger wr o ports/150446 New port: lang/rexx-regutil o ports/150425 www/squid31: rc.d/squid's squid_fib setting ineffectiv f ports/150423 [PATCH] Upgrade www/p5-Mojo to devel/p5-Mojolicious (v f ports/150376 port net-mgmt/zabbix-server 1.8.3 fails to build on 8. o ports/150361 [patch] provide script to bind with nautilus for multi o ports/150333 x11/lxpanel: forced dependency with WITH_ALSA o ports/150316 new port: net/neatx f ports/150294 news/hellanzb fails to run due to string compare bug f ports/150283 security/l5 produces wrong output on amd64 o ports/150266 New port: x11/tabbed Simple generic tabbed fronted to f ports/150235 sysutils/smartmontools build system bug f ports/150233 conky 1.8 broken (sysutils/conky) o ports/150208 [new port] databases/jasperserver: Open Source Java Re f ports/150194 There is no startup script for databases/cassandra f ports/150169 www/havp: Assertion failed: file llvm/lib/System/Mutex f ports/150146 [PATCH] net/igmpproxy: fix rc script o ports/150145 [patch] ftp/smbftpd port rewrite configuration files o o ports/150086 [NEW PORT] net-im/tkabber-plugins-devel: External Plug f ports/150047 net/ipv6socket_scrub: Makefile contains incorrect URL f ports/149963 chinese/ibus-chewing: Refine FETCH_ARGS o ports/149947 [NEW PORT] devel/smartCVS, a powerful graphical CVS cl o ports/149928 New port: textproc/iText iText, a JAVA-PDF library by o ports/149892 [NEW PORT] textproc/weka-devel: Data Mining Software i o ports/149849 New Port : print/scribus-devel - Scribus is a desktop o ports/149817 ports-mgmt/portupgrade: portinstall -p option doesn't f ports/149816 devel/icu4: install forget to install the lib libicute o ports/149725 [patch] devel/cdk: Errors in examples of cdk_display(3 o ports/149682 New port:net/gogonet_c gogoCLIENT offers IPv6 connecti o ports/149674 [patch] sysutils/fusefs-kmod: ftruncate() sycall on FU f ports/149616 [PATCH] textproc/ibus: update to 1.3.7 o ports/149601 New port: games/gargoyle - a multiplatform interacti f ports/149565 Update port: converters/igbinary o ports/149564 patch for various games/ adding appropriate LICENSEs t f ports/149547 [PATCH] net/igmpproxy: prevent deletion of configfile f ports/149507 security/libprelude missing configure option o ports/149348 New port: net/wowzamediaserver o ports/149305 Small security fix and transcoding profile fix to net/ o ports/149196 [PATCH] chinese/zh-ibus-chewing: update to 1.3.6.20100 f ports/149127 [PATCH] net/beacon: allow compilation on non-i386 arch o ports/149069 new port: sysutils/hfsexplorer HFSExplorer read Mac-fo f ports/149020 sysutils/dvdisaster Inappropriate ioctl for device wit f ports/148919 graphics/mapnik not longer broken o misc/148871 bad packages: p5-XML-Parser-2.36_1 p5-XML-SAX-Expat-0. o ports/148605 security/ipsec-tools rc.d/racoon startup script fails f ports/148519 New port: devel/pear-PHP_Debug Port for the PEAR PHP_D f ports/148462 [New port] www/wordpress-themes: wordpress featured th f ports/148454 games/freebsd-carddeck-kde4: freebsd's kde card deck d o ports/148415 new port: devel/libsysinfo, GNU libc's sysinfo port fo o ports/148411 New port: audio/madfufw M-Audio DFU Firmware for USB s o ports/148398 [NEW PORT] net/omcmd: CLI utility for performing OMAPI f ports/148316 net/quagga 0.99.16 - OSPF broken o ports/148234 pkg_install fails for some math/octave-forge ports o ports/148090 [PATCH] security/ike: update to 2.1.5 o ports/147944 [NEW PORT] net/gogoc: GogoCLIENT, which is needed to c o ports/147943 New port: net/radsecproxy Radsecproxy is a generic RAD s ports/147829 Improved net/ucarp startup script: multiple VHID and F f ports/147669 science/gramps fails to start o ports/147660 new port: net-im/pidgin-mra, Mail.ru Agent protocol pl s ports/147457 Update port: devel/ptlib26 o ports/147242 ports-mgmt/portupgrade incorrectly remove old port whe o ports/146934 [NEW PORT] japanese/unzip NLS patched unzip. import fr o ports/146913 ports/databases/skytools failed to make package if Pos o ports/146895 [NEW PORT] emulators/linux-libusb -- linux(4)-friendly o ports/146880 [MAINTAINER] korean/ko.TeX : update to 0.2.0.20100511 o ports/146879 [MAINTAINER] korean/ko.TeX-fonts-extra : update to 0.2 o ports/146858 [patch] ports-mgmt/portupgrade-devel: respect LOCALBAS o ports/146830 multimedia/pvr_xxx does not compile on FreeBSD 8.* and o ports/146818 [update] games/openarena latest release f ports/146801 can't build graphics/py-opengl because math/py-numpy f o ports/146713 [patch] net-mgmt/argus-monitor update o ports/146641 [MAINTAINER] sysutils/gosa: update to 2.6.10 o ports/146392 [NEW PORT] devel/php5-thrift: PHP interface to Thrift f ports/145966 port devel/pwlib fails to build: cast error: patch att o ports/145704 [patch] Update-request: audio/xmms2-scrobbler o ports/145076 I could not build devel/pwlib o ports/144993 databases/postgresql-odbc: contents of numeric fields o ports/144857 [patch] audio/abraca: update to 0.4.3 o ports/144849 [new port] java/eclipse-eclemma code coverage for ecli o ports/144821 [patch] audio/xmms2 : update to version 0.7 DrNo. o ports/144769 [PATCH] ports-mgmt/portupgrade should have a configura o ports/144605 [PATCH] Get ports-mgmt/portupgrade to build under Ruby o ports/144597 security/openssh-portable fails to compile with KERBER o ports/144555 graphics/mesagl: glutMainLoop() crashes when using VBO o ports/144412 Update port: mail/tkrat2 (Use latest tcl/tk versions) o ports/144248 net/asterisk16 conflicts with linuxthreads o ports/143938 [NEW PORTS] textproc/linux-f10-ibus-qt et al.: Linux v o ports/143566 sysutils/diskcheckd runs constantly when using gmirror o ports/142824 [patch] security/openssh-portable: add VersionAddendum f ports/141103 net/stone strange behavior on 8.0-RELEASE o ports/141001 net/ssltunnel-server/ depends on /sbin/pppd o ports/140880 ports-mgmt/portupgrade: portversion confused with ezm3 f ports/140867 net-mgmt/nagios-plugins: check_icmp default packets si o ports/140364 ports-mgmt/portupgrade-devel: #! line substitution is s ports/140303 net-mgmt/docsis can not compile filters under amd64 pl o ports/140273 ports-mgmt/portupgrade-devel chokes on bsdpan pkgs o ports/140008 ports-mgmt/portupgrade: many papercut omissions on por o ports/139867 mail/isoqlog catch segmentation fault under AMD64 f ports/139203 sysutils/freebsd-snapshot more careful patch not depen o ports/138929 [PATCH] security/heimdal update to 1.2.1 o ports/138602 audio/sphinxbase port update o ports/137958 ports-mgmt/portupgrade fails with recursive dependency o ports/137708 ports-mgmt/portupgrade: portupgrade -cRn is broken o ports/137378 Advisory locks fail with ports/security/cfs on FreeBSD o ports/135691 ports-mgmt/portupgrade Wrong example in man page of pk o ports/134714 ports-mgmt/portupgrade deletes user data without quest o ports/134182 ports-mgmt/portupgrade incorrectly handles manual reje a ports/133773 net/keepalived port update request o ports/133723 net/asterisk16: asterisk-1.6.0.9 crash when load chan_ o ports/133563 security/cfs rc script needs "mntudp" option on 8-CURR o ports/131111 ports-mgmt/portupgrade-devel: completely removes packa o ports/129930 ports-mgmt/portupgrade - portinstall tries to install o ports/129891 ports-mgmt/portupgrade fails to recognize variations o o ports/128952 [NEW PORT] java/javadb: Sun's supported distribution o o ports/128881 ports-mgmt/portupgrade backtrace o ports/127889 ports-mgmt/portupgrade detects spurious failures and s o ports/127321 japanese/kon2-16dot: buffer overflow and mouse bugs s ports/127087 mail/bincimap port does not include an rc.d file o ports/127019 ports-mgmt/portupgrade does not recognize fail conditi o ports/126140 ports-mgmt/portupgrade runtime error o ports/125936 ports-mgmt/portupgrade -R fails if BUILD_DEP's are not s ports/125324 editors/the (3.2) looses cursor when compiled with PDC o ports/123068 sysutils/bubblemon2 bubblemon-dockapp: error extractin o ports/121259 New port: net/openamq OpenAMQ is a complete AMQP messa o ports/118716 security/heimhal - shared library conflict with heimda o ports/114611 [NEW PORT] net-p2p/freenet05: An anonymous censorship- o ports/112818 ports-mgmt/portupgrade -a fails with database error o ports/107816 [patch] The IPv6 patch breaks the location feature of o ports/82634 security/heimdal port conflict with base heimdal o ports/80111 patch to make WITH_KERBEROS4 working for security/cyru s ports/57498 HEIMDAL_HOME should be defined in src or ports Makefil 193 problems total. From owner-freebsd-ports@FreeBSD.ORG Mon Oct 4 11:33:51 2010 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 C190D106564A; Mon, 4 Oct 2010 11:33:51 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from mail.ebusiness-leidinger.de (mail.ebusiness-leidinger.de [217.11.53.44]) by mx1.freebsd.org (Postfix) with ESMTP id 745538FC14; Mon, 4 Oct 2010 11:33:51 +0000 (UTC) Received: from outgoing.leidinger.net (p57B3B4E4.dip.t-dialin.net [87.179.180.228]) by mail.ebusiness-leidinger.de (Postfix) with ESMTPSA id B38DF84400A; Mon, 4 Oct 2010 13:15:10 +0200 (CEST) Received: from webmail.leidinger.net (unknown [IPv6:fd73:10c7:2053:1::2:102]) by outgoing.leidinger.net (Postfix) with ESMTP id B753E1646; Mon, 4 Oct 2010 13:15:07 +0200 (CEST) Received: (from www@localhost) by webmail.leidinger.net (8.14.4/8.13.8/Submit) id o94BF4CR097376; Mon, 4 Oct 2010 13:15:04 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from pslux.ec.europa.eu (pslux.ec.europa.eu [158.169.9.14]) by webmail.leidinger.net (Horde Framework) with HTTP; Mon, 04 Oct 2010 13:15:04 +0200 Message-ID: <20101004131504.790553t2r4kpcpwk@webmail.leidinger.net> Date: Mon, 04 Oct 2010 13:15:04 +0200 From: Alexander Leidinger To: Doug Barton References: <19625.2146.758021.796409@gossamer.timing.com> <4CA90A78.5010806@FreeBSD.org> In-Reply-To: <4CA90A78.5010806@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Dynamic Internet Messaging Program (DIMP) H3 (1.1.4) X-EBL-MailScanner-Information: Please contact the ISP for more information X-EBL-MailScanner-ID: B38DF84400A.A5FDC X-EBL-MailScanner: Found to be clean X-EBL-MailScanner-SpamCheck: not spam, spamhaus-ZEN, SpamAssassin (not cached, score=1.274, required 6, autolearn=disabled, RDNS_NONE 1.27) X-EBL-MailScanner-SpamScore: s X-EBL-MailScanner-From: alexander@leidinger.net X-EBL-MailScanner-Watermark: 1286795711.40698@+T0+ZrCsJ9Z+J1IYj/NORw X-EBL-Spam-Status: No Cc: "Philip M. Gollucci" , freebsd-ports@FreeBSD.org, John Hein Subject: Re: ident strings in pkg-plist 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, 04 Oct 2010 11:33:51 -0000 Quoting Doug Barton (from Sun, 03 Oct 2010 15:58:00 -0700): > Changing the list to have a real discussion about this. > > On 10/3/2010 3:49 PM, John Hein wrote: >> I'll mention that >> it has come in handy for me in the past. I put it into the category >> of ident strings in binaries. It has a similar utility. >> >> Because I find it useful in maintaining and using a port/package, >> I've been one that has added it to pkg-plist in the past. > > I'm curious about what your use case for the information is. You can > always know if you have the latest version of the plist via cvs, > c[v]sup, portsnap, etc. Other than knowing that you have the latest > version, what utility does the $Id string in the file itself have? I see a value in this if: - you use a port with non-default options which change the plist and - a change is made to the plist which affects your use case, but the revision of the port is not changed (because the change only affects the non-default options and as such do not change the default package) Normally you can not detect after a while if the plist in the port is what is used in /var/db/pkg or not (the dates in /var/db/pkg may change when portupgrade is used). If this matters and rectifies a new rule to include an ident string into the plist or not... personally I wouldn't object if it is added. Bye, Alexander. -- This is the sort of English up with which I will not put. -- Winston Churchill http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 From owner-freebsd-ports@FreeBSD.ORG Mon Oct 4 16:15:32 2010 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 CBFC2106564A for ; Mon, 4 Oct 2010 16:15:32 +0000 (UTC) (envelope-from frivoal@gmail.com) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 912748FC08 for ; Mon, 4 Oct 2010 16:15:32 +0000 (UTC) Received: by iwn34 with SMTP id 34so160241iwn.13 for ; Mon, 04 Oct 2010 09:15:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:content-type:cc:to:subject :date:mime-version:content-transfer-encoding:from:message-id :user-agent; bh=bPxlUp4YfrkR5E9ngS+u0Z89wWhWTgrV4mtPS/qsfoM=; b=O/XBSWu/eQjI7JOqR65gz3BBZMMsTwagyXU+3BSkMXYSrFpIf7fUEyiQubRpuxFzZv P7hdbLyZ/k2P1qSff5YIkR8VGddqe7gTVfqUdlU3qtIDe69l03kkPaW/lARpX3/Cm8pe ynyxDEUOOVzGDYXG04tCUOGrkWjwFP9e6xqUY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=content-type:cc:to:subject:date:mime-version :content-transfer-encoding:from:message-id:user-agent; b=Ns1Wj/RixikMVJVW+y9D/JVkpIvnCSLtccigRl63QeLCwFq613e8kVtVLlgepnoUwt X+gwIqNjORYpljSGyVDr9QIKD6zQ3zy9sywkrAaV5cgMovc0DmZhN5pt6l5xmW+dO7VP hLtpHC7a2clu6ykubBl3ewZKya4xhQGcXCLXU= Received: by 10.231.174.136 with SMTP id t8mr10362627ibz.158.1286207373914; Mon, 04 Oct 2010 08:49:33 -0700 (PDT) Received: from localhost.localdomain (i60-35-190-246.s04.a013.ap.plala.or.jp [60.35.190.246]) by mx.google.com with ESMTPS id d13sm3190408ibb.20.2010.10.04.08.49.32 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 04 Oct 2010 08:49:33 -0700 (PDT) Content-Type: text/plain; charset=utf-8; format=flowed; delsp=yes To: fbsd@opal.com Date: Tue, 05 Oct 2010 00:49:29 +0900 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: "Florian Rivoal" Message-ID: User-Agent: Opera Mail/10.62 (Linux) Cc: ports@freebsd.org Subject: FreeBSD Port: xfce4-cpugraph-plugin-0.3.0_14 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, 04 Oct 2010 16:15:32 -0000 Hi, I just released a new version (1.0.0) of xfce4-cpugraph-plugin. Compared to the 0.3.0 you currently have, it fixes many bugs and introduces a fair amount of features, and the code has been significantly clean up. Unlike the previous 0.4.0, support for FreeBSD has been added back in 1.0.0. It is targeted at xfce4.6, rather than the upcoming 4.7/4.8, so there is no particular reason to wait before upgrading it. Also, I don't really plan to make more releases targeting 4.6, and the following ones will be focused on 4.7/4.8. I don't know when the next version of FreeBSD will ship, nor when xfce 4.7 will turn into 4.8, but if FreeBSD was to ship with xfce4.6, I'd strongly recommend using version 1.0.0 of cpugraph instead of the 0.3.0 that you currently have. tarball: http://archive.xfce.org/src/panel-plugins/xfce4-cpugraph-plugin/1.0/ homepage: http://goodies.xfce.org/projects/panel-plugins/xfce4-cpugraph-plugin If FreeBSD or FreeBSD users have any issue with xfce4-cpugraph-plugin, please report them in xfce's bug tracker. This project was unmaintained for a while, but I now took over, and I'll try to be responsive. Best regards, Florian From owner-freebsd-ports@FreeBSD.ORG Mon Oct 4 17:29:06 2010 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 0871E106564A for ; Mon, 4 Oct 2010 17:29:06 +0000 (UTC) (envelope-from fbsd@opal.com) Received: from mho-02-ewr.mailhop.org (mho-02-ewr.mailhop.org [204.13.248.72]) by mx1.freebsd.org (Postfix) with ESMTP id CD4748FC12 for ; Mon, 4 Oct 2010 17:29:05 +0000 (UTC) Received: from pool-151-203-240-132.bos.east.verizon.net ([151.203.240.132] helo=homobox.opal.com) by mho-02-ewr.mailhop.org with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1P2oMU-0003O7-89; Mon, 04 Oct 2010 16:58:02 +0000 Received: from opal.com (localhost [IPv6:::1]) (authenticated bits=0) by homobox.opal.com (8.14.3/8.14.3) with ESMTP id o94GvxEx082741 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 4 Oct 2010 12:58:00 -0400 (EDT) (envelope-from fbsd@opal.com) Received: from shibato.opal.com ([173.56.129.164] helo=shibato.opal.com) with IPv4:587 by opal.com; 4 Oct 2010 12:57:59 -0400 X-Mail-Handler: MailHop Outbound by DynDNS X-Originating-IP: 151.203.240.132 X-Report-Abuse-To: abuse@dyndns.com (see http://www.dyndns.com/services/mailhop/outbound_abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX1/AIkSIPBkoZnunvfV/eDmD Date: Mon, 4 Oct 2010 12:57:58 -0400 From: "J.R. Oldroyd" To: "Florian Rivoal" Message-ID: <20101004125758.01203660@shibato.opal.com> In-Reply-To: References: X-Mailer: Claws Mail 3.7.6 (GTK+ 2.20.1; amd64-portbld-freebsd8.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org Subject: Re: FreeBSD Port: xfce4-cpugraph-plugin-0.3.0_14 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, 04 Oct 2010 17:29:06 -0000 On Tue, 05 Oct 2010 00:49:29 +0900, "Florian Rivoal" wrote: > > Hi, > > I just released a new version (1.0.0) of xfce4-cpugraph-plugin. Compared > to the 0.3.0 you currently have, it fixes many bugs and introduces a fair > amount of features, and the code has been significantly clean up. > > Best regards, > > Florian Portupdate already in progress. See PR ports/151175. -jr From owner-freebsd-ports@FreeBSD.ORG Mon Oct 4 18:57:12 2010 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 69EE11065670 for ; Mon, 4 Oct 2010 18:57:12 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx21.fluidhosting.com [204.14.89.4]) by mx1.freebsd.org (Postfix) with ESMTP id 0EBF88FC08 for ; Mon, 4 Oct 2010 18:57:10 +0000 (UTC) Received: (qmail 17751 invoked by uid 399); 4 Oct 2010 18:57:10 -0000 Received: from localhost (HELO ?192.168.0.142?) (dougb@dougbarton.us@127.0.0.1) by localhost with ESMTPAM; 4 Oct 2010 18:57:10 -0000 X-Originating-IP: 127.0.0.1 X-Sender: dougb@dougbarton.us Message-ID: <4CAA2388.2050308@FreeBSD.org> Date: Mon, 04 Oct 2010 11:57:12 -0700 From: Doug Barton Organization: http://SupersetSolutions.com/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.9) Gecko/20100915 Thunderbird/3.1.4 MIME-Version: 1.0 To: Alexander Leidinger References: <19625.2146.758021.796409@gossamer.timing.com> <4CA90A78.5010806@FreeBSD.org> <20101004131504.790553t2r4kpcpwk@webmail.leidinger.net> In-Reply-To: <20101004131504.790553t2r4kpcpwk@webmail.leidinger.net> X-Enigmail-Version: 1.2a1pre OpenPGP: id=1A1ABC84 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: "Philip M. Gollucci" , freebsd-ports@FreeBSD.org, John Hein Subject: Re: ident strings in pkg-plist 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, 04 Oct 2010 18:57:12 -0000 On 10/4/2010 4:15 AM, Alexander Leidinger wrote: > Quoting Doug Barton (from Sun, 03 Oct 2010 15:58:00 > -0700): > >> Changing the list to have a real discussion about this. >> >> On 10/3/2010 3:49 PM, John Hein wrote: >>> I'll mention that >>> it has come in handy for me in the past. I put it into the category >>> of ident strings in binaries. It has a similar utility. >>> >>> Because I find it useful in maintaining and using a port/package, >>> I've been one that has added it to pkg-plist in the past. >> >> I'm curious about what your use case for the information is. You can >> always know if you have the latest version of the plist via cvs, >> c[v]sup, portsnap, etc. Other than knowing that you have the latest >> version, what utility does the $Id string in the file itself have? > > I see a value in this if: > - you use a port with non-default options which change the plist > and > - a change is made to the plist which affects your use case, > but the revision of the port is not changed (because the change > only affects the non-default options and as such do not change > the default package) > > Normally you can not detect after a while if the plist in the port is > what is used in /var/db/pkg or not (the dates in /var/db/pkg may change > when portupgrade is used). > > If this matters and rectifies a new rule to include an ident string into > the plist or not... personally I wouldn't object if it is added. I think I understand what you're describing here, and if so you could probably count the number of people it would apply to on one hand. :) I'm not sure justifies adding it to all ports. In fact, my vote would be to remove it from all ports where it exists currently, but I really don't want to push that rock up hill. Doug -- Breadth of IT experience, and | Nothin' ever doesn't change, depth of knowledge in the DNS. | but nothin' changes much. Yours for the right price. :) | -- OK Go http://SupersetSolutions.com/ From owner-freebsd-ports@FreeBSD.ORG Mon Oct 4 19:00:07 2010 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 BDD96106566C for ; Mon, 4 Oct 2010 19:00:07 +0000 (UTC) (envelope-from freebsd-ports@m.gmane.org) Received: from lo.gmane.org (lo.gmane.org [80.91.229.12]) by mx1.freebsd.org (Postfix) with ESMTP id 6A0618FC19 for ; Mon, 4 Oct 2010 19:00:07 +0000 (UTC) Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1P2qGZ-0008NG-EV for freebsd-ports@freebsd.org; Mon, 04 Oct 2010 21:00:03 +0200 Received: from p5dcd7085.dip.t-dialin.net ([93.205.112.133]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 04 Oct 2010 21:00:03 +0200 Received: from jumper99 by p5dcd7085.dip.t-dialin.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 04 Oct 2010 21:00:03 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: "Helmut Schneider" Date: Mon, 4 Oct 2010 18:57:35 +0000 (UTC) Lines: 12 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: p5dcd7085.dip.t-dialin.net User-Agent: XanaNews/1.19.1.269 X-Ref: news.gmane.org ~XNS:00000071 Subject: How long does a repocopy take? 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, 04 Oct 2010 19:00:07 -0000 Hi, sorry for my impatience but I asked for a repocopy about one week ago and now I'm wondering how long normally a repocopy takes. http://www.freebsd.org/cgi/query-pr.cgi?pr=150937 Thanks, Helmut -- No Swen today, my love has gone away My mailbox stands for lorn, a symbol of the dawn From owner-freebsd-ports@FreeBSD.ORG Mon Oct 4 20:01:05 2010 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 014E4106566B for ; Mon, 4 Oct 2010 20:01:05 +0000 (UTC) (envelope-from ml@netfence.it) Received: from cp-out7.libero.it (cp-out7.libero.it [212.52.84.107]) by mx1.freebsd.org (Postfix) with ESMTP id 8C8398FC19 for ; Mon, 4 Oct 2010 20:01:04 +0000 (UTC) Received: from soth.ventu (151.51.54.64) by cp-out7.libero.it (8.5.107) id 4C9778C301DE7278; Mon, 4 Oct 2010 22:00:31 +0200 Received: from alamar.ventu (alamar.ventu [10.1.2.18]) by soth.ventu (8.14.4/8.14.4) with ESMTP id o94K0Qio057176; Mon, 4 Oct 2010 22:00:26 +0200 (CEST) (envelope-from ml@netfence.it) Message-ID: <4CAA325A.6060506@netfence.it> Date: Mon, 04 Oct 2010 22:00:26 +0200 From: Andrea Venturoli User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; it-IT; rv:1.9.2.9) Gecko/20100917 Thunderbird/3.1.4 MIME-Version: 1.0 To: freebsd-ports@freebsd.org, rde@tavi.co.uk References: <4C9A6F48.6000107@netfence.it> <20100922225856.0891aee7@raksha.tavi.co.uk> In-Reply-To: <20100922225856.0891aee7@raksha.tavi.co.uk> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.68 on 10.1.2.13 Cc: timur@freebsd.org, airlied@samba.org Subject: Re: Upgrading Samba 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, 04 Oct 2010 20:01:05 -0000 On 09/22/10 23:58, Bob Eager wrote: Thanks for your answer. > My logbook says that it wanted to use /var/run/samba34 (a directory) > instead of the previous default. That was easy. In fact, yes, I too had to copy some files around, but that was more than easy. > Probably wasn't necessary, but I moved smbusers > to /usr/local/etc/samba34, and updated smb.conf. I did the same with smbpasswd. > Also that smbd wouldn't start because it needed the avahi-app package > (and dependencies) but this presumably wasn't listed as a dependency > because I had to install it by hand. No need for that in my case, but I didn't choose avahi in "make config". > I had to re-add the user rights for some reason - YMMV - this may be > the use of different directories for 3.4. Not sure what you mean. In any case, I had samba34 working in a little more than a few minutes, with users still accessing shares, XP machines still doing domain logons and the new W7 box integrated at first try. So far so good, it seemed, but it was not so. First, I noticed profiles could not be copied back on the server at logoff: a quick search pointed to full_audit being buggy and in fact removing it turned out to be the correct workaround. What I find strange is that it is deamed as not working in 3.4.7, but corrected in 3.4.8; this is evidently not true. Later I upgraded to 3.4.9, but had no time to test it again. I will ASAP and eventually report on the Samba newsgroup. The second problem is harder: pam_smb stopped working, so I had domain logons and file sharing ok, but any other service rejecting users. I could not come to any solution to this; I even tried pam_smbpass and setting up winbindd, but to no avail. Time was not on my side, so I ended up putting every password into the UNIX database and forget about PAM for the moment. However I'll have to fix this soon, so I'm in search of any hint on how to debug this. I tried putting "debug" next to pam_smb_auth.so in /etc/pam.d/*, but this didn't help much. Using Postgres (as an example) I get in my logs: xxxxxx pamsmbd[93053]: cache_check: no entry xxxxxx pamsmbd[93053]: server: remote auth user unix:yyyyy nt:yyyyy NTDOM:ZZZZZZ PDC:XXXXXX BDC:XXXXXX xxxxxx postgres[16385]: pamsmbd: Got something back... 3 xxxxxx pamsmbd[93053]: cache_check: no entry xxxxxx pamsmbd[93053]: server: remote auth user unix:yyyyy nt:yyyyy NTDOM:ZZZZZZ PDC:XXXXXX BDC:XXXXXX xxxxxx postgres[16387]: pamsmbd: Got something back... 3 but then: psql: FATAL: PAM authentication failed for user "yyyyy" FATAL: PAM authentication failed for user "yyyyy" In the meantime, I get absolutely nothing in /var/log/samba34/log.smbd. Any hint? bye & Thanks av. From owner-freebsd-ports@FreeBSD.ORG Tue Oct 5 06:21:56 2010 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 09D12106564A for ; Tue, 5 Oct 2010 06:21:56 +0000 (UTC) (envelope-from martymac@FreeBSD.org) Received: from data.galacsys.net (webmail.galacsys.net [217.24.81.215]) by mx1.freebsd.org (Postfix) with ESMTP id C64B98FC13 for ; Tue, 5 Oct 2010 06:21:55 +0000 (UTC) Received: from martymac.org (webmail.galacsys.net [217.24.81.215]) by data.galacsys.net (Postfix) with ESMTP id 20F7F16C727; Tue, 5 Oct 2010 08:03:33 +0200 (CEST) From: "Ganael LAPLANCHE" To: Zahemszky =?ISO-8859-15?Q?G=E1bor?= X-Openwebmail-Date: Tue, 5 Oct 2010 09:03:32 +0200 Message-Id: <20101005055958.M59376@martymac.org> In-Reply-To: <20101002182128.7d3a96e9@Picasso.Zahemszky.HU> References: <20101002182128.7d3a96e9@Picasso.Zahemszky.HU> X-Mailer: Open WebMail 2.01 20030425 X-OriginatingIP: 157.99.64.43 (ganael.laplanche@martymac.org) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Date: Tue, 5 Oct 2010 08:03:33 +0200 (CEST) Cc: riggs@rrr.de, freebsd-ports@freebsd.org Subject: Re: FreeBSD mencoder port 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: Tue, 05 Oct 2010 06:21:56 -0000 On Sat, 2 Oct 2010 18:21:28 +0200, Zahemszky Gábor wrote Hi, > I've just found that libmpcdec has been deprecated in FreeBSD > port. Because of it, there was an mplayer modification. The > only problem is that mencoder has the same libmpcdec > dependency, so it should be updated, too. Yes, you're right ! mencoder had missed libmpcdec removal. This is fixed now. Thanks for your report ! Best regards, -- Ganael LAPLANCHE http://www.martymac.org | http://contribs.martymac.org FreeBSD: martymac , http://www.FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Tue Oct 5 07:39:17 2010 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 7DD49106566C for ; Tue, 5 Oct 2010 07:39:17 +0000 (UTC) (envelope-from makc@issp.ac.ru) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) by mx1.freebsd.org (Postfix) with ESMTP id DD2078FC1F for ; Tue, 5 Oct 2010 07:39:16 +0000 (UTC) Received: from lqc.issp.ac.ru [77.236.34.156:20657] (HELO/EHLO lqc.issp.ac.ru, authenticated with PLAIN) by mail.issp.ac.ru with ESMTP/inet id o957dDaA014698 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Tue, 5 Oct 2010 11:39:13 +0400 (MSD) From: Max Brazhnikov Organization: ISSP RAS To: freebsd-ports@freebsd.org Date: Tue, 5 Oct 2010 11:39:14 +0400 User-Agent: KMail/1.13.5 (FreeBSD/8.1-PRERELEASE; KDE/4.5.1; i386; ; ) References: In-Reply-To: MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <201010051139.15066.makc@issp.ac.ru> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-3.0 (mail.issp.ac.ru [77.236.34.3]); Tue, 05 Oct 2010 11:39:13 +0400 (MSD) Cc: Helmut Schneider Subject: Re: How long does a repocopy take? 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, 05 Oct 2010 07:39:17 -0000 On Mon, 4 Oct 2010 18:57:35 +0000 (UTC), Helmut Schneider wrote: > Hi, > > sorry for my impatience but I asked for a repocopy about one week ago > and now I'm wondering how long normally a repocopy takes. Submit patch vs existing port ask for repocopy. Commiter will request repocopy from portmgr@ From owner-freebsd-ports@FreeBSD.ORG Tue Oct 5 11:05:05 2010 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 4AF91106566B; Tue, 5 Oct 2010 11:05:05 +0000 (UTC) (envelope-from mickael.maillot@gmail.com) Received: from mail-qy0-f175.google.com (mail-qy0-f175.google.com [209.85.216.175]) by mx1.freebsd.org (Postfix) with ESMTP id DD0388FC13; Tue, 5 Oct 2010 11:05:04 +0000 (UTC) Received: by qyk8 with SMTP id 8so518833qyk.13 for ; Tue, 05 Oct 2010 04:05:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=B/WGKF1wFVemsw4B/ANASnbmvBp0pzCDDdGE2MLJt5w=; b=mQSjMzy8vH1mfXj+zz9eFfSgrGWqYDNSYvK2NH8jWa2D8gXpKfcvUAwTTaCP1Ficvt kRXZMLAnGgBcWW8UTck8bdRBmiTQz+TsrmIrO9c1hy9QfsutGRI6XkqSeabsemebFsEa Mqc1eVKtndeWlU5qeEJWdIHuPUwpnjC/BGMTY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=iU27K43vVS0ybd7+fiy3p4DKHY8H97n4xB1KND8AOFq3cKjifUCmOr2dqQNvmZPiVZ 6ARv63HZh99d3dH1C0hlHd6VO14p5nm5AZTIh/LnGWkPEGwfowDUpgfx6bf11qNtICgK qn/TPoHlKym9URFTHdDBfOx6wbX7DBXIyKLlM= MIME-Version: 1.0 Received: by 10.224.10.211 with SMTP id q19mr7964573qaq.394.1286275039848; Tue, 05 Oct 2010 03:37:19 -0700 (PDT) Received: by 10.229.9.198 with HTTP; Tue, 5 Oct 2010 03:37:19 -0700 (PDT) Date: Tue, 5 Oct 2010 12:37:19 +0200 Message-ID: From: =?ISO-8859-1?Q?Micka=EBl_Maillot?= To: freebsd-multimedia@freebsd.org, freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Cc: Subject: XBMC 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: Tue, 05 Oct 2010 11:05:05 -0000 hi, you can test my pre version of xbmc port some infos: - i host xbmc files because i can't find a recent tar.gz - internal video player crash on my intel graphic, you can use mplayer as external video player ex: http://fneufn.eu/freebsd/xbmc/playercorefactory.xml in ~/.xbmc/userdata/ - vdpau works fine - skin aeon65 crash xbmc - only python 2.4, 2.5 and 2.6 are supported - with pulse, i can choose /dev/dsp audio output - good luck with custom alsa output (ex: alsa:surround51 works) - if you want correct utf8, start xbmc with: LANG=fr_FR.UTF-8 /usr/local/bin/xbmc/xbmc.sh - xbmc.bin need XBMC_BIN_HOME and XBMC_HOME defined to start defaults are (already added in xbmc.sh): XBMC_BIN_HOME=/usr/local/lib/xbmc XBMC_HOME=/usr/local/share/xbmc - timezone doesn't work - plist without: faac, hal, nonfree or avahi option can be wrong The port can be downloaded from: http://fneufn.eu/freebsd/xbmc/xbmc.shar From owner-freebsd-ports@FreeBSD.ORG Tue Oct 5 11:27:59 2010 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 9DF321065674 for ; Tue, 5 Oct 2010 11:27:59 +0000 (UTC) (envelope-from rodrigo@bebik.net) Received: from smtpfb1-g21.free.fr (smtpfb1-g21.free.fr [212.27.42.9]) by mx1.freebsd.org (Postfix) with ESMTP id D67868FC19 for ; Tue, 5 Oct 2010 11:27:56 +0000 (UTC) Received: from smtp2-g21.free.fr (smtp2-g21.free.fr [212.27.42.2]) by smtpfb1-g21.free.fr (Postfix) with ESMTP id 11D2177D59C for ; Tue, 5 Oct 2010 13:12:36 +0200 (CEST) Received: from hodja.bebik.net (unknown [82.235.223.127]) by smtp2-g21.free.fr (Postfix) with ESMTP id 1C6A14B016E for ; Tue, 5 Oct 2010 13:12:29 +0200 (CEST) Received: by hodja.bebik.net (Postfix, from userid 1001) id D2D762846B; Tue, 5 Oct 2010 13:12:28 +0200 (CEST) Date: Tue, 5 Oct 2010 13:12:28 +0200 From: "Rodrigo OSORIO (ros)" To: freebsd-ports@freebsd.org Message-ID: <20101005111228.GH4550@hodja.bebik.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.2i Subject: Apache20 in amd64 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, 05 Oct 2010 11:27:59 -0000 Hi, I found a compiler error building www/apache20 in the amd64 arch. The error is located in the mod_ssl code where the 'STACK' structure seems to be unknown. 'STACK' is a basic data type defined in the native ssl api and the problem seems to be related to the struct visibility. Maybe a DEFINE problem . The error message says : ssl_engine_init.c: In function 'ssl_init_ctx_verify': ssl_engine_init.c:534: error: 'STACK' undeclared (first use in this function) The most crappy workaround was to add the following line into the work/httpd-2.0.63/modules/ssl/mod_ssl.h file. typedef struct stack_st STACK; Before going deeper in my investigations I want to know if someone faces the same problems with this port. Regards Rodrigo From owner-freebsd-ports@FreeBSD.ORG Tue Oct 5 11:32:15 2010 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 E0D6110656B1 for ; Tue, 5 Oct 2010 11:32:15 +0000 (UTC) (envelope-from chetan.shukla@aricent.com) Received: from jaguar.aricent.com (jaguar.aricent.com [121.241.96.11]) by mx1.freebsd.org (Postfix) with ESMTP id EFF068FC24 for ; Tue, 5 Oct 2010 11:32:14 +0000 (UTC) Received: from jaguar.aricent.com (localhost [127.0.0.1]) by postfix.imss71 (Postfix) with ESMTP id 86DB836B80 for ; Tue, 5 Oct 2010 17:00:45 +0530 (IST) Received: from GUREXHT01.ASIAN.AD.ARICENT.COM (gurexht01.asian.ad.aricent.com [10.203.171.136]) by jaguar.aricent.com (Postfix) with ESMTP id 7AE8D36B3A for ; Tue, 5 Oct 2010 17:00:45 +0530 (IST) Received: from GUREXMB01.asian.ad.aricent.com ([10.203.171.130]) by GUREXHT01.ASIAN.AD.ARICENT.COM ([10.203.171.137]) with mapi; Tue, 5 Oct 2010 17:02:11 +0530 From: Chetan Shukla To: "freebsd-ports@freebsd.org" Date: Tue, 5 Oct 2010 17:02:08 +0530 Thread-Topic: Issues in installing Gmake and Gcc on FreeBSD Thread-Index: ActkgPEcjdQjWZMFSW6fz+KGgs4v6g== Message-ID: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Issues in installing Gmake and Gcc on FreeBSD 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, 05 Oct 2010 11:32:16 -0000 Hi, I am trying to install GCC and Gmake on FreeBSd machine and faced followin= g issues: GCC: Steps: 1)At directory gcc-3.3.2 I ran ./configure -enable-obsolete 2)error returned: Please update *-*-freebsd* in gcc/config.gcc Configure in /usr/home/iptk/gcc-3.3.2/gcc failed, exiting. 3)I have included this string in gcc/config.gcc with architecture string as= i386 but still facing same issue. The configuration and version details: Machine arch:i386 FreeBSD version: FreeBSD 8.0-RELEASE #0: GCC version :gcc-3.3.2 Gmake: Steps: 1)I have un tarred the gmake-3.79.1.tgz but it did not create any gmake-3.7= 9.1 directory. 2)Hence I am unable to run ./configure and make and make install. The hardware details remain same. The system is not connected to Internet so I cannot use pkg-add. To give backdrop all this is needed to port linux code to FreeBSD. Please let me know your inputs on the above, Also please excuse me if it is wrong mailing list and please redirect it to the correct one. Thanks & Regards, Chetan ________________________________ "DISCLAIMER: This message is proprietary to Aricent and is intended solely = for the use of the individual to whom it is addressed. It may contain privi= leged or confidential information and should not be circulated or used for = any purpose other than for what it is intended. If you have received this m= essage in error, please notify the originator immediately. If you are not t= he intended recipient, you are notified that you are strictly prohibited fr= om using, copying, altering, or disclosing the contents of this message. Ar= icent accepts no responsibility for loss or damage arising from the use of = the information transmitted by this email including damage from virus." From owner-freebsd-ports@FreeBSD.ORG Tue Oct 5 11:43:27 2010 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 BB56E1065674 for ; Tue, 5 Oct 2010 11:43:27 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from qmta05.emeryville.ca.mail.comcast.net (qmta05.emeryville.ca.mail.comcast.net [76.96.30.48]) by mx1.freebsd.org (Postfix) with ESMTP id A09B68FC0C for ; Tue, 5 Oct 2010 11:43:27 +0000 (UTC) Received: from omta16.emeryville.ca.mail.comcast.net ([76.96.30.72]) by qmta05.emeryville.ca.mail.comcast.net with comcast id EzDl1f0011ZMdJ4A5zjTtm; Tue, 05 Oct 2010 11:43:27 +0000 Received: from koitsu.dyndns.org ([98.248.41.155]) by omta16.emeryville.ca.mail.comcast.net with comcast id EzjS1f0033LrwQ28czjSYX; Tue, 05 Oct 2010 11:43:26 +0000 Received: by icarus.home.lan (Postfix, from userid 1000) id 1E07D9B427; Tue, 5 Oct 2010 04:43:26 -0700 (PDT) Date: Tue, 5 Oct 2010 04:43:26 -0700 From: Jeremy Chadwick To: Chetan Shukla Message-ID: <20101005114326.GA31432@icarus.home.lan> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-ports@freebsd.org Subject: Re: Issues in installing Gmake and Gcc on FreeBSD 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, 05 Oct 2010 11:43:27 -0000 On Tue, Oct 05, 2010 at 05:02:08PM +0530, Chetan Shukla wrote: > I am trying to install GCC and Gmake on FreeBSd machine and faced following issues: > GCC: > > Steps: > 1)At directory gcc-3.3.2 I ran ./configure -enable-obsolete > 2)error returned: > Please update *-*-freebsd* in gcc/config.gcc > Configure in /usr/home/iptk/gcc-3.3.2/gcc failed, exiting. > > 3)I have included this string in gcc/config.gcc with architecture string as i386 but still facing same issue. > > The configuration and version details: > Machine arch:i386 > FreeBSD version: FreeBSD 8.0-RELEASE #0: > GCC version :gcc-3.3.2 > > Gmake: > > Steps: > 1)I have un tarred the gmake-3.79.1.tgz but it did not create any gmake-3.79.1 directory. > 2)Hence I am unable to run ./configure and make and make install. > > The hardware details remain same. > The system is not connected to Internet so I cannot use pkg-add. > > To give backdrop all this is needed to port linux code to FreeBSD. > > Please let me know your inputs on the above, > Also please excuse me if it is wrong mailing list and please redirect it > to the correct one. GCC on FreeBSD is "special" in the sense that you should either use the version that's included in the base system (4.2.1 as of 8.0-RELEASE), or if you need an older/different version, install it from ports/packages. The same goes for gmake. You managed to get the source code to both gcc and gmake on a system which isn't connected to the Internet, so surely you could download the binary versions of the FreeBSD packages and install those...? Take a peek in: ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-8.0-release/All/ Look for gcc* and gmake*. These are probably what you want: -rw-r--r-- 1 110 1002 351139 Oct 20 2009 gmake-3.81_3.tbz -rw-r--r-- 1 110 1002 14269507 Oct 20 2009 gcc-3.4.6_3,1.tbz If you download these packages, you can get them onto the machine however possible and simply pkg_add the files (literally: "pkg_add xxx.tbz"). You might have to download some dependency packages, but pkg_add should tell you what those are if needed. -- | Jeremy Chadwick jdc@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 Tue Oct 5 12:06:45 2010 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 C47C01065693 for ; Tue, 5 Oct 2010 12:06:45 +0000 (UTC) (envelope-from chetan.shukla@aricent.com) Received: from jaguar.aricent.com (jaguar.aricent.com [180.151.2.24]) by mx1.freebsd.org (Postfix) with ESMTP id F37E98FC13 for ; Tue, 5 Oct 2010 12:06:44 +0000 (UTC) Received: from jaguar.aricent.com (localhost [127.0.0.1]) by postfix.imss71 (Postfix) with ESMTP id 976EF36B70; Tue, 5 Oct 2010 17:35:16 +0530 (IST) Received: from GUREXHT01.ASIAN.AD.ARICENT.COM (gurexht01.asian.ad.aricent.com [10.203.171.136]) by jaguar.aricent.com (Postfix) with ESMTP id 8188F36B3A; Tue, 5 Oct 2010 17:35:16 +0530 (IST) Received: from GUREXMB01.asian.ad.aricent.com ([10.203.171.130]) by GUREXHT01.ASIAN.AD.ARICENT.COM ([10.203.171.137]) with mapi; Tue, 5 Oct 2010 17:36:42 +0530 From: Chetan Shukla To: Jeremy Chadwick Date: Tue, 5 Oct 2010 17:36:41 +0530 Thread-Topic: Issues in installing Gmake and Gcc on FreeBSD Thread-Index: ActkgosVSNq2wHDjRs2DwM2dDMVSOwAAxDtw Message-ID: References: <20101005114326.GA31432@icarus.home.lan> In-Reply-To: <20101005114326.GA31432@icarus.home.lan> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Cc: "freebsd-ports@freebsd.org" Subject: RE: Issues in installing Gmake and Gcc on FreeBSD 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, 05 Oct 2010 12:06:45 -0000 Thanks Jeremy, Started work on ur guidance :) Regards, Chetan -----Original Message----- From: Jeremy Chadwick [mailto:freebsd@jdc.parodius.com] Sent: Tuesday, October 05, 2010 5:13 PM To: Chetan Shukla Cc: freebsd-ports@freebsd.org Subject: Re: Issues in installing Gmake and Gcc on FreeBSD On Tue, Oct 05, 2010 at 05:02:08PM +0530, Chetan Shukla wrote: > I am trying to install GCC and Gmake on FreeBSd machine and faced follow= ing issues: > GCC: > > Steps: > 1)At directory gcc-3.3.2 I ran ./configure -enable-obsolete > 2)error returned: > Please update *-*-freebsd* in gcc/config.gcc > Configure in /usr/home/iptk/gcc-3.3.2/gcc failed, exiting. > > 3)I have included this string in gcc/config.gcc with architecture string = as i386 but still facing same issue. > > The configuration and version details: > Machine arch:i386 > FreeBSD version: FreeBSD 8.0-RELEASE #0: > GCC version :gcc-3.3.2 > > Gmake: > > Steps: > 1)I have un tarred the gmake-3.79.1.tgz but it did not create any gmake-3= .79.1 directory. > 2)Hence I am unable to run ./configure and make and make install. > > The hardware details remain same. > The system is not connected to Internet so I cannot use pkg-add. > > To give backdrop all this is needed to port linux code to FreeBSD. > > Please let me know your inputs on the above, > Also please excuse me if it is wrong mailing list and please redirect it > to the correct one. GCC on FreeBSD is "special" in the sense that you should either use the version that's included in the base system (4.2.1 as of 8.0-RELEASE), or if you need an older/different version, install it from ports/packages. The same goes for gmake. You managed to get the source code to both gcc and gmake on a system which isn't connected to the Internet, so surely you could download the binary versions of the FreeBSD packages and install those...? Take a peek in: ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-8.0-release/All/ Look for gcc* and gmake*. These are probably what you want: -rw-r--r-- 1 110 1002 351139 Oct 20 2009 gmake-3.81_3.tbz -rw-r--r-- 1 110 1002 14269507 Oct 20 2009 gcc-3.4.6_3,1.tbz If you download these packages, you can get them onto the machine however possible and simply pkg_add the files (literally: "pkg_add xxx.tbz"). You might have to download some dependency packages, but pkg_add should tell you what those are if needed. -- | Jeremy Chadwick jdc@parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, USA | | Making life hard for others since 1977. PGP: 4BD6C0CB | "DISCLAIMER: This message is proprietary to Aricent and is intended solely = for the use of the individual to whom it is addressed. It may contain privi= leged or confidential information and should not be circulated or used for = any purpose other than for what it is intended. If you have received this m= essage in error, please notify the originator immediately. If you are not t= he intended recipient, you are notified that you are strictly prohibited fr= om using, copying, altering, or disclosing the contents of this message. Ar= icent accepts no responsibility for loss or damage arising from the use of = the information transmitted by this email including damage from virus." From owner-freebsd-ports@FreeBSD.ORG Tue Oct 5 13:21:46 2010 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 F2036106566B; Tue, 5 Oct 2010 13:21:46 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from mail.itac.at (mail.itac.at [91.205.172.9]) by mx1.freebsd.org (Postfix) with ESMTP id 6C29D8FC13; Tue, 5 Oct 2010 13:21:46 +0000 (UTC) Received: from [91.205.172.21] (helo=secure.bluelife.at) by mail.itac.at with esmtpa (Exim 4.63) (envelope-from ) id 1P3773-0001Gn-CA; Tue, 05 Oct 2010 14:59:21 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Date: Tue, 05 Oct 2010 12:59:22 +0000 From: Bernhard Froehlich To: =?UTF-8?Q?Micka=C3=ABl_Maillot?= In-Reply-To: References: Message-ID: X-Sender: decke@FreeBSD.org User-Agent: Roundcube Webmail/0.4 X-Spam-Score: -1.1 (-) X-Spam-Report: Spam detection software, running on the system "mail.itac.at", has identified this incoming email as possible spam. The original message has been attached to this so you can view it (if it isn't spam) or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: On Tue, 5 Oct 2010 12:37:19 +0200, Mickaël Maillot wrote: > hi, > > you can test my pre version of xbmc port > > some infos: > - i host xbmc files because i can't find a recent tar.gz > - internal video player crash on my intel graphic, you can use mplayer > as external video player > ex: http://fneufn.eu/freebsd/xbmc/playercorefactory.xml in ~/.xbmc/userdata/ > - vdpau works fine > - skin aeon65 crash xbmc > - only python 2.4, 2.5 and 2.6 are supported > - with pulse, i can choose /dev/dsp audio output > - good luck with custom alsa output (ex: alsa:surround51 works) > - if you want correct utf8, start xbmc with: > LANG=fr_FR.UTF-8 /usr/local/bin/xbmc/xbmc.sh > - xbmc.bin need XBMC_BIN_HOME and XBMC_HOME defined to start > defaults are (already added in xbmc.sh): > XBMC_BIN_HOME=/usr/local/lib/xbmc > XBMC_HOME=/usr/local/share/xbmc > - timezone doesn't work > - plist without: faac, hal, nonfree or avahi option can be wrong > > > The port can be downloaded from: > http://fneufn.eu/freebsd/xbmc/xbmc.shar [...] Content analysis details: (-1.1 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.4 ALL_TRUSTED Passed through trusted hosts only via SMTP 0.4 AWL AWL: From: address is in the auto white-list Cc: freebsd-multimedia@freebsd.org, freebsd-ports@freebsd.org Subject: Re: XBMC 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: Tue, 05 Oct 2010 13:21:47 -0000 On Tue, 5 Oct 2010 12:37:19 +0200, Mickaël Maillot wrote: > hi, > > you can test my pre version of xbmc port > > some infos: > - i host xbmc files because i can't find a recent tar.gz > - internal video player crash on my intel graphic, you can use mplayer > as external video player > ex: http://fneufn.eu/freebsd/xbmc/playercorefactory.xml in ~/.xbmc/userdata/ > - vdpau works fine > - skin aeon65 crash xbmc > - only python 2.4, 2.5 and 2.6 are supported > - with pulse, i can choose /dev/dsp audio output > - good luck with custom alsa output (ex: alsa:surround51 works) > - if you want correct utf8, start xbmc with: > LANG=fr_FR.UTF-8 /usr/local/bin/xbmc/xbmc.sh > - xbmc.bin need XBMC_BIN_HOME and XBMC_HOME defined to start > defaults are (already added in xbmc.sh): > XBMC_BIN_HOME=/usr/local/lib/xbmc > XBMC_HOME=/usr/local/share/xbmc > - timezone doesn't work > - plist without: faac, hal, nonfree or avahi option can be wrong > > > The port can be downloaded from: > http://fneufn.eu/freebsd/xbmc/xbmc.shar Thank you very much for your work! Port and patches look already quite good so I will give it some testing over the next few days in Karlsruhe. Have you already compiled it on amd64 and i386? -- Bernhard Froehlich http://www.bluelife.at/ From owner-freebsd-ports@FreeBSD.ORG Tue Oct 5 14:47:07 2010 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 C53831065673 for ; Tue, 5 Oct 2010 14:47:07 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-ew0-f54.google.com (mail-ew0-f54.google.com [209.85.215.54]) by mx1.freebsd.org (Postfix) with ESMTP id 51FDD8FC1B for ; Tue, 5 Oct 2010 14:47:06 +0000 (UTC) Received: by ewy22 with SMTP id 22so2987190ewy.13 for ; Tue, 05 Oct 2010 07:47:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:date:from :organization:user-agent:mime-version:to:subject:x-enigmail-version :content-type:content-transfer-encoding; bh=82LTQadS0DPqVftcXQSMRoiaBeowfzEmDbtHb2crw4w=; b=qis3+RCsOrYyGDJ6LZhUGzXAgHrxDCZLg8qH/8lIjAWL/P05XibDPIV/Z6xeWqd+h2 U4q/Ue65R57ov94GRq7gl4aTVv4T8p/v2ZOtX2Lx94N+ZTgZVJOV/Q9qaQ4kxXoWkWwv zVl8lrTLmhovvTfMWF6iu1VuaXHxcxu5KAg7s= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:organization:user-agent:mime-version:to :subject:x-enigmail-version:content-type:content-transfer-encoding; b=R9ei921v0ODBrMlEfsjBlarWqJeNPwJ2NXxrl66I0PE9YKp/eFV59Jb7FCy3Qd7UHT XShpQ8f1WEFdZ/srhv6UAzwJAl0I5zxQR0SblU3pdg5MfqZADksHmWNiwr+Iyms56rEJ 6IfO4coTOg5/exL86RH1s40F/HgDaQmLURlQg= Received: by 10.103.231.4 with SMTP id i4mr3780722mur.68.1286290023912; Tue, 05 Oct 2010 07:47:03 -0700 (PDT) Received: from centel.dataix.local ([99.181.144.115]) by mx.google.com with ESMTPS id j22sm2231995vcr.31.2010.10.05.07.47.01 (version=SSLv3 cipher=RC4-MD5); Tue, 05 Oct 2010 07:47:02 -0700 (PDT) Sender: "J. Hellenthal" Message-ID: <4CAB3A64.4080709@DataIX.net> Date: Tue, 05 Oct 2010 10:47:00 -0400 From: jhell Organization: http://www.DataIX.net User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.2.9) Gecko/20100917 Lightning/1.0b1 Thunderbird MIME-Version: 1.0 To: gordon@freebsd.org, FreeBSD Ports X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Subject: devel/p4d/Makefile 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, 05 Oct 2010 14:47:07 -0000 Hi Gordon, I have just upgraded my p4d install and have found the following inconsistency in the Makefile: ${CAT} pkg-message pkg-message at this point cannot be found and it would be better if this referred to the ports directory and the portname /pkg-message instead. I might also suggest that instead of using touch(1) chown(1) chmod(1) to create entries in the filesystem for the p4d.log that you use install(1) instead as that allows you to achieve all three steps listed above in one command like so. install -S -o p4admin -g p4admin -m 640 /dev/null /var/log/p4d.log And of course this might need/involve some checking to see if the users log file already exists as we would not want to overwrite that by the above command but nor do we want to blindly chmod(1) the file either which is also done in the Makefile already. Regards, -- jhell,v From owner-freebsd-ports@FreeBSD.ORG Tue Oct 5 18:15:23 2010 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 98A66106564A; Tue, 5 Oct 2010 18:15:23 +0000 (UTC) (envelope-from obrien@NUXI.org) Received: from dragon.nuxi.org (trang.nuxi.org [74.95.12.85]) by mx1.freebsd.org (Postfix) with ESMTP id 73E0F8FC08; Tue, 5 Oct 2010 18:15:23 +0000 (UTC) Received: from dragon.nuxi.org (obrien@localhost [127.0.0.1]) by dragon.nuxi.org (8.14.4/8.14.4) with ESMTP id o95IFNA1015166; Tue, 5 Oct 2010 11:15:23 -0700 (PDT) (envelope-from obrien@dragon.nuxi.org) Received: (from obrien@localhost) by dragon.nuxi.org (8.14.4/8.14.4/Submit) id o95IFMnw015165; Tue, 5 Oct 2010 11:15:22 -0700 (PDT) (envelope-from obrien) Date: Tue, 5 Oct 2010 11:15:22 -0700 From: "David O'Brien" To: Rob Farmer Message-ID: <20101005181522.GD7829@dragon.NUXI.org> References: <4C93AA31.5080202@DataIX.net> <20100917205404.GA66620@atarininja.org> <20100917232437.GC67059@atarininja.org> <20101002060201.GA8287@dragon.NUXI.org> MIME-Version: 1.0 Content-Type: text/plain; charset=unknown-8bit Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: X-Operating-System: FreeBSD 9.0-CURRENT X-to-the-FBI-CIA-and-NSA: HI! HOW YA DOIN? User-Agent: Mutt/1.5.16 (2007-06-09) Cc: David DEMELIER , FreeBSD Ports , Wesley Shields Subject: Re: editors/vim installs to / X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Oct 2010 18:15:23 -0000 On Sat, Oct 02, 2010 at 04:38:34AM -0700, Rob Farmer wrote: > On Fri, Oct 1, 2010 at 23:02, David O'Brien wrote: > > For gtk1, I have 13 packages that require it.  For gtk2, I have 49 > > packages that require it.  So I agree their are significantly more ports > > that depend on gtk2 -- and thus little way to avoid having it installed > > on one's system. > > > > Thoughts? > > In my experience, unless you choose one of the minimalist window > managers and are very selective about what you install, GTK 2 might as > well be part of X. Ok, I've gone ahead and changed the default GUI to gtk2. > I personally like Ade's suggestion, since it makes a gui opt-in for an > application that functions perfectly well without one. This may be a good approach to take -- but I didn't see a need to not change the default GUI for now. -- -- David (obrien@FreeBSD.org) From owner-freebsd-ports@FreeBSD.ORG Tue Oct 5 18:24:08 2010 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 670BE106564A for ; Tue, 5 Oct 2010 18:24:08 +0000 (UTC) (envelope-from obrien@NUXI.org) Received: from dragon.nuxi.org (trang.nuxi.org [74.95.12.85]) by mx1.freebsd.org (Postfix) with ESMTP id 2C02F8FC14 for ; Tue, 5 Oct 2010 18:24:07 +0000 (UTC) Received: from dragon.nuxi.org (obrien@localhost [127.0.0.1]) by dragon.nuxi.org (8.14.4/8.14.4) with ESMTP id o95IO7V7018980; Tue, 5 Oct 2010 11:24:07 -0700 (PDT) (envelope-from obrien@dragon.nuxi.org) Received: (from obrien@localhost) by dragon.nuxi.org (8.14.4/8.14.4/Submit) id o95IO7lG018979; Tue, 5 Oct 2010 11:24:07 -0700 (PDT) (envelope-from obrien) Date: Tue, 5 Oct 2010 11:24:07 -0700 From: "David O'Brien" To: David DEMELIER Message-ID: <20101005182407.GE7829@dragon.NUXI.org> References: <4C93AA31.5080202@DataIX.net> <20100918223933.GB85995@dragon.NUXI.org> <20101002002605.GA8018@dragon.NUXI.org> MIME-Version: 1.0 Content-Type: text/plain; charset=unknown-8bit Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: X-Operating-System: FreeBSD 9.0-CURRENT X-to-the-FBI-CIA-and-NSA: HI! HOW YA DOIN? User-Agent: Mutt/1.5.16 (2007-06-09) Cc: FreeBSD Ports Subject: Re: OPTIONS (was: editors/vim installs to /) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Oct 2010 18:24:08 -0000 On Sun, Oct 03, 2010 at 10:22:46AM +0200, David DEMELIER wrote: > 2010/10/2 David O'Brien : > > 2. With the way OPTIONS handling is done, there isn't a way for me > > to query if I built with the defaults or not. > > Thus leading to every port I manually install looking like it was > > customized just because /var/db/ports/${PORTNAME} exists.  Thus > > implying I can no longer install the pre-build package. > > make rmconfig ? I think you've missed my point. That does not tell me if I, in the past, made a decision that did not like the maintainer's defaults, or if I just wanted to extract the sources so I could read the license or figure out what the OPTIONS knobs were about, etc.. > The best thing to do is switch totally to a way to configure a port > and remove the other one. Only if folks agree on what the best way to configure a port is. I spoke with some co-workers last week, and OPTIONS weren't very popular with them. They also stated some of the the issues I listed. > I think we should try to upgrade the options > framework with what I said at 4. and 3. It's possible but we need some > work. Even without forcing all ports to go in one direction for configuration, this would be a Good Thing to do. Hopefully someone with interest will submit some patches. -- -- David (obrien@FreeBSD.org) Q: Because it reverses the logical flow of conversation. A: Why is top-posting (putting a reply at the top of the message) frowned upon? Let's not play "Jeopardy-style quoting" From owner-freebsd-ports@FreeBSD.ORG Tue Oct 5 18:34:54 2010 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 3B28910657D2 for ; Tue, 5 Oct 2010 18:34:54 +0000 (UTC) (envelope-from obrien@NUXI.org) Received: from dragon.nuxi.org (trang.nuxi.org [74.95.12.85]) by mx1.freebsd.org (Postfix) with ESMTP id F220A8FC33 for ; Tue, 5 Oct 2010 18:34:53 +0000 (UTC) Received: from dragon.nuxi.org (obrien@localhost [127.0.0.1]) by dragon.nuxi.org (8.14.4/8.14.4) with ESMTP id o95IYrvQ020933; Tue, 5 Oct 2010 11:34:53 -0700 (PDT) (envelope-from obrien@dragon.nuxi.org) Received: (from obrien@localhost) by dragon.nuxi.org (8.14.4/8.14.4/Submit) id o95IYq2h020932; Tue, 5 Oct 2010 11:34:52 -0700 (PDT) (envelope-from obrien) Date: Tue, 5 Oct 2010 11:34:52 -0700 From: "David O'Brien" To: David DEMELIER Message-ID: <20101005183452.GF7829@dragon.NUXI.org> References: <4C93AA31.5080202@DataIX.net> <20100918223933.GB85995@dragon.NUXI.org> <20101002002605.GA8018@dragon.NUXI.org> <4CA844E5.7060303@infracaninophile.co.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=unknown-8bit Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: X-Operating-System: FreeBSD 9.0-CURRENT X-to-the-FBI-CIA-and-NSA: HI! HOW YA DOIN? User-Agent: Mutt/1.5.16 (2007-06-09) Cc: FreeBSD Ports Subject: Re: OPTIONS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Oct 2010 18:34:54 -0000 On Sun, Oct 03, 2010 at 11:45:01AM +0200, David DEMELIER wrote: > 2010/10/3 Matthew Seaman : > > On 03/10/2010 09:22:46, David DEMELIER wrote: > >> I agree. As I said in 4, OPTIONS should follow the defined knob in > >> make.conf. But for not boolean knobs there is something we can also > >> do, spawn a little textbox to define an option with a string. > >> [X] WITH_X foo bar > >> [ ] WITH_Y foo bar baz > >> [fr_FR en_GB] LANGS to be build > >> > >> Here pressing enter on LANGS would spawn a little textbox that can be > >> fulfilled by the user. The little problem is how to tell to OPTIONS > >> that it's not a boolean entry. > > > > And the rest?  Pursuing this idea through to its logical conclusion, > > you'ld end up implementing radio buttons, text entry boxes, drop down > > lists -- all the normal bits used in html forms. > > Don't you like this? sysinstall was made with dialog. And folks hate that. jkh wanted to move the TurboC text-GUI library, but we never did. Accelerators are one of the things that dialog seems to not handle very well. In fact our OPTIONS suggest they are supported, but hitting "N" when building ports/misc/mc-light does not deselect NLS. > > In fact, you might just as well write a small HTML form, display it > > using lynx or w3c or some other text mode browser[*], and then have the > > form action feed into a CGI program that outputs a small Makefile with > > appropriate variable definitions in it. I like this statement -- as it shows just how complex this will get when taken to its natural conclusion. -- -- David (obrien@FreeBSD.org) Q: Because it reverses the logical flow of conversation. A: Why is top-posting (putting a reply at the top of the message) frowned upon? Let's not play "Jeopardy-style quoting" From owner-freebsd-ports@FreeBSD.ORG Tue Oct 5 18:44:49 2010 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 3C6141065791; Tue, 5 Oct 2010 18:44:49 +0000 (UTC) (envelope-from swell.k@gmail.com) Received: from mail-ew0-f54.google.com (mail-ew0-f54.google.com [209.85.215.54]) by mx1.freebsd.org (Postfix) with ESMTP id 91CFE8FC13; Tue, 5 Oct 2010 18:44:48 +0000 (UTC) Received: by ewy22 with SMTP id 22so3122484ewy.13 for ; Tue, 05 Oct 2010 11:44:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:references :date:in-reply-to:message-id:user-agent:mime-version:content-type; bh=Tspir8k2oX7usFbAMGavsACm3scvYA3t4VDHLYmoGhg=; b=XzdDtzTYmtFhh20h/x1y/5Rxjw+6WlyPd92EPMyNEHwJffRFmBqYZ7iWA/aURDgztQ UtyyX6SPx+njxDHfPy2pXTv5V4N4VoEVcRQNYeyOYNdZqP2FHY2UPMdgBRyHO0xCGZRF TesalJThDYCZQfs7XjLg3bzaoL29lByRCqOwg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type; b=h/CRa3KoLiCVwuwIvxL0/i2REgn9jkRn6mtBqoKIdSJTbndwT/WFeXbRShXHkbpHda RsaJFGgcqyhTcPWFo+zazrh52InYnvi3ushmf+qizXmyYeFdaVNt5UuHWTe/L9bIdIuP jyGUFKsEiPUJhycdQmiqg3FBU6t9V+19r4yl8= Received: by 10.14.37.77 with SMTP id x53mr7504946eea.35.1286304287235; Tue, 05 Oct 2010 11:44:47 -0700 (PDT) Received: from localhost ([77.91.225.131]) by mx.google.com with ESMTPS id a48sm9788420eei.19.2010.10.05.11.44.39 (version=SSLv3 cipher=RC4-MD5); Tue, 05 Oct 2010 11:44:45 -0700 (PDT) From: Anonymous To: David DEMELIER References: <4C93AA31.5080202@DataIX.net> <20100918223933.GB85995@dragon.NUXI.org> <20101002002605.GA8018@dragon.NUXI.org> Date: Tue, 05 Oct 2010 22:43:19 +0400 In-Reply-To: (David DEMELIER's message of "Sun, 3 Oct 2010 10:22:46 +0200") Message-ID: <864od08oqg.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain Cc: FreeBSD Ports , David O'Brien , Christopher Key Subject: Re: OPTIONS 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, 05 Oct 2010 18:44:49 -0000 David DEMELIER writes: > 2010/10/2 David O'Brien : >> 4. When I build misc/mc-light and have "WITHOUT_NLS=yes" in >> /etc/make.conf, why does the OPTIONS dialog offer me >> "[X] NLS Enable gettext support" instead of defaulting the >> dialog to unchecked? >> > > I agree with this inconsistency, I think with a little of work OPTIONS > framework should be to follow KNOB to enable an option if it's already > defined by the user. This would be great for people that use > WITHOUT_GNOME, WITHOUT_X11 and so on. I think it's possible to do it. I think Chris solved this one in the thread http://docs.freebsd.org/cgi/mid.cgi?4C476F69.1060200 From owner-freebsd-ports@FreeBSD.ORG Tue Oct 5 21:05:25 2010 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 E9EB5106566B for ; Tue, 5 Oct 2010 21:05:25 +0000 (UTC) (envelope-from jake@avenue22.net) Received: from floor13.viper.enta.net (floor13.viper.enta.net [78.33.24.2]) by mx1.freebsd.org (Postfix) with ESMTP id B65DC8FC08 for ; Tue, 5 Oct 2010 21:05:25 +0000 (UTC) Received: from 84-45-181-92.static.enta.net (unknown [84.45.181.92]) by floor13.viper.enta.net (Postfix) with ESMTP id 1B116BE571; Tue, 5 Oct 2010 21:45:58 +0100 (BST) Message-ID: <4CAB8EF4.1020807@avenue22.net> Date: Tue, 05 Oct 2010 21:47:48 +0100 From: Jake Smith User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.2.9) Gecko/20100915 Lightning/1.0b2 Thunderbird/3.1.4 MIME-Version: 1.0 To: valerio.daelli@gmail.com Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@FreeBSD.org Subject: FreeBSD Port: ossec-hids-server-2.4.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: Tue, 05 Oct 2010 21:05:26 -0000 Hi, When can we expect security/ossec-hids-* port to be updated from v2.4.1 to v2.5 released 2010-09-28. Many thanks! Regards Jake From owner-freebsd-ports@FreeBSD.ORG Tue Oct 5 21:49:55 2010 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 77C58106564A for ; Tue, 5 Oct 2010 21:49:55 +0000 (UTC) (envelope-from nox@jelal.kn-bremen.de) Received: from smtp.kn-bremen.de (gelbbaer.kn-bremen.de [78.46.108.116]) by mx1.freebsd.org (Postfix) with ESMTP id 3CF4C8FC08 for ; Tue, 5 Oct 2010 21:49:55 +0000 (UTC) Received: by smtp.kn-bremen.de (Postfix, from userid 10) id 5E5361E00076; Tue, 5 Oct 2010 23:32:37 +0200 (CEST) Received: from triton8.kn-bremen.de (noident@localhost [127.0.0.1]) by triton8.kn-bremen.de (8.14.4/8.14.3) with ESMTP id o95LTv7J095033; Tue, 5 Oct 2010 23:29:57 +0200 (CEST) (envelope-from nox@triton8.kn-bremen.de) Received: (from nox@localhost) by triton8.kn-bremen.de (8.14.4/8.14.3/Submit) id o95LTvtV095032; Tue, 5 Oct 2010 23:29:57 +0200 (CEST) (envelope-from nox) Date: Tue, 5 Oct 2010 23:29:57 +0200 (CEST) From: Juergen Lock Message-Id: <201010052129.o95LTvtV095032@triton8.kn-bremen.de> To: mickael.maillot@gmail.com X-Newsgroups: local.list.freebsd.ports In-Reply-To: Organization: home Cc: freebsd-multimedia@freebsd.org, freebsd-ports@freebsd.org Subject: Re: XBMC 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: Tue, 05 Oct 2010 21:49:55 -0000 In article you write: >hi, Hi! > >you can test my pre version of xbmc port > >some infos: >- i host xbmc files because i can't find a recent tar.gz Is this the head branch (trunk)? I'm not sure but its possible the pvr-testing2 branch is more popular, http://xbmc.svn.sourceforge.net/viewvc/xbmc/branches/pvr-testing2/ because it adds pvr (live tv, dvb...) support so you can use xbmc with e.g. mythtv(?) or vdr (actually I was looking forward to test it with my preliminary vdr ports, http://people.freebsd.org/~nox/dvb/ because for example xbmc is supposed to be faster at switching channels - only to discover you ported the `wrong' branch. :) >- internal video player crash on my intel graphic, you can use mplayer >as external video player >ex: http://fneufn.eu/freebsd/xbmc/playercorefactory.xml in ~/.xbmc/userdata/ >- vdpau works fine >- skin aeon65 crash xbmc >- only python 2.4, 2.5 and 2.6 are supported >- with pulse, i can choose /dev/dsp audio output >- good luck with custom alsa output (ex: alsa:surround51 works) >- if you want correct utf8, start xbmc with: >LANG=fr_FR.UTF-8 /usr/local/bin/xbmc/xbmc.sh >- xbmc.bin need XBMC_BIN_HOME and XBMC_HOME defined to start >defaults are (already added in xbmc.sh): >XBMC_BIN_HOME=/usr/local/lib/xbmc >XBMC_HOME=/usr/local/share/xbmc >- timezone doesn't work >- plist without: faac, hal, nonfree or avahi option can be wrong Anyway, I use RV730 PRO [Radeon HD 4650] graphics on a PhenomII box here and got playback working (including 1080i dvb-s2 h264 recordings from vdr), but first I had to disable tvout in xorg.conf (Option "ATOMTvOut") because with it xbmc kept turning off my lcd even after I told it to keep it on, and I found no option to ignore tvout or select the lcd as main display. Thanx, :) Juergen From owner-freebsd-ports@FreeBSD.ORG Wed Oct 6 02:06:02 2010 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 322C01065679 for ; Wed, 6 Oct 2010 02:06:02 +0000 (UTC) (envelope-from pgollucci@p6m7g8.com) Received: from cell.p6m7g8.net (static-71-178-236-107.washdc.fios.verizon.net [71.178.236.107]) by mx1.freebsd.org (Postfix) with ESMTP id E1DC38FC19 for ; Wed, 6 Oct 2010 02:06:01 +0000 (UTC) Received: from philip.hq.rws (wsip-174-79-184-239.dc.dc.cox.net [174.79.184.239]) (authenticated bits=0) by cell.p6m7g8.net (8.14.4/8.14.3) with ESMTP id o9625tdp049265 (version=TLSv1/SSLv3 cipher=DHE-DSS-CAMELLIA256-SHA bits=256 verify=NO); Wed, 6 Oct 2010 02:05:56 GMT (envelope-from pgollucci@p6m7g8.com) Message-ID: <4CABD983.2010606@p6m7g8.com> Date: Wed, 06 Oct 2010 02:05:55 +0000 From: "Philip M. Gollucci" Organization: P6M7G8 Inc. User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.1.12) Gecko/20100908 Thunderbird/3.0.7 MIME-Version: 1.0 To: "Rodrigo OSORIO (ros)" References: <20101005111228.GH4550@hodja.bebik.net> In-Reply-To: <20101005111228.GH4550@hodja.bebik.net> X-Enigmail-Version: 1.0.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-0.9 required=5.0 tests=BAYES_00,RDNS_DYNAMIC autolearn=no version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on cell.p6m7g8.net Cc: freebsd-ports@freebsd.org Subject: Re: Apache20 in amd64 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, 06 Oct 2010 02:06:02 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 10/05/10 11:12, Rodrigo OSORIO (ros) wrote: > Hi, > > I found a compiler error building www/apache20 in the > amd64 arch. The error is located in the mod_ssl code where > the 'STACK' structure seems to be unknown. > 'STACK' is a basic data type defined in the native ssl api > and the problem seems to be related to the struct visibility. > Maybe a DEFINE problem . > > The error message says : > > ssl_engine_init.c: In function > 'ssl_init_ctx_verify': > ssl_engine_init.c:534: error: 'STACK' > undeclared (first use in this function) > > The most crappy workaround was to add the following line > into the work/httpd-2.0.63/modules/ssl/mod_ssl.h file. > > typedef struct stack_st STACK; > No, you have a conflict with the security/openssl port and your /etc/make.conf settings. - -- - ------------------------------------------------------------------------ 1024D/DB9B8C1C B90B FBC3 A3A1 C71A 8E70 3F8C 75B8 8FFB DB9B 8C1C Philip M. Gollucci (pgollucci@p6m7g8.com) c: 703.336.9354 VP Apache Infrastructure; Member, Apache Software Foundation Committer, FreeBSD Foundation Consultant, P6M7G8 Inc. Sr. System Admin, Ridecharge Inc. Work like you don't need the money, love like you'll never get hurt, and dance like nobody's watching. -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.16 (FreeBSD) iD8DBQFMq9mDdbiP+9ubjBwRAhPoAJ9B41gETAj2RRN3OUheneplJVgRXACfVaVR t7LpF9bJHz3nVgFwQKUw3CM= =OGkw -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Wed Oct 6 03:46:24 2010 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 759141065670; Wed, 6 Oct 2010 03:46:24 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by mx1.freebsd.org (Postfix) with ESMTP id 1568C8FC0A; Wed, 6 Oct 2010 03:46:23 +0000 (UTC) Received: by yxn35 with SMTP id 35so2951547yxn.13 for ; Tue, 05 Oct 2010 20:46:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:date:from :organization:user-agent:mime-version:to:cc:subject :x-enigmail-version:content-type; bh=oga0/Sgv8vXKrqdcxIGO2rBL9Z2pb5HqPSOZYxXvx50=; b=GcI3I3MkgrebfdQtkcgWFpvEPAiAaHBSCyNNK9P0zfx8OC8kE6rx+Q76ZMX55Jsam6 tXqGfARO9e5krO3/tAG6p4K0Yls1AFhdYlsII/8/DDSOkhNZwJgxZqPMqGJ1t5Js9j4G u7xPdTspUbzAZGY2+8aL65Ie2o5c/eSZzRPys= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:organization:user-agent:mime-version:to :cc:subject:x-enigmail-version:content-type; b=RX4PB6i0otVVakqEdt9R3+I05oylljGAHdBImV3eciLZ7xCpzLxtN1p/Qyj1uHl3ww WoRMJoFrOj0hcv/RpFQ8+oP7lDsqCfOfSJ5Wo9Utw+/Hcm5u91oS2Tryyc9VkwOu2wf9 d755l6jKchaCJaISE/wD5cIKH+YemJ3T4idMQ= Received: by 10.150.214.8 with SMTP id m8mr1232494ybg.295.1286336781826; Tue, 05 Oct 2010 20:46:21 -0700 (PDT) Received: from centel.dataix.local (adsl-99-181-144-115.dsl.klmzmi.sbcglobal.net [99.181.144.115]) by mx.google.com with ESMTPS id p5sm447312ybe.11.2010.10.05.20.46.19 (version=SSLv3 cipher=RC4-MD5); Tue, 05 Oct 2010 20:46:20 -0700 (PDT) Sender: "J. Hellenthal" Message-ID: <4CABF10A.9070700@DataIX.net> Date: Tue, 05 Oct 2010 23:46:18 -0400 From: jhell Organization: http://www.DataIX.net User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.2.9) Gecko/20100917 Lightning/1.0b1 Thunderbird MIME-Version: 1.0 To: obrien@FreeBSD.org X-Enigmail-Version: 1.1.2 Content-Type: multipart/mixed; boundary="------------070000010005080206060704" Cc: FreeBSD Ports Subject: ftp/ncftp3 stale patch no recorded checksums 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, 06 Oct 2010 03:46:24 -0000 This is a multi-part message in MIME format. --------------070000010005080206060704 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit After the recent update of ftp/ncftp3 there seems to be a stale v6 patch file left hanging around that no longer applies to the 3.2.4 source code for ncftp3. The following patch comments out the section in question but it also seems as there is "no native support for v6 in ncftp3 ?" at this time. Does anyone know of a v6 patch for the new (3.2.4) source ? Regards, -- jhell,v --------------070000010005080206060704 Content-Type: text/plain; name="Makefile.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="Makefile.patch" --- Makefile.orig 2010-10-05 23:26:16.738633363 -0400 +++ Makefile 2010-10-05 23:25:14.727629085 -0400 @@ -14,11 +14,11 @@ ftp://ftp.mirrorservice.org/sites/ftp.ncftp.com/ncftp/ DISTNAME= ncftp-${PORTVERSION}-src -.if !defined(WITHOUT_NCFTP_IPV6) && !defined(WITHOUT_IPV6) -PATCH_SITES= ftp://ftp.kame.net/pub/kame/misc/ -PATCHFILES= ncftp-323-v6-20091109.diff.gz -PATCH_DIST_STRIP= -p1 -.endif +#.if !defined(WITHOUT_NCFTP_IPV6) && !defined(WITHOUT_IPV6) +#PATCH_SITES= ftp://ftp.kame.net/pub/kame/misc/ +#PATCHFILES= ncftp-323-v6-20091109.diff.gz +#PATCH_DIST_STRIP= -p1 +#.endif MAINTAINER= obrien@FreeBSD.org COMMENT= ftp replacement with advanced user interface --------------070000010005080206060704-- From owner-freebsd-ports@FreeBSD.ORG Wed Oct 6 06:17:43 2010 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 BB8E71065675 for ; Wed, 6 Oct 2010 06:17:43 +0000 (UTC) (envelope-from obrien@NUXI.org) Received: from dragon.nuxi.org (trang.nuxi.org [74.95.12.85]) by mx1.freebsd.org (Postfix) with ESMTP id 655328FC12 for ; Wed, 6 Oct 2010 06:17:43 +0000 (UTC) Received: from dragon.nuxi.org (obrien@localhost [127.0.0.1]) by dragon.nuxi.org (8.14.4/8.14.4) with ESMTP id o965c7IM046355; Tue, 5 Oct 2010 22:38:07 -0700 (PDT) (envelope-from obrien@dragon.nuxi.org) Received: (from obrien@localhost) by dragon.nuxi.org (8.14.4/8.14.4/Submit) id o965c7Vn046354; Tue, 5 Oct 2010 22:38:07 -0700 (PDT) (envelope-from obrien) Date: Tue, 5 Oct 2010 22:38:07 -0700 From: "David O'Brien" To: Anonymous Message-ID: <20101006053807.GD41180@dragon.NUXI.org> References: <4C93AA31.5080202@DataIX.net> <20100918223933.GB85995@dragon.NUXI.org> <20101002002605.GA8018@dragon.NUXI.org> <864od08oqg.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <864od08oqg.fsf@gmail.com> X-Operating-System: FreeBSD 9.0-CURRENT X-to-the-FBI-CIA-and-NSA: HI! HOW YA DOIN? User-Agent: Mutt/1.5.16 (2007-06-09) Cc: David DEMELIER , FreeBSD Ports , Christopher Key Subject: Re: OPTIONS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Oct 2010 06:17:43 -0000 On Tue, Oct 05, 2010 at 10:43:19PM +0400, Anonymous wrote: > David DEMELIER writes: > > I agree with this inconsistency, I think with a little of work OPTIONS > > framework should be to follow KNOB to enable an option if it's already > > defined by the user. This would be great for people that use > > WITHOUT_GNOME, WITHOUT_X11 and so on. I think it's possible to do it. > > I think Chris solved this one in the thread > http://docs.freebsd.org/cgi/mid.cgi?4C476F69.1060200 Unless this was also submitted as a PR -- I doubt it will ever get in. -- -- David (obrien@FreeBSD.org) Q: Because it reverses the logical flow of conversation. A: Why is top-posting (putting a reply at the top of the message) frowned upon? Let's not play "Jeopardy-style quoting" From owner-freebsd-ports@FreeBSD.ORG Wed Oct 6 08:40:42 2010 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 7A21C106566B for ; Wed, 6 Oct 2010 08:40:42 +0000 (UTC) (envelope-from obrien@NUXI.org) Received: from dragon.nuxi.org (trang.nuxi.org [74.95.12.85]) by mx1.freebsd.org (Postfix) with ESMTP id 4E8F18FC17 for ; Wed, 6 Oct 2010 08:40:42 +0000 (UTC) Received: from dragon.nuxi.org (obrien@localhost [127.0.0.1]) by dragon.nuxi.org (8.14.4/8.14.4) with ESMTP id o968ef9B054988; Wed, 6 Oct 2010 01:40:41 -0700 (PDT) (envelope-from obrien@dragon.nuxi.org) Received: (from obrien@localhost) by dragon.nuxi.org (8.14.4/8.14.4/Submit) id o968eer3054987; Wed, 6 Oct 2010 01:40:40 -0700 (PDT) (envelope-from obrien) Date: Wed, 6 Oct 2010 01:40:40 -0700 From: "David O'Brien" To: David DEMELIER Message-ID: <20101006084040.GA53569@dragon.NUXI.org> References: <4C93AA31.5080202@DataIX.net> <20100918223933.GB85995@dragon.NUXI.org> <20101002002605.GA8018@dragon.NUXI.org> <4CA844E5.7060303@infracaninophile.co.uk> <20101005183452.GF7829@dragon.NUXI.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20101005183452.GF7829@dragon.NUXI.org> X-Operating-System: FreeBSD 9.0-CURRENT X-to-the-FBI-CIA-and-NSA: HI! HOW YA DOIN? User-Agent: Mutt/1.5.16 (2007-06-09) Cc: FreeBSD Ports Subject: Re: OPTIONS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Oct 2010 08:40:42 -0000 On Tue, Oct 05, 2010 at 11:34:52AM -0700, David O'Brien (@FreeBSD) wrote: > > 2010/10/3 Matthew Seaman : > > > In fact, you might just as well write a small HTML form, display it > > > using lynx or w3c or some other text mode browser[*], and then have the > > > form action feed into a CGI program that outputs a small Makefile with > > > appropriate variable definitions in it. > > I like this statement -- as it shows just how complex this will get when > taken to its natural conclusion. This is also how ridiculous things can get: curl 7.21.1 now offers me: [X] WERROR Treat compilation warnings as errors Can the port maintainer really not decide if that should just be turned off or turned on for FreeBSD?!? Do *I* really need to think about this one? But of course it doesn't offer me turning on NOPORTDOCS or NOPORTEXAMPLES, which would be useful. [I don't think any ports do...] cscope 15.7a offers me: [ ] XCSCOPE Install (X)Emacs package Do we really need to be bothered with OPTIONS to avoid installing an 87K .el file?!? -- -- David (obrien@FreeBSD.org) Q: Because it reverses the logical flow of conversation. A: Why is top-posting (putting a reply at the top of the message) frowned upon? Let's not play "Jeopardy-style quoting" From owner-freebsd-ports@FreeBSD.ORG Wed Oct 6 09:33:35 2010 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 1EF971065672; Wed, 6 Oct 2010 09:33:35 +0000 (UTC) (envelope-from andrew.w.nosenko@gmail.com) Received: from mail-qy0-f175.google.com (mail-qy0-f175.google.com [209.85.216.175]) by mx1.freebsd.org (Postfix) with ESMTP id 805158FC08; Wed, 6 Oct 2010 09:33:34 +0000 (UTC) Received: by qyk30 with SMTP id 30so21029qyk.13 for ; Wed, 06 Oct 2010 02:33:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=GinQx7ctUiLwI4DpBDWxZsDkLTGEBGuCqT9dYwnjpE0=; b=HOPQ4fAgAOaDNgIquyH0TgZiTweRsr7fBI9K9QbwGGVxpu8GgraGmEw8KCD3dh8BJS zjBle3IE+XvX4QSioNUjlm25KjA3Z9HsmKf+2Hp6WlQk82OVzr4HMubwejtkUSbxvkZb I150VvryuRWeyPwmlcfifWTU0iKULwHKQvPu0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=GInn1IcdBNZzqRYmRavp43OuggjDdIFIlYUfPBvTBmBlV7G88mbrj/l9v9lOLD/rtJ nQsTDIrSIlKYdLnXZBsjSE4nYpuirhHBvWed5SqEK5kf/ZeUH/q7dwq1yeUt8EcWSEc7 K5EdIk+uNRKMKdDPGc1tm8AqBsPpL+s7qw5vM= MIME-Version: 1.0 Received: by 10.224.29.14 with SMTP id o14mr9190877qac.343.1286355708216; Wed, 06 Oct 2010 02:01:48 -0700 (PDT) Received: by 10.229.25.201 with HTTP; Wed, 6 Oct 2010 02:01:48 -0700 (PDT) In-Reply-To: <20101006084040.GA53569@dragon.NUXI.org> References: <4C93AA31.5080202@DataIX.net> <20100918223933.GB85995@dragon.NUXI.org> <20101002002605.GA8018@dragon.NUXI.org> <4CA844E5.7060303@infracaninophile.co.uk> <20101005183452.GF7829@dragon.NUXI.org> <20101006084040.GA53569@dragon.NUXI.org> Date: Wed, 6 Oct 2010 12:01:48 +0300 Message-ID: From: "Andrew W. Nosenko" To: obrien@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: David DEMELIER , FreeBSD Ports Subject: Re: OPTIONS 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, 06 Oct 2010 09:33:35 -0000 On Wed, Oct 6, 2010 at 11:40, David O'Brien wrote: > On Tue, Oct 05, 2010 at 11:34:52AM -0700, David O'Brien (@FreeBSD) wrote: >> > 2010/10/3 Matthew Seaman : >> > > In fact, you might just as well write a small HTML form, display it >> > > using lynx or w3c or some other text mode browser[*], and then have = the >> > > form action feed into a CGI program that outputs a small Makefile wi= th >> > > appropriate variable definitions in it. >> >> I like this statement -- as it shows just how complex this will get when >> taken to its natural conclusion. > > This is also how ridiculous things can get: > > curl 7.21.1 now offers me: > =A0 =A0[X] WERROR =A0 =A0 =A0 Treat compilation warnings as errors > > =A0 =A0Can the port maintainer really not decide if that should just be > =A0 =A0turned off or turned on for FreeBSD?!? I wonder why -Werror even ever considered to be turned "on" at all. > > =A0 =A0Do *I* really need to think about this one? > > =A0 =A0But of course it doesn't offer me turning on NOPORTDOCS or > =A0 =A0NOPORTEXAMPLES, which would be useful. > =A0 =A0[I don't think any ports do...] > > > cscope 15.7a offers me: > =A0 =A0[ ] XCSCOPE =A0Install (X)Emacs package > > =A0 =A0Do we really need to be bothered with OPTIONS to avoid installing = an > =A0 =A087K .el file?!? Yes. I'm, as everyday cscope and emacs user, would be very frustrated if xcscope.el would be installed by ports overriding my patched version and forcing me to patch it again and again. Why xcscope.el didn't splinted out into separate port/package -- it's another question... --=20 Andrew W. Nosenko From owner-freebsd-ports@FreeBSD.ORG Wed Oct 6 12:12:19 2010 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 D003E1065670; Wed, 6 Oct 2010 12:12:19 +0000 (UTC) (envelope-from demelier.david@gmail.com) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 2E3518FC0A; Wed, 6 Oct 2010 12:12:18 +0000 (UTC) Received: by bwz15 with SMTP id 15so6940703bwz.13 for ; Wed, 06 Oct 2010 05:12:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=0dAjhxGBplbhTh+W9nJxDuu/giP34wYEAIFDEjcmHpA=; b=Zro8H7tRq7nX+eQHm7AJC4Cq/xoGtW7RBxnzK66Lhf4WxZBNIFRtTicnJZ3eu8/BZs pP93syWLGvYRXpCgco9RLG0ugOvOF5nc7A8itF6TH5q/VBYyLQxfdBiQC3dS3HUffily BOcn/TGeAKAMmiHYWuCnA31bd7wMFvQsyYcQA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=GAAcoz1TDyLAhG48SuyKupfqVQqvZO4Co4eCI9mGv9q6GyhW0utgRy5eE31yJj4VVH ZQ0x23LXDM1daGPYu5r6wkCzWK790nkLxUmm/BIrgcJ0uDkdu3Ih6OKtFK7/JdfvT4w1 RWNhodqkRx4Xpb3Sl+l2VROLf7FyE+HEykmOE= MIME-Version: 1.0 Received: by 10.204.76.69 with SMTP id b5mr9731598bkk.79.1286367138098; Wed, 06 Oct 2010 05:12:18 -0700 (PDT) Received: by 10.204.97.208 with HTTP; Wed, 6 Oct 2010 05:12:18 -0700 (PDT) In-Reply-To: <20101005182407.GE7829@dragon.NUXI.org> References: <4C93AA31.5080202@DataIX.net> <20100918223933.GB85995@dragon.NUXI.org> <20101002002605.GA8018@dragon.NUXI.org> <20101005182407.GE7829@dragon.NUXI.org> Date: Wed, 6 Oct 2010 14:12:18 +0200 Message-ID: From: David DEMELIER To: obrien@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD Ports Subject: Re: OPTIONS (was: editors/vim installs to /) 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, 06 Oct 2010 12:12:19 -0000 2010/10/5 David O'Brien : > On Sun, Oct 03, 2010 at 10:22:46AM +0200, David DEMELIER wrote: >> 2010/10/2 David O'Brien : >> > 2. With the way OPTIONS handling is done, there isn't a way for me >> > to query if I built with the defaults or not. >> > Thus leading to every port I manually install looking like it was >> > customized just because /var/db/ports/${PORTNAME} exists. =C2=A0Thus >> > implying I can no longer install the pre-build package. >> >> make rmconfig ? > > I think you've missed my point. > > That does not tell me if I, in the past, made a decision that did not > like the maintainer's defaults, or if I just wanted to extract the > sources so I could read the license or figure out what the OPTIONS knobs > were about, etc.. > I understood, you prefere a file like make.conf or ports.conf to see which options/knob is defined, isn't it ? >> The best thing to do is switch totally to a way to configure a port >> and remove the other one. > > Only if folks agree on what the best way to configure a port is. > I spoke with some co-workers last week, and OPTIONS weren't very > popular with them. =C2=A0They also stated some of the the issues I listed= . > > >> I think we should try to upgrade the options >> framework with what I said at 4. and 3. It's possible but we need some >> work. > > Even without forcing all ports to go in one direction for configuration, > this would be a Good Thing to do. =C2=A0Hopefully someone with interest w= ill > submit some patches. > I will try to do it, I think a replacement of ports.conf with a make syntax would be better. I will try to do something in the end of week. > -- > -- David =C2=A0(obrien@FreeBSD.org) > Q: Because it reverses the logical flow of conversation. > A: Why is top-posting (putting a reply at the top of the message) frowned= upon? > Let's not play "Jeopardy-style quoting" > _______________________________________________ > 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" > Kind regards, --=20 Demelier David From owner-freebsd-ports@FreeBSD.ORG Wed Oct 6 12:42:31 2010 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 01112106566B for ; Wed, 6 Oct 2010 12:42:31 +0000 (UTC) (envelope-from bf1783@googlemail.com) Received: from mail-ww0-f42.google.com (mail-ww0-f42.google.com [74.125.82.42]) by mx1.freebsd.org (Postfix) with ESMTP id 5685E8FC1B for ; Wed, 6 Oct 2010 12:42:30 +0000 (UTC) Received: by wwb13 with SMTP id 13so39567wwb.3 for ; Wed, 06 Oct 2010 05:42:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:received:reply-to :in-reply-to:references:date:message-id:subject:from:to:cc :content-type; bh=WIVVQPvrAB4tWA7ES/3O22rCwySvrHa4CBCTi0UKc2s=; b=Y5LIEPSH+Z37mSFb345C6sWF4/YMOsPR6sEA/LwpvPrGUS1ZM49bhK2LodfYy6jshi 4Gv7ixdZHaxsAmvI8bCLcZjpmYXu7Vnc4/wf6kzvLSw/pklq3Te1Ij2KNJwCGOUzN2mj lvuupjZfbBUuihKdqg58iADauAZUtr6JaqeMs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:reply-to:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; b=Wg3pLBrK9iAJZ+RvpDkCeKxWCVIitlp15cHgdOyagGN18z3t7vmbF39EH7SqV4MOtP KsRCbVBGDwWFQ5Eu2ohV3dwO2kU0YqR61rt1sCPNq3Uhf5mHue7zdF2fFCRKx9G3iFEf CJm7icWF5eaHC7sPCpN0GwkuKsqoxx0uVufqw= MIME-Version: 1.0 Received: by 10.216.235.104 with SMTP id t82mr786226weq.103.1286368948574; Wed, 06 Oct 2010 05:42:28 -0700 (PDT) Received: by 10.216.162.75 with HTTP; Wed, 6 Oct 2010 05:42:28 -0700 (PDT) In-Reply-To: References: Date: Wed, 6 Oct 2010 12:42:28 +0000 Message-ID: From: "b. f." To: freebsd-ports@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1 Cc: obrien@FreeBSD.org, Christopher Key Subject: Re: OPTIONS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: bf1783@gmail.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Oct 2010 12:42:31 -0000 David O'Brien wrote: > On Sun, Sep 19, 2010 at 10:24:59AM +0200, David DEMELIER wrote: > > What is "sufficiently clean" ? I wonder what is not clean in the > > options framework, so please tell me then we still can clean it? > > When the Ports Collection was invented, ports maintainers were to > choose a reasonable set of configuration for the FreeBSD community > and have the port build that way. > > Today we have ports that seem to expose every single option to GNU > configure and giving the user a puzzling choice of too many things. > Often the explanations are nothing more than restating the option > name and the user is left wondering what is X? What does Y mean? > How do I know if I really want Z or not? Why is threading so often > an OPTION and not just the default? Why do I have to go read the > packages README and INSTALLING to figure out the caveats of say > enabling threading? Or what the other list of things are and their > caveats? If you mean that some of the defaults are inconsistent, and could be changed; and that succinct comments could be added in some places to save time for the user, then I agree with you. But if you think that comments could obviate the need for learning about the software; or that the solution is to do away with OPTIONS altogether, and hard-code everything, I don't. You are a very experienced programmer, and you can appreciate that there is a lot of software out there that works in a lot of different ways. Also, there are a lot of users with different needs. To take your example, it may be that threading may be disabled for one port, and enabled for another, because of some inconsequential decision by a port maintainer. But it may also be because that port doesn't implement threading properly for some FreeBSD platforms. Or because enabling it brings benefits for some users, but disadvantages for others. We may be able to clean up some things, but we can't make the situation simpler than it is. > 1. One should not have to deal with the OPTIONS dialog just to > 'make extract' if one wants to check the license or otherwise > investigate a port before deciding to install it. That may be annoying, but some OPTIONS affect what is fetched and extracted, and how, so there isn't an easy way around this. If you just wanted to examine the default distfiles, you could set BATCH. The new license framework may help in the other case, after more LICENSE entries are added to ports. > 2. With the way OPTIONS handling is done, there isn't a way for me > to query if I built with the defaults or not. > Thus leading to every port I manually install looking like it was > customized just because /var/db/ports/${PORTNAME} exists. Thus > implying I can no longer install the pre-build package. This is partly an administrative issue, and I don't think that it can be dealt with entirely within Ports. Even if we changed the OPTIONSFILE handling to: (a) add a PORTS_DBDIR cookie, or an OPTIONSFILE entry, to indicate if an OPTIONSFILE corresponded to the default OPTIONS ; and (b) include all knobs that may affect the port build, and not just those now in OPTIONS -- both of which would add some complexity, and another potential source of error -- the information in PORTS_DBDIR may not correspond to the packages that are actually installed. Are you suggesting that all knobs used to build a package should be recorded in the package, and hence in PKG_DBDIR? That might be useful, although not easy to implement for knobs that weren't in OPTIONS. However, it seems to me that this kind of thing is best handled by updating tools, like pkg-mgmt/portupgrade[-devel], which has the per-port USE_PKGS[_ONLY] settings in pkgtool.conf. > 3. OPTIONS are limited to only checkbox YES/NO settings. > Why can I not set PREFIX thru the OPTIONS framework and have it come > from /var/db/ports/${PORTNAME}/options on the 2nd and later builds? > Even the boolean NOPORTDOCS isn't available thru OPTIONS. > Thus it is an inconsistent way to configure a port. > > 4. When I build misc/mc-light and have "WITHOUT_NLS=yes" in > /etc/make.conf, why does the OPTIONS dialog offer me > "[X] NLS Enable gettext support" instead of defaulting the > dialog to unchecked? You can set those knobs via the command line, or via Makefile.{inc, ${ARCH}*, ${OPSYS}, local}, or via make.conf, where you can limit the scope based on the .CURDIR, etc. Although we do have a problem, as you note in (4), with knobs that are OPTIONS, but are defined somewhere other than OPTIONSFILE. I hadn't seen: http://docs.freebsd.org/cgi/mid.cgi?4C476F69.1060200 until swell.k pointed it out (thanks). I think that it does some good things, but it does have some problems: --I don't think the priority is right: the "environment" settings ought to override the PORTS_DBDIR entries. This is because they will do so anyway in some circumstances (because of recursion, or the use of make -e/-E, or because you can't .undef some "environment" variables), but also because users may want to perform a test build with knobs defined in the "environment", without having to alter their settings in PORTS_DBDIR. --The parsing of the config files needs to be changed, so that _OPTION_SRC_${OPT} isn't set to "config" when it should be "environment" (see above). Also, the entries in OPTIONSFILE.local ought to override anything in OPTIONSFILE, without regard to precedence of WITHOUT_*. --There needs to be a final sanity-check, that fails with an appropriate error message if both WITH_* and WITHOUT_* are defined, because the .undefs are not sufficient to guarantee mutual exclusivity. > 5. One cannot opt-out of OPTIONS. > WITHOUT_OPTIONS does not work to just get the defaults while skipping > the OPTIONS dialog. Note, setting BATCH does a lot more than just > make OPTIONS non-interactive (for some ports it stops other > non-OPTIONS interaction with the user that one should see). Thus > there is no way to get an uninterrupted default build of something. We could add a DEFAULT_OPTIONS knob, that used default values without querying the user or overwriting an existing OPTIONSFILE. > 6. One cannot opt-in/opt-out on a per-port basis. > WITH[OUT]_${PORTNAME}_OPTIONS and ${PORTNAME}_WITH[OUT]_OPTIONS > should be supported to control the OPTIONS dialog just when > building ${PORTNAME}. If you have (5), you can opt-in/opt-out, just as you can set knobs, on a per-port basis. It seems to me that little is gained, but something is lost, by defining and parsing many per-port variables. > 7. Setting ${PORTNAME}_WITH[OUT]_ (or > WITH[OUT]_${PORTNAME}_) should set > WITH[OUT]_ just when building ${PORTNAME}. > So that folks who don't want to be interrupted with OPTIONS every > time there is an update to the list can hardcode their choices in > /etc/make.conf. Again, I wouldn't want to have to define and parse scores of such variables. You mean that, if a DEFAULT_OPTIONS knob were implemented as in (5), you would want to use default options for any new options, but a select set of pre-defined values for the others? A reasonable implementation of DEFAULT_OPTIONS and a solution to the problem of (4) would allow you to do this as above, with the knobs, or via OPTIONSFILE.local. > 8. OPTIONS make a mess in the typescript file from > 'script typescript make', and the choices are totally unreadable vs. > 'script typescript make -DWITH_FOO -WITHOUT_BAR'. We could print the OPTIONS settings used during a build, by default. b. From owner-freebsd-ports@FreeBSD.ORG Wed Oct 6 12:48:12 2010 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 167F91065675; Wed, 6 Oct 2010 12:48:12 +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 B97538FC1F; Wed, 6 Oct 2010 12:48:11 +0000 (UTC) Received: from mr16.lnh.mail.rcn.net ([207.172.157.36]) by smtp02.lnh.mail.rcn.net with ESMTP; 06 Oct 2010 08:19:06 -0400 Received: from mx04.lnh.mail.rcn.net (mx04.lnh.mail.rcn.net [207.172.157.54]) by mr16.lnh.mail.rcn.net (MOS 4.1.9-GA) with ESMTP id AQM66833; Wed, 6 Oct 2010 08:19:05 -0400 Received: from 209-6-91-204.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com (HELO jerusalem.litteratus.org.litteratus.org) ([209.6.91.204]) by smtp04.lnh.mail.rcn.net with ESMTP; 06 Oct 2010 08:19:05 -0400 From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <19628.26937.51650.986554@jerusalem.litteratus.org> Date: Wed, 6 Oct 2010 08:19:05 -0400 To: David DEMELIER In-Reply-To: References: <4C93AA31.5080202@DataIX.net> <20100918223933.GB85995@dragon.NUXI.org> <20101002002605.GA8018@dragon.NUXI.org> <20101005182407.GE7829@dragon.NUXI.org> X-Mailer: VM 7.17 under 21.5 (beta28) "fuki" XEmacs Lucid X-Junkmail-Whitelist: YES (by domain whitelist at mr16.lnh.mail.rcn.net) Cc: FreeBSD Ports Subject: Re: OPTIONS (was: editors/vim installs to /) 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, 06 Oct 2010 12:48:12 -0000 David DEMELIER writes: > I will try to do it, I think a replacement of ports.conf with a > make syntax would be better. I will try to do something in the > end of week. For informational purposes only: if you are not aware of it, portupgrade has "pkgtools.conf". Robert Huff From owner-freebsd-ports@FreeBSD.ORG Wed Oct 6 15:15:05 2010 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 233F6106566B for ; Wed, 6 Oct 2010 15:15:05 +0000 (UTC) (envelope-from cforgeron@acsi.ca) Received: from mta02.eastlink.ca (mta02.eastlink.ca [24.224.136.13]) by mx1.freebsd.org (Postfix) with ESMTP id E14C78FC17 for ; Wed, 6 Oct 2010 15:15:04 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII Received: from ip06.eastlink.ca ([unknown] [24.222.39.84]) by mta02.eastlink.ca (Sun Java(tm) System Messaging Server 7.3-11.01 64bit (built Sep 1 2009)) with ESMTP id <0L9V00HQZIKHHEO2@mta02.eastlink.ca> for freebsd-ports@freebsd.org; Wed, 06 Oct 2010 11:50:41 -0300 (ADT) X-CMAE-Score: 0 X-CMAE-Analysis: v=1.1 cv=zW4qkwwpA+AM09VaNOLkucDBqffYZTwBSaEYifkV/P4= c=1 sm=1 a=ZpuKTQqRQM4A:10 a=kj9zAlcOel0A:10 a=4jfpM0niHC9GHu1aVJgA:9 a=HOdt6J6-MI8U1utgMEAA:7 a=1hRtpxV76XYL8KMb93m42HCPOhMA:4 a=CjuIK1q_8ugA:10 a=12M4PSijgPY/TTHpO+5bpg==:117 Received: from blk-222-10-85.eastlink.ca (HELO server7.acsi.ca) ([24.222.10.85]) by ip06.eastlink.ca with ESMTP; Wed, 06 Oct 2010 11:45:04 -0300 Received: from server7.acsi.ca ([192.168.9.7]) by server7.acsi.ca ([192.168.9.7]) with mapi; Wed, 06 Oct 2010 11:45:04 -0300 From: Chris Forgeron To: "'freebsd-ports@freebsd.org'" Date: Wed, 06 Oct 2010 11:45:03 -0300 Thread-topic: Volunteering for maintaining ICC port Thread-index: ActlZQ8wrXeAgP7pRPSm9gUYwYNLOg== Message-id: Accept-Language: en-US Content-language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US Subject: Volunteering for maintaining ICC 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, 06 Oct 2010 15:15:05 -0000 I'd like to step up and offer to modernize and maintain the ICC port for FreeBSD. I may be crazy, specially as 9 is going towards Clang/LLVM. With that move, there may be a lot of very talented people modifying the build/make environment to work in a way that is even further removed from ICC's working. Time will tell if this is viable or not. What I'm looking for is the previous port maintainer's email address. I ran across it someplace, but can't find it now. He mentioned having some contacts at Intel, as well as info on the basic process and tips for the next person who may want to maintain. I'm very interested in HPC, and I believe step one on this long road for FreeBSD is an option to use a more optimized complier for Intel platforms (which is all we use anyway). Thanks. From owner-freebsd-ports@FreeBSD.ORG Wed Oct 6 15:24:40 2010 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 E1F8E106566C for ; Wed, 6 Oct 2010 15:24:40 +0000 (UTC) (envelope-from dennylin93@hs.ntnu.edu.tw) Received: from mail.hs.ntnu.edu.tw (mail.hs.ntnu.edu.tw [140.131.149.3]) by mx1.freebsd.org (Postfix) with ESMTP id A589E8FC15 for ; Wed, 6 Oct 2010 15:24:40 +0000 (UTC) Received: by mail.hs.ntnu.edu.tw (Postfix, from userid 1001) id 611284B7824; Wed, 6 Oct 2010 23:24:39 +0800 (CST) Date: Wed, 6 Oct 2010 23:24:39 +0800 From: Denny Lin To: Chris Forgeron Message-ID: <20101006152438.GA84591@mail.hs.ntnu.edu.tw> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.3i Cc: "'freebsd-ports@freebsd.org'" Subject: Re: Volunteering for maintaining ICC 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, 06 Oct 2010 15:24:41 -0000 On Wed, Oct 06, 2010 at 11:45:03AM -0300, Chris Forgeron wrote: > What I'm looking for is the previous port maintainer's email address. I ran across it someplace, but can't find it now. He mentioned having some contacts at Intel, as well as info on the basic process and tips for the next person who may want to maintain. The maintainer used to be netchild@FreeBSD.org. Info can be found here: http://www.freebsd.org/cgi/cvsweb.cgi/ports/lang/icc/Makefile#rev1.94 -- Denny Lin From owner-freebsd-ports@FreeBSD.ORG Wed Oct 6 15:26:49 2010 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 E37511065670 for ; Wed, 6 Oct 2010 15:26:49 +0000 (UTC) (envelope-from cforgeron@acsi.ca) Received: from mta04.eastlink.ca (mta04.eastlink.ca [24.224.136.10]) by mx1.freebsd.org (Postfix) with ESMTP id AD37E8FC34 for ; Wed, 6 Oct 2010 15:26:49 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII Received: from ip05.eastlink.ca ([unknown] [24.222.39.68]) by mta04.eastlink.ca (Sun Java(tm) System Messaging Server 7.3-11.01 64bit (built Sep 1 2009)) with ESMTP id <0L9V005Q5K8P7AX0@mta04.eastlink.ca> for freebsd-ports@freebsd.org; Wed, 06 Oct 2010 12:26:49 -0300 (ADT) X-CMAE-Score: 0 X-CMAE-Analysis: v=1.1 cv=mORQtGzMSGJSBwuMSvVfB0MKjPGmXehAuj88Uvu04o4= c=1 sm=1 a=f0RbtlSJPCQA:10 a=IkcTkHD0fZMA:10 a=6I5d2MoRAAAA:8 a=sZl654ifsCIz1y2St4gA:9 a=xLfYECE0jvY_YJoDXocA:7 a=qeCVKFun0dixQhWHL3n9Jw-_gAcA:4 a=QEXdDO2ut3YA:10 a=SV7veod9ZcQA:10 a=Z5YEXiCYNtyKiT43:21 a=RKFYHXNqTyfLIR6_:21 a=/bLbuBD0lrv91xL1PDQKaA==:117 Received: from blk-222-10-85.eastlink.ca (HELO server7.acsi.ca) ([24.222.10.85]) by ip05.eastlink.ca with ESMTP; Wed, 06 Oct 2010 12:26:48 -0300 Received: from server7.acsi.ca ([192.168.9.7]) by server7.acsi.ca ([192.168.9.7]) with mapi; Wed, 06 Oct 2010 12:26:48 -0300 From: Chris Forgeron To: 'Denny Lin' Date: Wed, 06 Oct 2010 12:26:46 -0300 Thread-topic: Volunteering for maintaining ICC port Thread-index: ActlarC7KpR59g+dSbqyoefqq6Ms4AAABOfg Message-id: References: <20101006152438.GA84591@mail.hs.ntnu.edu.tw> In-reply-to: <20101006152438.GA84591@mail.hs.ntnu.edu.tw> Accept-Language: en-US Content-language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US Cc: "'freebsd-ports@freebsd.org'" Subject: RE: Volunteering for maintaining ICC 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, 06 Oct 2010 15:26:50 -0000 Ah, perfect - That's the page I was looking for. Thanks, now begins the feasibility study. :-) -----Original Message----- From: owner-freebsd-ports@freebsd.org [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of Denny Lin Sent: October-06-10 12:25 PM To: Chris Forgeron Cc: 'freebsd-ports@freebsd.org' Subject: Re: Volunteering for maintaining ICC port On Wed, Oct 06, 2010 at 11:45:03AM -0300, Chris Forgeron wrote: > What I'm looking for is the previous port maintainer's email address. I ran across it someplace, but can't find it now. He mentioned having some contacts at Intel, as well as info on the basic process and tips for the next person who may want to maintain. The maintainer used to be netchild@FreeBSD.org. Info can be found here: http://www.freebsd.org/cgi/cvsweb.cgi/ports/lang/icc/Makefile#rev1.94 -- Denny Lin _______________________________________________ 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 Oct 6 16:22:39 2010 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 58C2E1065673 for ; Wed, 6 Oct 2010 16:22:39 +0000 (UTC) (envelope-from andimayer82@gmail.com) Received: from mail-pw0-f54.google.com (mail-pw0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id 337B38FC17 for ; Wed, 6 Oct 2010 16:22:39 +0000 (UTC) Received: by pwi8 with SMTP id 8so2438346pwi.13 for ; Wed, 06 Oct 2010 09:22:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=fN2sQjcx8pvh/NaQLauTLTIUI8diTFobJb3uLQNs3YA=; b=I4aVM5E8D6zTxW0C0IfU9pNrNSF4/Vnlgr8nWo9spkhBfFsjvTLzIHEyzCMAMIk1+0 wUk4pACDsjXEKChliuoHtYyXUZnWhfdZdX19BKxXNNHnKkE7j/2OceYNaFwYJBbSsSqk gcIhComTsvNsJ+V2HbIA3iZLlLAOsu9tcPnYE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=qEgmjAZBAaHXGslNCkadrhpN4nYFRqMYX8mgNGanXr78UkU5416bQP/rnpygpoRObh 8ukBFpwKxU/YDpkAvX5/smYLyO/IlYZwHv2z5Q7Blwq+LepImXqFXwY3RVe6jNJKBBIf f2EXfWWjQKdRRrdTBrp+Fyn05h8FyAS6jVHJ8= MIME-Version: 1.0 Received: by 10.114.13.9 with SMTP id 9mr15656371wam.195.1286380492508; Wed, 06 Oct 2010 08:54:52 -0700 (PDT) Received: by 10.220.190.75 with HTTP; Wed, 6 Oct 2010 08:54:52 -0700 (PDT) Date: Wed, 6 Oct 2010 17:54:52 +0200 Message-ID: From: Andreas Mayer To: ports@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1 Cc: Subject: teamspeak_client/teamspeak_server 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: Wed, 06 Oct 2010 16:22:39 -0000 hi, I just wanted to notify you that there are TeamSpeak 3 binaries available for FreeBSD x86 and AMD64 now. Got them up and running without problems, maybe you find some time and update the ports... just let me know if I can help (but I don't have experience with ports). daemon -u teamspeak ./ts3server_minimal_runscript.sh works for me, when permissions are set to teamspeak user for the whole directory Best regards Andreas From owner-freebsd-ports@FreeBSD.ORG Wed Oct 6 17:12:12 2010 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 C2E371065670 for ; Wed, 6 Oct 2010 17:12:12 +0000 (UTC) (envelope-from freebsd-ports@m.gmane.org) Received: from lo.gmane.org (lo.gmane.org [80.91.229.12]) by mx1.freebsd.org (Postfix) with ESMTP id 78C628FC0C for ; Wed, 6 Oct 2010 17:12:12 +0000 (UTC) Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1P3XXD-0004LG-RI for freebsd-ports@freebsd.org; Wed, 06 Oct 2010 19:12:07 +0200 Received: from p57915bf1.dip.t-dialin.net ([87.145.91.241]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 06 Oct 2010 19:12:07 +0200 Received: from jumper99 by p57915bf1.dip.t-dialin.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 06 Oct 2010 19:12:07 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: "Helmut Schneider" Date: Wed, 6 Oct 2010 17:11:58 +0000 (UTC) Lines: 12 Message-ID: References: <201010051139.15066.makc@issp.ac.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: p57915bf1.dip.t-dialin.net User-Agent: XanaNews/1.19.1.269 X-Ref: news.gmane.org ~XNS:00000073 Subject: Re: How long does a repocopy take? 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, 06 Oct 2010 17:12:12 -0000 Max Brazhnikov wrote: > On Mon, 4 Oct 2010 18:57:35 +0000 (UTC), Helmut Schneider wrote: > > sorry for my impatience but I asked for a repocopy about one week > > ago and now I'm wondering how long normally a repocopy takes. > > Submit patch vs existing port ask for repocopy. Commiter will request > repocopy from portmgr@ Did so. Thanks, Helmut From owner-freebsd-ports@FreeBSD.ORG Wed Oct 6 17:31:06 2010 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 7F6181065670 for ; Wed, 6 Oct 2010 17:31:06 +0000 (UTC) (envelope-from bf1783@googlemail.com) Received: from mail-ww0-f50.google.com (mail-ww0-f50.google.com [74.125.82.50]) by mx1.freebsd.org (Postfix) with ESMTP id EA01B8FC0C for ; Wed, 6 Oct 2010 17:31:01 +0000 (UTC) Received: by wwb18 with SMTP id 18so34486wwb.31 for ; Wed, 06 Oct 2010 10:30:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:received:reply-to:date :message-id:subject:from:to:cc:content-type; bh=Cj/191KuFJQuYCnWMpuKRdWZ9KMBJZiZXAEg+Rcou+M=; b=KI980WrbNMCspxX9mcTSDhiStfQXDTIJLdQqaAui5ymPXVlcia/kHJd85dnjY+qCTb rEUjnrfDiB5nkHmlKvm9WOoqfgpSbfliB+zMkcmaV7664CKcNAOICSD4PImF85aA41Yu Q40lnz4l6vp8fRCcUELfFsPXYl2K8yGpHOGio= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:reply-to:date:message-id:subject:from:to:cc :content-type; b=SwBruz9zElZnbONs+bCRjpqYK+5bR3Oj+BQEeNt2OCSXgMzNLq+OByQjG/G8Os4Hgn DaHH6tqntPbgyePygy2I1lwgCY7ohahtHPEI2wko+t5RETYDp/g9EEXe5doC268lE9Di MAkqGSWoXU+Tehxp1Op/OWXiXuCu5gzLiTb6U= MIME-Version: 1.0 Received: by 10.216.62.140 with SMTP id y12mr7010427wec.100.1286386201935; Wed, 06 Oct 2010 10:30:01 -0700 (PDT) Received: by 10.216.162.75 with HTTP; Wed, 6 Oct 2010 10:30:01 -0700 (PDT) Date: Wed, 6 Oct 2010 17:30:01 +0000 Message-ID: From: "b. f." To: Chris Forgeron Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-ports@FreeBSD.org Subject: Re: Volunteering for maintaining ICC port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: bf1783@gmail.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Oct 2010 17:31:06 -0000 >The maintainer used to be netchild at FreeBSD.org. He wrote this not long ago: http://lists.freebsd.org/pipermail/freebsd-current/2010-August/019208.html b. From owner-freebsd-ports@FreeBSD.ORG Wed Oct 6 17:35:32 2010 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 847EB1065708 for ; Wed, 6 Oct 2010 17:35:32 +0000 (UTC) (envelope-from bf1783@googlemail.com) Received: from mail-wy0-f182.google.com (mail-wy0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id 1E0718FC0C for ; Wed, 6 Oct 2010 17:35:31 +0000 (UTC) Received: by wyb29 with SMTP id 29so7407079wyb.13 for ; Wed, 06 Oct 2010 10:35:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:received:reply-to:date :message-id:subject:from:to:cc:content-type; bh=Cj/191KuFJQuYCnWMpuKRdWZ9KMBJZiZXAEg+Rcou+M=; b=KI980WrbNMCspxX9mcTSDhiStfQXDTIJLdQqaAui5ymPXVlcia/kHJd85dnjY+qCTb rEUjnrfDiB5nkHmlKvm9WOoqfgpSbfliB+zMkcmaV7664CKcNAOICSD4PImF85aA41Yu Q40lnz4l6vp8fRCcUELfFsPXYl2K8yGpHOGio= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:reply-to:date:message-id:subject:from:to:cc :content-type; b=SwBruz9zElZnbONs+bCRjpqYK+5bR3Oj+BQEeNt2OCSXgMzNLq+OByQjG/G8Os4Hgn DaHH6tqntPbgyePygy2I1lwgCY7ohahtHPEI2wko+t5RETYDp/g9EEXe5doC268lE9Di MAkqGSWoXU+Tehxp1Op/OWXiXuCu5gzLiTb6U= MIME-Version: 1.0 Received: by 10.216.62.140 with SMTP id y12mr7010427wec.100.1286386201935; Wed, 06 Oct 2010 10:30:01 -0700 (PDT) Received: by 10.216.162.75 with HTTP; Wed, 6 Oct 2010 10:30:01 -0700 (PDT) Date: Wed, 6 Oct 2010 17:30:01 +0000 Message-ID: From: "b. f." To: Chris Forgeron Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-ports@FreeBSD.org Subject: Re: Volunteering for maintaining ICC port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: bf1783@gmail.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Oct 2010 17:35:32 -0000 >The maintainer used to be netchild at FreeBSD.org. He wrote this not long ago: http://lists.freebsd.org/pipermail/freebsd-current/2010-August/019208.html b. From owner-freebsd-ports@FreeBSD.ORG Wed Oct 6 17:51:06 2010 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 17EF5106564A for ; Wed, 6 Oct 2010 17:51:06 +0000 (UTC) (envelope-from obrien@NUXI.org) Received: from dragon.nuxi.org (trang.nuxi.org [74.95.12.85]) by mx1.freebsd.org (Postfix) with ESMTP id CF6F48FC0C for ; Wed, 6 Oct 2010 17:51:05 +0000 (UTC) Received: from dragon.nuxi.org (obrien@localhost [127.0.0.1]) by dragon.nuxi.org (8.14.4/8.14.4) with ESMTP id o96Hp5j9081907; Wed, 6 Oct 2010 10:51:05 -0700 (PDT) (envelope-from obrien@dragon.nuxi.org) Received: (from obrien@localhost) by dragon.nuxi.org (8.14.4/8.14.4/Submit) id o96Hp5Wc081906; Wed, 6 Oct 2010 10:51:05 -0700 (PDT) (envelope-from obrien) Date: Wed, 6 Oct 2010 10:51:05 -0700 From: "David O'Brien" To: David DEMELIER Message-ID: <20101006175105.GA81751@dragon.NUXI.org> References: <4C93AA31.5080202@DataIX.net> <20100918223933.GB85995@dragon.NUXI.org> <20101002002605.GA8018@dragon.NUXI.org> <20101005182407.GE7829@dragon.NUXI.org> MIME-Version: 1.0 Content-Type: text/plain; charset=unknown-8bit Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: X-Operating-System: FreeBSD 9.0-CURRENT X-to-the-FBI-CIA-and-NSA: HI! HOW YA DOIN? User-Agent: Mutt/1.5.16 (2007-06-09) Cc: FreeBSD Ports Subject: Re: OPTIONS (was: editors/vim installs to /) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Oct 2010 17:51:06 -0000 On Wed, Oct 06, 2010 at 02:12:18PM +0200, David DEMELIER wrote: > 2010/10/5 David O'Brien : > > On Sun, Oct 03, 2010 at 10:22:46AM +0200, David DEMELIER wrote: > >> 2010/10/2 David O'Brien : > >> > 2. With the way OPTIONS handling is done, there isn't a way for me > >> > to query if I built with the defaults or not. > >> > Thus leading to every port I manually install looking like it was > >> > customized just because /var/db/ports/${PORTNAME} exists.  Thus > >> > implying I can no longer install the pre-build package. > >> > >> make rmconfig ? > > > > I think you've missed my point. > > > > That does not tell me if I, in the past, made a decision that did not > > like the maintainer's defaults, or if I just wanted to extract the > > sources so I could read the license or figure out what the OPTIONS knobs > > were about, etc.. > > I understood, you prefere a file like make.conf or ports.conf to see > which options/knob is defined, isn't it ? That is true - but doesn't isn't really what's behind #2 above. In this case, I really want to now which packages are OK to upgrade using 'portupgrade -PP' (or portmaster) -- to quickly do upgrades using the pre-built packages Portmgr spends a lot of time making available to us. I use a script that looks for a non-zero byte /var/db/ports/$PKG/options or any $PKG knobs in /etc/make.conf. If either is found, then 'portupgrade -PP', else just 'portupgrade'. This is where things like 'make extract' cause a problem - since one cannot even extract without going thru OPTIONS dialog. -- -- David (obrien@FreeBSD.org) Q: Because it reverses the logical flow of conversation. A: Why is top-posting (putting a reply at the top of the message) frowned upon? Let's not play "Jeopardy-style quoting" From owner-freebsd-ports@FreeBSD.ORG Wed Oct 6 17:55:14 2010 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 808AD1065672 for ; Wed, 6 Oct 2010 17:55:14 +0000 (UTC) (envelope-from obrien@NUXI.org) Received: from dragon.nuxi.org (trang.nuxi.org [74.95.12.85]) by mx1.freebsd.org (Postfix) with ESMTP id 3F75A8FC22 for ; Wed, 6 Oct 2010 17:55:14 +0000 (UTC) Received: from dragon.nuxi.org (obrien@localhost [127.0.0.1]) by dragon.nuxi.org (8.14.4/8.14.4) with ESMTP id o96HtDja082015; Wed, 6 Oct 2010 10:55:13 -0700 (PDT) (envelope-from obrien@dragon.nuxi.org) Received: (from obrien@localhost) by dragon.nuxi.org (8.14.4/8.14.4/Submit) id o96HtDRC082014; Wed, 6 Oct 2010 10:55:13 -0700 (PDT) (envelope-from obrien) Date: Wed, 6 Oct 2010 10:55:13 -0700 From: "David O'Brien" To: "Andrew W. Nosenko" Message-ID: <20101006175513.GB81751@dragon.NUXI.org> References: <20100918223933.GB85995@dragon.NUXI.org> <20101002002605.GA8018@dragon.NUXI.org> <4CA844E5.7060303@infracaninophile.co.uk> <20101005183452.GF7829@dragon.NUXI.org> <20101006084040.GA53569@dragon.NUXI.org> MIME-Version: 1.0 Content-Type: text/plain; charset=unknown-8bit Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: X-Operating-System: FreeBSD 9.0-CURRENT X-to-the-FBI-CIA-and-NSA: HI! HOW YA DOIN? User-Agent: Mutt/1.5.16 (2007-06-09) Cc: David DEMELIER , FreeBSD Ports Subject: Re: OPTIONS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Oct 2010 17:55:14 -0000 On Wed, Oct 06, 2010 at 12:01:48PM +0300, Andrew W. Nosenko wrote: > On Wed, Oct 6, 2010 at 11:40, David O'Brien wrote: > > On Tue, Oct 05, 2010 at 11:34:52AM -0700, David O'Brien (@FreeBSD) wrote: > >> > 2010/10/3 Matthew Seaman : > >> > > In fact, you might just as well write a small HTML form, display it > >> > > using lynx or w3c or some other text mode browser[*], and then have the > >> > > form action feed into a CGI program that outputs a small Makefile with > >> > > appropriate variable definitions in it. > >> > >> I like this statement -- as it shows just how complex this will get when > >> taken to its natural conclusion. > > > > This is also how ridiculous things can get: > > > > curl 7.21.1 now offers me: > >    [X] WERROR       Treat compilation warnings as errors > > > >    Can the port maintainer really not decide if that should just be > >    turned off or turned on for FreeBSD?!? > > I wonder why -Werror even ever considered to be turned "on" at all. \AOL{me too} I mean building with "-Werror" sounds like goodness -- of course I want it. But why is the maintainer offering me a choice? What is the likelihood of the port not building with -Werror? Does he know of versions of FreeBSD where the port will not build with -Werror? Hum.. maybe I don't want -Werror. But then why didn't the the maintainer just decide we would all not build with -Werror? Given we are just building and installing Curl, what do we expect users to do choose WERROR and get a build break with -Werror? They aren't developing the next version of Curl. Can they submit a FreeBSD PR and expect the maintainer will quickly add a patch to the port to fix the warning(s)? Or will the response be "Well, don't do that."? In which case just turning off -Werror for all seems a better thing to do. -- -- David (obrien@FreeBSD.org) Q: Because it reverses the logical flow of conversation. A: Why is top-posting (putting a reply at the top of the message) frowned upon? Let's not play "Jeopardy-style quoting" From owner-freebsd-ports@FreeBSD.ORG Wed Oct 6 19:57:47 2010 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 593231065675 for ; Wed, 6 Oct 2010 19:57:47 +0000 (UTC) (envelope-from severe.grind@gmail.com) Received: from mail-vw0-f54.google.com (mail-vw0-f54.google.com [209.85.212.54]) by mx1.freebsd.org (Postfix) with ESMTP id 01F618FC27 for ; Wed, 6 Oct 2010 19:57:46 +0000 (UTC) Received: by vws2 with SMTP id 2so162069vws.13 for ; Wed, 06 Oct 2010 12:57:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type; bh=BLEI2araa4WHGjfbw2DpPPrRAbcrUx5wJMYSvMwHqng=; b=TzG67hNR8MWep2bF46ZxlakYa79vDXijyyewqf5NWkdmNZXT7Oq+yqQP0CeMAzmIzW nKvyD9BXbqqrpTKYmM7h8oOCR444PPpcpVja++lnBqpxiDhxVShSHmNPWiQbO+Ut10jH 7LJsTXUD/Ej3JTUwL4fl+c+0JiXxpWpnKdjv8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=rxIvewYfcJY6NIMM4bP2MOMqk5J9lhwJlLCn58u0mB5tqiKzr4Z3L4+6Vop6DSlG0S 7X0aCT5gMBWIXovbFCoSPjzeuY8mPIffZlsBFbclKJtSBuqnERF6UMnb+12t2nM1dd+x Ywiu+7hEW+tkBaKe4KID/Y8nIwidWPPhOH3x8= MIME-Version: 1.0 Received: by 10.220.180.133 with SMTP id bu5mr906504vcb.276.1286394655180; Wed, 06 Oct 2010 12:50:55 -0700 (PDT) Received: by 10.220.190.10 with HTTP; Wed, 6 Oct 2010 12:50:55 -0700 (PDT) In-Reply-To: References: Date: Wed, 6 Oct 2010 23:50:55 +0400 Message-ID: From: Severe Grind To: ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: several question about 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: Wed, 06 Oct 2010 19:57:47 -0000 Hello, I have several questions concerning creating Makefile I don't understand in what sequence USE_* flags in Makefile are processed Is it possible to do: In pre-fetch stage USE_AUTOTOOLS USE_JAVA USE_APACHE after that execute script, pre-configure which will make firebird-2.1 from sorce, then make PHP via USE flag? From owner-freebsd-ports@FreeBSD.ORG Wed Oct 6 20:17:37 2010 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 5824F106566C for ; Wed, 6 Oct 2010 20:17:37 +0000 (UTC) (envelope-from severe.grind@gmail.com) Received: from mail-qy0-f182.google.com (mail-qy0-f182.google.com [209.85.216.182]) by mx1.freebsd.org (Postfix) with ESMTP id 161D38FC1B for ; Wed, 6 Oct 2010 20:17:36 +0000 (UTC) Received: by qyk35 with SMTP id 35so4790008qyk.13 for ; Wed, 06 Oct 2010 13:17:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=QysJPJSXUqbjJVpoe+CbPHgNn+s/w9NVdgY7vmcHNX8=; b=Tj2hvNK3ym38G88idMHdYcwZ38HtCraqOaKI3dU3vT+7wKZ/WdGtaU99Lh4uhivC30 eN2GidUVCYfO7Ip3Yd/Ly0eB1vtAGxWXHYWIQuYYQRBi1ZTO8N2Z8tGwnygsOBuV2p3h sBH4/nMvYVDLAXo5yJgaOuCTZCKcW4gvCZt/I= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=NnpjTfzH8/znH7Ye97Ou7M5g+gKxx0j8J53G2louXIOTET4wfQyOYBLsTc1D/ToICl wjb2o0BKt+weFH0Y8PyIKsnRO3ViYyBnPsLozbJIsOVy2yv2ClVCipFNmhSIld/lo3yR mq1ABPO8RGXvgiXCjtDgdBYv+3X0vBSojhc+g= MIME-Version: 1.0 Received: by 10.224.53.203 with SMTP id n11mr9644412qag.345.1286394384819; Wed, 06 Oct 2010 12:46:24 -0700 (PDT) Received: by 10.220.190.10 with HTTP; Wed, 6 Oct 2010 12:46:24 -0700 (PDT) Date: Wed, 6 Oct 2010 23:46:24 +0400 Message-ID: From: Severe Grind To: ports@freebsd.org X-Mailman-Approved-At: Wed, 06 Oct 2010 20:46:06 +0000 Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: base64 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: several question about 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: Wed, 06 Oct 2010 20:17:37 -0000 SGVsbG8KSSBoYXZlIHNldmVyYWwgcXVlc3Rpb24gYWJvdXQgY3JlYXRlIE1ha2VmaWxlCuXT1Ngg 0MHS1SDXz9DSz9PP1yDQzyDQz9fPxNUg08/axMHOydEgTWFrZWZpbGUKSSdtIG5vdCB1bmRlcnN0 YW5kIGluIHdoYXQgc2VxdWVuY2UgcHJvY2Vzc2VkIFVTRV8qIGZsYWdzIGluIE1ha2VmaWxlCu7F INDPztHUzs8g1yDLwcvPyiDQz9PMxcTP18HUxczYzs/T1Mkgz8LSwcLB1NnXwcDU09EgVVNFXyog xszBx8kg1yDNwcrLCsbByszFCklzIGl0IHBvc3NpYmxlIHRoZSBmb2xsb3dpbmc6CvfP2s3P1s7P IMzJINfZ0M/MzsnU2CDOwQpwcmUtZmV0Y2gKVVNFX0FVVE9UT09MUwpVU0VfSkFWQQpVU0VfQVBB Q0hFCnByZS1mZXRjaCDTws/Sy9Ug2sHXydPJzc/T1MXKClVTRV9BVVRPVE9PTFMKVVNFX0pBVkEK VVNFX0FQQUNIRQphZnRlciB0aGF0IGV4ZWN1dGUgc2NyaXB0LCBwcmUtY29uZmlndXJlIHdobyBt YWtlZCBmaXJlYmlyZC0yLjEgZnJvbSBzb3JjZSwKdGhlbiBtYWtlIFBIUCB2aWEgVVNFIGZsYWc/ CgrawdTFzSDX2dDPzM7J1Ngg08vSydDULCBwcmUtY29uZmlndXJlIMvP1M/S2cog08/CxdLF1CBm aXJlYmlyZC0yLjEsIMEg2sHUxc0K08/C0sHU2CBQSFAg3sXSxdogVVNFIMbMwccuCg== From owner-freebsd-ports@FreeBSD.ORG Wed Oct 6 21:00:19 2010 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 DF8B31065672; Wed, 6 Oct 2010 21:00:19 +0000 (UTC) (envelope-from paul_hohberg@fsd.k12.ca.us) Received: from outbox.fsd.k12.ca.us (outbox.fsd.k12.ca.us [209.232.157.19]) by mx1.freebsd.org (Postfix) with ESMTP id CF3698FC2C; Wed, 6 Oct 2010 21:00:19 +0000 (UTC) Received: from [10.22.3.237] (unknown [10.22.3.237]) by outbox.fsd.k12.ca.us (Postfix) with ESMTP id 687BF12614E; Wed, 6 Oct 2010 13:31:31 -0700 (PDT) From: paul_hohberg Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Wed, 6 Oct 2010 13:38:03 -0700 Message-Id: To: sylvio@FreeBSD.org Mime-Version: 1.0 (Apple Message framework v1081) X-Mailer: Apple Mail (2.1081) Cc: ports@FreeBSD.org Subject: FreeBSD Port: ntop-3.3.10_7 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, 06 Oct 2010 21:00:20 -0000 Any plans on adding ntop 4.1 to the FreeBSD ports collection? Thanks, Paul Hohberg System Administrator Fullerton School District 1401 W. Valencia Drive Fullerton, CA 92833 714-447-7483 From owner-freebsd-ports@FreeBSD.ORG Thu Oct 7 02:46:46 2010 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 D778610656A5 for ; Thu, 7 Oct 2010 02:46:46 +0000 (UTC) (envelope-from swell.k@gmail.com) Received: from mail-vw0-f54.google.com (mail-vw0-f54.google.com [209.85.212.54]) by mx1.freebsd.org (Postfix) with ESMTP id 88C868FC1E for ; Thu, 7 Oct 2010 02:46:46 +0000 (UTC) Received: by vws2 with SMTP id 2so177954vws.13 for ; Wed, 06 Oct 2010 19:46:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:user-agent:mime-version:content-type; bh=wHkEX4uFTGJ21u2RLbqXH1WArnpFkGLapxbS/G7yGHw=; b=rpg513vEoMpHUVyV7GwU+Z0R5iyQPY3zS+wHcpqEamx/sYfjP8WlsIZBM1/arvwpoZ Du5R/v5tqwqvWyV9RoE4QiwhqOR8O6HtA5/68EdltpBBNq8HTPc3XJzDr9mxQgPTfuMW W0zBAcf5DLRNk8iEsjZpuYV9a3Je1nd7g8eMI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:user-agent:mime-version :content-type; b=AEfDVeBWw2Lk5QA2acnrOfqncauIXJM7ZY+3S2ITx8bs/20XPyRzibwHfVaBjMwUOK M4P8VQRkO63WFnG64anr+l0PgLaD46jdeHTyfqyP6hJK5wPrvhKAZ5Fg9PfZA/nVreAi 6waTtvM6aRKOvU0fGYiz//xBHv6bLXAQOPBIo= Received: by 10.220.185.140 with SMTP id co12mr67600vcb.109.1286419602681; Wed, 06 Oct 2010 19:46:42 -0700 (PDT) Received: from localhost (tor-exit-proxy7-readme.formlessnetworking.net [208.53.142.43]) by mx.google.com with ESMTPS id f18sm898078vcm.11.2010.10.06.19.46.40 (version=SSLv3 cipher=RC4-MD5); Wed, 06 Oct 2010 19:46:41 -0700 (PDT) From: Anonymous To: miwi@FreeBSD.org, freebsd@beardz.net Date: Thu, 07 Oct 2010 06:45:37 +0400 Message-ID: <86y6aau3e6.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain Cc: freebsd-ports@freebsd.org Subject: irc/weechat*: cmake/Find(Python|Ruby|etc).cmake don't respect version from bsd.(python|ruby|etc).mk 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, 07 Oct 2010 02:46:47 -0000 The port blindly assumes the first version of python|ruby|etc it finds as the one user wants weechat plugin built against. Example for python $ export PYTHON_DEFAULT_VERSION=python2.7 $ make install deinstall WITH_PYTHON= ... ===> Deinstalling weechat-0.3.3_1 pkg_delete: file '/usr/local/lib/weechat/plugins/python.so' doesn't exist And excerpt from CMakeCache.txt //Path to a program. PYTHON_EXECUTABLE:FILEPATH=/usr/local/bin/python //Path to a file. PYTHON_INCLUDE_PATH:PATH=/usr/local/include/python2.5 //Path to a library. PYTHON_LIBRARY:FILEPATH=/usr/local/lib/libpython2.6.so //Dependencies for the target python_LIB_DEPENDS:STATIC=general;/usr/local/lib/libpython2.6.so;general;weechat_scripts; I guess FindPython.cmake doesn't respect LOCALBASE, too. %% Index: irc/weechat/Makefile =================================================================== RCS file: /a/.cvsup/ports/irc/weechat/Makefile,v retrieving revision 1.49 diff -u -p -r1.49 Makefile --- irc/weechat/Makefile 30 Sep 2010 04:14:36 -0000 1.49 +++ irc/weechat/Makefile 7 Oct 2010 02:44:32 -0000 @@ -64,6 +64,8 @@ PLIST_SUB+= ASPELL="@comment " .if defined(WITH_PYTHON) USE_PYTHON= yes +CMAKE_ARGS+= -DPYTHON_VERSION=${PYTHON_VERSION} \ + -DPYTHON_CMD=${PYTHON_CMD} PLIST_SUB+= PYTHON="" .else CMAKE_ARGS+= -DDISABLE_PYTHON=yes Index: irc/weechat/files/patch-cmake-FindPython.cmake =================================================================== RCS file: irc/weechat/files/patch-cmake-FindPython.cmake diff -N irc/weechat/files/patch-cmake-FindPython.cmake --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ irc/weechat/files/patch-cmake-FindPython.cmake 7 Oct 2010 01:59:44 -0000 @@ -0,0 +1,21 @@ +--- cmake/FindPython.cmake~ 2010-09-28 13:09:52.000000000 +0400 ++++ cmake/FindPython.cmake 2010-10-07 05:37:43.709648725 +0400 +@@ -34,8 +34,7 @@ IF(PYTHON_FOUND) + ENDIF(PYTHON_FOUND) + + FIND_PROGRAM(PYTHON_EXECUTABLE +- NAMES python python2.6 python2.5 python2.4 python2.3 python2.2 +- PATHS /usr/bin /usr/local/bin /usr/pkg/bin ++ NAMES ${PYTHON_CMD} + ) + + IF(PYTHON_EXECUTABLE) +@@ -65,7 +64,7 @@ IF(PYTHON_EXECUTABLE) + ) + + FIND_LIBRARY(PYTHON_LIBRARY +- NAMES python python2.6 python2.5 python2.4 python2.3 python2.2 ++ NAMES ${PYTHON_VERSION} + PATHS ${PYTHON_POSSIBLE_LIB_PATH} + ) + %% From owner-freebsd-ports@FreeBSD.ORG Thu Oct 7 02:54:23 2010 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 E9ADC106566B for ; Thu, 7 Oct 2010 02:54:23 +0000 (UTC) (envelope-from swell.k@gmail.com) Received: from mail-gx0-f182.google.com (mail-gx0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id A0A6B8FC17 for ; Thu, 7 Oct 2010 02:54:23 +0000 (UTC) Received: by gxk8 with SMTP id 8so128750gxk.13 for ; Wed, 06 Oct 2010 19:54:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:references :date:in-reply-to:message-id:user-agent:mime-version:content-type; bh=AkicnFtK4blhOQkZxC5n8z1llUbIs7KxMhdL2DCOmLk=; b=GHDSHQpPXGM1YG0Pt30SHnceL5NdGf1cYGisM+XRpy+jCZDbKHh26oOf6dAQ5Ifq69 Mht9eA72u89k7bw8iXLpdeSKh7zYBgEQNYMjjIXVyE6Vs0XIGCNCzyWcsSUHtDpY1Syk e0QGydZKdVlmcTHexIaSRDl+WsOQcpUfE6yrk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type; b=vsoq8uoksgi6p5bkAwdF7O8RYFuYQItwTzX0X5tGM8MDLE5TJSLFqUaTCCue4ErAHI oMuKwvASA2VvC61seu49V9OaCMuXJxcyW1Wmfgbip5cYPKOXCy9B4HnQacYpFOAqgN6z S7pcQ4t+3zdDkEqgKPLZlcdNSJVVQeMwlaiV8= Received: by 10.150.225.10 with SMTP id x10mr252353ybg.136.1286420062518; Wed, 06 Oct 2010 19:54:22 -0700 (PDT) Received: from localhost (tor-exit-proxy7-readme.formlessnetworking.net [208.53.142.43]) by mx.google.com with ESMTPS id q29sm1522223yba.18.2010.10.06.19.54.20 (version=SSLv3 cipher=RC4-MD5); Wed, 06 Oct 2010 19:54:21 -0700 (PDT) From: Anonymous To: miwi@FreeBSD.org References: <86y6aau3e6.fsf@gmail.com> Date: Thu, 07 Oct 2010 06:53:23 +0400 In-Reply-To: <86y6aau3e6.fsf@gmail.com> (Anonymous's message of "Thu, 07 Oct 2010 06:45:37 +0400") Message-ID: <86hbgyu318.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain Cc: freebsd@beardz.net, freebsd-ports@freebsd.org Subject: Re: irc/weechat*: cmake/Find(Python|Ruby|etc).cmake don't respect version from bsd.(python|ruby|etc).mk 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, 07 Oct 2010 02:54:24 -0000 Anonymous writes: > $ export PYTHON_DEFAULT_VERSION=python2.7 > $ make install deinstall WITH_PYTHON= > ... > ===> Deinstalling weechat-0.3.3_1 > pkg_delete: file '/usr/local/lib/weechat/plugins/python.so' doesn't exist > > And excerpt from CMakeCache.txt Oops, read as And excerpt from CMakeCache.txt when several version of python installed while retaining python2.7 as the default > //Path to a program. > PYTHON_EXECUTABLE:FILEPATH=/usr/local/bin/python > > //Path to a file. > PYTHON_INCLUDE_PATH:PATH=/usr/local/include/python2.5 > > //Path to a library. > PYTHON_LIBRARY:FILEPATH=/usr/local/lib/libpython2.6.so > > //Dependencies for the target > python_LIB_DEPENDS:STATIC=general;/usr/local/lib/libpython2.6.so;general;weechat_scripts; As for the case when only python2.7 is installed the contents are //Path to a program. PYTHON_EXECUTABLE:FILEPATH=PYTHON_EXECUTABLE-NOTFOUND From owner-freebsd-ports@FreeBSD.ORG Thu Oct 7 03:05:09 2010 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 0FF471065673 for ; Thu, 7 Oct 2010 03:05:09 +0000 (UTC) (envelope-from chrcoluk@gmail.com) Received: from mail-wy0-f182.google.com (mail-wy0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id A0BC78FC0C for ; Thu, 7 Oct 2010 03:05:08 +0000 (UTC) Received: by wyb29 with SMTP id 29so303338wyb.13 for ; Wed, 06 Oct 2010 20:05:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=HKaN3GfXL8NHoGY0dZXHtOunYvVnm8iQYEQwIhIIXBw=; b=yFvDLzL6xnbO1aZaiYqvja1HjD7ZN1m6D/bfXXr+ajG4Yh9fLbzV6A2R7TEfCN9KGW MVHsA7dxIKE2MC/shuH3RcXALBuHe9Gy5BoxQSBgTgYKSdjGSx0PjpmCKAGb3nFQ5v+B zHIad9FSom4Gi1MCYStlwRHO9RXhzvH+7RzeE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=wUo6vY9mzuoG7qqEDtKeI5TUF7enc558MzbGv/tkO78PEYnL3976rU+mMFzD4hNeNG 9OTuFpd4bt0oxt3xsZvq56OBFL0Uq3e9LFzqPwg68R6rvXUeIS9igu0cq8uq4vnye0T5 RxYr2DThiZLKpCagCe0lHNZHEO5YJMcEMkl6M= MIME-Version: 1.0 Received: by 10.227.136.1 with SMTP id p1mr137586wbt.4.1286419157516; Wed, 06 Oct 2010 19:39:17 -0700 (PDT) Received: by 10.227.174.11 with HTTP; Wed, 6 Oct 2010 19:39:17 -0700 (PDT) Date: Thu, 7 Oct 2010 03:39:17 +0100 Message-ID: From: Chris To: ports@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1 Cc: Subject: security/openssh-portable maintainer 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, 07 Oct 2010 03:05:09 -0000 Hi, I see this port has no maintainer now and is now out of date. I have attempted myself to update the port but have hit a number of problems. 1 - some of the contrib patches dont exist for the new version of the app. I assume support would need to be dropped t least emporarily on an update. 2 - one of the freebsd patches in the files dir fails to patch, the rest are reported as syccessful however when checking the files in the work dir they are not patched. 3 - the hpn patch on the dev website is gzipped, the ports system seems to assume a patch must be uncompressed when downloading? 4 - the hpn patch initially on the old version is just in the files dir however I couldnt find a way to use -p1 with it, so I set it to download as a dist patch but because of problem #3 I used my own webspace to download a uncompressed patch. What I am asking is, can someone please take over this port, my skill set is not high enough to do it at least without some help. Failing that can someone help me with the freebed patches in the files dir to patch ok on openssh 5.6p1. Chris From owner-freebsd-ports@FreeBSD.ORG Thu Oct 7 03:22:44 2010 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 86D31106566B; Thu, 7 Oct 2010 03:22:44 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-gx0-f182.google.com (mail-gx0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id 1E93F8FC0A; Thu, 7 Oct 2010 03:22:43 +0000 (UTC) Received: by gxk8 with SMTP id 8so136593gxk.13 for ; Wed, 06 Oct 2010 20:22:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:date:from :organization:user-agent:mime-version:to:cc:subject:references :in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; bh=ydoA7OS6OcbM7BIalit6cImJ9s88YkNgyVXQuJZ6/Sw=; b=nNgQaDAw074ozLXC2DYdT0n6rA03STsDvgiKZfGmpmXfvMJsW7NEdHFw5/Ig7qO3FV faZ90CX7anvi0GrUwc/TTIl0R/NXzyRA9cCHUQV3YBSCzCZY1ViUUA2pxUyDoUnr4nOr Oa3/bepPqNuzcDYa8yFL8nlGH4pNxvVTeFmYo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:organization:user-agent:mime-version:to :cc:subject:references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; b=XbajLlHoUBEHCc8FRe4WOZnh1V5Wf1R6HNHD8ZDjBgsYkA+XbuIYRcqqlP06KWgWxY iCs5MVHI0vZY3CDrvP++fFpRtuWfyppFYP0IK7yUfqSly2AKjeHvWMa+3k5nR7HHxnYM RpAQGlGLgV21WgYJE1EXAmWtJSvM89tsxm8rA= Received: by 10.236.102.135 with SMTP id d7mr308820yhg.67.1286421763234; Wed, 06 Oct 2010 20:22:43 -0700 (PDT) Received: from centel.dataix.local ([99.181.144.115]) by mx.google.com with ESMTPS id n32sm879032yhg.22.2010.10.06.20.22.40 (version=SSLv3 cipher=RC4-MD5); Wed, 06 Oct 2010 20:22:41 -0700 (PDT) Sender: "J. Hellenthal" Message-ID: <4CAD3CFE.8030700@DataIX.net> Date: Wed, 06 Oct 2010 23:22:38 -0400 From: jhell Organization: http://www.DataIX.net User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.2.9) Gecko/20100917 Lightning/1.0b1 Thunderbird MIME-Version: 1.0 To: obrien@freebsd.org References: <20100918223933.GB85995@dragon.NUXI.org> <20101002002605.GA8018@dragon.NUXI.org> <4CA844E5.7060303@infracaninophile.co.uk> <20101005183452.GF7829@dragon.NUXI.org> <20101006084040.GA53569@dragon.NUXI.org> <20101006175513.GB81751@dragon.NUXI.org> In-Reply-To: <20101006175513.GB81751@dragon.NUXI.org> X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: David DEMELIER , FreeBSD Ports , "Andrew W. Nosenko" Subject: Re: OPTIONS 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, 07 Oct 2010 03:22:44 -0000 On 10/06/2010 13:55, David O'Brien wrote: > On Wed, Oct 06, 2010 at 12:01:48PM +0300, Andrew W. Nosenko wrote: >> On Wed, Oct 6, 2010 at 11:40, David O'Brien wrote: >>> On Tue, Oct 05, 2010 at 11:34:52AM -0700, David O'Brien (@FreeBSD) wrote: >>>>> 2010/10/3 Matthew Seaman : >>>>>> In fact, you might just as well write a small HTML form, display it >>>>>> using lynx or w3c or some other text mode browser[*], and then have the >>>>>> form action feed into a CGI program that outputs a small Makefile with >>>>>> appropriate variable definitions in it. >>>> >>>> I like this statement -- as it shows just how complex this will get when >>>> taken to its natural conclusion. >>> >>> This is also how ridiculous things can get: >>> >>> curl 7.21.1 now offers me: >>> � �[X] WERROR � � � Treat compilation warnings as errors >>> >>> � �Can the port maintainer really not decide if that should just be >>> � �turned off or turned on for FreeBSD?!? >> >> I wonder why -Werror even ever considered to be turned "on" at all. > > \AOL{me too} > > I mean building with "-Werror" sounds like goodness -- of course I > want it. > > But why is the maintainer offering me a choice? > What is the likelihood of the port not building with -Werror? > Does he know of versions of FreeBSD where the port will not build > with -Werror? Hum.. maybe I don't want -Werror. But then why didn't > the the maintainer just decide we would all not build with -Werror? > > Given we are just building and installing Curl, what do we expect > users to do choose WERROR and get a build break with -Werror? > They aren't developing the next version of Curl. Can they submit a > FreeBSD PR and expect the maintainer will quickly add a patch to the > port to fix the warning(s)? Or will the response be > "Well, don't do that."? In which case just turning off -Werror for > all seems a better thing to do. > IMHO If I may, The OPTIONS framework is a UI(User Interface) to useful options that a 'User' would be interested in turning on. This would be things that a user, not a 'developer' could use or would find helpful. With the above said, if it was the developers intent to add options in order to make debugging the port easier for them, then I feel that is the wrong approach as these are options that are more appropriately handled by CFLAGS CXXFLAGS LDFLAGS and such since they are developer centric and mean very little to the majority of the community. Now with both of the above stated, it may be useful if specific developer options were wrapped in a statement that would check to see if a MAINTAINER_MODE has been defined allowing those options to be dynamically added to the list of existing option. Personally I feel that because of the loose guidelines that we already have in the Porters Handbook that when frameworks like this present problems as the options framework has already shown, that a better defined standard should be developed & agreed upon so that every developer and user knows exactly what to expect out of every port and what is expected to be presented to the user. A ports tree of this size and not having a clear and set-forth standard as to what can be expected is fairly hazardous IMO. If I had missed an area 'one area' where this is already defined then please excuse me and reference me a clear link. Regards, -- jhell,v From owner-freebsd-ports@FreeBSD.ORG Thu Oct 7 06:28:33 2010 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 BA9C71065696 for ; Thu, 7 Oct 2010 06:28:33 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mail.droso.net (koala.droso.net [IPv6:2001:6c8:130:400::6]) by mx1.freebsd.org (Postfix) with ESMTP id 194948FC34 for ; Thu, 7 Oct 2010 06:28:33 +0000 (UTC) Received: from koala.droso.net (localhost.droso.net [IPv6:::1]) by mail.droso.net (Postfix) with ESMTP id 70F2A1CC22 for ; Thu, 7 Oct 2010 08:28:32 +0200 (CEST) From: linimon@FreeBSD.org To: ports@freebsd.org Message-Id: <20101007062832.70F2A1CC22@mail.droso.net> Date: Thu, 7 Oct 2010 08:28:32 +0200 (CEST) Cc: Subject: FreeBSD unmaintained ports which are currently marked broken X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: portmgr-feedback@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Oct 2010 06:28:33 -0000 As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically notify users of ports that are marked as "broken" in their Makefiles. In many cases these ports are failing to compile on some subset of the FreeBSD build environments. The most common problem is that recent versions of -CURRENT include gcc4.2, which is much stricter than older versions. The next most common problem is that compiles succeed on the i386 architecture (e.g. the common Intel PC), but fail on one or more of the other architectures due to assumptions about things such as size of various types, byte-alignment issues, and so forth. In occasional cases we see that the same port may have different errors in different build environments. The script that runs on the build cluster uses heuristics to try to 'guess' the error type to help you isolate problems, but it is only a rough guide. One more note: on occasion, there are transient build errors seen on the build farm. Unfortunately, there is not yet any way for this algorithm to tell the difference (humans are much, much better at this kind of thing.) The errors are listed below. In the case where the same problem exists on more than one build environment, the URL points to the latest errorlog for that type. (By 'build environment' here we mean 'combination of 6.x/7.x/-current with target architecture'.) (Note: the dates are included to help you to gauge whether or not the error still applies to the latest version. The program that generates this report is not yet able to determine this automatically.) portname: audio/festvox-aec broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=festvox-aec portname: audio/gtkguitune broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=gtkguitune portname: audio/gxmms2 broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=gxmms2 portname: biology/tinker broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=biology&portname=tinker portname: chinese/chinput3 broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=chinput3 portname: databases/p5-sqlrelay broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=p5-sqlrelay portname: deskutils/gnotime broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=gnotime portname: devel/ace+tao broken because: Does not compile on FreeBSD >= 7.0 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ace%2Btao portname: devel/fampp broken because: FAM system mismatch: gamin is installed, while desired FAM system is fam build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=fampp portname: devel/gcvs broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=gcvs portname: devel/linux-js broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=linux-js portname: devel/linuxthreads broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=linuxthreads portname: devel/ngpt broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ngpt portname: dns/fourcdns broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=dns&portname=fourcdns portname: emulators/cpmtools2 broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=cpmtools2 portname: emulators/win4bsd broken because: does not fetch build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.20100914233422/win4bsd-1.1_4.log.bz2 (_Jul_27_00:44:09_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=win4bsd portname: finance/gfp broken because: fails during build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=finance&portname=gfp portname: ftp/ftpq broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ftp&portname=ftpq portname: games/hlstats broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=hlstats portname: games/kanatest broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=kanatest portname: games/kbilliards broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=kbilliards portname: games/whichwayisup broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=whichwayisup portname: games/xblast broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=xblast portname: graphics/libvisual-plugins broken because: Broken objformat handling build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=libvisual-plugins portname: graphics/mesa-demos broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=mesa-demos portname: graphics/ophoto broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=ophoto portname: graphics/paintlib broken because: does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/powerpc-errorlogs/e.8.20100815051156/paintlib-2.6.2_5.log.bz2 (_Sep_20_05:12:48_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=paintlib portname: graphics/plasma-kmod broken because: Does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=plasma-kmod portname: graphics/ray++ broken because: Does not compile with GCC 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=ray%2B%2B portname: graphics/seom broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=seom portname: graphics/snx101util broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=snx101util portname: graphics/white_dune broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=white_dune portname: graphics/wildmagic broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=wildmagic portname: japanese/oleo broken because: Broken with gcc 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=oleo portname: japanese/tkstep80 broken because: Broken with gcc 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=tkstep80 portname: java/tya broken because: Does not compile with GCC 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=java&portname=tya portname: korean/unzip broken because: does not patch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=korean&portname=unzip portname: lang/bigloo broken because: is not compiled with Emacs 23 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=bigloo portname: lang/scriba broken because: Does not install build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=scriba portname: lang/u++ broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=u%2B%2B portname: mail/kiltdown broken because: does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/powerpc-errorlogs/e.8.20100815051156/kiltdown-0.8.045_14.log.bz2 (_Sep_21_18:49:36_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=mail&portname=kiltdown portname: math/kaskade broken because: Fails to compile with GCC 4.3 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=kaskade portname: math/rascal broken because: Does not compile with GCC 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=rascal portname: misc/fep broken because: Does not compile without sgtty build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=fep portname: misc/splitvt broken because: does not compile: /usr/include/sys/ioctl_compat.h:42:2: Definitions not available without TTY ioctl compat build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=splitvt portname: multimedia/jahshaka broken because: does not compile with GCC 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=jahshaka portname: multimedia/netshow broken because: does not fetch build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.7.20101005222306/netshow-2.00.251_2.log (_May_12_05:28:15_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=netshow portname: net-mgmt/net-snmp4 broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-mgmt&portname=net-snmp4 portname: net-mgmt/nipper broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-mgmt&portname=nipper portname: net-mgmt/wide-dhcp broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-mgmt&portname=wide-dhcp portname: net-p2p/trackerbt broken because: does not compile with new Sockets build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.20100914233422/trackerbt-0.1.3.log.bz2 (_Jul_27_00:48:52_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-p2p&portname=trackerbt portname: net/cap broken because: Broken with gcc 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=cap portname: net/pimdd broken because: does not compile: error: IGMP_HOST_MEMBERSHIP_REPORT undeclared build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=pimdd portname: net/pppoa broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=pppoa portname: news/ija broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=news&portname=ija portname: palm/uppc-kmod broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=palm&portname=uppc-kmod portname: ports-mgmt/barry broken because: Broken with gcc 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ports-mgmt&portname=barry portname: print/py-reportlab broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=print&portname=py-reportlab portname: security/fressh broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=fressh portname: security/lasso broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=lasso portname: security/newpki-lib broken because: does not compile with OpenSSL 0.9.8b build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=newpki-lib portname: security/newpki-server broken because: does not compile with OpenSSL 0.9.8b build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=newpki-server portname: security/nsm-console broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=nsm-console portname: security/prelude-lml broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=prelude-lml portname: security/vscan broken because: Does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=vscan portname: security/xmlsec broken because: Does not compile on FreeBSD >= 7.0 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=xmlsec portname: security/xyssl broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=xyssl portname: sysutils/checkservice broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=checkservice portname: textproc/htmlize.el broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=htmlize.el portname: textproc/opensched broken because: Does not install build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=opensched portname: textproc/openvanilla-modules broken because: does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/powerpc-errorlogs/e.8.20100815051156/openvanilla-modules-0.7.2.20070514_3.log (_Oct__5_06:21:59_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=openvanilla-modules portname: textproc/skim broken because: Doesn't build with python2.6 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=skim portname: www/bk_edit broken because: Broken with gcc 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=bk_edit portname: www/bricolage broken because: missing dependencies build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=bricolage portname: www/wb0 broken because: Does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=wb0 portname: www/xist broken because: bad plist build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=xist portname: x11-clocks/xtu broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-clocks&portname=xtu portname: x11-toolkits/p5-Tcl-Tk broken because: something segfaults during build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=p5-Tcl-Tk portname: x11-toolkits/xscoop broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=xscoop From owner-freebsd-ports@FreeBSD.ORG Thu Oct 7 06:29:09 2010 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 036A71065672 for ; Thu, 7 Oct 2010 06:29:09 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mail.droso.net (koala.droso.net [IPv6:2001:6c8:130:400::6]) by mx1.freebsd.org (Postfix) with ESMTP id 076048FC2A for ; Thu, 7 Oct 2010 06:29:08 +0000 (UTC) Received: from koala.droso.net (localhost.droso.net [IPv6:::1]) by mail.droso.net (Postfix) with ESMTP id 5E6A71CC22 for ; Thu, 7 Oct 2010 08:29:07 +0200 (CEST) From: linimon@FreeBSD.org To: ports@FreeBSD.org Message-Id: <20101007062907.5E6A71CC22@mail.droso.net> Date: Thu, 7 Oct 2010 08:29:07 +0200 (CEST) Cc: Subject: FreeBSD ports which are currently marked broken X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: portmgr-feedback@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Oct 2010 06:29:09 -0000 As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically notify users of ports that are marked as "broken" in their Makefiles. In many cases these ports are failing to compile on some subset of the FreeBSD build environments. The most common problem is that recent versions of -CURRENT include gcc4.2, which is much stricter than older versions. The next most common problem is that compiles succeed on the i386 architecture (e.g. the common Intel PC), but fail on one or more of the other architectures due to assumptions about things such as size of various types, byte-alignment issues, and so forth. In occasional cases we see that the same port may have different errors in different build environments. The script that runs on the build cluster uses heuristics to try to 'guess' the error type to help you isolate problems, but it is only a rough guide. One more note: on occasion, there are transient build errors seen on the build farm. Unfortunately, there is not yet any way for this algorithm to tell the difference (humans are much, much better at this kind of thing.) The errors are listed below. In the case where the same problem exists on more than one build environment, the URL points to the latest errorlog for that type. (By 'build environment' here we mean 'combination of 6.x/7.x/-current with target architecture'.) (Note: the dates are included to help you to gauge whether or not the error still applies to the latest version. The program that generates this report is not yet able to determine this automatically.) portname: audio/aureal-kmod broken because: doesn't build on RELENG_8 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=aureal-kmod portname: audio/baudline broken because: no longer available (website now have 1.08) build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.20100914233422/linux-baudline-1.07.log.bz2 (_Jul_27_00:43:34_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=baudline portname: audio/ecawave broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=ecawave portname: audio/emu10kx broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=emu10kx portname: audio/festvox-aec broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=festvox-aec portname: audio/gmpc-mserver broken because: fails to build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=gmpc-mserver portname: audio/gtkguitune broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=gtkguitune portname: audio/gxmms2 broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=gxmms2 portname: benchmarks/polygraph broken because: does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.9.20100319084642/polygraph-3.0.6_1.log (_Mar_21_01:42:24_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=benchmarks&portname=polygraph portname: benchmarks/polygraph31 broken because: does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.9.20100319084642/polygraph31-3.1.5_1.log (_Mar_21_01:42:25_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=benchmarks&portname=polygraph31 portname: biology/tinker broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=biology&portname=tinker portname: cad/tclspice broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=cad&portname=tclspice portname: chinese/chinput3 broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=chinput3 portname: comms/hcfmdm broken because: Does not compile at 7.x or higher build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=comms&portname=hcfmdm portname: comms/hso-kmod broken because: does not build with USB2, please try comms/uhso-kmod instead build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=comms&portname=hso-kmod portname: comms/ib-kmod broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=comms&portname=ib-kmod portname: comms/uticom broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=comms&portname=uticom portname: converters/mimelib broken because: Does not compile with GCC 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=converters&portname=mimelib portname: databases/erserver broken because: Does not compile with GCC 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=erserver portname: databases/gauche-gdbm broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=gauche-gdbm portname: databases/mysql-gui-tools broken because: does not build build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.9.20100922072848/mysql-gui-tools-5.0r14_4.log.bz2 (_Sep_26_03:18:48_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=mysql-gui-tools portname: databases/mysqlcc broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=mysqlcc portname: databases/p5-sqlrelay broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=p5-sqlrelay portname: deskutils/gnotime broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=gnotime portname: devel/ace+tao broken because: Does not compile on FreeBSD >= 7.0 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ace%2Btao portname: devel/bullet broken because: Does not work with autoconf>=2.64 - upstream 2.76 has switched to cmake. build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.8.20100305224420/bullet-2.75.log.bz2 (_Mar_18_02:13:41_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=bullet portname: devel/cocktail broken because: Segfault during build on FreeBSD >= 7.0 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=cocktail portname: devel/djgpp-gcc broken because: Does not work with autoconf>=2.64 - no upstream fix. build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=djgpp-gcc portname: devel/fampp broken because: FAM system mismatch: gamin is installed, while desired FAM system is fam build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=fampp portname: devel/gauche-sdl broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=gauche-sdl portname: devel/gcvs broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=gcvs portname: devel/gdb53-act broken because: Does not compile with GCC 4.2 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.6.20090822221417/gdb-act-5.3_2,1.log (_Aug_23_08:39:54_UTC_2009) overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=gdb53-act portname: devel/lamson broken because: leaves behind files on deinstall build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=lamson portname: devel/linux-js broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=linux-js portname: devel/linuxthreads broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=linuxthreads portname: devel/msp430-gdb broken because: Does not compile with GCC 4.2 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.6.20090822221417/msp430-gdb-5.1.1.20030909_1.log (_Aug_23_08:40:49_UTC_2009) overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=msp430-gdb portname: devel/ngpt broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ngpt portname: devel/p5-P4-Client broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=p5-P4-Client portname: devel/php-dbg2 broken because: does not compile with PHP 5.3.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=php-dbg2 portname: devel/root broken because: Does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=root portname: devel/ruby-rjudy broken because: Does not compile with GCC 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ruby-rjudy portname: devel/rubygem-newgem broken because: Depends on broken devel/rubygem-rubigen build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=rubygem-newgem portname: devel/rubygem-rubigen broken because: Depends on exact vesion of activesupport 2.3.5 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=rubygem-rubigen portname: devel/xfc broken because: Does not compile with GCC 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=xfc portname: dns/fourcdns broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=dns&portname=fourcdns portname: editors/zed broken because: Does not compile with GCC 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=zed portname: emulators/cpmtools2 broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=cpmtools2 portname: emulators/fmsx broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=fmsx portname: emulators/linux_base-gentoo-stage3 broken because: unfetchable build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=linux_base-gentoo-stage3 portname: emulators/linux_dist-gentoo-stage3 broken because: unfetchable build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=linux_dist-gentoo-stage3 portname: emulators/mupen64plus-rice broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=mupen64plus-rice portname: emulators/pearpc broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=pearpc portname: emulators/win4bsd broken because: does not fetch build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.20100914233422/win4bsd-1.1_4.log.bz2 (_Jul_27_00:44:09_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=win4bsd portname: finance/gfp broken because: fails during build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=finance&portname=gfp portname: ftp/ftpq broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ftp&portname=ftpq portname: ftp/wxdfast broken because: Does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ftp&portname=wxdfast portname: games/aqbubble broken because: Broken with gcc 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=aqbubble portname: games/egl broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=egl portname: games/hlstats broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=hlstats portname: games/kanatest broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=kanatest portname: games/kbilliards broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=kbilliards portname: games/whichwayisup broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=whichwayisup portname: games/xblast broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=xblast portname: graphics/crystalspace broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=crystalspace portname: graphics/exact-image broken because: does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/powerpc-errorlogs/e.8.20100815051156/exact-image-0.8.1.log.bz2 (_Sep_19_14:26:01_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=exact-image portname: graphics/libvisual-plugins broken because: Broken objformat handling build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=libvisual-plugins portname: graphics/linux-ac3d broken because: does not fetch build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.20100914233422/linux-ac3d-6.528.log.bz2 (_Sep_16_11:39:25_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=linux-ac3d portname: graphics/luxrender broken because: does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/powerpc-errorlogs/e.8.20100815051156/luxrender-0.6.1_1.log.bz2 (_Sep_20_01:26:08_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=luxrender portname: graphics/mapnik broken because: Does not build with boost-1.41 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=mapnik portname: graphics/mesa-demos broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=mesa-demos portname: graphics/ophoto broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=ophoto portname: graphics/paintlib broken because: does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/powerpc-errorlogs/e.8.20100815051156/paintlib-2.6.2_5.log.bz2 (_Sep_20_05:12:48_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=paintlib portname: graphics/phpsview broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=phpsview portname: graphics/plasma-kmod broken because: Does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=plasma-kmod portname: graphics/qcamview broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=qcamview portname: graphics/ray++ broken because: Does not compile with GCC 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=ray%2B%2B portname: graphics/seom broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=seom portname: graphics/snx101util broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=snx101util portname: graphics/spcaview broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=spcaview portname: graphics/vid broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=vid portname: graphics/white_dune broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=white_dune portname: graphics/wildmagic broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=wildmagic portname: japanese/oleo broken because: Broken with gcc 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=oleo portname: japanese/roundcube broken because: bad distinfo build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=roundcube portname: japanese/tkstep80 broken because: Broken with gcc 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=tkstep80 portname: japanese/yc.el broken because: Does not support emacs23.x or later build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=yc.el portname: java/eclipse-cdt broken because: bad dependency object for java/eclipse build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=java&portname=eclipse-cdt portname: java/jakarta-commons-dbcp broken because: does not build unless jakarta-commons-collections is compiled with jdk15 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=java&portname=jakarta-commons-dbcp portname: java/jdk14 broken because: Does not compile with GCC 4.2 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.6.20090822221417/jdk-1.4.2p8_15.log (_Aug_23_08:38:49_UTC_2009) overview: http://portsmon.FreeBSD.org/portoverview.py?category=java&portname=jdk14 portname: java/tya broken because: Does not compile with GCC 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=java&portname=tya portname: korean/unzip broken because: does not patch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=korean&portname=unzip portname: lang/bigloo broken because: is not compiled with Emacs 23 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=bigloo portname: lang/dylan broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=dylan portname: lang/etoile-languagekit broken because: needs llvm <= 2.6.r71086 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=etoile-languagekit portname: lang/gnat-gcc42 broken because: does not support FreeBSD 8.x build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=gnat-gcc42 portname: lang/mozart broken because: Does not compile with GCC 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=mozart portname: lang/nqc broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=nqc portname: lang/ocamlduce broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=ocamlduce portname: lang/pugs broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=pugs portname: lang/scriba broken because: Does not install build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=scriba portname: lang/u++ broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=u%2B%2B portname: mail/evolution-sharp broken because: Doesn't accept current evolution version build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=mail&portname=evolution-sharp portname: mail/kiltdown broken because: does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/powerpc-errorlogs/e.8.20100815051156/kiltdown-0.8.045_14.log.bz2 (_Sep_21_18:49:36_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=mail&portname=kiltdown portname: math/R-cran-igraph broken because: Does not build with R-2.11.0 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=R-cran-igraph portname: math/asir2000 broken because: Only builds with now-nonexistant automake15 build errors: http://pointyhat.FreeBSD.org/errorlogs/powerpc-errorlogs/e.8.20100815051156/asir-20070806_4.log.bz2 (_Sep_22_07:31:06_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=asir2000 portname: math/dislin broken because: size mismatch build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.8.20100305224420/dislin-10.0.log.bz2 (_Apr__5_09:13:46_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=dislin portname: math/kaskade broken because: Fails to compile with GCC 4.3 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=kaskade portname: math/linalg broken because: Does not compile with GCC 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=linalg portname: math/rascal broken because: Does not compile with GCC 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=rascal portname: math/scilab-toolbox-sivp broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=scilab-toolbox-sivp portname: misc/fep broken because: Does not compile without sgtty build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=fep portname: misc/ftree broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=ftree portname: misc/splitvt broken because: does not compile: /usr/include/sys/ioctl_compat.h:42:2: Definitions not available without TTY ioctl compat build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=splitvt portname: misc/usbrh broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=usbrh portname: multimedia/bangarang broken because: does not compile build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.9.20100922072848/bangarang-1.0.1.log.bz2 (_Sep__7_04:00:35_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=bangarang portname: multimedia/banshee-mirage broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=banshee-mirage portname: multimedia/jahshaka broken because: does not compile with GCC 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=jahshaka portname: multimedia/katchtv broken because: does not work with new kaffeine build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=katchtv portname: multimedia/libomxil-bellagio broken because: bad plist build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=libomxil-bellagio portname: multimedia/netshow broken because: does not fetch build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.7.20101005222306/netshow-2.00.251_2.log (_May_12_05:28:15_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=netshow portname: net-im/trix broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-im&portname=trix portname: net-mgmt/nagios-check_memcached_paranoid broken because: does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.6.20100927082744/check_memcached_paranoid-0.20091016_1.log (_Sep_25_20:27:28_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-mgmt&portname=nagios-check_memcached_paranoid portname: net-mgmt/net-snmp4 broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-mgmt&portname=net-snmp4 portname: net-mgmt/nipper broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-mgmt&portname=nipper portname: net-mgmt/wide-dhcp broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-mgmt&portname=wide-dhcp portname: net-p2p/trackerbt broken because: does not compile with new Sockets build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.20100914233422/trackerbt-0.1.3.log.bz2 (_Jul_27_00:48:52_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-p2p&portname=trackerbt portname: net/atmsupport broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=atmsupport portname: net/b2bua broken because: Does not compile with GCC 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=b2bua portname: net/cap broken because: Broken with gcc 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=cap portname: net/ggsd broken because: Does not compile with GCC 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=ggsd portname: net/ipex broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=ipex portname: net/penguintv broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=penguintv portname: net/pimdd broken because: does not compile: error: IGMP_HOST_MEMBERSHIP_REPORT undeclared build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=pimdd portname: net/pppoa broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=pppoa portname: net/skype broken because: This is the last version of skype that works on FreeBSD, but the distfile is no longer available from the vendor, and won't be in the future. We are working on alternative solutions. build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=skype portname: net/xbone-gui broken because: bad plist build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=xbone-gui portname: net/ztelnet broken because: Does not compile with GCC 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=ztelnet portname: news/ija broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=news&portname=ija portname: news/newsstar broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=news&portname=newsstar portname: news/openftd broken because: does not configure build errors: http://pointyhat.FreeBSD.org/errorlogs/sparc64-errorlogs/e.6.20090312033320/openftd-1.1.0_2.log (Wed Mar 18 11:52:03 UTC 2009) overview: http://portsmon.FreeBSD.org/portoverview.py?category=news&portname=openftd portname: palm/barry broken because: does not configure build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=palm&portname=barry portname: palm/romeo broken because: Does not compile with GCC 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=palm&portname=romeo portname: palm/uppc-kmod broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=palm&portname=uppc-kmod portname: ports-mgmt/barry broken because: Broken with gcc 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ports-mgmt&portname=barry portname: print/kaspaliste broken because: Does not compile with GCC 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=print&portname=kaspaliste portname: print/py-reportlab broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=print&portname=py-reportlab portname: science/elmer-fem broken because: fails to compile with gcc4.4 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=science&portname=elmer-fem portname: science/pcp broken because: Does not compile with GCC 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=science&portname=pcp portname: security/dazuko broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=dazuko portname: security/f-protd broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=f-protd portname: security/fressh broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=fressh portname: security/lasso broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=lasso portname: security/newpki-lib broken because: does not compile with OpenSSL 0.9.8b build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=newpki-lib portname: security/newpki-server broken because: does not compile with OpenSSL 0.9.8b build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=newpki-server portname: security/nsm-console broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=nsm-console portname: security/prelude-lml broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=prelude-lml portname: security/sfs broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=sfs portname: security/vscan broken because: Does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=vscan portname: security/xmlsec broken because: Does not compile on FreeBSD >= 7.0 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=xmlsec portname: security/xyssl broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=xyssl portname: sysutils/busybox broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=busybox portname: sysutils/checkservice broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=checkservice portname: sysutils/dtc broken because: bad dependency object build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.9.20100922072848/dtc-0.32.0.1.log.bz2 (_Sep_26_03:35:27_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=dtc portname: sysutils/perf broken because: Does not compile with GCC 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=perf portname: sysutils/udesc_dump broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=udesc_dump portname: sysutils/xwlans broken because: Does not compile with GCC 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=xwlans portname: textproc/htmlize.el broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=htmlize.el portname: textproc/opensched broken because: Does not install build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=opensched portname: textproc/openvanilla-modules broken because: does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/powerpc-errorlogs/e.8.20100815051156/openvanilla-modules-0.7.2.20070514_3.log (_Oct__5_06:21:59_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=openvanilla-modules portname: textproc/skim broken because: Doesn't build with python2.6 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=skim portname: vietnamese/vnelvis broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=vietnamese&portname=vnelvis portname: vietnamese/vnterm broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=vietnamese&portname=vnterm portname: www/bk_edit broken because: Broken with gcc 4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=bk_edit portname: www/bricolage broken because: missing dependencies build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=bricolage portname: www/cacheboy15-devel broken because: does not compile with Heimdal 1.1 in 8.0-CURRENT build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=cacheboy15-devel portname: www/mod_dtcl broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=mod_dtcl portname: www/p5-Apache2-Scoreboard broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=p5-Apache2-Scoreboard portname: www/p5-Plack-Server-ServerSimple broken because: installs same files as its dependency build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.9.20100319084642/p5-Plack-Server-ServerSimple-0.03.log (_Mar_21_01:51:37_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=p5-Plack-Server-ServerSimple portname: www/p5-RTx-Statistics broken because: bad plist build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=p5-RTx-Statistics portname: www/py-jswebkit broken because: does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/sparc64-errorlogs/e.8.20100917074150/py26-jswebkit-0.0.2.log.bz2 (_Sep_21_12:28:17_UTC_2010) http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.20100914233422/py26-jswebkit-0.0.2.log.bz2 (_Jul_27_00:43:11_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=py-jswebkit portname: www/wb0 broken because: Does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=wb0 portname: www/wyvern broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=wyvern portname: www/xist broken because: bad plist build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=xist portname: x11-clocks/xtu broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-clocks&portname=xtu portname: x11-drivers/xf86-input-citron broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-drivers&portname=xf86-input-citron portname: x11-drivers/xf86-input-elographics broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-drivers&portname=xf86-input-elographics portname: x11-drivers/xf86-input-fpit broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-drivers&portname=xf86-input-fpit portname: x11-drivers/xf86-video-rdc broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-drivers&portname=xf86-video-rdc portname: x11-toolkits/efltk broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=efltk portname: x11-toolkits/gambas2-gb-qt broken because: fails to build build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.6.20090822221417/gambas2-gb-qt-2.15.2.log (_Aug_23_08:37:22_UTC_2009) overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=gambas2-gb-qt portname: x11-toolkits/gauche-gtk broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=gauche-gtk portname: x11-toolkits/p5-Tcl-Tk broken because: something segfaults during build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=p5-Tcl-Tk portname: x11-toolkits/php-gtk2 broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=php-gtk2 portname: x11-toolkits/xscoop broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=xscoop portname: x11/metisse broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=metisse From owner-freebsd-ports@FreeBSD.ORG Thu Oct 7 06:29:22 2010 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 C3E201065729 for ; Thu, 7 Oct 2010 06:29:22 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mail.droso.net (koala.droso.net [IPv6:2001:6c8:130:400::6]) by mx1.freebsd.org (Postfix) with ESMTP id 300C38FC33 for ; Thu, 7 Oct 2010 06:29:22 +0000 (UTC) Received: from koala.droso.net (localhost.droso.net [IPv6:::1]) by mail.droso.net (Postfix) with ESMTP id DDE051CC47 for ; Thu, 7 Oct 2010 08:29:21 +0200 (CEST) From: linimon@FreeBSD.org To: ports@freebsd.org Message-Id: <20101007062921.DDE051CC47@mail.droso.net> Date: Thu, 7 Oct 2010 08:29:21 +0200 (CEST) Cc: Subject: FreeBSD unmaintained ports which are currently scheduled for deletion X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: portmgr-feedback@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Oct 2010 06:29:22 -0000 As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically schedule removal of ports that have been judged to have outlived their usefulness. Often, this is due to a better alternative having become available and/or the cessation of development on the existing port. In some cases, ports are marked for removal because they fail to build and install correctly from their sources, or otherwise fail in operation. The ports, and the reason and date that they have been scheduled for removal, are listed below. If no one has stepped forward before that time to propose a way to fix the problems (such as via a PR), the ports will be deleted. portname: audio/bmp-musepack description: Musepack decoder for beep-media-player maintainer: ports@FreeBSD.org deprecated because: does not build with audio/musepack expiration date: 2010-11-15 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=bmp-musepack portname: audio/py-musepack description: Python module that provides the Musepack decoding interface maintainer: ports@FreeBSD.org deprecated because: does not build with audio/musepack expiration date: 2010-11-15 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=py-musepack portname: chinese/chinput3 description: Chinese GB2312,BIG5 code input server maintainer: ports@FreeBSD.org status: BROKEN deprecated because: Development has ceased. expiration date: 2010-12-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=chinput3 portname: emulators/win4bsd description: Win4BSD Virtual Machine for Windows under BSD maintainer: ports@FreeBSD.org status: BROKEN deprecated because: Development has ceased and distfile is no longer available expiration date: 2010-12-31 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.20100914233422/win4bsd-1.1_4.log.bz2 (_Jul_27_00:44:09_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=win4bsd portname: french/mozilla-flp description: seamonkey French Language Pack (FLP) maintainer: ports@FreeBSD.org deprecated because: www/seamonkey port is deprecated. Consider using the www/firefox-i18n. expiration date: 2010-12-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=french&portname=mozilla-flp portname: french/xtel description: An emulator for the french Minitel maintainer: ports@FreeBSD.org deprecated because: Minitel services will be discontinued at the end of 2010. expiration date: 2010-12-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=french&portname=xtel portname: ftp/kwebget description: A KDE frontend to wget maintainer: ports@FreeBSD.org deprecated because: Development has ceased. expiration date: 2010-11-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ftp&portname=kwebget portname: misc/compat3x description: A convenience package to install the compat3x libraries maintainer: ports@FreeBSD.org status: FORBIDDEN deprecated because: Only FreeBSD 6.4+ are supported in ports expiration date: 2010-10-08 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=compat3x portname: multimedia/clive-utils description: Passwords, RSS parsing, and link extraction for clive maintainer: ports@FreeBSD.org status: IGNORE deprecated because: development has ceased; use multimedia/umph instead expiration date: 2010-11-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=clive-utils portname: net-mgmt/net-snmp4 description: An extendable SNMP implementation maintainer: ports@FreeBSD.org status: BROKEN deprecated because: Use net-mgmt/net-snmp port instead expiration date: 2009-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-mgmt&portname=net-snmp4 portname: net-p2p/btpeer description: Client functionality of bittorrent protocol, network only environment maintainer: ports@FreeBSD.org deprecated because: Does not build with net/Sockets and is unmaintained. expiration date: 2010-10-14 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-p2p&portname=btpeer portname: net/Sockets-devel description: A C++ wrapper for BSD-style sockets maintainer: ports@FreeBSD.org deprecated because: Older than net/Sockets and unmaintained. expiration date: 2010-10-14 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=Sockets-devel portname: net/gkrellm_snmp description: A gkrellm SNMP Monitor maintainer: ports@FreeBSD.org deprecated because: Depends of net-snmp4, that is deprecated also and will be removed soon. expiration date: 2010-10-14 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=gkrellm_snmp portname: ports-mgmt/barry description: A nice KDE frontend to the ports system maintainer: ports@FreeBSD.org status: BROKEN deprecated because: Development has ceased. expiration date: 2010-11-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ports-mgmt&portname=barry portname: www/flock description: Web browser based on the browser portion of Mozilla maintainer: ports@FreeBSD.org deprecated because: Flock 3 moves from Firefox to Chromium expiration date: 2010-12-31 build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.8.20100305224420/flock-2.5_2.log.bz2 (_Apr_11_20:29:16_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=flock portname: www/linux-flock description: The social web browser maintainer: ports@FreeBSD.org deprecated because: Flock 3 moves from Firefox to Chromium expiration date: 2010-12-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=linux-flock portname: www/wb0 description: Web browser for svgalib which can show pictures maintainer: ports@FreeBSD.org status: BROKEN deprecated because: Development has ceased. expiration date: 2010-11-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=wb0 From owner-freebsd-ports@FreeBSD.ORG Thu Oct 7 06:29:29 2010 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 DCA8E10656A4 for ; Thu, 7 Oct 2010 06:29:29 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mail.droso.net (koala.droso.net [IPv6:2001:6c8:130:400::6]) by mx1.freebsd.org (Postfix) with ESMTP id 0AAE18FC26 for ; Thu, 7 Oct 2010 06:29:29 +0000 (UTC) Received: from koala.droso.net (localhost.droso.net [IPv6:::1]) by mail.droso.net (Postfix) with ESMTP id 5BD591CC47 for ; Thu, 7 Oct 2010 08:29:28 +0200 (CEST) From: linimon@FreeBSD.org To: ports@FreeBSD.org Message-Id: <20101007062928.5BD591CC47@mail.droso.net> Date: Thu, 7 Oct 2010 08:29:28 +0200 (CEST) Cc: Subject: FreeBSD ports which are currently scheduled for deletion X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: portmgr-feedback@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Oct 2010 06:29:29 -0000 As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically schedule removal of ports that have been judged to have outlived their usefulness. Often, this is due to a better alternative having become available and/or the cessation of development on the existing port. In some cases, ports are marked for removal because they fail to build and install correctly from their sources, or otherwise fail in operation. The ports, and the reason and date that they have been scheduled for removal, are listed below. If no one has stepped forward before that time to propose a way to fix the problems (such as via a PR), the ports will be deleted. portname: audio/bmp-musepack description: Musepack decoder for beep-media-player maintainer: ports@FreeBSD.org deprecated because: does not build with audio/musepack expiration date: 2010-11-15 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=bmp-musepack portname: audio/libmpcdec description: High quality audio compression format maintainer: multimedia@FreeBSD.org deprecated because: superseded by audio/musepack expiration date: 2010-11-15 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=libmpcdec portname: audio/py-musepack description: Python module that provides the Musepack decoding interface maintainer: ports@FreeBSD.org deprecated because: does not build with audio/musepack expiration date: 2010-11-15 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=py-musepack portname: chinese/chinput3 description: Chinese GB2312,BIG5 code input server maintainer: ports@FreeBSD.org status: BROKEN deprecated because: Development has ceased. expiration date: 2010-12-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=chinput3 portname: devel/p5-P4 description: P4 - Perl friendly OO interface to the Perforce SCM System maintainer: tobez@FreeBSD.org deprecated because: Depends of p5-P4-Client, which is DEPRECATED. expiration date: 2010-10-14 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=p5-P4 portname: devel/p5-P4-Client description: P4::Client - Perl extension for the Perforce API maintainer: tobez@FreeBSD.org status: BROKEN deprecated because: has been broken for 11 months expiration date: 2010-01-08 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=p5-P4-Client portname: emulators/win4bsd description: Win4BSD Virtual Machine for Windows under BSD maintainer: ports@FreeBSD.org status: BROKEN deprecated because: Development has ceased and distfile is no longer available expiration date: 2010-12-31 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.20100914233422/win4bsd-1.1_4.log.bz2 (_Jul_27_00:44:09_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=win4bsd portname: french/mozilla-flp description: seamonkey French Language Pack (FLP) maintainer: ports@FreeBSD.org deprecated because: www/seamonkey port is deprecated. Consider using the www/firefox-i18n. expiration date: 2010-12-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=french&portname=mozilla-flp portname: french/xtel description: An emulator for the french Minitel maintainer: ports@FreeBSD.org deprecated because: Minitel services will be discontinued at the end of 2010. expiration date: 2010-12-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=french&portname=xtel portname: ftp/kwebget description: A KDE frontend to wget maintainer: ports@FreeBSD.org deprecated because: Development has ceased. expiration date: 2010-11-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ftp&portname=kwebget portname: japanese/samba3 description: Japanese Samba maintainer: kuriyama@FreeBSD.org deprecated because: Unsupported by the upstream. Please, consider to upgrade. expiration date: 2010-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=samba3 portname: misc/compat3x description: A convenience package to install the compat3x libraries maintainer: ports@FreeBSD.org status: FORBIDDEN deprecated because: Only FreeBSD 6.4+ are supported in ports expiration date: 2010-10-08 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=compat3x portname: multimedia/clive-utils description: Passwords, RSS parsing, and link extraction for clive maintainer: ports@FreeBSD.org status: IGNORE deprecated because: development has ceased; use multimedia/umph instead expiration date: 2010-11-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=clive-utils portname: net-mgmt/net-snmp4 description: An extendable SNMP implementation maintainer: ports@FreeBSD.org status: BROKEN deprecated because: Use net-mgmt/net-snmp port instead expiration date: 2009-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-mgmt&portname=net-snmp4 portname: net-p2p/btpeer description: Client functionality of bittorrent protocol, network only environment maintainer: ports@FreeBSD.org deprecated because: Does not build with net/Sockets and is unmaintained. expiration date: 2010-10-14 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-p2p&portname=btpeer portname: net-p2p/pyslsk description: Client for SoulSeek filesharing system maintainer: shoesoft@gmx.net deprecated because: unmantaind upstream, use net-p2p/nicotine-plus expiration date: 2010-11-24 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-p2p&portname=pyslsk portname: net/Sockets-devel description: A C++ wrapper for BSD-style sockets maintainer: ports@FreeBSD.org deprecated because: Older than net/Sockets and unmaintained. expiration date: 2010-10-14 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=Sockets-devel portname: net/gkrellm_snmp description: A gkrellm SNMP Monitor maintainer: ports@FreeBSD.org deprecated because: Depends of net-snmp4, that is deprecated also and will be removed soon. expiration date: 2010-10-14 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=gkrellm_snmp portname: net/py-samba description: Python bindings for Samba maintainer: timur@FreeBSD.org deprecated because: Unsupported by the upstream. Please, consider to upgrade. expiration date: 2010-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=py-samba portname: net/samba3 description: A free SMB and CIFS client and server for UNIX maintainer: timur@FreeBSD.org deprecated because: Unsupported by the upstream. Please, consider to upgrade. expiration date: 2010-09-01 build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.8.20100305224420/samba-3.0.37,1.log.bz2 (_Mar_17_00:31:04_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=samba3 portname: net/samba32 description: A free SMB and CIFS client and server for UNIX maintainer: timur@FreeBSD.org deprecated because: Unsupported by the upstream. Please, consider to upgrade. expiration date: 2010-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=samba32 portname: net/samba33 description: A free SMB and CIFS client and server for UNIX maintainer: timur@FreeBSD.org deprecated because: Unsupported by the upstream. Please, consider to upgrade. expiration date: 2010-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=samba33 portname: ports-mgmt/barry description: A nice KDE frontend to the ports system maintainer: ports@FreeBSD.org status: BROKEN deprecated because: Development has ceased. expiration date: 2010-11-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ports-mgmt&portname=barry portname: security/phpmyid description: A single user Identity Provider for the OpenID framework maintainer: dan@langille.org deprecated because: Development has ceased. expiration date: 2011-01-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=phpmyid portname: security/ssh2 description: Secure shell client and server for V.2 SSH protocol maintainer: marius@FreeBSD.org deprecated because: abandoned upstream expiration date: 2010-10-15 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=ssh2 portname: security/ssh2-nox11 description: Secure shell client and server for V.2 SSH protocol maintainer: marius@FreeBSD.org deprecated because: abandoned upstream expiration date: 2010-10-15 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=ssh2-nox11 portname: sysutils/sfdisk description: Standalone sysinstall's fdisk maintainer: spam@rm-rf.kiev.ua deprecated because: All supported freebsd versions now have sade, sfdisk 0.2 is outdated expiration date: 2010-10-27 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=sfdisk portname: www/flock description: Web browser based on the browser portion of Mozilla maintainer: ports@FreeBSD.org deprecated because: Flock 3 moves from Firefox to Chromium expiration date: 2010-12-31 build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.8.20100305224420/flock-2.5_2.log.bz2 (_Apr_11_20:29:16_UTC_2010) overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=flock portname: www/linux-flock description: The social web browser maintainer: ports@FreeBSD.org deprecated because: Flock 3 moves from Firefox to Chromium expiration date: 2010-12-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=linux-flock portname: www/trac-multirepos description: Multiple repositories Trac version maintainer: alexey@renatasystems.org deprecated because: Multiple repositories support has been merged in trunk, please use Trac 0.12+ (www/trac) instead expiration date: 2010-10-10 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=trac-multirepos portname: www/wb0 description: Web browser for svgalib which can show pictures maintainer: ports@FreeBSD.org status: BROKEN deprecated because: Development has ceased. expiration date: 2010-11-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=wb0 From owner-freebsd-ports@FreeBSD.ORG Thu Oct 7 06:29:33 2010 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 E2F101065720 for ; Thu, 7 Oct 2010 06:29:33 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mail.droso.net (koala.droso.net [IPv6:2001:6c8:130:400::6]) by mx1.freebsd.org (Postfix) with ESMTP id AFE078FC20 for ; Thu, 7 Oct 2010 06:29:33 +0000 (UTC) Received: from koala.droso.net (localhost.droso.net [IPv6:::1]) by mail.droso.net (Postfix) with ESMTP id 1D7991CC61 for ; Thu, 7 Oct 2010 08:29:33 +0200 (CEST) From: linimon@FreeBSD.org To: ports@freebsd.org Message-Id: <20101007062933.1D7991CC61@mail.droso.net> Date: Thu, 7 Oct 2010 08:29:33 +0200 (CEST) Cc: Subject: FreeBSD unmaintained ports which are currently marked forbidden X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: portmgr-feedback@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Oct 2010 06:29:34 -0000 As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically notify users about ports that are marked as "forbidden" in their Makefiles. Often, these ports are so marked due to security concerns, such as known exploits. An overview of each port, including errors seen on the build farm, is included below. portname: misc/compat3x forbidden because: FreeBSD-SA-03:05.xdr, FreeBSD-SA-03:08.realpath - not fixed / no lib available build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=compat3x From owner-freebsd-ports@FreeBSD.ORG Thu Oct 7 06:29:34 2010 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 2C4131065721 for ; Thu, 7 Oct 2010 06:29:34 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mail.droso.net (koala.droso.net [IPv6:2001:6c8:130:400::6]) by mx1.freebsd.org (Postfix) with ESMTP id E56B58FC21 for ; Thu, 7 Oct 2010 06:29:33 +0000 (UTC) Received: from koala.droso.net (localhost.droso.net [IPv6:::1]) by mail.droso.net (Postfix) with ESMTP id 522CC1CC69 for ; Thu, 7 Oct 2010 08:29:33 +0200 (CEST) From: linimon@FreeBSD.org To: ports@FreeBSD.org Message-Id: <20101007062933.522CC1CC69@mail.droso.net> Date: Thu, 7 Oct 2010 08:29:33 +0200 (CEST) Cc: Subject: FreeBSD ports which are currently marked forbidden X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: portmgr-feedback@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Oct 2010 06:29:34 -0000 As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically notify users about ports that are marked as "forbidden" in their Makefiles. Often, these ports are so marked due to security concerns, such as known exploits. An overview of each port, including errors seen on the build farm, is included below. portname: databases/gnats forbidden because: Security issues build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=gnats portname: misc/compat3x forbidden because: FreeBSD-SA-03:05.xdr, FreeBSD-SA-03:08.realpath - not fixed / no lib available build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=compat3x From owner-freebsd-ports@FreeBSD.ORG Thu Oct 7 07:41:52 2010 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 2CDCE106567A for ; Thu, 7 Oct 2010 07:41:52 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from mail.ebusiness-leidinger.de (mail.ebusiness-leidinger.de [217.11.53.44]) by mx1.freebsd.org (Postfix) with ESMTP id D35A78FC15 for ; Thu, 7 Oct 2010 07:41:51 +0000 (UTC) Received: from outgoing.leidinger.net (p57B3B2F4.dip.t-dialin.net [87.179.178.244]) by mail.ebusiness-leidinger.de (Postfix) with ESMTPSA id 299C984401F; Thu, 7 Oct 2010 09:41:47 +0200 (CEST) Received: from webmail.leidinger.net (unknown [IPv6:fd73:10c7:2053:1::2:102]) by outgoing.leidinger.net (Postfix) with ESMTP id 20E5F18EA; Thu, 7 Oct 2010 09:41:44 +0200 (CEST) Received: (from www@localhost) by webmail.leidinger.net (8.14.4/8.13.8/Submit) id o977fcaL068644; Thu, 7 Oct 2010 09:41:38 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from pslux.ec.europa.eu (pslux.ec.europa.eu [158.169.9.14]) by webmail.leidinger.net (Horde Framework) with HTTP; Thu, 07 Oct 2010 09:41:38 +0200 Message-ID: <20101007094138.973859ejkm7m4vc4@webmail.leidinger.net> Date: Thu, 07 Oct 2010 09:41:38 +0200 From: Alexander Leidinger To: Chris Forgeron References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Dynamic Internet Messaging Program (DIMP) H3 (1.1.4) X-EBL-MailScanner-Information: Please contact the ISP for more information X-EBL-MailScanner-ID: 299C984401F.A5462 X-EBL-MailScanner: Found to be clean X-EBL-MailScanner-SpamCheck: not spam, spamhaus-ZEN, SpamAssassin (not cached, score=1.274, required 6, autolearn=disabled, RDNS_NONE 1.27) X-EBL-MailScanner-SpamScore: s X-EBL-MailScanner-From: alexander@leidinger.net X-EBL-MailScanner-Watermark: 1287042107.81646@mNkt1g51re1dXwEr2LqhMA X-EBL-Spam-Status: No Cc: "'freebsd-ports@freebsd.org'" Subject: Re: Volunteering for maintaining ICC 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: Thu, 07 Oct 2010 07:41:52 -0000 Quoting Chris Forgeron (from Wed, 06 Oct 2010 11:45:03 -0300): > I'd like to step up and offer to modernize and maintain the ICC port > for FreeBSD. > > I may be crazy, specially as 9 is going towards Clang/LLVM. With > that move, there may be a lot of very talented people modifying the > build/make environment to work in a way that is even further removed > from ICC's working. Time will tell if this is viable or not. Today I see more value in getting ICC to run for the HPC community than for the kernel/world. When I modified the kernel build infrastructure to be able to use icc, this was more to get more warning/error messages from the compiler, than for performance reasons. The warning/error messages part should now be covered by clang and coverity, so I do not see very much value in using icc for the kernel/world anymore. > What I'm looking for is the previous port maintainer's email > address. I ran across it someplace, but can't find it now. He > mentioned having some contacts at Intel, as well as info on the > basic process and tips for the next person who may want to maintain. My contact at Intel was specific to get an commercial icc license for FreeBSD. He did not had access to the icc sources or similar. I did feature requests via the normal support channel. > I'm very interested in HPC, and I believe step one on this long road > for FreeBSD is an option to use a more optimized complier for Intel > platforms (which is all we use anyway). When icc is done, the fortran compiler is not far away (at least there where people in the past which took the work for icc and applied it to the fortran compiler)... Bye, Alexander. -- There is always something new out of Africa. -- Gaius Plinius Secundus http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 From owner-freebsd-ports@FreeBSD.ORG Thu Oct 7 07:55:33 2010 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 38D9C106566B for ; Thu, 7 Oct 2010 07:55:33 +0000 (UTC) (envelope-from severe.grind@gmail.com) Received: from mail-vw0-f54.google.com (mail-vw0-f54.google.com [209.85.212.54]) by mx1.freebsd.org (Postfix) with ESMTP id E44608FC12 for ; Thu, 7 Oct 2010 07:55:32 +0000 (UTC) Received: by vws2 with SMTP id 2so281569vws.13 for ; Thu, 07 Oct 2010 00:55:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=wiacnYaU3r1bAXL+00mFWjF9ZZp0Rw9JQACLvOmgV0I=; b=lgLoJ6MWgs+GQmRw2bxd/Z2VnJ8bEw1en/NLwxYmOkyODuHKLOeNRvVhXt/NfesSwO KBce7jSef/aitOeVNxk3MSCG1hNiX9diTu8l9vX/o6LxB1rAc3hf4Lib2sVWQSFZA4xh 5CxV3Fo4Est1vyLEX6gtmA5HXNVwcECjajST0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=Z3G8hqwVCe5cVZDU2cb8CbcXQ1T+cTdPw/g3rUxlpgNx1gVp9PF2ZZboghB9D1RTkR mSilWj7cT1Eep8OnoveFlnMIaI27J6TuhUSl/PsNlWX3nugzDaxIvsNkNl1wXDOPd+Ta cPKfL4pWQGIyy0YIN3YeqscsnnrC/0/J0tZ74= MIME-Version: 1.0 Received: by 10.220.184.1 with SMTP id ci1mr157830vcb.71.1286438132158; Thu, 07 Oct 2010 00:55:32 -0700 (PDT) Received: by 10.220.190.10 with HTTP; Thu, 7 Oct 2010 00:55:32 -0700 (PDT) Date: Thu, 7 Oct 2010 11:55:32 +0400 Message-ID: From: Severe Grind To: ports@freebsd.org X-Mailman-Approved-At: Thu, 07 Oct 2010 11:40:44 +0000 Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: questions about 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: Thu, 07 Oct 2010 07:55:33 -0000 Hello, I have several questions concerning creating Makefile I don't understand in what sequence USE_* flags in Makefile are processed, for example - in archives/jzlib/Makefile add USE_APACHE=22, before USE_JAVA= yes USE_JAVA= 1.4+ but when i execute make install, first install JAVA. Is it possible through the Makefile to make the following: In pre-fetch stage makes dependences on flags: USE_AUTOTOOLS USE_JAVA USE_APACHE after that execute script, pre-configure which will make firebird-2.1 from sorce, then make PHP via USE? Or, it can be done by FETCH_DEPENDENDS etc.? From owner-freebsd-ports@FreeBSD.ORG Thu Oct 7 12:52:35 2010 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 04E82106566C; Thu, 7 Oct 2010 12:52:35 +0000 (UTC) (envelope-from alp@rsu.ru) Received: from mail.r61.net (mail.r61.net [195.208.245.249]) by mx1.freebsd.org (Postfix) with ESMTP id 7E0AE8FC19; Thu, 7 Oct 2010 12:52:34 +0000 (UTC) Received: from pyhalov.cc.rsu.ru (pyhalov.cc.rsu.ru [195.208.252.128]) (authenticated bits=0) by mail.r61.net (8.14.4/8.14.1) with ESMTP id o97CqVZL015701 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Thu, 7 Oct 2010 16:52:31 +0400 (MSD) (envelope-from alp@rsu.ru) Message-ID: <4CADC28F.7000109@rsu.ru> Date: Thu, 07 Oct 2010 16:52:31 +0400 From: Alexander Pyhalov User-Agent: Thunderbird 2.0.0.23 (X11/20091202) MIME-Version: 1.0 To: girgen@FreeBSD.org, freebsd-ports@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: new version of postgresql 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: Thu, 07 Oct 2010 12:52:35 -0000 Hello. I've seen interesting commit message in postgresql90-server port: "Also, try to break the previous 1:1 relation between FreeBSD system and PostgreSQL versions installed. Use different PREFIX:es to install different versions on the same system." I've fetched new version of ports and tried to install postgresql84 from ports with default prefix and later - postgresql90 with non-default prefix. I managed to install postgresql90-client and postgresql84-{server,client}. However, while building postgresql90-server I received pgtest# make PREFIX=/usr/local/postgresql/9.0 install ===> postgresql-server-9.0.1 cannot install: the port wants postgresql90-client but you have postgresql84-client installed. *** Error code 1 Stop in /usr/ports/databases/postgresql90-server. The problem comes from 186 line of /usr/ports/Mk/bsd.database.mk. It must be modified to allow such things. Also, it seems that PREFIX modification is not sufficient: we should have some specific postgresql files in /usr/local/etc/periodic and several startup scripts in /usr/local/etc/rc.d. -- Best regards, Alexander Pyhalov, system administrator of Computer Center of South Federal University From owner-freebsd-ports@FreeBSD.ORG Thu Oct 7 13:06:40 2010 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 251A1106567A for ; Thu, 7 Oct 2010 13:06:40 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from melon.pingpong.net (dadel.pingpong.net [79.136.116.226]) by mx1.freebsd.org (Postfix) with ESMTP id 986798FC0A for ; Thu, 7 Oct 2010 13:06:39 +0000 (UTC) Received: from melon.pingpong.net (localhost [127.0.0.1]) by melon.pingpong.net (Postfix) with ESMTP id 29EA05F12; Thu, 7 Oct 2010 15:06:38 +0200 (CEST) X-Virus-Scanned: by amavisd-new at pingpong.net Received: from melon.pingpong.net ([127.0.0.1]) by melon.pingpong.net (melon.pingpong.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id vBj3Ueb9KwkG; Thu, 7 Oct 2010 15:06:38 +0200 (CEST) Received: from [172.16.1.6] (citron.pingpong.net [195.178.173.66]) by melon.pingpong.net (Postfix) with ESMTPA id D668C5E66; Thu, 7 Oct 2010 15:06:37 +0200 (CEST) Date: Thu, 07 Oct 2010 15:06:37 +0200 From: Palle Girgensohn To: Alexander Pyhalov , freebsd-ports@FreeBSD.org Message-ID: <65236C3B101A160F514BEB2D@girgBook.local> In-Reply-To: <4CADC28F.7000109@rsu.ru> References: <4CADC28F.7000109@rsu.ru> X-Mailer: Mulberry/4.0.8 (Mac OS X) Errors-To: girgen+uustuds@pingpong.net MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: Subject: Re: new version of postgresql 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: Thu, 07 Oct 2010 13:06:40 -0000 Hi, True, it is a first shot at breaking the 1:1 relationship, it is not a solution. I think that if you install all PostgreSQL:s in different PREFIXes, it will work to install them. As you say, they should opimtally install in their own non-conflicting places without changing prefix. Lets see this as a work in progress. Cheers, Palle --On 7 oktober 2010 16.52.31 +0400 Alexander Pyhalov wrote: > Hello. > I've seen interesting commit message in postgresql90-server port: "Also, > try to break the previous 1:1 relation between FreeBSD system and > PostgreSQL versions installed. Use different PREFIX:es to install > different versions on the same system." > > I've fetched new version of ports and tried to install postgresql84 from > ports with default prefix and later - postgresql90 with non-default > prefix. > > I managed to install postgresql90-client and > postgresql84-{server,client}. However, while building postgresql90-server > I received > > pgtest# make PREFIX=/usr/local/postgresql/9.0 install > ===> postgresql-server-9.0.1 cannot install: the port wants > postgresql90-client but you have postgresql84-client installed. > *** Error code 1 > > Stop in /usr/ports/databases/postgresql90-server. > > The problem comes from 186 line of /usr/ports/Mk/bsd.database.mk. It must > be modified to allow such things. > Also, it seems that PREFIX modification is not sufficient: we should have > some specific postgresql files in /usr/local/etc/periodic and several > startup scripts in /usr/local/etc/rc.d. > > -- > Best regards, > Alexander Pyhalov, > system administrator of Computer Center of South Federal University From owner-freebsd-ports@FreeBSD.ORG Thu Oct 7 13:10:54 2010 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 C511710656A3 for ; Thu, 7 Oct 2010 13:10:54 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from melon.pingpong.net (dadel.pingpong.net [79.136.116.226]) by mx1.freebsd.org (Postfix) with ESMTP id 8316B8FC16 for ; Thu, 7 Oct 2010 13:10:54 +0000 (UTC) Received: from melon.pingpong.net (localhost [127.0.0.1]) by melon.pingpong.net (Postfix) with ESMTP id B682A5F22; Thu, 7 Oct 2010 15:10:53 +0200 (CEST) X-Virus-Scanned: by amavisd-new at pingpong.net Received: from melon.pingpong.net ([127.0.0.1]) by melon.pingpong.net (melon.pingpong.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id L4sYJ2T4T4SW; Thu, 7 Oct 2010 15:10:53 +0200 (CEST) Received: from [172.16.1.6] (citron.pingpong.net [195.178.173.66]) by melon.pingpong.net (Postfix) with ESMTPA id 6ECBB5F12; Thu, 7 Oct 2010 15:10:53 +0200 (CEST) Date: Thu, 07 Oct 2010 15:10:53 +0200 From: Palle Girgensohn To: Alexander Pyhalov , freebsd-ports@FreeBSD.org Message-ID: In-Reply-To: <65236C3B101A160F514BEB2D@girgBook.local> References: <4CADC28F.7000109@rsu.ru> <65236C3B101A160F514BEB2D@girgBook.local> X-Mailer: Mulberry/4.0.8 (Mac OS X) Errors-To: girgen+uustuds@pingpong.net MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: Subject: Re: new version of postgresql 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: Thu, 07 Oct 2010 13:10:54 -0000 --On 7 oktober 2010 15.06.37 +0200 Palle Girgensohn wrote: > Hi, > > True, it is a first shot at breaking the 1:1 relationship, it is not a > solution. I think that if you install all PostgreSQL:s in different > PREFIXes, it will work to install them. or if you install in prefix first... or manually install the client... > > As you say, they should optimally install in their own non-conflicting > places without changing prefix. > > Lets see this as a work in progress. > > Cheers, > Palle > > > --On 7 oktober 2010 16.52.31 +0400 Alexander Pyhalov wrote: > >> Hello. >> I've seen interesting commit message in postgresql90-server port: "Also, >> try to break the previous 1:1 relation between FreeBSD system and >> PostgreSQL versions installed. Use different PREFIX:es to install >> different versions on the same system." >> >> I've fetched new version of ports and tried to install postgresql84 from >> ports with default prefix and later - postgresql90 with non-default >> prefix. >> >> I managed to install postgresql90-client and >> postgresql84-{server,client}. However, while building postgresql90-server >> I received >> >> pgtest# make PREFIX=/usr/local/postgresql/9.0 install >> ===> postgresql-server-9.0.1 cannot install: the port wants >> postgresql90-client but you have postgresql84-client installed. >> *** Error code 1 >> >> Stop in /usr/ports/databases/postgresql90-server. >> >> The problem comes from 186 line of /usr/ports/Mk/bsd.database.mk. It must >> be modified to allow such things. >> Also, it seems that PREFIX modification is not sufficient: we should have >> some specific postgresql files in /usr/local/etc/periodic and several >> startup scripts in /usr/local/etc/rc.d. >> >> -- >> Best regards, >> Alexander Pyhalov, >> system administrator of Computer Center of South Federal University > > > From owner-freebsd-ports@FreeBSD.ORG Thu Oct 7 13:17:41 2010 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 52D4C1065708; Thu, 7 Oct 2010 13:17:41 +0000 (UTC) (envelope-from alp@rsu.ru) Received: from mail.r61.net (mail.r61.net [195.208.245.249]) by mx1.freebsd.org (Postfix) with ESMTP id AE9108FC12; Thu, 7 Oct 2010 13:17:40 +0000 (UTC) Received: from pyhalov.cc.rsu.ru (pyhalov.cc.rsu.ru [195.208.252.128]) (authenticated bits=0) by mail.r61.net (8.14.4/8.14.1) with ESMTP id o97DHc5x018754 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Thu, 7 Oct 2010 17:17:38 +0400 (MSD) (envelope-from alp@rsu.ru) Message-ID: <4CADC872.4020905@rsu.ru> Date: Thu, 07 Oct 2010 17:17:38 +0400 From: Alexander Pyhalov User-Agent: Thunderbird 2.0.0.23 (X11/20091202) MIME-Version: 1.0 To: Palle Girgensohn References: <4CADC28F.7000109@rsu.ru> <65236C3B101A160F514BEB2D@girgBook.local> In-Reply-To: <65236C3B101A160F514BEB2D@girgBook.local> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports@FreeBSD.org Subject: Re: new version of postgresql 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: Thu, 07 Oct 2010 13:17:41 -0000 Hello. Just a notice. It seems it will not work to install different postgresql versions in different PREFIX'es at least because of bsd.databases.mk: lines 181 - 186: if we look at postgresql version in $LOCALBASE, it will be different from one from $PREFIX. Palle Girgensohn wrote: > True, it is a first shot at breaking the 1:1 relationship, it is not a > solution. I think that if you install all PostgreSQL:s in different > PREFIXes, it will work to install them. -- Best regards, Alexander Pyhalov, system administrator of Computer Center of South Federal University From owner-freebsd-ports@FreeBSD.ORG Thu Oct 7 13:30:39 2010 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 AD06A106566C for ; Thu, 7 Oct 2010 13:30:39 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (pancho.soaustin.net [76.74.250.40]) by mx1.freebsd.org (Postfix) with ESMTP id 907228FC0C for ; Thu, 7 Oct 2010 13:30:39 +0000 (UTC) Received: by mail.soaustin.net (Postfix, from userid 502) id 4E84356026; Thu, 7 Oct 2010 13:30:39 +0000 (UTC) Date: Thu, 7 Oct 2010 13:30:39 +0000 From: Mark Linimon To: Chris Message-ID: <20101007133039.GE20270@lonesome.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.18 (2008-05-17) Cc: ports@FreeBSD.org Subject: Re: security/openssh-portable maintainer 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, 07 Oct 2010 13:30:39 -0000 Please see ports/150493 for someone who seems to be looking at it. mcl From owner-freebsd-ports@FreeBSD.ORG Thu Oct 7 13:41:43 2010 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 DF4681065674 for ; Thu, 7 Oct 2010 13:41:43 +0000 (UTC) (envelope-from bob@immure.com) Received: from maul.immure.com (adsl-66-136-206-1.dsl.austtx.swbell.net [66.136.206.1]) by mx1.freebsd.org (Postfix) with ESMTP id 9EF0E8FC08 for ; Thu, 7 Oct 2010 13:41:43 +0000 (UTC) Received: from rancor.immure.com (rancor.immure.com [10.1.132.9]) by maul.immure.com (8.14.4/8.14.4) with ESMTP id o97DM9E7056372 for ; Thu, 7 Oct 2010 08:22:09 -0500 (CDT) (envelope-from bob@immure.com) Received: from rancor.immure.com (localhost [127.0.0.1]) by rancor.immure.com (8.14.4/8.14.4) with ESMTP id o97DM984047900 for ; Thu, 7 Oct 2010 08:22:09 -0500 (CDT) (envelope-from bob@rancor.immure.com) Received: (from bob@localhost) by rancor.immure.com (8.14.4/8.14.4/Submit) id o97DM9lu047899 for freebsd-ports@freebsd.org; Thu, 7 Oct 2010 08:22:09 -0500 (CDT) (envelope-from bob) Date: Thu, 7 Oct 2010 08:22:09 -0500 From: Bob Willcox To: freebsd-ports@freebsd.org Message-ID: <20101007132209.GA47648@rancor.immure.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-immure-MailScanner-Information: Please contact the ISP for more information X-immure-MailScanner-ID: o97DM9E7056372 X-immure-MailScanner: Found to be clean X-immure-MailScanner-From: bob@immure.com X-Spam-Status: No Subject: New mutt-devel problems with text/html processing X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Bob Willcox List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Oct 2010 13:41:43 -0000 The new version of mutt-devel nolonger honors my mailcap entry to invoke lynx when it encounters a text/html file type. Instead it simply displays the raw html text. According to their UPDATING file, they say: "all text/* parts can be displayed inline without mailcap" Which is suspiciously in the realm of the problem I'm seeing. Perhaps there's now some other way of displaying text/html files w/o mailcap and an external program that I'm missing? Thanks, Bob -- Bob Willcox A great many people think they are thinking bob@immure.com when they are merely rearranging their prejudices. Austin, TX -- William James From owner-freebsd-ports@FreeBSD.ORG Thu Oct 7 13:51:42 2010 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 9EF02106564A for ; Thu, 7 Oct 2010 13:51:42 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from qmta06.westchester.pa.mail.comcast.net (qmta06.westchester.pa.mail.comcast.net [76.96.62.56]) by mx1.freebsd.org (Postfix) with ESMTP id 4C67D8FC14 for ; Thu, 7 Oct 2010 13:51:41 +0000 (UTC) Received: from omta21.westchester.pa.mail.comcast.net ([76.96.62.72]) by qmta06.westchester.pa.mail.comcast.net with comcast id Fnrq1f0061ZXKqc56priPD; Thu, 07 Oct 2010 13:51:42 +0000 Received: from koitsu.dyndns.org ([98.248.41.155]) by omta21.westchester.pa.mail.comcast.net with comcast id Fprg1f00D3LrwQ23hprhab; Thu, 07 Oct 2010 13:51:42 +0000 Received: by icarus.home.lan (Postfix, from userid 1000) id C8EDF9B427; Thu, 7 Oct 2010 06:51:38 -0700 (PDT) Date: Thu, 7 Oct 2010 06:51:38 -0700 From: Jeremy Chadwick To: Bob Willcox Message-ID: <20101007135138.GA81306@icarus.home.lan> References: <20101007132209.GA47648@rancor.immure.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20101007132209.GA47648@rancor.immure.com> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-ports@freebsd.org Subject: Re: New mutt-devel problems with text/html processing 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, 07 Oct 2010 13:51:42 -0000 On Thu, Oct 07, 2010 at 08:22:09AM -0500, Bob Willcox wrote: > The new version of mutt-devel nolonger honors my mailcap entry to invoke lynx > when it encounters a text/html file type. Instead it simply displays the raw > html text. According to their UPDATING file, they say: > > "all text/* parts can be displayed inline without mailcap" > > Which is suspiciously in the realm of the problem I'm seeing. > > Perhaps there's now some other way of displaying text/html files w/o mailcap > and an external program that I'm missing? Looks relevant, with a response from Michael Elkins explaining the change: http://marc.info/?t=128477093300004&r=1&w=2 Basically, it appears that as of 1.5.21, mutt only displays text/* MIME types using its own internal engine. If you want the old behaviour, when selecting the attachment/entry, press "m". Personally I don't like this change, but I'll deal with it. -- | Jeremy Chadwick jdc@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 Thu Oct 7 14:47:20 2010 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 B40F61065670 for ; Thu, 7 Oct 2010 14:47:20 +0000 (UTC) (envelope-from john.bayly@tipstrade.net) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.17.10]) by mx1.freebsd.org (Postfix) with ESMTP id 77C928FC13 for ; Thu, 7 Oct 2010 14:47:20 +0000 (UTC) Received: from intra.tipstrade.net (w-87.cust-5147.ip.static.uno.net.uk [95.172.231.87]) by mrelayeu.kundenserver.de (node=mreu0) with ESMTP (Nemesis) id 0MKdqV-1P32bm0HFX-001w49; Thu, 07 Oct 2010 16:34:41 +0200 Received: from [192.168.0.30] (baylyj3.intra [192.168.0.30]) by intra.tipstrade.net (Postfix) with ESMTP id 392D8258E226; Thu, 7 Oct 2010 15:37:45 +0100 (BST) Message-ID: <4CADDA88.6080505@tipstrade.net> Date: Thu, 07 Oct 2010 15:34:48 +0100 From: John Bayly User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.2.9) Gecko/20100915 Lightning/1.0b2 Thunderbird/3.1.4 MIME-Version: 1.0 To: tony@pc-tony.com Content-Type: multipart/mixed; boundary="------------070909060204050709030108" X-Provags-ID: V02:K0:3nrPKv/93oSgqJ3oeWs+SgVxewab33yO1ccH5jnFEK5 vF5Vkzx0vDY7DyBGgKwq+XS/sjXF1Bg+lNQsuwFJ3yzoy9YfQs AxF8LEuUHjrxcArmxrHwhAekhVTcHmLtkrwzSrHnIpUGjyVslP NU2mlHRSvd2hvGlTM6v0dYeS47Lge9LT4Io5XTTbENAQg4A9Wp wiEkNToBjt1+oNmunrRkg6Wzd2jZ8qzJMEPyJMwzYU= Cc: ports@FreeBSD.org Subject: FreeBSD Port: py26-fail2ban-0.8.4 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, 07 Oct 2010 14:47:20 -0000 This is a multi-part message in MIME format. --------------070909060204050709030108 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Chris Jones posted a pf action for fail2ban over a year ago with the suggestion that it should be added to the official port. I've attached a patch to include in the port which provides the bsd-pf action out of the box. Can this be included into the fail2ban port? Regards -- John Bayly Systems Administrator ------------------ TipsTrade Ltd. 16 Wornal Park, Menmarsh Road, Worminghall, Bucks. HP18 9JX T: +44 (0)1844 337 326 (Direct) M: +44 (0)7787 727 934 F: +44 (0)1844 337 337 E: john.bayly@tipstrade.net E-Mail Disclaimer Whilst TipsTrade Ltd. believes that the information is correct at the date of this e-mail, no warranty or representation is given to this effect and no responsibility can be accepted by TipsTrade Ltd. to any end users for any action taken on the basis of the information. The information contained in this electronic transmission is strictly confidential and may be legally privileged. It is intended solely for the addressee. If you are not the intended recipient, any disclosure, copying, distribution or any action taken or omitted to be taken in reliance on this is prohibited and may be unlawful. Please treat our information in confidence, as you would expect us to treat yours. E-mail is an inherently insecure form of communication and we do not accept liability for any unintentional damage caused to a recipient's system by this e-mail message and/or its attachments or for any unauthorised access to or interference with this e-mail that may occur. If you have received this e-mail in error, please notify the Systems Manager: mailman@tipstrade.net --------------070909060204050709030108 Content-Type: text/plain; name="patch-bsd-pf.conf" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="patch-bsd-pf.conf" LS0tIC9kZXYvbnVsbCAgIDIwMTAtMTAtMDcgMTY6MjA6MjkuMDAwMDAwMDAwICswMTAwDQor KysgLi9jb25maWcvYWN0aW9uLmQvYnNkLXBmLmNvbmYgMjAxMC0xMC0wNyAxNjoyMDoyMi4w MDAwMDAwMDAgKzAxMDANCkBAIC0wLDAgKzEsNjUgQEANCisjIEZhaWwyQmFuIGFjdGlvbiBm aWxlIGZvciB1c2Ugd2l0aCB0aGUgRnJlZUJTRCBwYWNrZXQgZmlsdGVyDQorIw0KKyMgQXV0 aG9yOiBDaHJpcyBKb25lcw0KKyMgTW9kaWZpZWQgYnk6IEpvaG4gQmF5bHkNCisjDQorDQor W0RlZmluaXRpb25dDQorDQorIyBPcHRpb246ICBhY3Rpb25zdGFydA0KKyMgTm90ZXMuOiAg Y29tbWFuZCBleGVjdXRlZCBvbmNlIGF0IHRoZSBzdGFydCBvZiBGYWlsMkJhbi4NCisjIFZh bHVlczogIENNRA0KKyMNCithY3Rpb25zdGFydCA9DQorDQorDQorIyBPcHRpb246ICBhY3Rp b25zdG9wDQorIyBOb3Rlcy46ICBjb21tYW5kIGV4ZWN1dGVkIG9uY2UgYXQgdGhlIGVuZCBv ZiBGYWlsMkJhbg0KKyMgVmFsdWVzOiAgQ01EDQorIw0KK2FjdGlvbnN0b3AgPQ0KKw0KKw0K KyMgT3B0aW9uOiAgYWN0aW9uY2hlY2sNCisjIE5vdGVzLjogIGNvbW1hbmQgZXhlY3V0ZWQg b25jZSBiZWZvcmUgZWFjaCBhY3Rpb25iYW4gY29tbWFuZA0KKyMgVmFsdWVzOiAgQ01EDQor Iw0KK2FjdGlvbmNoZWNrID0NCisNCisNCisjIE9wdGlvbjogIGFjdGlvbmJhbg0KKyMgTm90 ZXMuOiAgY29tbWFuZCBleGVjdXRlZCB3aGVuIGJhbm5pbmcgYW4gSVAuIFRha2UgY2FyZSB0 aGF0IHRoZQ0KKyMgICAgICAgICAgY29tbWFuZCBpcyBleGVjdXRlZCB3aXRoIEZhaWwyQmFu IHVzZXIgcmlnaHRzLg0KKyMgVGFnczogICAgPGlwPiAgSVAgYWRkcmVzcw0KKyMgICAgICAg ICAgPGZhaWx1cmVzPiAgbnVtYmVyIG9mIGZhaWx1cmVzDQorIyAgICAgICAgICA8dGltZT4g IHVuaXggdGltZXN0YW1wIG9mIHRoZSBiYW4gdGltZQ0KKyMgVmFsdWVzOiAgQ01EDQorIw0K KyMgcmVxdWlyZWQgYSBwZiBydWxlIGxpa2UgImJsb2NrIGluIG9uIGVtMCBmcm9tIDxmYWls MmJhbj4iDQorYWN0aW9uYmFuID0gcGZjdGwgLXQgZmFpbDJiYW4gLVQgYWRkICA8aXA+DQor DQorDQorIyBPcHRpb246ICBhY3Rpb251bmJhbg0KKyMgTm90ZXMuOiAgY29tbWFuZCBleGVj dXRlZCB3aGVuIHVuYmFubmluZyBhbiBJUC4gVGFrZSBjYXJlIHRoYXQgdGhlDQorIyAgICAg ICAgICBjb21tYW5kIGlzIGV4ZWN1dGVkIHdpdGggRmFpbDJCYW4gdXNlciByaWdodHMuDQor IyBUYWdzOiAgICA8aXA+ICBJUCBhZGRyZXNzDQorIyAgICAgICAgICA8ZmFpbHVyZXM+ICBu dW1iZXIgb2YgZmFpbHVyZXMNCisjICAgICAgICAgIDx0aW1lPiAgdW5peCB0aW1lc3RhbXAg b2YgdGhlIGJhbiB0aW1lDQorIyBWYWx1ZXM6ICBDTUQNCisjDQorYWN0aW9udW5iYW4gPSBw ZmN0bCAtdCBmYWlsMmJhbiAtVCBkZWxldGUgYHBmY3RsIC10IGZhaWwyYmFuIC1UIHNob3cg Mj4vZGV2L251bGwgfCBncmVwIDxpcD5gDQorDQorW0luaXRdDQorDQorIyBPcHRpb246ICBw b3J0DQorIyBOb3Rlcy46ICBzcGVjaWZpZXMgcG9ydCB0byBtb25pdG9yDQorIyBWYWx1ZXM6 ICBbIE5VTSB8IFNUUklORyBdDQorIw0KK3BvcnQgPSBzc2gNCisNCisjIE9wdGlvbjogIGxv Y2FsaG9zdA0KKyMgTm90ZXMuOiAgdGhlIGxvY2FsIElQIGFkZHJlc3Mgb2YgdGhlIG5ldHdv cmsgaW50ZXJmYWNlDQorIyBWYWx1ZXM6ICBJUA0KKyMNCitsb2NhbGhvc3QgPSAxMjcuMC4w LjENCis= --------------070909060204050709030108-- From owner-freebsd-ports@FreeBSD.ORG Thu Oct 7 14:59:48 2010 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 472621065670 for ; Thu, 7 Oct 2010 14:59:48 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from melon.pingpong.net (dadel.pingpong.net [79.136.116.226]) by mx1.freebsd.org (Postfix) with ESMTP id 6A0F08FC08 for ; Thu, 7 Oct 2010 14:59:48 +0000 (UTC) Received: from melon.pingpong.net (localhost [127.0.0.1]) by melon.pingpong.net (Postfix) with ESMTP id 38E375F22; Thu, 7 Oct 2010 16:59:46 +0200 (CEST) X-Virus-Scanned: by amavisd-new at pingpong.net Received: from melon.pingpong.net ([127.0.0.1]) by melon.pingpong.net (melon.pingpong.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id Jw6kfyZcSPrk; Thu, 7 Oct 2010 16:59:46 +0200 (CEST) Received: from [172.16.1.6] (citron.pingpong.net [195.178.173.66]) by melon.pingpong.net (Postfix) with ESMTPA id A8CA35EFC; Thu, 7 Oct 2010 16:59:45 +0200 (CEST) Date: Thu, 07 Oct 2010 16:59:45 +0200 From: Palle Girgensohn To: Alexander Pyhalov Message-ID: In-Reply-To: <4CADC872.4020905@rsu.ru> References: <4CADC28F.7000109@rsu.ru> <65236C3B101A160F514BEB2D@girgBook.local> <4CADC872.4020905@rsu.ru> X-Mailer: Mulberry/4.0.8 (Mac OS X) Errors-To: girgen+uustuds@pingpong.net MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: freebsd-ports@FreeBSD.org Subject: Re: new version of postgresql 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: Thu, 07 Oct 2010 14:59:48 -0000 True, if you start by installing the client, then the server, then contrib, then it work. Otherwise, the LOCALBASE stuff screws things up. --On 7 oktober 2010 17.17.38 +0400 Alexander Pyhalov wrote: > Hello. > Just a notice. It seems it will not work to install different postgresql > versions in different PREFIX'es at least because of bsd.databases.mk: > lines 181 - 186: if we look at postgresql version in $LOCALBASE, it will > be different from one from $PREFIX. > > Palle Girgensohn wrote: > >> True, it is a first shot at breaking the 1:1 relationship, it is not a >> solution. I think that if you install all PostgreSQL:s in different >> PREFIXes, it will work to install them. > > > > -- > Best regards, > Alexander Pyhalov, > system administrator of Computer Center of South Federal University From owner-freebsd-ports@FreeBSD.ORG Thu Oct 7 16:26:22 2010 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 3F745106566B for ; Thu, 7 Oct 2010 16:26:22 +0000 (UTC) (envelope-from bob@immure.com) Received: from maul.immure.com (adsl-66-136-206-1.dsl.austtx.swbell.net [66.136.206.1]) by mx1.freebsd.org (Postfix) with ESMTP id D29908FC1C for ; Thu, 7 Oct 2010 16:26:21 +0000 (UTC) Received: from rancor.immure.com (rancor.immure.com [10.1.132.9]) by maul.immure.com (8.14.4/8.14.4) with ESMTP id o97GQ6df059593; Thu, 7 Oct 2010 11:26:06 -0500 (CDT) (envelope-from bob@immure.com) Received: from rancor.immure.com (localhost [127.0.0.1]) by rancor.immure.com (8.14.4/8.14.4) with ESMTP id o97GQ6af048844; Thu, 7 Oct 2010 11:26:06 -0500 (CDT) (envelope-from bob@rancor.immure.com) Received: (from bob@localhost) by rancor.immure.com (8.14.4/8.14.4/Submit) id o97GQ6wG048843; Thu, 7 Oct 2010 11:26:06 -0500 (CDT) (envelope-from bob) Date: Thu, 7 Oct 2010 11:26:06 -0500 From: Bob Willcox To: Jeremy Chadwick Message-ID: <20101007162243.GA48756@rancor.immure.com> References: <20101007132209.GA47648@rancor.immure.com> <20101007135138.GA81306@icarus.home.lan> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20101007135138.GA81306@icarus.home.lan> User-Agent: Mutt/1.5.21 (2010-09-15) X-immure-MailScanner-Information: Please contact the ISP for more information X-immure-MailScanner-ID: o97GQ6df059593 X-immure-MailScanner: Found to be clean X-immure-MailScanner-From: bob@immure.com X-Spam-Status: No Cc: freebsd-ports@freebsd.org Subject: Re: New mutt-devel problems with text/html processing X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Bob Willcox List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Oct 2010 16:26:22 -0000 On Thu, Oct 07, 2010 at 06:51:38AM -0700, Jeremy Chadwick wrote: > On Thu, Oct 07, 2010 at 08:22:09AM -0500, Bob Willcox wrote: > > The new version of mutt-devel nolonger honors my mailcap entry to invoke lynx > > when it encounters a text/html file type. Instead it simply displays the raw > > html text. According to their UPDATING file, they say: > > > > "all text/* parts can be displayed inline without mailcap" > > > > Which is suspiciously in the realm of the problem I'm seeing. > > > > Perhaps there's now some other way of displaying text/html files w/o mailcap > > and an external program that I'm missing? > > Looks relevant, with a response from Michael Elkins explaining the > change: > > http://marc.info/?t=128477093300004&r=1&w=2 > > Basically, it appears that as of 1.5.21, mutt only displays text/* MIME > types using its own internal engine. If you want the old behaviour, > when selecting the attachment/entry, press "m". > > Personally I don't like this change, but I'll deal with it. Thanks Jeremy, that was it. Guess I'll just have to get used to pressing 'm' now. Bob > > -- > | Jeremy Chadwick jdc@parodius.com | > | Parodius Networking http://www.parodius.com/ | > | UNIX Systems Administrator Mountain View, CA, USA | > | Making life hard for others since 1977. PGP: 4BD6C0CB | -- Bob Willcox A great many people think they are thinking bob@immure.com when they are merely rearranging their prejudices. Austin, TX -- William James From owner-freebsd-ports@FreeBSD.ORG Thu Oct 7 17:56:08 2010 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 72057106566C for ; Thu, 7 Oct 2010 17:56:08 +0000 (UTC) (envelope-from barbara.xxx1975@libero.it) Received: from cp-out1.libero.it (cp-out1.libero.it [212.52.84.101]) by mx1.freebsd.org (Postfix) with ESMTP id 377218FC08 for ; Thu, 7 Oct 2010 17:56:07 +0000 (UTC) Received: from wmail46 (172.31.0.236) by cp-out1.libero.it (8.5.115) (authenticated as barbara.xxx1975@libero.it) id 4AB2342315E37AB3 for freebsd-ports@freebsd.org; Thu, 7 Oct 2010 19:56:06 +0200 Message-ID: <18323939.179251286474166764.JavaMail.defaultUser@defaultHost> Date: Thu, 7 Oct 2010 19:56:06 +0200 (CEST) From: Barbara To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain;charset="UTF-8" Content-Transfer-Encoding: 7bit X-SenderIP: 79.9.234.15 Subject: Problem with portsnap5.FreeBSD.org? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Barbara List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Oct 2010 17:56:08 -0000 I just want to report that it seems that portsnap5.FreeBSD.org is not responding. # portsnap fetch update Looking up portsnap.FreeBSD.org mirrors... 5 mirrors found. Fetching snapshot tag from portsnap5.FreeBSD.org... failed. ... From owner-freebsd-ports@FreeBSD.ORG Thu Oct 7 20:20:16 2010 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 97297106566B; Thu, 7 Oct 2010 20:20:16 +0000 (UTC) (envelope-from swell.k@gmail.com) Received: from mail-pw0-f54.google.com (mail-pw0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id 6319A8FC0C; Thu, 7 Oct 2010 20:20:16 +0000 (UTC) Received: by pwi8 with SMTP id 8so98912pwi.13 for ; Thu, 07 Oct 2010 13:20:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:user-agent :date:message-id:mime-version:content-type; bh=x589q/xjvOE1UNZq7LfkTZEO3OnmZNAzQQ43HLY0yKw=; b=f1cKgEYlzhknG7wxF1lnJByBxmUtlBTTyT4yP92GQ/qu2FVRCyyRWCN0x2W/xdkesH vWQ07HdlLff9g0a7fG2jECpYZ1oveewD1vJwIZubYgP37YswhTG3oVcc8DPza9h7aC6e GtTRcIwFIswLnrzWdgO/aarPcjL6A4JhVR2cg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:user-agent:date:message-id:mime-version :content-type; b=E4ID8Cju8r+hXyHdxTnsgcUzeg3B/n0y1B9sE3MIJUUDbyPbKK/sCaKs5YOgJJgqmG YtSBF9FWW5wEnJTFct1kMiUhzPmEUnlev1q5z6KBW7vBFpvyTIj5ZoCO+sp/ADYEXFps d3CSJaCG8z9zYw+qExbhCYvLFIVxSZ9lWIZyw= Received: by 10.142.101.13 with SMTP id y13mr1082678wfb.334.1286482815786; Thu, 07 Oct 2010 13:20:15 -0700 (PDT) Received: from localhost (tor-exit-proxy8-readme.formlessnetworking.net [208.53.142.44]) by mx.google.com with ESMTPS id n70sm1580508yhg.21.2010.10.07.13.20.11 (version=SSLv3 cipher=RC4-MD5); Thu, 07 Oct 2010 13:20:14 -0700 (PDT) From: Anonymous To: Jimmy Olgeni User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (berkeley-unix) Date: Fri, 08 Oct 2010 00:16:02 +0400 Message-ID: <8639shep31.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain Cc: freebsd-ports@freebsd.org Subject: textproc/cl-ppcre: 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: Thu, 07 Oct 2010 20:20:16 -0000 What's holding it against updating to a more recent version, e.g 2.0.3? Does any port depend on it, excluding fasl? I want to convert stumpwm to bsd.cl-asdf.mk. In order to do it I need textproc/cl-ppcre and x11/cl-clx ports. I've made a port for the latter. However, stumpwm doesn't like the old version of cl-ppcre in the tree ; compiling file "/usr/local/lib/common-lisp/stumpwm/head.lisp" (written 07 OCT 2010 10:02:23 PM): ; compiling (IN-PACKAGE #:STUMPWM) ; compiling (EXPORT (QUOTE #)) ; compiling (DEFUN HEAD-BY-NUMBER ...); ; compilation aborted because of fatal error: ; SB-INT:SIMPLE-READER-PACKAGE-ERROR at 1041 (line 34, column 29) on #: ; Symbol "REGISTER-GROUPS-BIND" not found in the CL-PPCRE package. ; ; compilation aborted after 0:00:00.004 $ fgrep -i register-groups-bind **/*.lisp head.lisp: (ppcre:register-groups-bind (('parse-integer number width height x y)) manual.lisp: (ppcre:register-groups-bind (name) ("^@@@ (.*)" line) manual.lisp: (ppcre:register-groups-bind (name) ("^%%% (.*)" line) manual.lisp: (ppcre:register-groups-bind (name) ("^### (.*)" line) manual.lisp: (ppcre:register-groups-bind (name) ("^\\$\\$\\$ (.*)" line) manual.lisp: (ppcre:register-groups-bind (name) ("^!!! (.*)" line) stumpwm.lisp: (ppcre:register-groups-bind (protocol host ('parse-integer display screen)) %% Index: textproc/cl-ppcre/Makefile =================================================================== RCS file: /a/.cvsup/ports/textproc/cl-ppcre/Makefile,v retrieving revision 1.7 diff -u -p -r1.7 Makefile --- textproc/cl-ppcre/Makefile 15 Jan 2010 12:13:44 -0000 1.7 +++ textproc/cl-ppcre/Makefile 7 Oct 2010 20:01:50 -0000 @@ -5,50 +5,53 @@ # $FreeBSD: ports/textproc/cl-ppcre/Makefile,v 1.7 2010/01/15 12:13:44 olgeni Exp $ PORTNAME= cl-ppcre -PORTVERSION= 0.5.4 -PORTREVISION= 1 +PORTVERSION= 2.0.3 CATEGORIES= textproc lisp MASTER_SITES= http://weitz.de/files/ -EXTRACT_SUFX= .tgz +DISTNAME= ${PORTNAME} MAINTAINER= olgeni@FreeBSD.org COMMENT= Portable Perl-Compatible Regular Expression for Common Lisp NO_BUILD= yes +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USE_ASDF= yes do-install: @${MKDIR} ${ASDF_PATHNAME} @${INSTALL_DATA} ${WRKSRC}/api.lisp ${ASDF_PATHNAME} + @${INSTALL_DATA} ${WRKSRC}/charmap.lisp ${ASDF_PATHNAME} + @${INSTALL_DATA} ${WRKSRC}/charset.lisp ${ASDF_PATHNAME} + @${INSTALL_DATA} ${WRKSRC}/chartest.lisp ${ASDF_PATHNAME} @${INSTALL_DATA} ${WRKSRC}/closures.lisp ${ASDF_PATHNAME} @${INSTALL_DATA} ${WRKSRC}/convert.lisp ${ASDF_PATHNAME} + @${INSTALL_DATA} ${WRKSRC}/errors.lisp ${ASDF_PATHNAME} @${INSTALL_DATA} ${WRKSRC}/lexer.lisp ${ASDF_PATHNAME} - @${INSTALL_DATA} ${WRKSRC}/load.lisp ${ASDF_PATHNAME} @${INSTALL_DATA} ${WRKSRC}/optimize.lisp ${ASDF_PATHNAME} @${INSTALL_DATA} ${WRKSRC}/packages.lisp ${ASDF_PATHNAME} @${INSTALL_DATA} ${WRKSRC}/parser.lisp ${ASDF_PATHNAME} + @${INSTALL_DATA} ${WRKSRC}/regex-class-util.lisp ${ASDF_PATHNAME} @${INSTALL_DATA} ${WRKSRC}/regex-class.lisp ${ASDF_PATHNAME} @${INSTALL_DATA} ${WRKSRC}/repetition-closures.lisp ${ASDF_PATHNAME} @${INSTALL_DATA} ${WRKSRC}/scanner.lisp ${ASDF_PATHNAME} @${INSTALL_DATA} ${WRKSRC}/specials.lisp ${ASDF_PATHNAME} @${INSTALL_DATA} ${WRKSRC}/util.lisp ${ASDF_PATHNAME} @${INSTALL_DATA} ${WRKSRC}/cl-ppcre.asd ${ASDF_PATHNAME} - @${INSTALL_DATA} ${WRKSRC}/cl-ppcre.system ${ASDF_PATHNAME} @${LN} -sf ${ASDF_PATHNAME}/*.asd ${ASDF_REGISTRY} - @${LN} -sf ${ASDF_PATHNAME}/*.system ${ASDF_REGISTRY} +# cl-ppcre-test depends on flexi-streams + @${MKDIR} ${ASDF_PATHNAME}/test + @${INSTALL_DATA} ${WRKSRC}/test/packages.lisp ${ASDF_PATHNAME}/test + @${INSTALL_DATA} ${WRKSRC}/test/perl-tests.lisp ${ASDF_PATHNAME}/test + @${INSTALL_DATA} ${WRKSRC}/test/perltest.pl ${ASDF_PATHNAME}/test + @${INSTALL_DATA} ${WRKSRC}/test/perltestdata ${ASDF_PATHNAME}/test + @${INSTALL_DATA} ${WRKSRC}/test/perltestinput ${ASDF_PATHNAME}/test + @${INSTALL_DATA} ${WRKSRC}/test/simple ${ASDF_PATHNAME}/test + @${INSTALL_DATA} ${WRKSRC}/test/tests.lisp ${ASDF_PATHNAME}/test .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} @${INSTALL_DATA} ${WRKSRC}/CHANGELOG ${DOCSDIR} - @${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} - @${MKDIR} ${DOCSDIR}/doc - @${INSTALL_DATA} ${WRKSRC}/doc/* ${DOCSDIR}/doc/ - @${MKDIR} ${EXAMPLESDIR} - @${INSTALL_DATA} ${WRKSRC}/cl-ppcre-test.* ${EXAMPLESDIR} - @${INSTALL_DATA} ${WRKSRC}/perltest.pl ${EXAMPLESDIR} - @${INSTALL_DATA} ${WRKSRC}/ppcre-tests.lisp ${EXAMPLESDIR} - @${INSTALL_DATA} ${WRKSRC}/testdata ${EXAMPLESDIR} - @${INSTALL_DATA} ${WRKSRC}/testinput ${EXAMPLESDIR} + @${INSTALL_DATA} ${WRKSRC}/doc/index.html ${DOCSDIR} .endif .include "${.CURDIR}/../../devel/cl-asdf/bsd.cl-asdf.mk" Index: textproc/cl-ppcre/distinfo =================================================================== RCS file: /a/.cvsup/ports/textproc/cl-ppcre/distinfo,v retrieving revision 1.3 diff -u -p -r1.3 distinfo --- textproc/cl-ppcre/distinfo 25 Nov 2005 18:40:28 -0000 1.3 +++ textproc/cl-ppcre/distinfo 7 Oct 2010 19:18:24 -0000 @@ -1,3 +1,3 @@ -MD5 (cl-ppcre-0.5.4.tgz) = 4d1f50859604ab77ff2b52aec6199ce0 -SHA256 (cl-ppcre-0.5.4.tgz) = 942f9bf7d601f17c690ca243f41eb435190f741c80d6c123b8598a253e58d0bf -SIZE (cl-ppcre-0.5.4.tgz) = 195886 +MD5 (cl-ppcre.tar.gz) = bd5648fd3c8b6f89eea43f5b82b99aa1 +SHA256 (cl-ppcre.tar.gz) = a59e2f2f58297d8f802e2652a68a40176cb0174be9c5b681ef1187e8430133c3 +SIZE (cl-ppcre.tar.gz) = 157665 Index: textproc/cl-ppcre/pkg-plist =================================================================== RCS file: /a/.cvsup/ports/textproc/cl-ppcre/pkg-plist,v retrieving revision 1.1 diff -u -p -r1.1 pkg-plist --- textproc/cl-ppcre/pkg-plist 28 Sep 2003 09:49:33 -0000 1.1 +++ textproc/cl-ppcre/pkg-plist 7 Oct 2010 19:47:45 -0000 @@ -1,31 +1,31 @@ lib/common-lisp/cl-ppcre/api.lisp +lib/common-lisp/cl-ppcre/charmap.lisp +lib/common-lisp/cl-ppcre/charset.lisp +lib/common-lisp/cl-ppcre/chartest.lisp lib/common-lisp/cl-ppcre/closures.lisp lib/common-lisp/cl-ppcre/convert.lisp +lib/common-lisp/cl-ppcre/errors.lisp lib/common-lisp/cl-ppcre/lexer.lisp -lib/common-lisp/cl-ppcre/load.lisp lib/common-lisp/cl-ppcre/optimize.lisp lib/common-lisp/cl-ppcre/packages.lisp lib/common-lisp/cl-ppcre/parser.lisp +lib/common-lisp/cl-ppcre/regex-class-util.lisp lib/common-lisp/cl-ppcre/regex-class.lisp lib/common-lisp/cl-ppcre/repetition-closures.lisp lib/common-lisp/cl-ppcre/scanner.lisp lib/common-lisp/cl-ppcre/specials.lisp lib/common-lisp/cl-ppcre/util.lisp lib/common-lisp/cl-ppcre/cl-ppcre.asd -lib/common-lisp/cl-ppcre/cl-ppcre.system lib/common-lisp/system-registry/cl-ppcre.asd -lib/common-lisp/system-registry/cl-ppcre.system +lib/common-lisp/cl-ppcre/test/packages.lisp +lib/common-lisp/cl-ppcre/test/perl-tests.lisp +lib/common-lisp/cl-ppcre/test/perltest.pl +lib/common-lisp/cl-ppcre/test/perltestdata +lib/common-lisp/cl-ppcre/test/perltestinput +lib/common-lisp/cl-ppcre/test/simple +lib/common-lisp/cl-ppcre/test/tests.lisp +@dirrm lib/common-lisp/cl-ppcre/test @dirrm lib/common-lisp/cl-ppcre %%PORTDOCS%%%%DOCSDIR%%/CHANGELOG -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/doc/index.html -%%PORTDOCS%%%%DOCSDIR%%/doc/benchmarks.2002-12-22.txt -%%PORTDOCS%%@dirrm %%DOCSDIR%%/doc +%%PORTDOCS%%%%DOCSDIR%%/index.html %%PORTDOCS%%@dirrm %%DOCSDIR%% -%%PORTDOCS%%%%EXAMPLESDIR%%/cl-ppcre-test.system -%%PORTDOCS%%%%EXAMPLESDIR%%/cl-ppcre-test.asd -%%PORTDOCS%%%%EXAMPLESDIR%%/ppcre-tests.lisp -%%PORTDOCS%%%%EXAMPLESDIR%%/perltest.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/testdata -%%PORTDOCS%%%%EXAMPLESDIR%%/testinput -%%PORTDOCS%%@dirrm %%EXAMPLESDIR%% Index: textproc/cl-ppcre/files/patch-util.lisp =================================================================== RCS file: textproc/cl-ppcre/files/patch-util.lisp diff -N textproc/cl-ppcre/files/patch-util.lisp --- textproc/cl-ppcre/files/patch-util.lisp 28 Sep 2003 09:49:33 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,17 +0,0 @@ ---- util.lisp.orig Fri May 16 23:16:22 2003 -+++ util.lisp Fri May 16 23:16:42 2003 -@@ -155,10 +155,10 @@ - (loop with min1 and min2 and min3 - and max1 and max2 and max3 - ;; loop through all characters in HASH, sorted by CHAR< -- for chr in (sort (loop for chr being the hash-keys of hash -- collect (if downcasep -- (char-downcase chr) -- chr)) -+ for chr in (sort (the list (loop for chr being the hash-keys of hash -+ collect (if downcasep -+ (char-downcase chr) -+ chr))) - #'char<) - for code = (char-code chr) - ;; MIN1, MAX1, etc. are _exclusive_ Index: textproc/cl-ppcre-clisp/Makefile =================================================================== RCS file: /a/.cvsup/ports/textproc/cl-ppcre-clisp/Makefile,v retrieving revision 1.10 diff -u -p -r1.10 Makefile --- textproc/cl-ppcre-clisp/Makefile 20 Jan 2010 12:40:11 -0000 1.10 +++ textproc/cl-ppcre-clisp/Makefile 7 Oct 2010 20:05:42 -0000 @@ -5,8 +5,7 @@ # $FreeBSD: ports/textproc/cl-ppcre-clisp/Makefile,v 1.10 2010/01/20 12:40:11 olgeni Exp $ PORTNAME= cl-ppcre -PORTVERSION= 0.5.4 -PORTREVISION= 4 +PORTVERSION= 2.0.3 CATEGORIES= textproc lisp DISTFILES= # none Index: textproc/cl-ppcre-sbcl/Makefile =================================================================== RCS file: /a/.cvsup/ports/textproc/cl-ppcre-sbcl/Makefile,v retrieving revision 1.9 diff -u -p -r1.9 Makefile --- textproc/cl-ppcre-sbcl/Makefile 20 Jan 2010 12:40:11 -0000 1.9 +++ textproc/cl-ppcre-sbcl/Makefile 7 Oct 2010 19:56:14 -0000 @@ -5,8 +5,7 @@ # $FreeBSD: ports/textproc/cl-ppcre-sbcl/Makefile,v 1.9 2010/01/20 12:40:11 olgeni Exp $ PORTNAME= cl-ppcre -PORTVERSION= 0.5.4 -PORTREVISION= 2 +PORTVERSION= 2.0.3 CATEGORIES= textproc lisp DISTFILES= # none %% From owner-freebsd-ports@FreeBSD.ORG Thu Oct 7 20:47:48 2010 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 A27F7106564A for ; Thu, 7 Oct 2010 20:47:48 +0000 (UTC) (envelope-from stenn@ntp.org) Received: from mail1.ntp.org (mail1.ntp.org [IPv6:2001:4f8:fff7:1::5]) by mx1.freebsd.org (Postfix) with ESMTP id 859598FC16 for ; Thu, 7 Oct 2010 20:47:48 +0000 (UTC) Received: from [149.20.68.30] (helo=stenn.ntp.org) by mail1.ntp.org with esmtp (Exim 4.71 (FreeBSD)) (envelope-from ) id 1P3xNG-00036V-BY; Thu, 07 Oct 2010 20:47:44 +0000 Received: from stenn.ntp.org (localhost.ntp.org [127.0.0.1]) by stenn.ntp.org (8.14.4/8.14.4) with ESMTP id o97KlYOR030025; Thu, 7 Oct 2010 13:47:34 -0700 (PDT) (envelope-from stenn@stenn.ntp.org) Message-Id: <201010072047.o97KlYOR030025@stenn.ntp.org> To: ports@freebsd.org From: Harlan Stenn X-Face: "csXK}xnnsH\h_ce`T#|pM]tG, 6Xu.{3Rb\]&XJgVyTS'w{E+|-(}n:c(Cc* $cbtusxDP6T)Hr'k&zrwq0.3&~bAI~YJco[r.mE+K|(q]F=ZNXug:s6tyOk{VTqARy0#axm6BWti9C d X-Mailer: MH-E 7.4.2; nmh 1.2; XEmacs 21.4 (patch 22) Mime-Version: 1.0 (generated by tm-edit 1.8) Content-Type: text/plain; charset=US-ASCII Date: Thu, 07 Oct 2010 13:47:34 -0700 X-SA-Exim-Connect-IP: 149.20.68.30 X-SA-Exim-Rcpt-To: stenn@ntp.org, ports@freebsd.org X-SA-Exim-Mail-From: stenn@ntp.org X-Spam-Checker-Version: SpamAssassin 3.3.0 (2010-01-18) on mail1.ntp.org X-Spam-Level: * X-Spam-Status: No, score=1.6 required=5.0 tests=BAYES_50,RDNS_NONE autolearn=no version=3.3.0 X-SA-Exim-Version: 4.2 X-SA-Exim-Scanned: Yes (on mail1.ntp.org) Cc: stenn@ntp.org Subject: horde-base? 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, 07 Oct 2010 20:47:48 -0000 Hi, I've seen the security alert for the current horde-base (3.3.8) port. It looks like 3.3.9 was released just over a week ago, and the release notes seem to indicate it fixes the security problems. I also see http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/151191, but I have no idea if that patch will actually fix the problem or not, or when that PR will be resolved. Should I just wait quietly, or is there a minimally-intrusive way I could figure out the timeline on these things? -- Harlan Stenn http://ntpforum.isc.org - be a member! From owner-freebsd-ports@FreeBSD.ORG Thu Oct 7 21:02:23 2010 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 337E51065670 for ; Thu, 7 Oct 2010 21:02:23 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3fd3:cd67:fafa:3d78]) by mx1.freebsd.org (Postfix) with ESMTP id 801918FC19 for ; Thu, 7 Oct 2010 21:02:22 +0000 (UTC) Received: from seedling.black-earth.co.uk (seedling.black-earth.co.uk [81.187.76.163]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.4/8.14.4) with ESMTP id o97L2I3w030798 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Thu, 7 Oct 2010 22:02:18 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) X-DKIM: Sendmail DKIM Filter v2.8.3 smtp.infracaninophile.co.uk o97L2I3w030798 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=infracaninophile.co.uk; s=201001-infracaninophile; t=1286485338; bh=G+7OZjdbERWcqvZjDJFtpEJ2lRsb4QIioVQ/MF8Um5c=; h=Message-ID:Date:From:MIME-Version:To:CC:Subject:References: In-Reply-To:Content-Type:Cc:Content-Type:Date:From:In-Reply-To: Message-ID:Mime-Version:References:To; z=Message-ID:=20<4CAE3551.3070404@infracaninophile.co.uk>|Date:=20T hu,=2007=20Oct=202010=2022:02:09=20+0100|From:=20Matthew=20Seaman= 20|Organization:=20Infracaninophi le|User-Agent:=20Mozilla/5.0=20(Macintosh=3B=20U=3B=20Intel=20Mac= 20OS=20X=2010.6=3B=20en-GB=3B=20rv:1.9.2.9)=20Gecko/20100915=20Thu nderbird/3.1.4|MIME-Version:=201.0|To:=20Harlan=20Stenn=20|CC:=20ports@freebsd.org|Subject:=20Re:=20horde-base?|Refer ences:=20<201010072047.o97KlYOR030025@stenn.ntp.org>|In-Reply-To:= 20<201010072047.o97KlYOR030025@stenn.ntp.org>|X-Enigmail-Version:= 201.1.1|OpenPGP:=20id=3D60AE908C|Content-Type:=20multipart/signed= 3B=20micalg=3Dpgp-sha1=3B=0D=0A=20protocol=3D"application/pgp-sign ature"=3B=0D=0A=20boundary=3D"------------enig11A49E1B46F69B08A31D 149D"; b=Y+M2r6LQfGdEeYtWMPCl+bYOUFQAQEnrrHZmMlg8R31vYbsE0dAM/IU5xAtITIQnM PKkJhMtFdXtzqW1xcmOZ0/kiN1/bWkCOgeKk2HyAa/dDQBDLsWFC0jQOtXENTk2nwx nzodoy/8GNjD+s+NSupAwN1iE6UAJLDuxN2rb1Qc= Message-ID: <4CAE3551.3070404@infracaninophile.co.uk> Date: Thu, 07 Oct 2010 22:02:09 +0100 From: Matthew Seaman Organization: Infracaninophile User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-GB; rv:1.9.2.9) Gecko/20100915 Thunderbird/3.1.4 MIME-Version: 1.0 To: Harlan Stenn References: <201010072047.o97KlYOR030025@stenn.ntp.org> In-Reply-To: <201010072047.o97KlYOR030025@stenn.ntp.org> X-Enigmail-Version: 1.1.1 OpenPGP: id=60AE908C Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig11A49E1B46F69B08A31D149D" X-Virus-Scanned: clamav-milter 0.96.3 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-0.1 required=5.0 tests=BAYES_20,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,SPF_FAIL autolearn=no version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on lucid-nonsense.infracaninophile.co.uk Cc: ports@freebsd.org Subject: Re: horde-base? 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, 07 Oct 2010 21:02:23 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig11A49E1B46F69B08A31D149D Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On 07/10/2010 21:47:34, Harlan Stenn wrote: > Hi, >=20 > I've seen the security alert for the current horde-base (3.3.8) port. >=20 > It looks like 3.3.9 was released just over a week ago, and the release > notes seem to indicate it fixes the security problems. >=20 > I also see http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/151191, b= ut > I have no idea if that patch will actually fix the problem or not, or > when that PR will be resolved. >=20 > Should I just wait quietly, or is there a minimally-intrusive way I > could figure out the timeline on these things? >=20 Hmmmm... that PR doesn't really help itself much. It would receive more attention if it mentioned the magic word "security" in the subject line. Even better would be to CC it to sec-team@...[*] Best of all though would be both of the above plus being sent as a maintainer-update. Unfortunately it seems the horde apps are without a Maintainer at the moment. Cheers, Matthew [*] This isn't intended as a criticism of the person generating the PR -- looks like they are writing in what to them is a foreign language, and they've done a lot better than I would if I had to try and write in their language. --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate JID: matthew@infracaninophile.co.uk Kent, CT11 9PW --------------enig11A49E1B46F69B08A31D149D Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.14 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAkyuNVkACgkQ8Mjk52CukIyJfgCfaJAa/jLG3EFmhOkGsCTnsPFG QPQAni1wkRqqi1KaT/cMi9P6cpV98BkO =4f/k -----END PGP SIGNATURE----- --------------enig11A49E1B46F69B08A31D149D-- From owner-freebsd-ports@FreeBSD.ORG Fri Oct 8 04:05:44 2010 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 8214C106564A for ; Fri, 8 Oct 2010 04:05:44 +0000 (UTC) (envelope-from sage-members-bounces@mailman.sage.org) Received: from usenix.org (voyager.usenix.org [131.106.3.1]) by mx1.freebsd.org (Postfix) with ESMTP id 3AB788FC19 for ; Fri, 8 Oct 2010 04:05:40 +0000 (UTC) Received: from hoshi.usenix.org (hoshi.usenix.org [131.106.3.207]) by usenix.org (8.13.6/8.13.6) with ESMTP id o983W3Wu001255 for ; Thu, 7 Oct 2010 20:32:03 -0700 (PDT) Received: from hoshi.usenix.org (localhost [127.0.0.1]) by hoshi.usenix.org (8.13.3/8.13.3) with ESMTP id o983W3A0052105 for ; Thu, 7 Oct 2010 20:32:03 -0700 (PDT) (envelope-from sage-members-bounces@mailman.sage.org) MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit From: sage-members-bounces@mailman.sage.org To: ports@freebsd.org Message-ID: Date: Thu, 07 Oct 2010 20:32:01 -0700 Precedence: bulk X-BeenThere: sage-members@mailman.sage.org X-Mailman-Version: 2.1.11 X-List-Administrivia: yes Sender: sage-members-bounces@mailman.sage.org Errors-To: sage-members-bounces@mailman.sage.org X-DCC-USENIX-Metrics: voyager; whitelist Cc: Subject: Your message to sage-members awaits moderator approval X-BeenThere: freebsd-ports@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Oct 2010 04:05:44 -0000 Your mail to 'sage-members' with the subject Mqdrrxknlafvix Is being held until the list moderator can review it for approval. The reason it is being held: Post by non-member to a members-only list Either the message will get posted to the list, or you will receive notification of the moderator's decision. If you would like to cancel this posting, please visit the following URL: http://mailman.sage.org/mailman/confirm/sage-members/4aad4cfe5ec305ab8d59f7c7b4026886b15c3873 From owner-freebsd-ports@FreeBSD.ORG Fri Oct 8 08:51:16 2010 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 577BA1065672 for ; Fri, 8 Oct 2010 08:51:16 +0000 (UTC) (envelope-from mexas@bristol.ac.uk) Received: from dirj.bris.ac.uk (dirj.bris.ac.uk [137.222.10.78]) by mx1.freebsd.org (Postfix) with ESMTP id 138728FC17 for ; Fri, 8 Oct 2010 08:51:15 +0000 (UTC) Received: from ncsc.bris.ac.uk ([137.222.10.41]) by dirj.bris.ac.uk with esmtp (Exim 4.69) (envelope-from ) id 1P48MB-0003n1-5O; Fri, 08 Oct 2010 09:31:11 +0100 Received: from mech-cluster241.men.bris.ac.uk ([137.222.187.241]) by ncsc.bris.ac.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.67) (envelope-from ) id 1P48M9-00078H-SE; Fri, 08 Oct 2010 09:31:09 +0100 Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.4/8.14.4) with ESMTP id o988V96s080625; Fri, 8 Oct 2010 09:31:09 +0100 (BST) (envelope-from mexas@bristol.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.4/8.14.4/Submit) id o988V8xd080624; Fri, 8 Oct 2010 09:31:08 +0100 (BST) (envelope-from mexas@bristol.ac.uk) X-Authentication-Warning: mech-cluster241.men.bris.ac.uk: mexas set sender to mexas@bristol.ac.uk using -f Date: Fri, 8 Oct 2010 09:31:08 +0100 From: Anton Shterenlikht To: Bob Willcox Message-ID: <20101008083107.GA80449@mech-cluster241.men.bris.ac.uk> References: <20101007132209.GA47648@rancor.immure.com> <20101007135138.GA81306@icarus.home.lan> <20101007162243.GA48756@rancor.immure.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20101007162243.GA48756@rancor.immure.com> User-Agent: Mutt/1.4.2.3i Cc: freebsd-ports@freebsd.org, Jeremy Chadwick Subject: Re: New mutt-devel problems with text/html processing 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, 08 Oct 2010 08:51:16 -0000 On Thu, Oct 07, 2010 at 11:26:06AM -0500, Bob Willcox wrote: > On Thu, Oct 07, 2010 at 06:51:38AM -0700, Jeremy Chadwick wrote: > > On Thu, Oct 07, 2010 at 08:22:09AM -0500, Bob Willcox wrote: > > > The new version of mutt-devel nolonger honors my mailcap entry to invoke lynx > > > when it encounters a text/html file type. Instead it simply displays the raw > > > html text. According to their UPDATING file, they say: > > > > > > "all text/* parts can be displayed inline without mailcap" > > > > > > Which is suspiciously in the realm of the problem I'm seeing. > > > > > > Perhaps there's now some other way of displaying text/html files w/o mailcap > > > and an external program that I'm missing? > > > > Looks relevant, with a response from Michael Elkins explaining the > > change: > > > > http://marc.info/?t=128477093300004&r=1&w=2 > > > > Basically, it appears that as of 1.5.21, mutt only displays text/* MIME > > types using its own internal engine. If you want the old behaviour, > > when selecting the attachment/entry, press "m". > > > > Personally I don't like this change, but I'll deal with it. > > Thanks Jeremy, that was it. Guess I'll just have to get used to pressing 'm' > now. I missed the beginning of this thread. I had mutt-devel until about a week ago, when, after some update, it became extremely slow. For example, using just /var/mail it would take 10 seconds or more to move from one message to another in index. The same delay for opening messages in pager. The size of messages was same as before, mostly 2-3 lines with occasional attachment. Anyway, I rolled back to mutt-1.4.2.3_5, which works fine. This has probably nothing to do with the Subject, just thought perhaps somebody else seen a significant slow down after the update? many thanks anton Sorry if this has nothin > > Bob > > > > > -- > > | Jeremy Chadwick jdc@parodius.com | > > | Parodius Networking http://www.parodius.com/ | > > | UNIX Systems Administrator Mountain View, CA, USA | > > | Making life hard for others since 1977. PGP: 4BD6C0CB | > > -- > Bob Willcox A great many people think they are thinking > bob@immure.com when they are merely rearranging their prejudices. > Austin, TX -- William James > _______________________________________________ > 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" -- Anton Shterenlikht Room 2.6, Queen's Building Mech Eng Dept Bristol University University Walk, Bristol BS8 1TR, UK Tel: +44 (0)117 331 5944 Fax: +44 (0)117 929 4423 From owner-freebsd-ports@FreeBSD.ORG Fri Oct 8 09:29:12 2010 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 BCF511065673 for ; Fri, 8 Oct 2010 09:29:12 +0000 (UTC) (envelope-from avg@freebsd.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id EB80F8FC22 for ; Fri, 8 Oct 2010 09:29:11 +0000 (UTC) Received: from porto.topspin.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id MAA01714; Fri, 08 Oct 2010 12:11:28 +0300 (EEST) (envelope-from avg@freebsd.org) Received: from localhost.topspin.kiev.ua ([127.0.0.1]) by porto.topspin.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1P48zA-000AID-HT; Fri, 08 Oct 2010 12:11:28 +0300 Resent-From: Andriy Gapon Resent-To: freebsd-current@freebsd.org, freebsd-stable@freebsd.org, freebsd-hackers@freebsd.org, freebsd-ports@freebsd.org Resent-Date: Fri, 8 Oct 2010 12:11:28 +0300 Resent-Message-Id: <4CAEE040.8020401@freebsd.org> Resent-User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.9) Gecko/20100918 Lightning/1.0b2 Thunderbird/3.1.4 Message-ID: <4CAEDF48.1030602@freebsd.org> Date: Fri, 08 Oct 2010 12:07:20 +0300 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.9) Gecko/20100918 Lightning/1.0b2 Thunderbird/3.1.4 MIME-Version: 1.0 To: freebsd-scsi@freebsd.org References: <4BCDEBF6.3030609@icyb.net.ua> <20100423184412.GA5016@nargothrond.kdm.org> <4BD1FC74.3090504@freebsd.org> <4CA30B24.8040707@freebsd.org> In-Reply-To: <4CA30B24.8040707@freebsd.org> X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-UID: 18468 X-Keywords: Cc: Subject: [HEADSUP] changes to cam_get_device() and cam_open_device() 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, 08 Oct 2010 09:29:12 -0000 As there was no objections, I am going to commit changes to cam_get_device() that remove the following features: - ignoring 'r' and 'n' at the start of device name - ignoring whitespace at end of device name - parsing and ignoring slice and partition names in a device name cam(3) manual page is going to be updated to reflect the changes. This would simplify the code and disambiguate its behavior. Non-rewound and character disk/SCSI devices has not been supported for quite a while now. Support for parsing partition/slice names is incomplete (e.g. GPT scheme is not supported) and of questionable usefulness. Full diff is here: http://people.freebsd.org/~avg/cam.diff If you know of any functionality or application that would be broken by this change please stop me ASAP. Also, if you have any other reason to object to the change please speak up before the change is committed. Thank you. -- Andriy Gapon From owner-freebsd-ports@FreeBSD.ORG Fri Oct 8 12:50:19 2010 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 29464106564A for ; Fri, 8 Oct 2010 12:50:19 +0000 (UTC) (envelope-from bob@immure.com) Received: from maul.immure.com (adsl-66-136-206-1.dsl.austtx.swbell.net [66.136.206.1]) by mx1.freebsd.org (Postfix) with ESMTP id CEF7F8FC0A for ; Fri, 8 Oct 2010 12:50:17 +0000 (UTC) Received: from rancor.immure.com (rancor.immure.com [10.1.132.9]) by maul.immure.com (8.14.4/8.14.4) with ESMTP id o98Cnoqr080462; Fri, 8 Oct 2010 07:49:50 -0500 (CDT) (envelope-from bob@immure.com) Received: from rancor.immure.com (localhost [127.0.0.1]) by rancor.immure.com (8.14.4/8.14.4) with ESMTP id o98CnoFQ054113; Fri, 8 Oct 2010 07:49:50 -0500 (CDT) (envelope-from bob@rancor.immure.com) Received: (from bob@localhost) by rancor.immure.com (8.14.4/8.14.4/Submit) id o98CnoDB054112; Fri, 8 Oct 2010 07:49:50 -0500 (CDT) (envelope-from bob) Date: Fri, 8 Oct 2010 07:49:49 -0500 From: Bob Willcox To: Anton Shterenlikht Message-ID: <20101008124949.GA54088@rancor.immure.com> References: <20101007132209.GA47648@rancor.immure.com> <20101007135138.GA81306@icarus.home.lan> <20101007162243.GA48756@rancor.immure.com> <20101008083107.GA80449@mech-cluster241.men.bris.ac.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20101008083107.GA80449@mech-cluster241.men.bris.ac.uk> User-Agent: Mutt/1.5.21 (2010-09-15) X-immure-MailScanner-Information: Please contact the ISP for more information X-immure-MailScanner-ID: o98Cnoqr080462 X-immure-MailScanner: Found to be clean X-immure-MailScanner-From: bob@immure.com X-Spam-Status: No Cc: freebsd-ports@freebsd.org, Jeremy Chadwick Subject: Re: New mutt-devel problems with text/html processing X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Bob Willcox List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Oct 2010 12:50:19 -0000 On Fri, Oct 08, 2010 at 09:31:08AM +0100, Anton Shterenlikht wrote: > On Thu, Oct 07, 2010 at 11:26:06AM -0500, Bob Willcox wrote: > > On Thu, Oct 07, 2010 at 06:51:38AM -0700, Jeremy Chadwick wrote: > > > On Thu, Oct 07, 2010 at 08:22:09AM -0500, Bob Willcox wrote: > > > > The new version of mutt-devel nolonger honors my mailcap entry to invoke lynx > > > > when it encounters a text/html file type. Instead it simply displays the raw > > > > html text. According to their UPDATING file, they say: > > > > > > > > "all text/* parts can be displayed inline without mailcap" > > > > > > > > Which is suspiciously in the realm of the problem I'm seeing. > > > > > > > > Perhaps there's now some other way of displaying text/html files w/o mailcap > > > > and an external program that I'm missing? > > > > > > Looks relevant, with a response from Michael Elkins explaining the > > > change: > > > > > > http://marc.info/?t=128477093300004&r=1&w=2 > > > > > > Basically, it appears that as of 1.5.21, mutt only displays text/* MIME > > > types using its own internal engine. If you want the old behaviour, > > > when selecting the attachment/entry, press "m". > > > > > > Personally I don't like this change, but I'll deal with it. > > > > Thanks Jeremy, that was it. Guess I'll just have to get used to pressing 'm' > > now. > > I missed the beginning of this thread. I had mutt-devel until > about a week ago, when, after some update, it became extremely > slow. For example, using just /var/mail it would take 10 seconds > or more to move from one message to another in index. The same > delay for opening messages in pager. The size of messages was > same as before, mostly 2-3 lines with occasional attachment. > > Anyway, I rolled back to mutt-1.4.2.3_5, which works fine. > > This has probably nothing to do with the Subject, just > thought perhaps somebody else seen a significant slow down > after the update? I haven't seen this behavior. My only issue was the change in how the latest mutt-devel handles text/* type attachements. I've seen no change in performance. Bob > > many thanks > anton > Sorry if this has nothin > > > > Bob > > > > > > > > -- > > > | Jeremy Chadwick jdc@parodius.com | > > > | Parodius Networking http://www.parodius.com/ | > > > | UNIX Systems Administrator Mountain View, CA, USA | > > > | Making life hard for others since 1977. PGP: 4BD6C0CB | > > > > -- > > Bob Willcox A great many people think they are thinking > > bob@immure.com when they are merely rearranging their prejudices. > > Austin, TX -- William James > > _______________________________________________ > > 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" > > -- > Anton Shterenlikht > Room 2.6, Queen's Building > Mech Eng Dept > Bristol University > University Walk, Bristol BS8 1TR, UK > Tel: +44 (0)117 331 5944 > Fax: +44 (0)117 929 4423 -- Bob Willcox A great many people think they are thinking bob@immure.com when they are merely rearranging their prejudices. Austin, TX -- William James From owner-freebsd-ports@FreeBSD.ORG Fri Oct 8 13:38:45 2010 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 DBC01106564A for ; Fri, 8 Oct 2010 13:38:45 +0000 (UTC) (envelope-from root@letinet.org) Received: from australia.timcompany.ru (australia.timcompany.ru [85.142.55.234]) by mx1.freebsd.org (Postfix) with SMTP id 09FC88FC15 for ; Fri, 8 Oct 2010 13:38:44 +0000 (UTC) Received: (qmail 41169 invoked from network); 8 Oct 2010 17:12:02 +0400 Received: (qmail 46320 invoked by uid 1001); 8 Oct 2010 17:12:01 +0400 Date: Fri, 8 Oct 2010 17:12:01 +0400 From: Roman Levitskiy To: freebsd-ports@freebsd.org Message-ID: <20101008131201.GA46115@dio.home> Mail-Followup-To: freebsd-ports@freebsd.org References: <20101007132209.GA47648@rancor.immure.com> <20101007135138.GA81306@icarus.home.lan> <20101007162243.GA48756@rancor.immure.com> <20101008083107.GA80449@mech-cluster241.men.bris.ac.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20101008083107.GA80449@mech-cluster241.men.bris.ac.uk> X-Disclaimer: This message represens the official view of the voices in my head. X-OS: FreeBSD/i386 8.1-STABLE (dio.home) User-Agent: Mutt/1.5.21 (2010-09-15) Subject: Re: New mutt-devel problems with text/html processing 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, 08 Oct 2010 13:38:45 -0000 On Fri, Oct 08, 2010 at 09:31:08 +0100, Anton Shterenlikht wrote: > On Thu, Oct 07, 2010 at 11:26:06AM -0500, Bob Willcox wrote: > > On Thu, Oct 07, 2010 at 06:51:38AM -0700, Jeremy Chadwick wrote: > > > On Thu, Oct 07, 2010 at 08:22:09AM -0500, Bob Willcox wrote: > I missed the beginning of this thread. I had mutt-devel until > about a week ago, when, after some update, it became extremely > slow. For example, using just /var/mail it would take 10 seconds > or more to move from one message to another in index. The same > delay for opening messages in pager. The size of messages was > same as before, mostly 2-3 lines with occasional attachment. Hi List, I didn't notice any slow down, only MIME issue. -- Roman From owner-freebsd-ports@FreeBSD.ORG Fri Oct 8 17:09:50 2010 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 C8E1B106566B for ; Fri, 8 Oct 2010 17:09:50 +0000 (UTC) (envelope-from QAT@FreeBSD.org) Received: from worf.ds9.tecnik93.com (worf.ds9.tecnik93.com [81.196.207.130]) by mx1.freebsd.org (Postfix) with ESMTP id 1C6D48FC0C for ; Fri, 8 Oct 2010 17:09:49 +0000 (UTC) Received: from jester1b.ixsystems.com (unknown [206.40.55.137]) by worf.ds9.tecnik93.com (Postfix) with ESMTP id A3F4922C541F; Fri, 8 Oct 2010 19:52:57 +0300 (EEST) Received: by jester1b.ixsystems.com (Postfix, from userid 0) id 4A21A5A9078; Fri, 8 Oct 2010 09:52:56 -0700 (PDT) From: QAT@FreeBSD.org To: se@FreeBSD.org In-Reply-To: <201010081647.o98Glvx9090819@repoman.freebsd.org> References: <201010081647.o98Glvx9090819@repoman.freebsd.org> X-Mailer: $Tecnik: people/itetcu/ports/QA-Tindy/QAT_postPortBuild.sh, v 1.57 2009/03/08 00:17:57 itetcu Exp $ X-QAT-Tindy_Version: tinderbox-3.3_3; dsversion: 3.2.1 X-QAT-Jail_Arch: amd64 X-QAT-Jail_Csup_Tag: RELENG_8 X-QAT-Jail_Last_Built: 2010-08-15 10:20:52 X-QAT-Port: games/xblast X-QAT-Log: http://QAT.TecNik93.com/logs/8-STABLE-NPD/xblast-nosound-2.10.4_7.log X-QAT-Build_Reason: Commit X-QAT-Fail_Reason: mtree Message-Id: <20101008165256.4A21A5A9078@jester1b.ixsystems.com> Date: Fri, 8 Oct 2010 09:52:56 -0700 (PDT) Cc: ports@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/games/xblast Makefile 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, 08 Oct 2010 17:09:50 -0000 The Restless Daemon identified a mtree error while trying to build: xblast-nosound-2.10.4_7 maintained by ports@FreeBSD.org Makefile ident: $FreeBSD: ports/games/xblast/Makefile,v 1.26 2010/10/08 16:47:57 se Exp $ Excerpt from http://QAT.TecNik93.com/logs/8-STABLE-NPD/xblast-nosound-2.10.4_7.log : 49651852 32 -r--r--r-- 1 root wheel 15746 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xb_spbmb.raw 49651853 12 -r--r--r-- 1 root wheel 5558 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xb_spir.raw 49651854 52 -r--r--r-- 1 root wheel 25386 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xb_stun.raw 49651855 188 -r--r--r-- 1 root wheel 96014 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xb_warn.raw 49651856 128 -r--r--r-- 1 root wheel 65498 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xb_whrl.raw 49651857 448 -r--r--r-- 1 root wheel 204718 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xb_won.raw 49651858 40 -r--r--r-- 1 root wheel 19854 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xbcloak.raw 49651859 44 -r--r--r-- 1 root wheel 21585 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xbcloakx.raw 49651860 44 -r--r--r-- 1 root wheel 21375 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xbdcloak.raw 49651861 12 -r--r--r-- 1 root wheel 5959 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xbfast.raw 49651862 576 -r--r--r-- 1 root wheel 263184 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xbfin.raw 49651863 20 -r--r--r-- 1 root wheel 8419 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xbfire.raw 49651864 312 -r--r--r-- 1 root wheel 159666 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xbholy.raw 49651865 16 -r--r--r-- 1 root wheel 7778 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xbinj.raw 49651866 80 -r--r--r-- 1 root wheel 39602 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xblife.raw 49651867 24 -r--r--r-- 1 root wheel 10797 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xbmbmb.raw 49651868 24 -r--r--r-- 1 root wheel 11717 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xbnbmb.raw 49651869 16 -r--r--r-- 1 root wheel 7904 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xbnkick.raw 49651870 16 -r--r--r-- 1 root wheel 6699 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xbnpmp.raw 49651871 24 -r--r--r-- 1 root wheel 11775 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xbnrc.raw 49651872 80 -r--r--r-- 1 root wheel 39791 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xbntel.raw 49651873 76 -r--r--r-- 1 root wheel 37467 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xbslay.raw 49651874 8 -r--r--r-- 1 root wheel 3502 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xbslide.raw 49651875 44 -r--r--r-- 1 root wheel 21887 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xbslow.raw 49651876 16 -r--r--r-- 1 root wheel 6473 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xbstep1.raw 49651877 12 -r--r--r-- 1 root wheel 5796 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xbstep2.raw 49651878 12 -r--r--r-- 1 root wheel 4429 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xbstep3.raw 49651879 8 -r--r--r-- 1 root wheel 3765 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xbstep4.raw 49651880 8 -r--r--r-- 1 root wheel 2779 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xbstep5.raw 49651881 8 -r--r--r-- 1 root wheel 3062 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xbstep6.raw 49651882 48 -r--r--r-- 1 root wheel 23887 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xbtele.raw 49651883 36 -r--r--r-- 1 root wheel 16582 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xbtele1.raw 49651884 36 -r--r--r-- 1 root wheel 16589 Apr 29 2004 usr/local/share/XBlast-TNT/sounds/sounds/xbtele2.raw 49651830 0 -r--r--r-- 1 root wheel 0 Oct 8 16:51 usr/local/share/XBlast-TNT/sounds/.extract_done.xblast._usr_local 49651831 0 -r--r--r-- 1 root wheel 0 Oct 8 16:51 usr/local/share/XBlast-TNT/sounds/.patch_done.xblast._usr_local 49651832 0 -r--r--r-- 1 root wheel 0 Oct 8 16:51 usr/local/share/XBlast-TNT/sounds/.configure_done.xblast._usr_local 49651833 0 -r--r--r-- 1 root wheel 0 Oct 8 16:52 usr/local/share/XBlast-TNT/sounds/.build_done.xblast._usr_local 49651834 236 -r--r--r-- 1 root wheel 119242 Oct 8 16:52 usr/local/share/XBlast-TNT/sounds/.PLIST.mktmp ================================================================ build of /usr/ports/games/xblast ended at Fri Oct 8 16:52:54 UTC 2010 The tarballed WRKDIR can be found here: http://QAT.TecNik93.com/wrkdirs/8-STABLE-NPD/xblast-nosound-2.10.4_7.tbz PortsMon page for the port: http://portsmon.freebsd.org/portoverview.py?category=games&portname=xblast The build which triggered this BotMail was done under tinderbox-3.3_3; dsversion: 3.2.1 on RELENG_8 on amd64, kern.smp.cpus: 8 with tinderd_flags="-nullfs -plistcheck -onceonly" and ccache support, with the "official" up-to-date Ports Tree, with the following vars set: NOPORTDOCS=yes, NOPORTEXAMPLES=yes, NOPORTDATA=yes, FORCE_PACKAGE=yes. A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/ Thanks for your work on making FreeBSD better, -- QAT - your friendly neighborhood Daemon, preparing a heck of an error trapping system: - "HMC and EOI?" - "Halt, Melt and Catch fire or Execute Operator Immediately." From owner-freebsd-ports@FreeBSD.ORG Sat Oct 9 08:16:09 2010 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 04B721065672; Sat, 9 Oct 2010 08:16:09 +0000 (UTC) (envelope-from fidaj@ukr.net) Received: from fsm1.ukr.net (fsm1.ukr.net [195.214.192.23]) by mx1.freebsd.org (Postfix) with ESMTP id F12A08FC28; Sat, 9 Oct 2010 08:16:07 +0000 (UTC) Received: from 28-131-179-94.pool.ukrtel.net ([94.179.131.28] helo=localhost) by fsm1.ukr.net with esmtps ID 1P4UMT-000EvP-OB ; Sat, 09 Oct 2010 11:00:59 +0300 Date: Sat, 9 Oct 2010 11:00:55 +0300 From: Ivan Klymenko To: =?UTF-8?B?TWlja2HDq2w=?= Maillot Message-ID: <20101009110055.1476e457@ukr.net> In-Reply-To: References: X-Mailer: Claws Mail 3.7.6 (GTK+ 2.20.1; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: freebsd-multimedia@freebsd.org, freebsd-ports@freebsd.org Subject: Re: XBMC 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: Sat, 09 Oct 2010 08:16:09 -0000 =D0=92 Tue, 5 Oct 2010 12:37:19 +0200 Micka=C3=ABl Maillot =D0=BF=D0=B8=D1=88=D0=B5= =D1=82: > hi, >=20 > you can test my pre version of xbmc port >=20 > some infos: > - i host xbmc files because i can't find a recent tar.gz > - internal video player crash on my intel graphic, you can use mplayer > as external video player > ex: http://fneufn.eu/freebsd/xbmc/playercorefactory.xml in > ~/.xbmc/userdata/ > - vdpau works fine > - skin aeon65 crash xbmc > - only python 2.4, 2.5 and 2.6 are supported > - with pulse, i can choose /dev/dsp audio output > - good luck with custom alsa output (ex: alsa:surround51 works) > - if you want correct utf8, start xbmc with: > LANG=3Dfr_FR.UTF-8 /usr/local/bin/xbmc/xbmc.sh > - xbmc.bin need XBMC_BIN_HOME and XBMC_HOME defined to start > defaults are (already added in xbmc.sh): > XBMC_BIN_HOME=3D/usr/local/lib/xbmc > XBMC_HOME=3D/usr/local/share/xbmc > - timezone doesn't work > - plist without: faac, hal, nonfree or avahi option can be wrong >=20 >=20 > The port can be downloaded from: > http://fneufn.eu/freebsd/xbmc/xbmc.shar > _______________________________________________ > 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" >=20 >=20 Hi! I have this port is not built ... gives the following error when building: ######## ... /usr/local/bin/ccache c++ -MD -c -O2 -pipe -O3 -pipe -mtune=3Dnative -mmmx -msse -msse2 -msse3 -march=3Dnocona -fno-strict-aliasing -O3 -pipe -mtune=3Dnative -mmmx -msse -msse2 -msse3 -fPIC -DPIC -D_REENTRANT -D_LARGE= FILE64_SOURCE -D_FILE_OFFSET_BITS=3D64 -I/usr/local/include -L/usr/local/li= b -DNDEBUG=3D1 -O2 -O2 -pipe -O3 -pipe -mtune=3Dnative -mmmx -msse -msse2 -= msse3 -march=3Dnocona -fno-strict-aliasing -O3 -pipe -mtune=3Dnative -mmmx = -msse -msse2 -msse3 -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_= OFFSET_BITS=3D64 -I/usr/local/include -L/usr/local/lib -DNDEBUG=3D1 -O2 -O2= -pipe -O3 -pipe -mtune=3Dnative -mmmx -msse -msse2 -msse3 -march=3Dnocona = -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE= _OFFSET_BITS=3D64 -I/usr/local/include -L/usr/local/lib -DNDEBUG=3D1 -O2 -O= 2 -pipe -O3 -pipe -mtune=3Dnative -mmmx -msse -msse2 -msse3 -march=3Dnocona= -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FIL= E_OFFSET_BITS=3D64 -I/usr/local/include -L/usr/local/lib -DNDEBUG=3D1 -O2 -= D_LINUX -DHAVE_UNIX -DHAVE_STRCASECMP -DHAVE_STRNCASECMP -DHAVE_IOS_OPENMOD= E -fPIC -Ilibsidplay/win/VC -Ibuilders/resid-builder/include/sidplay/builde= rs -Ilibsidplay/include/sidplay -Iresid -Ilibsidplay/include -I../../../lin= ux -I../../../utils -I../../../ -I../../../../guilib/ -fPIC -O2 -pipe -O3 -= pipe -mtune=3Dnative -mmmx -msse -msse2 -msse3 -march=3Dnocona -fno-strict-= aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS= =3D64 -I/usr/local/include -L/usr/local/lib -DNDEBUG=3D1 -O2 -O2 -pipe -O3 = -pipe -mtune=3Dnative -mmmx -msse -msse2 -msse3 -march=3Dnocona -fno-strict= -aliasing -O3 -pipe -mtune=3Dnative -mmmx -msse -msse2 -msse3 -fPIC -DPIC -= D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=3D64 -I/usr/local/inc= lude -L/usr/local/lib -DNDEBUG=3D1 -O2 -D_LINUX -D_FILE_DEFINED -D__STDC_CO= NSTANT_MACROS -DBIN_INSTALL_PATH=3D"\"/usr/local/lib/xbmc\"" -DINSTALL_PATH= =3D"\"/usr/local/share/xbmc\"" -DHAS_SDL_JOYSTICK -D'SVN_REV=3D"Unknown"' -= DHAVE_CONFIG_H -DDBUS_API_SUBJECT_TO_CHANGE -D_GNU_SOURCE=3D1 -D_REENTRANT= -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include/ -I/usr/local/inc= lude/SDL -I/usr/local/include/alsa -I/usr/local/include/dbus-1.0 -I/usr/loc= al/include/dbus-1.0/include -I/usr/local/include/freetype2 -I/usr/local/inc= lude/fribidi -I/usr/local/include/glib-2.0 -I/usr/local/include/hal -I/usr/= local/include/mysql -I/usr/local/lib/glib-2.0/include -I/usr/ports_build/us= r/ports/multimedia/xbmc/work/xbmc-10.0.r34138 libsidplay/src/mos656x/mos656= x.cpp -o libsidplay/src/mos656x/mos656x.o distcc[9624] ERROR: compile (null) on localhost failed distcc[9625] ERROR: compile (null) on localhost failed In file included from libsidplay/src/mos6526/mos6526.cpp:111: libsidplay/src/mos6526/mos6526.h:118: error: 'event_clock_t' does not name a type libsidplay/src/mos6526/mos6526.h:119: error: ISO C++ forbids declaration of 'EventContext' with no type libsidplay/src/mos6526/mos6526.h:119: error: expected ';' before '&' token libsidplay/src/mos6526/mos6526.h:120: error: 'event_phase_t' does not name a type libsidplay/src/mos6526/mos6526.h:125: error: 'event_clock_t' does not name a type libsidplay/src/mos6526/mos6526.h:128: error: expected class-name before '{' token libsidplay/src/mos6526/mos6526.h:153: error: expected class-name before '{' token libsidplay/src/mos6526/mos6526.h:165: error: expected class-name before '{' token libsidplay/src/mos6526/mos6526.h:182: error: expected `)' before '*' token libsidplay/src/mos6526/mos6526.h: In constructor 'MOS6526::EventTa::EventTa(MOS6526*)': libsidplay/src/mos6526/mos6526.h:135: error: class 'MOS6526::EventTa' does not have any field named 'Event' libsidplay/src/mos6526/mos6526.h: In constructor 'MOS6526::EventTb::EventTb(MOS6526*)': libsidplay/src/mos6526/mos6526.h:160: error: class 'MOS6526::EventTb' does not have any field named 'Event' libsidplay/src/mos6526/mos6526.h: In constructor 'MOS6526::EventTod::EventTod(MOS6526*)': libsidplay/src/mos6526/mos6526.h:172: error: class 'MOS6526::EventTod' does not have any field named 'Event' libsidplay/src/mos6526/mos6526.cpp: At global scope: libsidplay/src/mos6526/mos6526.cpp:150: error: expected `)' before '*' token libsidplay/src/mos6526/mos6526.cpp: In member function 'void MOS6526::clock(float64_t)': libsidplay/src/mos6526/mos6526.cpp:168: error: 'm_todPeriod' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp:168: error: 'event_clock_t' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp: In member function 'virtual void MOS6526::reset()': libsidplay/src/mos6526/mos6526.cpp:183: error: 'm_accessClk' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp:194: error: 'm_todCycles' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp:197: error: 'event_context' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp:199: error: 'm_phase' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp: In member function 'virtual uint8_t MOS6526::read(uint_least8_t)': libsidplay/src/mos6526/mos6526.cpp:204: error: 'event_clock_t' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp:204: error: expected `;' before 'cycles' libsidplay/src/mos6526/mos6526.cpp:208: error: 'cycles' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp:208: error: 'event_context' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp:208: error: 'm_accessClk' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp: In member function 'virtual void MOS6526::write(uint_least8_t, uint8_t)': libsidplay/src/mos6526/mos6526.cpp:291: error: 'event_clock_t' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp:291: error: expected `;' before 'cycles' libsidplay/src/mos6526/mos6526.cpp:295: error: 'cycles' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp:295: error: 'event_context' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp:295: error: 'm_accessClk' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp:396: error: expected `)' before 'ta' libsidplay/src/mos6526/mos6526.cpp:397: error: 'm_phase' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp:421: error: expected `)' before 'tb' libsidplay/src/mos6526/mos6526.cpp:422: error: 'm_phase' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp: In member function 'void MOS6526::ta_event()': libsidplay/src/mos6526/mos6526.cpp:457: error: 'event_clock_t' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp:457: error: expected `;' before 'cycles' libsidplay/src/mos6526/mos6526.cpp:466: error: 'cycles' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp:466: error: 'event_context' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp:466: error: 'm_accessClk' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp:466: error: 'm_phase' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp:476: error: expected `)' before 'ta' libsidplay/src/mos6526/mos6526.cpp: In member function 'void MOS6526::tb_event()': libsidplay/src/mos6526/mos6526.cpp:533: error: 'm_accessClk' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp:533: error: 'event_context' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp:533: error: 'm_phase' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp:541: error: 'event_clock_t' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp: In member function 'void MOS6526::tod_event()': libsidplay/src/mos6526/mos6526.cpp:555: error: 'm_todCycles' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp:555: error: 'm_todPeriod' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp:557: error: 'm_todCycles' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp:557: error: 'm_todPeriod' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp:560: error: 'event_context' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp:560: error: 'm_todCycles' was not declared in this scope libsidplay/src/mos6526/mos6526.cpp:560: error: 'm_phase' was not declared in this scope gmake[1]: *** [libsidplay/src/mos6526/mos6526.o] =D0=9E=D1=88=D0=B8=D0=B1= =D0=BA=D0=B0 1 gmake[1]: *** =D0=9E=D0=B6=D0=B8=D0=B4=D0=B0=D0=BD=D0=B8=D0=B5 =D0=B7=D0=B0= =D0=B2=D0=B5=D1=80=D1=88=D0=B5=D0=BD=D0=B8=D1=8F =D0=B7=D0=B0=D0=B4=D0=B0= =D0=BD=D0=B8=D0=B9... In file included from libsidplay/src/mos656x/mos656x.cpp:29: libsidplay/src/mos656x/mos656x.h:33: error: expected class-name before '{' token libsidplay/src/mos656x/mos656x.h:51: error: 'event_clock_t' does not name a type libsidplay/src/mos656x/mos656x.h:52: error: ISO C++ forbids declaration of 'EventContext' with no type libsidplay/src/mos656x/mos656x.h:52: error: expected ';' before '&' token libsidplay/src/mos656x/mos656x.h:53: error: 'event_phase_t' does not name a type libsidplay/src/mos656x/mos656x.h:56: error: expected `)' before '*' token libsidplay/src/mos656x/mos656x.cpp:52: error: expected `)' before '*' token libsidplay/src/mos656x/mos656x.cpp: In member function 'virtual void MOS656X::reset()': libsidplay/src/mos656x/mos656x.cpp:70: error: 'm_rasterClk' was not declared in this scope libsidplay/src/mos656x/mos656x.cpp:77: error: 'event_context' was not declared in this scope libsidplay/src/mos656x/mos656x.cpp:77: error: 'm_phase' was not declared in this scope libsidplay/src/mos656x/mos656x.cpp: In member function 'void MOS656X::event()': libsidplay/src/mos656x/mos656x.cpp:219: error: 'event_clock_t' was not declared in this scope libsidplay/src/mos656x/mos656x.cpp:219: error: expected `;' before 'cycles' libsidplay/src/mos656x/mos656x.cpp:222: error: 'cycles' was not declared in this scope libsidplay/src/mos656x/mos656x.cpp:225: error: expected `;' before 'delay' libsidplay/src/mos656x/mos656x.cpp:229: error: 'm_rasterClk' was not declared in this scope libsidplay/src/mos656x/mos656x.cpp:229: error: 'cycles' was not declared in this scope libsidplay/src/mos656x/mos656x.cpp:251: error: 'delay' was not declared in this scope libsidplay/src/mos656x/mos656x.cpp:329: error: 'delay' was not declared in this scope libsidplay/src/mos656x/mos656x.cpp:353: error: 'delay' was not declared in this scope libsidplay/src/mos656x/mos656x.cpp:437: error: 'event_context' was not declared in this scope libsidplay/src/mos656x/mos656x.cpp:437: error: 'delay' was not declared in this scope libsidplay/src/mos656x/mos656x.cpp:437: error: 'm_phase' was not declared in this scope distcc[9626] ERROR: compile (null) on localhost failed gmake[1]: *** [libsidplay/src/mos656x/mos656x.o] =D0=9E=D1=88=D0=B8=D0=B1= =D0=BA=D0=B0 1 In file included from libsidplay/src/mos6510/cycle_based/sid6510c.h:88, from libsidplay/src/mos6510/mos6510.h:70, from libsidplay/src/mos6510/mos6510.cpp:71: libsidplay/src/mos6510/cycle_based/mos6510c.h:115: error: expected class-name before '{' token libsidplay/src/mos6510/cycle_based/mos6510c.h:120: error: 'event_clock_t' does not name a type libsidplay/src/mos6510/cycle_based/mos6510c.h:121: error: 'event_clock_t' does not name a type libsidplay/src/mos6510/cycle_based/mos6510c.h:125: error: ISO C++ forbids declaration of 'EventContext' with no type libsidplay/src/mos6510/cycle_based/mos6510c.h:125: error: expected ';' before '&' token libsidplay/src/mos6510/cycle_based/mos6510c.h:126: error: 'event_phase_t' does not name a type libsidplay/src/mos6510/cycle_based/mos6510c.h:127: error: 'event_phase_t' does not name a type libsidplay/src/mos6510/cycle_based/mos6510c.h:180: error: 'event_clock_t' does not name a type libsidplay/src/mos6510/cycle_based/mos6510c.h:181: error: 'event_clock_t' does not name a type libsidplay/src/mos6510/cycle_based/mos6510c.h:324: error: expected `)' before '*' token libsidplay/src/mos6510/cycle_based/mos6510c.h: In member function 'void MOS6510::clock()': libsidplay/src/mos6510/cycle_based/mos6510c.h:353: error: 'm_stealingClk' was not declared in this scope libsidplay/src/mos6510/cycle_based/mos6510c.h:353: error: 'eventContext' was not declared in this scope libsidplay/src/mos6510/cycle_based/mos6510c.h:353: error: 'm_phase' was not declared in this scope libsidplay/src/mos6510/cycle_based/mos6510c.h:356: error: 'eventContext' was not declared in this scope libsidplay/src/mos6510/cycle_based/mos6510c.h: In member function 'void MOS6510::event()': libsidplay/src/mos6510/cycle_based/mos6510c.h:361: error: 'eventContext' was not declared in this scope libsidplay/src/mos6510/cycle_based/mos6510c.h:361: error: 'm_phase' was not declared in this scope In file included from libsidplay/src/mos6510/mos6510.cpp:75: libsidplay/src/mos6510/cycle_based/mos6510c.i: In member function 'void MOS6510::aecSignal(bool)': libsidplay/src/mos6510/cycle_based/mos6510c.i:241: error: 'eventContext' was not declared in this scope libsidplay/src/mos6510/cycle_based/mos6510c.i:241: error: 'm_extPhase' was not declared in this scope libsidplay/src/mos6510/cycle_based/mos6510c.i:248: error: 'm_stealingClk' was not declared in this scope libsidplay/src/mos6510/cycle_based/mos6510c.i:249: error: 'struct MOS6510::' has no member named 'nmiClk' libsidplay/src/mos6510/cycle_based/mos6510c.i:250: error: 'struct MOS6510::' has no member named 'irqClk' libsidplay/src/mos6510/cycle_based/mos6510c.i:253: error: 'struct MOS6510::' has no member named 'nmiClk' libsidplay/src/mos6510/cycle_based/mos6510c.i:254: error: 'struct MOS6510::' has no member named 'nmiClk' libsidplay/src/mos6510/cycle_based/mos6510c.i:255: error: 'struct MOS6510::' has no member named 'irqClk' libsidplay/src/mos6510/cycle_based/mos6510c.i:256: error: 'struct MOS6510::' has no member named 'irqClk' libsidplay/src/mos6510/cycle_based/mos6510c.i:260: error: 'm_phase' was not declared in this scope libsidplay/src/mos6510/cycle_based/mos6510c.i: In member function 'virtual void MOS6510::triggerNMI()': libsidplay/src/mos6510/cycle_based/mos6510c.i:344: error: 'struct MOS6510::' has no member named 'nmiClk' libsidplay/src/mos6510/cycle_based/mos6510c.i:344: error: 'eventContext' was not declared in this scope libsidplay/src/mos6510/cycle_based/mos6510c.i:344: error: 'm_extPhase' was not declared in this scope libsidplay/src/mos6510/cycle_based/mos6510c.i: In member function 'virtual void MOS6510::triggerIRQ()': libsidplay/src/mos6510/cycle_based/mos6510c.i:353: error: 'struct MOS6510::' has no member named 'irqClk' libsidplay/src/mos6510/cycle_based/mos6510c.i:353: error: 'eventContext' was not declared in this scope libsidplay/src/mos6510/cycle_based/mos6510c.i:353: error: 'm_extPhase' was not declared in this scope libsidplay/src/mos6510/cycle_based/mos6510c.i: In member function 'bool MOS6510::interruptPending()': libsidplay/src/mos6510/cycle_based/mos6510c.i:398: error: 'eventContext' was not declared in this scope libsidplay/src/mos6510/cycle_based/mos6510c.i:398: error: 'struct MOS6510::' has no member named 'nmiClk' libsidplay/src/mos6510/cycle_based/mos6510c.i:398: error: 'm_extPhase' was not declared in this scope libsidplay/src/mos6510/cycle_based/mos6510c.i:413: error: 'eventContext' was not declared in this scope libsidplay/src/mos6510/cycle_based/mos6510c.i:413: error: 'struct MOS6510::' has no member named 'irqClk' libsidplay/src/mos6510/cycle_based/mos6510c.i:413: error: 'm_extPhase' was not declared in this scope libsidplay/src/mos6510/cycle_based/mos6510c.i: In member function 'void MOS6510::brk_instr()': libsidplay/src/mos6510/cycle_based/mos6510c.i:800: error: 'eventContext' was not declared in this scope libsidplay/src/mos6510/cycle_based/mos6510c.i:800: error: 'struct MOS6510::' has no member named 'nmiClk' libsidplay/src/mos6510/cycle_based/mos6510c.i:800: error: 'm_extPhase' was not declared in this scope libsidplay/src/mos6510/cycle_based/mos6510c.i: In member function 'void MOS6510::branch2_instr()': libsidplay/src/mos6510/cycle_based/mos6510c.i:1167: error: 'struct MOS6510::' has no member named 'irqClk' libsidplay/src/mos6510/cycle_based/mos6510c.i:1168: error: 'struct MOS6510::' has no member named 'nmiClk' libsidplay/src/mos6510/cycle_based/mos6510c.i: At global scope: libsidplay/src/mos6510/cycle_based/mos6510c.i:1630: error: prototype for 'MOS6510::MOS6510(EventContext*)' does not match any in class 'MOS6510' libsidplay/src/mos6510/cycle_based/mos6510c.h:115: error: candidates are: MOS6510::MOS6510(const MOS6510&) libsidplay/src/mos6510/cycle_based/mos6510c.h:115: error: MOS6510::MOS6510() libsidplay/src/mos6510/cycle_based/mos6510c.i: In constructor 'MOS6510::MOS6510(EventContext*)': libsidplay/src/mos6510/cycle_based/mos6510c.i:1631: error: class 'MOS6510' does not have any field named 'eventContext' libsidplay/src/mos6510/cycle_based/mos6510c.i:1632: error: type 'Event' is not a direct base of 'MOS6510' libsidplay/src/mos6510/cycle_based/mos6510c.i:1634: error: class 'MOS6510' does not have any field named 'm_phase' libsidplay/src/mos6510/cycle_based/mos6510c.i:1635: error: class 'MOS6510' does not have any field named 'm_extPhase' libsidplay/src/mos6510/cycle_based/mos6510c.i: In member function 'void MOS6510::Initialise()': libsidplay/src/mos6510/cycle_based/mos6510c.i:2468: error: 'eventContext' was not declared in this scope libsidplay/src/mos6510/cycle_based/mos6510c.i:2468: error: 'm_phase' was not declared in this scope In file included from libsidplay/src/mos6510/mos6510.cpp:79: libsidplay/src/mos6510/cycle_based/sid6510c.i: In constructor 'SID6510::SID6510(EventContext*)': libsidplay/src/mos6510/cycle_based/sid6510c.i:152: error: no matching function for call to 'MOS6510::MOS6510(EventContext*&)' libsidplay/src/mos6510/cycle_based/mos6510c.h:115: note: candidates are: MOS6510::MOS6510() libsidplay/src/mos6510/cycle_based/mos6510c.h:115: note: MOS6510::MOS6510(const MOS6510&) libsidplay/src/mos6510/cycle_based/sid6510c.i: In member function 'void SID6510::sleep()': libsidplay/src/mos6510/cycle_based/sid6510c.i:249: error: 'm_stealingClk' was not declared in this scope libsidplay/src/mos6510/cycle_based/sid6510c.i:249: error: 'eventContext' was not declared in this scope libsidplay/src/mos6510/cycle_based/sid6510c.i:249: error: 'm_phase' was not declared in this scope libsidplay/src/mos6510/cycle_based/sid6510c.i: In member function 'void SID6510::sid_delay()': libsidplay/src/mos6510/cycle_based/sid6510c.i:383: error: 'eventContext' was not declared in this scope libsidplay/src/mos6510/cycle_based/sid6510c.i:383: error: 'm_stealingClk' was not declared in this scope libsidplay/src/mos6510/cycle_based/sid6510c.i:383: error: 'm_phase' was not declared in this scope libsidplay/src/mos6510/cycle_based/sid6510c.i: In member function 'virtual void SID6510::triggerRST()': libsidplay/src/mos6510/cycle_based/sid6510c.i:423: error: 'eventContext' was not declared in this scope libsidplay/src/mos6510/cycle_based/sid6510c.i:423: error: 'm_phase' was not declared in this scope libsidplay/src/mos6510/cycle_based/sid6510c.i: In member function 'virtual void SID6510::triggerNMI()': libsidplay/src/mos6510/cycle_based/sid6510c.i:435: error: 'eventContext' was not declared in this scope libsidplay/src/mos6510/cycle_based/sid6510c.i:435: error: 'm_phase' was not declared in this scope libsidplay/src/mos6510/cycle_based/sid6510c.i: In member function 'virtual void SID6510::triggerIRQ()': libsidplay/src/mos6510/cycle_based/sid6510c.i:460: error: 'eventContext' was not declared in this scope libsidplay/src/mos6510/cycle_based/sid6510c.i:460: error: 'm_phase' was not declared in this scope libsidplay/src/mos6510/mos6510.cpp: In member function 'virtual void MOS6510::DumpState()': libsidplay/src/mos6510/mos6510.cpp:90: error: 'm_dbgClk' was not declared in this scope gmake[1]: *** [libsidplay/src/mos6510/mos6510.o] =D0=9E=D1=88=D0=B8=D0=B1= =D0=BA=D0=B0 1 gmake[1]: Leaving directory `/usr/ports_build/usr/ports/multimedia/xbmc/work/xbmc-10.0.r34138/xbmc/core= s/paplayer/SIDCodec' gmake: *** [papcodecs] =D0=9E=D1=88=D0=B8=D0=B1=D0=BA=D0=B0 2 *** Error code 1 Stop in /usr/ports/multimedia/xbmc. *** Error code 1 Stop in /usr/ports/multimedia/xbmc. ######## What could be the problem? Thanks! From owner-freebsd-ports@FreeBSD.ORG Sat Oct 9 08:42:50 2010 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 C9C5A106564A; Sat, 9 Oct 2010 08:42:50 +0000 (UTC) (envelope-from fidaj@ukr.net) Received: from fsm1.ukr.net (fsm1.ukr.net [195.214.192.23]) by mx1.freebsd.org (Postfix) with ESMTP id 874118FC17; Sat, 9 Oct 2010 08:42:50 +0000 (UTC) Received: from 28-131-179-94.pool.ukrtel.net ([94.179.131.28] helo=localhost) by fsm1.ukr.net with esmtps ID 1P4V0z-000Kf4-EO ; Sat, 09 Oct 2010 11:42:49 +0300 Date: Sat, 9 Oct 2010 11:42:47 +0300 From: Ivan Klymenko To: =?UTF-8?B?TWlja2HDq2w=?= Maillot Message-ID: <20101009114247.0713c8a4@ukr.net> In-Reply-To: References: X-Mailer: Claws Mail 3.7.6 (GTK+ 2.20.1; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: freebsd-multimedia@freebsd.org, freebsd-ports@freebsd.org Subject: Re: XBMC 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: Sat, 09 Oct 2010 08:42:50 -0000 =D0=92 Tue, 5 Oct 2010 12:37:19 +0200 Micka=C3=ABl Maillot =D0=BF=D0=B8=D1=88=D0=B5= =D1=82: > hi, >=20 > you can test my pre version of xbmc port >=20 > some infos: > - i host xbmc files because i can't find a recent tar.gz > - internal video player crash on my intel graphic, you can use mplayer > as external video player > ex: http://fneufn.eu/freebsd/xbmc/playercorefactory.xml in > ~/.xbmc/userdata/ > - vdpau works fine > - skin aeon65 crash xbmc > - only python 2.4, 2.5 and 2.6 are supported > - with pulse, i can choose /dev/dsp audio output > - good luck with custom alsa output (ex: alsa:surround51 works) > - if you want correct utf8, start xbmc with: > LANG=3Dfr_FR.UTF-8 /usr/local/bin/xbmc/xbmc.sh > - xbmc.bin need XBMC_BIN_HOME and XBMC_HOME defined to start > defaults are (already added in xbmc.sh): > XBMC_BIN_HOME=3D/usr/local/lib/xbmc > XBMC_HOME=3D/usr/local/share/xbmc > - timezone doesn't work > - plist without: faac, hal, nonfree or avahi option can be wrong >=20 I forgot to add: uname -a FreeBSD nonamehost 9.0-CURRENT FreeBSD 9.0-CURRENT #0 r213507: Thu Oct 7 13:55:47 EEST 2010 ivan@nonamehost:/usr/obj/usr/src/sys/mk9 amd64 From owner-freebsd-ports@FreeBSD.ORG Sat Oct 9 19:02:51 2010 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 1BCB0106566C; Sat, 9 Oct 2010 19:02:51 +0000 (UTC) (envelope-from cjk32@cam.ac.uk) Received: from ppsw-51.csi.cam.ac.uk (ppsw-51.csi.cam.ac.uk [131.111.8.151]) by mx1.freebsd.org (Postfix) with ESMTP id A18788FC1A; Sat, 9 Oct 2010 19:02:50 +0000 (UTC) X-Cam-AntiVirus: no malware found X-Cam-SpamDetails: not scanned X-Cam-ScannerInfo: http://www.cam.ac.uk/cs/email/scanner/ Received: from nat2.cjkey.org.uk ([88.97.163.221]:52907 helo=tigger.wzl33) by ppsw-51.csi.cam.ac.uk (smtp.hermes.cam.ac.uk [131.111.8.158]:465) with esmtpsa (PLAIN:cjk32) (TLSv1:DHE-RSA-CAMELLIA256-SHA:256) id 1P4eRt-0003U4-WR (Exim 4.72) (return-path ); Sat, 09 Oct 2010 19:47:13 +0100 Message-ID: <4CB0B8B0.8030400@cam.ac.uk> Date: Sat, 09 Oct 2010 19:47:12 +0100 From: Christopher Key User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.2.9) Gecko/20100915 Thunderbird/3.1.4 MIME-Version: 1.0 To: bf1783@gmail.com References: In-Reply-To: Content-Type: multipart/mixed; boundary="------------080802030803070405060004" Cc: obrien@FreeBSD.org, "b. f." , freebsd-ports@FreeBSD.org Subject: Re: OPTIONS 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, 09 Oct 2010 19:02:51 -0000 This is a multi-part message in MIME format. --------------080802030803070405060004 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit On 06/10/2010 13:42, b. f. wrote: > > You can set those knobs via the command line, or via Makefile.{inc, > ${ARCH}*, ${OPSYS}, local}, or via make.conf, where you can limit the > scope based on the .CURDIR, etc. Although we do have a problem, as > you note in (4), with knobs that are OPTIONS, but are defined > somewhere other than OPTIONSFILE. I hadn't seen: > > http://docs.freebsd.org/cgi/mid.cgi?4C476F69.1060200 > > until swell.k pointed it out (thanks). I think that it does some good > things, but it does have some problems: > > --I don't think the priority is right: the "environment" settings > ought to override the PORTS_DBDIR entries. This is because they will > do so anyway in some circumstances (because of recursion, or the use > of make -e/-E, or because you can't .undef some "environment" > variables), but also because users may want to perform a test build > with knobs defined in the "environment", without having to alter their > settings in PORTS_DBDIR. > > --The parsing of the config files needs to be changed, so that > _OPTION_SRC_${OPT} isn't set to "config" when it should be > "environment" (see above). Also, the entries in OPTIONSFILE.local > ought to override anything in OPTIONSFILE, without regard to > precedence of WITHOUT_*. > > --There needs to be a final sanity-check, that fails with an > appropriate error message if both WITH_* and WITHOUT_* are defined, > because the .undefs are not sufficient to guarantee mutual > exclusivity. > I'm afraid I'm really in a position to look at this closely now, but I think that the latest version (attached) might resolve some of the above problems. Kind regards, Christopher Key --------------080802030803070405060004 Content-Type: text/plain; x-mac-type="0"; x-mac-creator="0"; name="rework-options.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="rework-options.patch" Index: Mk/bsd.port.mk =================================================================== RCS file: /home/ncvs/ports/Mk/bsd.port.mk,v retrieving revision 1.643 diff -u -r1.643 bsd.port.mk --- Mk/bsd.port.mk 15 Jul 2010 14:48:50 -0000 1.643 +++ Mk/bsd.port.mk 26 Jul 2010 12:31:53 -0000 @@ -1291,43 +1291,124 @@ .endif OPTIONSFILE?= ${PORT_DBDIR}/${UNIQUENAME}/options .if defined(OPTIONS) -# include OPTIONSFILE first if exists + +# Firstly, get a list of all options +_OPTIONS_LIST= + +_FIELD= 0 +. for O in ${OPTIONS:C/".*"//} +. if ${_FIELD} == 0 +_FIELD= 1 +_OPTIONS_LIST:= ${_OPTIONS_LIST} ${O} +. else +_FIELD= 0 +. endif +. endfor +. undef _FIELD + +# Get an on/off value for each option defined either in environment, make.conf, ports.conf or on the command line +# Attempt to undef the corresponding WITH_XXX, WITHOUT_XXX (we'll restore them later) so that: +# a) we can detect immutable options from the environment or command line +# b) we can see what we read in +. for OPT in ${_OPTIONS_LIST} +. if defined(WITH_${OPT}) || defined(WITHOUT_${OPT}) +. if defined(WITHOUT_${OPT}) # always check WITHOUT_XXX before WITH_XXX to give WITHOUT_XXX priority +_OPTION_VAL_${OPT}= off +. else +_OPTION_VAL_${OPT}= on +. endif +_OPTION_SRC_${OPT}= site +. undef WITH_${OPT} +. undef WITHOUT_${OPT} +. endif +. endfor + +# Detect which variables we failed to undef. These will have been specified on the command line, and will be +# immutable. Check for duplicate WITH_XXX and WITHOUT_XXX, as we can't clean these up for the port. +# Otherwise, update the option value to give cmdline priority over make.conf, ports.conf, and note that +# this option is immutable, and cannot be overriden. +. for OPT in ${_OPTIONS_LIST} +. if defined(WITH_${OPT}) && defined(WITHOUT_${OPT}) +. error You set both WITH_${OPT} and WITHOUT_${OPT}. Abort. +. elif defined(WITH_${OPT}) || defined(WITHOUT_${OPT}) +. if defined(WITHOUT_${OPT}) # always check WITHOUT_XXX before WITH_XXX to give WITHOUT_XXX priority +_OPTION_VAL_${OPT}= off +. else +_OPTION_VAL_${OPT}= on +. endif +_OPTION_SRC_${OPT}= env+args +_OPTION_IMM_${OPT}= true +. endif +. endfor + +# Include OPTIONSFILE if exists . if exists(${OPTIONSFILE}) && !make(rmconfig) . include "${OPTIONSFILE}" . endif . if exists(${OPTIONSFILE}.local) . include "${OPTIONSFILE}.local" . endif -WITHOUT:= -WITH:= -. if defined(OPTIONS) -REALOPTIONS=${OPTIONS:C/".*"//g} -. for O in ${REALOPTIONS} -RO:=${O} -. if ${RO:L} == off -WITHOUT:= ${WITHOUT} ${OPT} + +# Update our list of option values based on what we read from our config file. Only override the option +# value if it isn't immutable, but always try to unset WITH_XXX and WITHOUT_XXX. We'll restore them later, +# ensuring that WITH_XXX and WITHOUT_XXX are mutually exclusive. +. for OPT in ${_OPTIONS_LIST} +. if defined(WITH_${OPT}) || defined(WITHOUT_${OPT}) +. if !defined(_OPTION_IMM_${OPT}) +. if defined(WITHOUT_${OPT}) # always check WITHOUT_XXX before WITH_XXX to give WITHOUT_XXX priority +_OPTION_VAL_${OPT}= off +. else +_OPTION_VAL_${OPT}= on +. endif +_OPTION_SRC_${OPT}= config +. endif +. undef WITH_${OPT} +. undef WITHOUT_${OPT} +. endif +. endfor + +# Set default value for remaining options +_FIELD= 0 +. for O in ${OPTIONS:C/".*"//} +. if ${_FIELD} == 0 +_FIELD= 1 +OPT:= ${O} +. else +_FIELD= 0 +. if !defined(_OPTION_VAL_${OPT}) +_OPTION_VAL_${OPT}:= ${O:L} +_OPTION_SRC_${OPT}= default . endif -. if ${RO:L} == on -WITH:= ${WITH} ${OPT} . endif -OPT:=${RO} . endfor +. undef _FIELD +. undef OPT + +# restore WITH_XXX, WITHOUT_XXX appropriately +. for OPT in ${_OPTIONS_LIST} +. if ${_OPTION_VAL_${OPT}} == on +WITH_${OPT}= true +. else +WITHOUT_${OPT}= true . endif -# define only if NO WITH/WITHOUT_${W} is defined -. for W in ${WITH} -. if !defined(WITH_${W}) && !defined(WITHOUT_${W}) -WITH_${W}:= true -. endif . endfor -. for W in ${WITHOUT} -. if !defined(WITH_${W}) && !defined(WITHOUT_${W}) -WITHOUT_${W}:= true -. endif + +# shell script to set variables for current option values +_OPTIONS_SET_SH= +. for OPT in ${_OPTIONS_LIST} +_OPTIONS_SET_SH:= ${_OPTIONS_SET_SH} \ + OPTION_SRC_${OPT}=${_OPTION_SRC_${OPT}}; \ + OPTION_VAL_${OPT}=${_OPTION_VAL_${OPT}}; . endfor -. undef WITH -. undef WITHOUT -. undef RO -. undef REALOPTIONS + +# clean up +. for OPT in ${_OPTIONS_LIST} +. undef _OPTION_VAL_${OPT} +. undef _OPTION_SRC_${OPT} +. undef _OPTION_IMM_${OPT} +. endfor +. undef _OPTIONS_LIST + .endif .endif @@ -6102,24 +6183,11 @@ ${MKDIR} $${optionsdir} 2> /dev/null) || \ (${ECHO_MSG} "===> Cannot create $${optionsdir}, check permissions"; exit 1) .endif - -@if [ -e ${OPTIONSFILE} ]; then \ - . ${OPTIONSFILE}; \ - fi; \ + -@${_OPTIONS_SET_SH} \ set -- ${OPTIONS} XXX; \ while [ $$# -gt 3 ]; do \ OPTIONSLIST="$${OPTIONSLIST} $$1"; \ - defaultval=$$3; \ - withvar=WITH_$$1; \ - withoutvar=WITHOUT_$$1; \ - withval=$$(eval ${ECHO_CMD} $$\{$${withvar}\}); \ - withoutval=$$(eval ${ECHO_CMD} $$\{$${withoutvar}\}); \ - if [ ! -z "$${withval}" ]; then \ - val=on; \ - elif [ ! -z "$${withoutval}" ]; then \ - val=off; \ - else \ - val=$$3; \ - fi; \ + val=$$(eval ${ECHO_CMD} $$\{OPTION_VAL_$${1}\}); \ DEFOPTIONS="$${DEFOPTIONS} $$1 \"$$2\" $${val}"; \ shift 3; \ done; \ @@ -6176,21 +6244,11 @@ .if defined(OPTIONS) .if exists(${OPTIONSFILE}) # scan saved options and invalidate them, if the set of options does not match - @. ${OPTIONSFILE}; \ + @${_OPTIONS_SET_SH} \ set ${OPTIONS} XXX; \ while [ $$# -gt 3 ]; do \ - withvar=WITH_$$1; \ - withoutvar=WITHOUT_$$1; \ - withval=$$(eval ${ECHO_CMD} $$\{$${withvar}\}); \ - withoutval=$$(eval ${ECHO_CMD} $$\{$${withoutvar}\}); \ - if [ ! -z "$${withval}" ]; then \ - val=on; \ - elif [ ! -z "$${withoutval}" ]; then \ - val=off; \ - else \ - val=missing; \ - fi; \ - if [ "$${val}" = "missing" ]; then \ + src=$$(eval ${ECHO_CMD} $$\{OPTION_SRC_$${1}\}); \ + if [ "$${src}" != "config" ]; then \ OPTIONS_INVALID=yes; \ fi; \ shift 3; \ @@ -6206,26 +6264,16 @@ .if !target(showconfig) showconfig: -.if defined(OPTIONS) +.if !defined(OPTIONS) + @${ECHO_MSG} "===> No options to configure" +.else @${ECHO_MSG} "===> The following configuration options are available for ${PKGNAME}:" - -@if [ -e ${OPTIONSFILE} ]; then \ - . ${OPTIONSFILE}; \ - fi; \ + @${_OPTIONS_SET_SH} \ set -- ${OPTIONS} XXX; \ while [ $$# -gt 3 ]; do \ - defaultval=$$3; \ - withvar=WITH_$$1; \ - withoutvar=WITHOUT_$$1; \ - withval=$$(eval ${ECHO_CMD} $$\{$${withvar}\}); \ - withoutval=$$(eval ${ECHO_CMD} $$\{$${withoutvar}\}); \ - if [ ! -z "$${withval}" ]; then \ - val=on; \ - elif [ ! -z "$${withoutval}" ]; then \ - val=off; \ - else \ - val="$$3 (default)"; \ - fi; \ - ${ECHO_MSG} " $$1=$${val} \"$$2\""; \ + val=$$(eval ${ECHO_CMD} $$\{OPTION_VAL_$${1}\}); \ + src=$$(eval ${ECHO_CMD} $$\{OPTION_SRC_$${1}\}); \ + ${ECHO_MSG} " $$1=$${val} ($${src}) \"$$2\""; \ shift 3; \ done @${ECHO_MSG} "===> Use 'make config' to modify these settings" --------------080802030803070405060004-- From owner-freebsd-ports@FreeBSD.ORG Sat Oct 9 22:28:36 2010 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 9EDB6106566B for ; Sat, 9 Oct 2010 22:28:36 +0000 (UTC) (envelope-from ports.friedemann.becker@googlemail.com) Received: from mail-vw0-f54.google.com (mail-vw0-f54.google.com [209.85.212.54]) by mx1.freebsd.org (Postfix) with ESMTP id 5B1F98FC08 for ; Sat, 9 Oct 2010 22:28:36 +0000 (UTC) Received: by vws1 with SMTP id 1so611821vws.13 for ; Sat, 09 Oct 2010 15:28:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=42t2hYx4Hr2jgBFBormPN2dVJbT1XwFuEn7QW7+/oK8=; b=cADyDe9h9cK1VQdK3RhwixWO2DHrE2ilDpQJ6rfmmvluSBSVCH9vtvKuExyxk7FPDI ki2z6/3o6f5PEAxLhHkGmfduf1wP1bOlF9XFgNxuttOCCZXa3oQqH/8rXg9rLw2+BsVn mEj7vpmzKjxYzz3785o31Vea22ETcEZdh9mSc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=uI9HUlYYeAEyJi7OW1nVsMLWgnZUPWslSVN9mRKxTDjO0hO4HFHbm3QKtr+1M5EY+J C/lW50iVuQM3w3YDAankJ+RrDJO0+s0cVT0eHudcPcPoGX107scCbhliNLiurPV2bn// 1DLXOXYC111HofWR1PCHwFSNLPnXm452r7uDc= MIME-Version: 1.0 Received: by 10.220.165.70 with SMTP id h6mr1263957vcy.244.1286661731887; Sat, 09 Oct 2010 15:02:11 -0700 (PDT) Received: by 10.220.203.72 with HTTP; Sat, 9 Oct 2010 15:02:11 -0700 (PDT) Date: Sun, 10 Oct 2010 00:02:11 +0200 Message-ID: From: Friedemann Becker To: ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Cc: Subject: How to handle files installed to /usr/local/lib/qt4/plugins/script/ correctly in pkg-plist? 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, 09 Oct 2010 22:28:36 -0000 Hello, I'm trying to make a port for musescore, it's compiling and installing, and now I'm working through the testing chapter in the porter's handbook. Musescore has some files that are installed into the /usr/local/lib/qt4/plugins/script/ directory, and I'm wondering how to handle them correctly. All other files install to ${PREFIX}/..., but I don't know what to do with the qt-lib directory. Is it okay to leave the files there, and if I do so how do I tell pkg-plist about that? Is it okay to just put absolute paths there? like /usr/local/lib/qt4/plugins/script/libqtscript_core.so? Also strange: there already are installed versions of these files, for instance it looks like -rwxr-xr-x 1 root wheel 2363778 Oct 9 12:48 libqtscript_uitools.so lrwxr-xr-x 1 root wheel 28 Jun 30 18:42 libqtscript_uitools.so.1 -> libqtscript_uitools.so.1.0.0 lrwxr-xr-x 1 root wheel 28 Jun 30 18:42 libqtscript_uitools.so.1.0 -> libqtscript_uitools.so.1.0.0 -r--r--r-- 1 root wheel 974529 Jun 30 18:42 libqtscript_uitools.so.1.0.0 where libqtscript_uitools.so is installed by Musescore, the symbolic links and the libqtscript_uitools.so.1.0.0 where already there. What to do best in this situation? Thanks in advance, Best regards, Friedemann Becker From owner-freebsd-ports@FreeBSD.ORG Sat Oct 9 22:54:03 2010 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 370DA1065672 for ; Sat, 9 Oct 2010 22:54:03 +0000 (UTC) (envelope-from makc@issp.ac.ru) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) by mx1.freebsd.org (Postfix) with ESMTP id A69F48FC20 for ; Sat, 9 Oct 2010 22:54:02 +0000 (UTC) Received: from [80.73.162.72] [80.73.162.72:5478] (HELO/EHLO luna.dio.ru, authenticated with PLAIN) by mail.issp.ac.ru with ESMTP/inet id o99MrwYo054438 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Sun, 10 Oct 2010 02:53:58 +0400 (MSD) From: Max Brazhnikov Organization: ISSP RAS To: Friedemann Becker , ports@freebsd.org Date: Sun, 10 Oct 2010 02:54:00 +0400 User-Agent: KMail/1.13.5 (FreeBSD/8.1-STABLE; KDE/4.5.2; amd64; ; ) References: In-Reply-To: MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <201010100254.00372.makc@issp.ac.ru> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-3.0 (mail.issp.ac.ru [77.236.34.3]); Sun, 10 Oct 2010 02:53:58 +0400 (MSD) Cc: Subject: Re: How to handle files installed to /usr/local/lib/qt4/plugins/script/ correctly in pkg-plist? 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, 09 Oct 2010 22:54:03 -0000 On Sun, 10 Oct 2010 00:02:11 +0200, Friedemann Becker wrote: > Hello, > > I'm trying to make a port for musescore, it's compiling and > installing, and now I'm working through the testing chapter in the > porter's handbook. > Musescore has some files that are installed into the > /usr/local/lib/qt4/plugins/script/ directory, and I'm wondering how to > handle them correctly. All other files install to ${PREFIX}/..., but I > don't know what to do with the qt-lib directory. Is it okay to leave > the files there, and if I do so how do I tell pkg-plist about that? > Is it okay to just put absolute paths there? like > /usr/local/lib/qt4/plugins/script/libqtscript_core.so? bsd.qt.mk defines several substitutions for plist (e.g. QT_PLUGINDIR_REL for lib/qt4/plugins), you should use them instead hardcoded paths. > Also strange: there already are installed versions of these files, for > instance it looks like > > -rwxr-xr-x 1 root wheel 2363778 Oct 9 12:48 libqtscript_uitools.so > lrwxr-xr-x 1 root wheel 28 Jun 30 18:42 > libqtscript_uitools.so.1 -> libqtscript_uitools.so.1.0.0 > lrwxr-xr-x 1 root wheel 28 Jun 30 18:42 > libqtscript_uitools.so.1.0 -> libqtscript_uitools.so.1.0.0 > -r--r--r-- 1 root wheel 974529 Jun 30 18:42 > libqtscript_uitools.so.1.0.0 > > where libqtscript_uitools.so is installed by Musescore, the symbolic > links and the libqtscript_uitools.so.1.0.0 where already there. > > What to do best in this situation? These are installed by devel/qtscriptgenerator. You should patch your port to not install these files, otherwise your port will be in conflict with qtscriptgenerator. Max From owner-freebsd-ports@FreeBSD.ORG Sat Oct 9 23:50:21 2010 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 CAE7E1065674; Sat, 9 Oct 2010 23:50:21 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A1AD68FC1D; Sat, 9 Oct 2010 23:50:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o99NoLqM046293; Sat, 9 Oct 2010 23:50:21 GMT (envelope-from pgollucci@freefall.freebsd.org) Received: (from pgollucci@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o99NoL8u046283; Sat, 9 Oct 2010 23:50:21 GMT (envelope-from pgollucci) Date: Sat, 9 Oct 2010 23:50:21 GMT Message-Id: <201010092350.o99NoL8u046283@freefall.freebsd.org> To: pgollucci@FreeBSD.org, freebsd-ports@FreeBSD.org, pgollucci@FreeBSD.org From: pgollucci@FreeBSD.org Cc: Subject: Re: ports/15113: emulators/macutils - maintainer email address change 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, 09 Oct 2010 23:50:21 -0000 Synopsis: emulators/macutils - maintainer email address change Responsible-Changed-From-To: freebsd-ports->pgollucci Responsible-Changed-By: pgollucci Responsible-Changed-When: Sat Oct 9 23:50:21 UTC 2010 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=15113