From owner-freebsd-ports@FreeBSD.ORG Sun Apr 24 04:22:53 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F19616A4CF for ; Sun, 24 Apr 2005 04:22:53 +0000 (GMT) Received: from dppl.com (sapas.dppl.biz [216.182.10.231]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B68A43D31 for ; Sun, 24 Apr 2005 04:22:52 +0000 (GMT) (envelope-from yds@CoolRat.org) Received: from [192.168.1.69] (pcp0011284575pcs.union01.nj.comcast.net [69.248.144.22]) (AUTH: PLAIN yds, TLS: TLSv1/SSLv3,256bits,AES256-SHA) by dppl.com with esmtp; Sun, 24 Apr 2005 00:22:51 -0400 Date: Sun, 24 Apr 2005 00:22:50 -0400 From: Yarema To: Oliver Lehmann , ports@freebsd.org Message-ID: <88C95BEA8121F2497BEA1AB5@tuber.coolrat.org> In-Reply-To: <20050423032503.4e7b0b98.lehmann@ans-netz.de> References: <20050414111426.775f6afd.lehmann@ans-netz.de> <20050423032503.4e7b0b98.lehmann@ans-netz.de> X-Mailer: Mulberry/3.1.6 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline cc: Milan Obuch cc: Jose M Rodriguez Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 04:22:53 -0000 Hello Oliver, --On Saturday, April 23, 2005 03:25:03 +0200 Oliver Lehmann wrote: > Hi, > > Oliver Lehmann wrote: > >> >> http://www.pofo.de/tmp/courier-authlib.tar.gz >> > > I created a new version of the tar.gz with some changes: > > - libauthpwd is removed from -base and gets installed when the new port > -pwd gets installed. > - .so.[0-9] ar now installed with 0444 > > and now the biggest change: > > - I introduced a --without base target in configure which is needed for: > - I changed the configure and Makefile.in for the following purpose: > - only run configure in the subdirs needed for the specific --with- > (auth*|base) configure-target. > - only compile the objects needed for the specific --with-(auth*|base) > configure-target. > - install/sysconftool only the libraries, configurations, binaries > which are needed for the specific --with-(auth*|base) configure- > target. That means the ports own do-install: target got removed. > > openldap.schema file didn't gets installed now since there is nothing in > the src-Makefile which would install it when --with-authldap is > specified. It can be easyly added of course but I don't know if that file > is really needed since none ever told me that it is missing. I can't say > anything about that file since I never took a look into LDAP. If someone > tells me "man, that file makes work easier/is hardly needed" I'll change > Makefile.in so it gets installed when --with-authldap is specified. > > And of course, I'll send my patches when they are done, working, tested, > checked-in to the original author. Nice work with the patches. Once again I have a variant on what you posted with some notes and fixups at This one should be easy to follow. The main difference is in how the courier-authlib and courier-authlib-base are organized. courier-authlib-base is a standalone package completely unaware that there is a meta port. All the plugin subports RUN_DEPEND directly on courier-authlib-base. courier-authlib is a standalone meta port which BUILD_DEPENDS and RUN_DEPENDS on courier-authlib-base and optionally BUILD_DEPENDS on any of the plugin subports. Using only BUILD_DEPENDS is in this case preferred for the subports because no @pkgdep is recorded so one is free to install and deinstall the plugins as need dictates without any other port complaining that it DEPENDS on them. Only the base port needs to be DEPENDed upon. I think this is a cleaner organization which solves most of the issues I've raised and still works exactly the same as the last version you posted. -- Yarema http://yds.CoolRat.org From owner-freebsd-ports@FreeBSD.ORG Sun Apr 24 04:49:13 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5DB8516A4D0 for ; Sun, 24 Apr 2005 04:49:13 +0000 (GMT) Received: from dppl.com (sapas.dppl.com [216.182.10.231]) by mx1.FreeBSD.org (Postfix) with ESMTP id B5B8443D49 for ; Sun, 24 Apr 2005 04:49:12 +0000 (GMT) (envelope-from yds@CoolRat.org) Received: from [192.168.1.69] (pcp0011284575pcs.union01.nj.comcast.net [69.248.144.22]) (AUTH: PLAIN yds, TLS: TLSv1/SSLv3,256bits,AES256-SHA) by dppl.com with esmtp; Sun, 24 Apr 2005 00:49:12 -0400 Date: Sun, 24 Apr 2005 00:49:11 -0400 From: Yarema To: Oliver Lehmann , ports@freebsd.org Message-ID: <5E320E4B0EE44F409364567C@tuber.coolrat.org> In-Reply-To: <20050423032503.4e7b0b98.lehmann@ans-netz.de> References: <20050414111426.775f6afd.lehmann@ans-netz.de> <20050423032503.4e7b0b98.lehmann@ans-netz.de> X-Mailer: Mulberry/3.1.6 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline cc: Milan Obuch cc: Jose M Rodriguez Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 04:49:13 -0000 Hello again, --On Saturday, April 23, 2005 03:25:03 +0200 Oliver Lehmann wrote: > I created a new version of the tar.gz with some changes: > > - libauthpwd is removed from -base and gets installed when the new port > -pwd gets installed. > - .so.[0-9] ar now installed with 0444 The shared libs still install with the 0755 perms for me. Most likely because they are installed via the ${INSTALL_STRIP_PROGRAM} macro so that they get stripped. > and now the biggest change: > > - I introduced a --without base target in configure which is needed for: > - I changed the configure and Makefile.in for the following purpose: > - only run configure in the subdirs needed for the specific --with- > (auth*|base) configure-target. > - only compile the objects needed for the specific --with-(auth*|base) > configure-target. > - install/sysconftool only the libraries, configurations, binaries > which are needed for the specific --with-(auth*|base) configure- > target. That means the ports own do-install: target got removed. Once again, very cool. :) > openldap.schema file didn't gets installed now since there is nothing in > the src-Makefile which would install it when --with-authldap is > specified. It can be easyly added of course but I don't know if that file > is really needed since none ever told me that it is missing. I can't say > anything about that file since I never took a look into LDAP. If someone > tells me "man, that file makes work easier/is hardly needed" I'll change > Makefile.in so it gets installed when --with-authldap is specified. The authldap.schema file *is* needed to configure the openldap-server. slapd.conf(5) needs to: include /usr/local/etc/openldap/schema/authldap.schema to be able to use the fields required by courier-authlib-ldap. The catch is that courier-authlib-ldap does not require openldap-server to be installed, only the openldap-client libraries. And openldap-server can be running on a different machine and does not need courier-authlib installed to support it, just the authldap.schema file is needed. That's why I suggested installing authldap.schema in ${EXAMPLESDIR} so that it's readily available to an admin configuring courier-authlib-ldap. Otherwise one would need to dig for the file in the disto tarball. Another option is to make a separate port which RUN_DEPENDS only on openldap-server just to install authldap.schema in etc/openldap/schema/ but that seems like overkill to me. Samba is another port which has openldap schema files, don't remember how they handle it or if they do. -- Yarema http://yds.CoolRat.org From owner-freebsd-ports@FreeBSD.ORG Sun Apr 24 06:21:17 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2F5316A4CE for ; Sun, 24 Apr 2005 06:21:17 +0000 (GMT) Received: from pencil.math.missouri.edu (pencil.math.missouri.edu [128.206.49.147]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71DE543D2F for ; Sun, 24 Apr 2005 06:21:17 +0000 (GMT) (envelope-from rich@pencil.math.missouri.edu) Received: from pencil.math.missouri.edu (rich@localhost [127.0.0.1]) j3O6LFu9061628 for ; Sun, 24 Apr 2005 01:21:15 -0500 (CDT) (envelope-from rich@pencil.math.missouri.edu) Received: (from rich@localhost) by pencil.math.missouri.edu (8.12.11/8.12.11/Submit) id j3O6LFsH061627 for freebsd-ports@freebsd.org; Sun, 24 Apr 2005 01:21:15 -0500 (CDT) (envelope-from rich) From: Rich Winkel Message-Id: <200504240621.j3O6LFsH061627@pencil.math.missouri.edu> To: freebsd-ports@freebsd.org Date: Sun, 24 Apr 2005 01:21:15 -0500 (CDT) X-Mailer: ELM [version 2.4ME+ PL82 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII X-Spam-Status: No, hits=0.0 required=8.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on pencil.math.missouri.edu X-Virus-Scanned: clamd / ClamAV version 0.71, clamav-milter version 0.71 X-Virus-Status: Clean Subject: Compiling openoffice-1.1.4 under 4.11-RELEASE-p3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 06:21:17 -0000 I thought the rtld.c patch was supposed to be in post 4.11-release, but the makefile still gives the "rtld depends on _end symbol" error and the latest releng_4 version of rtld.c still doesn't have the patch. I bravely commented out the "broken" lines in the makefile and tried making it without mozilla and without java. Several zillion bit twiddles later, it sed: zip -j -5 "../unxfbsd.pro/01/normal/f_0384" "/usr/ports/editors/openoffice-1.1/w ork/solver/645/unxfbsd.pro/bin/dtappintegrate" adding: dtappintegrate (deflated 80%) optimize summary: 0 kb Replacing ${EVAL} with Replacing ${FILEFORMATNAME} with OpenOffice.org Replacing ${FILEFORMATVERSION} with 1.0 Replacing ${LONG_PRODUCTEXTENSION} with Replacing ${PRODUCTEXTENSION} with Replacing ${PRODUCTNAME} with OpenOffice.org Replacing ${PRODUCTVERSION} with 1.1.4 time needed: 0:0:44 WARNING! Project(s): gtk not found and couldn't be built. Correct build.lsts. And died. Is this a lost cause? Should I just install the package? Is this error related to the rtld.c issue? Thanks, Rich From owner-freebsd-ports@FreeBSD.ORG Sun Apr 24 07:33:56 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F156E16A4CE for ; Sun, 24 Apr 2005 07:33:56 +0000 (GMT) Received: from 62-15-211-171.inversas.jazztel.es (62-15-211-171.inversas.jazztel.es [62.15.211.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7710343D2F for ; Sun, 24 Apr 2005 07:33:55 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) j3O7XCYo003840; Sun, 24 Apr 2005 09:33:12 +0200 (CEST) (envelope-from josemi@redesjm.local) Received: from localhost (localhost [[UNIX: localhost]]) by redesjm.local (8.13.3/8.13.3/Submit) id j3O7X9XT000806; Sun, 24 Apr 2005 09:33:09 +0200 (CEST) (envelope-from josemi@redesjm.local) From: Jose M Rodriguez To: Oliver Lehmann Date: Sun, 24 Apr 2005 09:33:07 +0200 User-Agent: KMail/1.8 References: <20050414111426.775f6afd.lehmann@ans-netz.de> <200504232247.18540.ports@dino.sk> <20050423233338.4b804d27.lehmann@ans-netz.de> In-Reply-To: <20050423233338.4b804d27.lehmann@ans-netz.de> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200504240933.08799.josemi@redesjm.local> X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-3; AVE: 6.30.0.7; VDF: 6.30.0.116; host: antares.redesjm.local) cc: Milan Obuch cc: Yarema cc: freebsd-ports@freebsd.org cc: Jose M Rodriguez Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 07:33:57 -0000 El S=E1bado, 23 de Abril de 2005 23:33, Oliver Lehmann escribi=F3: > Milan Obuch wrote: > > On Saturday 23 April 2005 22:27, Oliver Lehmann wrote: > > > tomorrow i'll test if installing/deleting with packages works as > > > expected (adding/deleting user, sysconftool calls...) > > > > I did test this - installed meta port, dependency installed base > > port and userdb (selected method) port. Adding/deleting user > > courier works. To me this looks OK. I will test this against > > courier port (0.49 changed). Milan > > as a port or as a package? I've installed now all ports as package > and it looks like everything works as well. Of course, the functional > test I can only do with the vchkpw/vpopmail interface. Used with > courier-imap and sqwebmail. As far as I can see, it works. > > Anything left? At last here, one potential problem arise: courier-authlib-base doesn't have any passwd components. I think we must take off courier-authlib-pwd and courier-authlib-pam and=20 direct build courier-authlib-base with pam support. This makes courier-authlib-base a good substitute of courier-authlib in=20 dependencies. =2D- josemi From owner-freebsd-ports@FreeBSD.ORG Sun Apr 24 08:13:35 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 765A716A4CE for ; Sun, 24 Apr 2005 08:13:35 +0000 (GMT) Received: from bsd.dino.sk (bsd.dino.sk [213.215.72.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id 27A7243D49 for ; Sun, 24 Apr 2005 08:13:34 +0000 (GMT) (envelope-from ports@dino.sk) Received: from [213.215.74.194] ([213.215.74.194]) (AUTH: LOGIN milan) by bsd.dino.sk with esmtp; Sun, 24 Apr 2005 10:13:48 +0200 id 000000C9.426B553D.00015A29 From: Milan Obuch To: freebsd-ports@freebsd.org Date: Sun, 24 Apr 2005 10:13:26 +0200 User-Agent: KMail/1.6.2 References: <20050414111426.775f6afd.lehmann@ans-netz.de> <20050423233338.4b804d27.lehmann@ans-netz.de> <200504240933.08799.josemi@redesjm.local> In-Reply-To: <200504240933.08799.josemi@redesjm.local> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Message-Id: <200504241013.26838.ports@dino.sk> Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 08:13:35 -0000 On Sunday 24 April 2005 09:33, Jose M Rodriguez wrote: > El S=E1bado, 23 de Abril de 2005 23:33, Oliver Lehmann escribi=F3: > > Milan Obuch wrote: > > > On Saturday 23 April 2005 22:27, Oliver Lehmann wrote: > > > > tomorrow i'll test if installing/deleting with packages works as > > > > expected (adding/deleting user, sysconftool calls...) > > > > > > I did test this - installed meta port, dependency installed base > > > port and userdb (selected method) port. Adding/deleting user > > > courier works. To me this looks OK. I will test this against > > > courier port (0.49 changed). Milan > > > > as a port or as a package? I've installed now all ports as package > > and it looks like everything works as well. Of course, the functional > > test I can only do with the vchkpw/vpopmail interface. Used with > > courier-imap and sqwebmail. As far as I can see, it works. > > > > Anything left? > > At last here, one potential problem arise: > > courier-authlib-base doesn't have any passwd components. =2E.. which I consider to be good. It should be possible for user to select= =20 which one he wants. > I think we must take off courier-authlib-pwd and courier-authlib-pam and > direct build courier-authlib-base with pam support. I do not agree here. To me this new design is better. I am building mail=20 servers with virtual hosting and I do not want any unneeded components=20 installed. Even small ones. > This makes courier-authlib-base a good substitute of courier-authlib in > dependencies. > =46or this particular problem, we should add a message telling 'no=20 authentication module installed'. I see here just one problem - base=20 port/package needs to be installed first, so this test will go to all ports= =20 depending on courier-authlib... Or maybe after installing base port we coul= d=20 just test the presence of options for meta port, and if this file/directory= =20 does not exist, issue a warning message to the user. This way we can even a= dd=20 confirmation request to the user.=20 To me this should be enough. If someone reads this message, he/she should=20 understand without authentication module every attempt fails. If someone do= es=20 not read install messages, well, we can't do anything for him... Milan From owner-freebsd-ports@FreeBSD.ORG Sun Apr 24 10:42:57 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D3A916A4CE for ; Sun, 24 Apr 2005 10:42:57 +0000 (GMT) Received: from 62-15-211-171.inversas.jazztel.es (62-15-211-171.inversas.jazztel.es [62.15.211.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0529443D46 for ; Sun, 24 Apr 2005 10:42:56 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) j3OAgkiD004219; Sun, 24 Apr 2005 12:42:46 +0200 (CEST) (envelope-from josemi@redesjm.local) Received: from localhost (localhost [[UNIX: localhost]]) by redesjm.local (8.13.3/8.13.3/Submit) id j3OAgj6D085600; Sun, 24 Apr 2005 12:42:45 +0200 (CEST) (envelope-from josemi@redesjm.local) From: Jose M Rodriguez To: freebsd-ports@freebsd.org Date: Sun, 24 Apr 2005 12:42:45 +0200 User-Agent: KMail/1.8 References: <20050414111426.775f6afd.lehmann@ans-netz.de> <200504240933.08799.josemi@redesjm.local> <200504241013.26838.ports@dino.sk> In-Reply-To: <200504241013.26838.ports@dino.sk> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200504241242.45611.josemi@redesjm.local> X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-3; AVE: 6.30.0.7; VDF: 6.30.0.116; host: antares.redesjm.local) cc: Milan Obuch Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 10:42:57 -0000 El Domingo, 24 de Abril de 2005 10:13, Milan Obuch escribi=F3: > On Sunday 24 April 2005 09:33, Jose M Rodriguez wrote: > > El S=E1bado, 23 de Abril de 2005 23:33, Oliver Lehmann escribi=F3: > > > Milan Obuch wrote: > > > > On Saturday 23 April 2005 22:27, Oliver Lehmann wrote: > > > > > tomorrow i'll test if installing/deleting with packages works > > > > > as expected (adding/deleting user, sysconftool calls...) > > > > > > > > I did test this - installed meta port, dependency installed > > > > base port and userdb (selected method) port. Adding/deleting > > > > user courier works. To me this looks OK. I will test this > > > > against courier port (0.49 changed). Milan > > > > > > as a port or as a package? I've installed now all ports as > > > package and it looks like everything works as well. Of course, > > > the functional test I can only do with the vchkpw/vpopmail > > > interface. Used with courier-imap and sqwebmail. As far as I can > > > see, it works. > > > > > > Anything left? > > > > At last here, one potential problem arise: > > > > courier-authlib-base doesn't have any passwd components. > > ... which I consider to be good. It should be possible for user to > select which one he wants. > I don't think so. A common user expects couier-authlib be capable of=20 reading system passwd 'out of the box'. The rest must be selectable. > > I think we must take off courier-authlib-pwd and > > courier-authlib-pam and direct build courier-authlib-base with pam > > support. > > I do not agree here. To me this new design is better. I am building > mail servers with virtual hosting and I do not want any unneeded > components installed. Even small ones. > You may take out small component, but this is a system component. > > This makes courier-authlib-base a good substitute of > > courier-authlib in dependencies. > > For this particular problem, we should add a message telling 'no > authentication module installed'. I see here just one problem - base > port/package needs to be installed first, so this test will go to all > ports depending on courier-authlib... Or maybe after installing base > port we could just test the presence of options for meta port, and if > this file/directory does not exist, issue a warning message to the > user. This way we can even add confirmation request to the user. > This may fullfill your needs, but is a really ill system design. This=20 will end with courier-imap and so depends on courier-authlib-pam to=20 gets a minimal working setup. I think that this is better: --without-authcustom \ --without-authshadow \ + --without-authpwd \ + --with-authpam \ > To me this should be enough. If someone reads this message, he/she > should understand without authentication module every attempt fails. > If someone does not read install messages, well, we can't do anything > for him... Milan And you can't to disable authpam load in authdaemon to fullfill your=20 needs. Or are you able to do this without too much effort? Well, can we route the PRs to you? I Expect 'some mail' if=20 courier-authlib can't read system passwd 'out of the box'. =2D- josemi From owner-freebsd-ports@FreeBSD.ORG Sun Apr 24 11:12:00 2005 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F133A16A4CE; Sun, 24 Apr 2005 11:12:00 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C6A1043D1F; Sun, 24 Apr 2005 11:12:00 +0000 (GMT) (envelope-from sergei@FreeBSD.org) Received: from freefall.freebsd.org (sergei@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j3OBC0uu054184; Sun, 24 Apr 2005 11:12:00 GMT (envelope-from sergei@freefall.freebsd.org) Received: (from sergei@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j3OBC0LL054180; Sun, 24 Apr 2005 11:12:00 GMT (envelope-from sergei) Date: Sun, 24 Apr 2005 11:12:00 GMT From: Sergei Kolobov Message-Id: <200504241112.j3OBC0LL054180@freefall.freebsd.org> To: sergei@FreeBSD.org, sergei@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/79094: A lot of changes on qmail master and all slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 11:12:01 -0000 Synopsis: A lot of changes on qmail master and all slave ports Responsible-Changed-From-To: sergei->freebsd-ports Responsible-Changed-By: sergei Responsible-Changed-When: Sun Apr 24 11:10:19 GMT 2005 Responsible-Changed-Why: Reset responsible - I do not have the time to fully test it at the moment. This PR contains a lot of changes and I hope other committers will be able to help Renato in committing the changes. http://www.freebsd.org/cgi/query-pr.cgi?pr=79094 From owner-freebsd-ports@FreeBSD.ORG Sun Apr 24 12:14:06 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2BA616A4CE for ; Sun, 24 Apr 2005 12:14:06 +0000 (GMT) Received: from 62-15-211-171.inversas.jazztel.es (62-15-211-171.inversas.jazztel.es [62.15.211.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id A482C43D49 for ; Sun, 24 Apr 2005 12:14:05 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) j3OCDPNO004436; Sun, 24 Apr 2005 14:13:25 +0200 (CEST) (envelope-from josemi@redesjm.local) Received: by redesjm.local (8.13.3/8.13.3/Submit) id j3OCDNI7053781; Sun, 24 Apr 2005 14:13:23 +0200 (CEST) (envelope-from josemi@redesjm.local) From: Jose M Rodriguez To: Oliver Lehmann Date: Sun, 24 Apr 2005 14:13:22 +0200 User-Agent: KMail/1.8 References: <20050414111426.775f6afd.lehmann@ans-netz.de> <200504240933.08799.josemi@redesjm.local> <20050424134440.37ff5364.lehmann@ans-netz.de> In-Reply-To: <20050424134440.37ff5364.lehmann@ans-netz.de> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200504241413.23396.josemi@redesjm.local> X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-3; AVE: 6.30.0.7; VDF: 6.30.0.116; host: antares.redesjm.local) cc: ports@dino.sk cc: yds@CoolRat.org cc: freebsd-ports@freebsd.org Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 12:14:07 -0000 El Domingo, 24 de Abril de 2005 13:44, Oliver Lehmann escribi=F3: > Jose M Rodriguez wrote: > > At last here, one potential problem arise: > > > > courier-authlib-base doesn't have any passwd components. > > > > I think we must take off courier-authlib-pwd and > > courier-authlib-pam and direct build courier-authlib-base with pam > > support. > > > > This makes courier-authlib-base a good substitute of > > courier-authlib in dependencies. > > No, I think -base shouldn't contain any authentication method. That > should be completely left to the subports. I don't need for example > pam and pwd if I only use vchkpw. You can edit authdaemonrc for that. But, for not making the things longer, you may: =2D edit pkg-descr-base: + courier-authlib-base can't read /etc/passwd, you need courier-authlib-pam for that. + you _really_ need install an authentication module, this is not an optional step. Also, I think an UPDATING entry must be done pointing that ports that=20 depends on this, must need BUILD_DEPENDS on courier-authlib-base and=20 RUN_DEPENDS on courier-authlib-pam to be able of reading system passwd. =2D- josemi From owner-freebsd-ports@FreeBSD.ORG Sun Apr 24 12:31:56 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E9A216A4CE; Sun, 24 Apr 2005 12:31:56 +0000 (GMT) Received: from mailout03.sul.t-online.com (mailout03.sul.t-online.com [194.25.134.81]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7423F43D2D; Sun, 24 Apr 2005 12:31:55 +0000 (GMT) (envelope-from thurners@t-online.de) Received: from fwd25.aul.t-online.de by mailout03.sul.t-online.com with smtp id 1DPgHB-0002nK-01; Sun, 24 Apr 2005 14:31:53 +0200 Received: from xris.fu41.vpn (XGbmI2ZUZeHi-yKbz8dxV8RBhCl6g3n17fXJNJI0DvBvvyrUIfKgro@[217.225.167.120]) by fwd25.sul.t-online.de with esmtp id 1DPgH9-2IfuIi0; Sun, 24 Apr 2005 14:31:51 +0200 Received: from xris.fu41.vpn (localhost [127.0.0.1]) by xris.fu41.vpn (8.13.3/8.13.3) with ESMTP id j3OCVoAY000347; Sun, 24 Apr 2005 14:31:50 +0200 (CEST) (envelope-from stthu@xris.fu41.vpn) Received: (from stthu@localhost) by xris.fu41.vpn (8.13.3/8.13.3/Submit) id j3OCVjkV000346; Sun, 24 Apr 2005 14:31:45 +0200 (CEST) (envelope-from stthu@xris.fu41.vpn) From: thurners@t-online.de To: gnome@FreeBSD.org Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-i4FRXjkchJmw6uaCbLbG" Date: Sun, 24 Apr 2005 14:31:45 +0200 Message-Id: <1114345905.330.8.camel@xris.fu41.vpn> Mime-Version: 1.0 X-Mailer: Evolution 2.2.2 FreeBSD GNOME Team Port X-ID: XGbmI2ZUZeHi-yKbz8dxV8RBhCl6g3n17fXJNJI0DvBvvyrUIfKgro X-TOI-MSGID: 0dd9c16f-07af-4ddd-9a44-48bd10cd2b24 cc: ports@FreeBSD.org Subject: FreeBSD Port: gdm-2.6.0.9 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 12:31:56 -0000 --=-i4FRXjkchJmw6uaCbLbG Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Hi! There is a little typo in the new rcNG startup script. Now it looks like at the console: Local package initialization:Starting GDM But it should look like all the other messages: Local package initialization: Starting GDM ^ with a space -Stefan --=20 GPG-encrypted mail welcome! --> ID:E970FCBE --=-i4FRXjkchJmw6uaCbLbG Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQBCa5GwxNmQVulw/L4RAg+rAKCBgFG/YoTaJeJ+a6V8xI1SkprKdwCfd5vC i+DuKMZroXhha2vt1RJNzvs= =sS79 -----END PGP SIGNATURE----- --=-i4FRXjkchJmw6uaCbLbG-- From owner-freebsd-ports@FreeBSD.ORG Sun Apr 24 13:09:21 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D106016A4CE; Sun, 24 Apr 2005 13:09:21 +0000 (GMT) Received: from integratos.net (mail.integratos.net [80.243.45.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id 050B443D1D; Sun, 24 Apr 2005 13:09:20 +0000 (GMT) (envelope-from tux@pinguru.net) Received: from [80.243.46.153] (account gerrit.beine@pitcom.de HELO [80.243.46.153]) by integratos.net (CommuniGate Pro SMTP 4.1.8) with ESMTP id 12889209; Sun, 24 Apr 2005 15:09:18 +0200 Message-ID: <426B9A74.60500@pinguru.net> Date: Sun, 24 Apr 2005 15:09:08 +0200 From: Gerrit Beine User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050423) X-Accept-Language: en-us, en MIME-Version: 1.0 To: gioria@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: FreeBSD Port: mantis-0.18.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 13:09:21 -0000 Hi, are there any plans to update the mantis port to the new version 1.0.0? The three 0.19.x releases have not been ported and if there is no longer any interest by the maintainer, I'll take the port. So long... Gerrit -- mail tux@pinguru.net icq 123851585 web http://arme-und-beine.de From owner-freebsd-ports@FreeBSD.ORG Sun Apr 24 13:32:54 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89E0E16A4CE for ; Sun, 24 Apr 2005 13:32:54 +0000 (GMT) Received: from avocado.salatschuessel.net (avocado.salatschuessel.net [83.136.81.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63A5243D5C for ; Sun, 24 Apr 2005 13:32:53 +0000 (GMT) (envelope-from lehmann@ans-netz.de) Received: (qmail 86239 invoked by uid 89); 24 Apr 2005 13:32:42 -0000 Received: from unknown (HELO kartoffel.salatschuessel.net) (83.136.81.185) by avocado.salatschuessel.net with SMTP; 24 Apr 2005 13:32:42 -0000 Date: Sun, 24 Apr 2005 15:32:47 +0200 From: Oliver Lehmann To: Jose M Rodriguez Message-Id: <20050424153247.645303ab.lehmann@ans-netz.de> In-Reply-To: <200504241242.45611.josemi@redesjm.local> References: <20050414111426.775f6afd.lehmann@ans-netz.de> <200504240933.08799.josemi@redesjm.local> <200504241013.26838.ports@dino.sk> <200504241242.45611.josemi@redesjm.local> X-Mailer: Sylpheed version 1.9.9 (GTK+ 2.6.7; i386-portbld-freebsd5.3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: ports@dino.sk cc: Yarema cc: freebsd-ports@freebsd.org Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 13:32:54 -0000 Hi Jose, Jose M Rodriguez wrote: > I don't think so. A common user expects couier-authlib be capable of > reading system passwd 'out of the box'. The rest must be selectable. What is a "common user" and how can you know what that user expects? > Well, can we route the PRs to you? I Expect 'some mail' if > courier-authlib can't read system passwd 'out of the box'. As I am the maintainer, you can route them to me, no problem. I'll redirect them to UPDATING where I'll describe that there is no auth. method installed by default and the end-user has to choose a sub-port which fits his needs. When courier-authlib gets split into base and auth. ports this should be done as clean as possible which means not letting some auth methods in the base-port and some not. That would not fit my definition of "clean". I see the point that it may cause confusion "I Installed sqwebmail and it doesn't work, I can't login!" But I don't see a way to prevent that when the seperation should be clean. If I'm getting to much user's feedback that this is to confusing, I might reconsider taking Yarema's Makefile.opt idea. Include that in every port that depends on courier- authlib and choose there what auth. methods to install. But I would say it should just be done now and we'll see what happens. Or we can discuss wnow hat happens w/o getting it done for ages... (imho) -- Oliver Lehmann http://www.pofo.de/ http://wishlist.ans-netz.de/ From owner-freebsd-ports@FreeBSD.ORG Sun Apr 24 14:01:03 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E70C16A4CE for ; Sun, 24 Apr 2005 14:01:03 +0000 (GMT) Received: from avocado.salatschuessel.net (avocado.salatschuessel.net [83.136.81.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6070443D41 for ; Sun, 24 Apr 2005 14:01:02 +0000 (GMT) (envelope-from lehmann@ans-netz.de) Received: (qmail 86937 invoked by uid 89); 24 Apr 2005 14:00:52 -0000 Received: from unknown (HELO kartoffel.salatschuessel.net) (83.136.81.185) by avocado.salatschuessel.net with SMTP; 24 Apr 2005 14:00:52 -0000 Date: Sun, 24 Apr 2005 16:00:57 +0200 From: Oliver Lehmann To: Oliver Lehmann Message-Id: <20050424160057.061d0889.lehmann@ans-netz.de> In-Reply-To: <20050424153247.645303ab.lehmann@ans-netz.de> References: <20050414111426.775f6afd.lehmann@ans-netz.de> <200504240933.08799.josemi@redesjm.local> <200504241013.26838.ports@dino.sk> <200504241242.45611.josemi@redesjm.local> <20050424153247.645303ab.lehmann@ans-netz.de> X-Mailer: Sylpheed version 1.9.9 (GTK+ 2.6.7; i386-portbld-freebsd5.3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: ports@dino.sk cc: josemi@freebsd.jazztel.es cc: freebsd-ports@freebsd.org cc: yds@CoolRat.org Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 14:01:03 -0000 Oliver Lehmann wrote: > I might reconsider taking Yarema's > Makefile.opt idea. Include that in every port that depends on courier- > authlib and choose there what auth. methods to install. Ok, I reconsidered that now ;) I created a Makefile.opt and a Makefile.dep file which can be included in every port that depends on courier-authlib. .if exists(${.CURDIR}/../../security/courier-authlib/Makefile.opt) .include <${.CURDIR}/../../security/courier-authlib/Makefile.opt> .endif .include .if exists(${.CURDIR}/../../security/courier-authlib/Makefile.dep) .include <${.CURDIR}/../../security/courier-authlib/Makefile.dep> .endif This can be put between the ports own OPTIONS= and .if defined(WITH_*) sections (it will honor original OPTIONS) I've renamed the options to AUTH_* to make it possible that the original port specifies it's own LDAP/MYSQL/... OPTION -- Oliver Lehmann http://www.pofo.de/ http://wishlist.ans-netz.de/ From owner-freebsd-ports@FreeBSD.ORG Sun Apr 24 14:07:27 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D83BE16A4CE for ; Sun, 24 Apr 2005 14:07:27 +0000 (GMT) Received: from 62-15-211-171.inversas.jazztel.es (62-15-211-171.inversas.jazztel.es [62.15.211.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73C6F43D46 for ; Sun, 24 Apr 2005 14:07:26 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) j3OE6EP2004692; Sun, 24 Apr 2005 16:06:14 +0200 (CEST) (envelope-from josemi@redesjm.local) Received: from localhost (localhost [[UNIX: localhost]]) by redesjm.local (8.13.3/8.13.3/Submit) id j3OE5XCj054310; Sun, 24 Apr 2005 16:05:33 +0200 (CEST) (envelope-from josemi@redesjm.local) From: Jose M Rodriguez To: Oliver Lehmann Date: Sun, 24 Apr 2005 16:05:32 +0200 User-Agent: KMail/1.8 References: <20050414111426.775f6afd.lehmann@ans-netz.de> <200504241413.23396.josemi@redesjm.local> <20050424151838.0046502c.lehmann@ans-netz.de> In-Reply-To: <20050424151838.0046502c.lehmann@ans-netz.de> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200504241605.32882.josemi@redesjm.local> X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-3; AVE: 6.30.0.7; VDF: 6.30.0.116; host: antares.redesjm.local) cc: ports@dino.sk cc: yds@CoolRat.org cc: freebsd-ports@freebsd.org Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 14:07:28 -0000 El Domingo, 24 de Abril de 2005 15:18, Oliver Lehmann escribi=F3: > Jose M Rodriguez wrote: > > Also, I think an UPDATING entry must be done pointing that ports > > that depends on this, must need BUILD_DEPENDS on > > courier-authlib-base and RUN_DEPENDS on courier-authlib-pam to be > > able of reading system passwd. > > I still don't see the point why we must force pam or pwd.db support > to install? Why not left the choise to the user what "plugin" to > install? A user who uses MySQL don't need PAM or pwd.db support same > for me, I use vpopmail's user db. Well, I try this slowly three system auth modules come with courier-authlib libauthpwd -> for systems with old system 7 passwd, with real readable=20 passwords in /etc/passwd (very old systems, not FreeBSD) libauthshadow -> for systems with system V shadow passwords, but without=20 a pam lib (ej: Slackware linux). libauthpam -> for systems with a pam library (FreeBSD). And just one of this must be implemented. I think we only need=20 libauthpam, allthough libauthpwd may build and install (but it isn't=20 able to authtenticate). without this, you can't authenticate or locate system accounts. this is=20 a fact. Now, take out your 'courier-authlib point of view' and take this from a=20 'courier-imap point of view' If you RUN_DEPENDS on courier-authlib-base instead of=20 courier-authlib-pam, you will end with a default courier-imap install=20 that isn't able to read system accounts. I don't think this is=20 acceptable. This is why I point to make courier-authlib-base with authpam, in the=20 sense you can get from the actual pkg-descr. This is not any set of auth modules, just the one base module needed to=20 read system accounts. And if you fill this dangerous or not needed,=20 you can easy tweak authdaemonrc to not load the authpam module. I think that it easy expect a pro user implementing a virtual mail=20 system have the resources to edit authdaemonrc that a home user trying=20 to install courier-imap can locale the real need of installing=20 courier-authlib-pam to get his system accounts working. =2D- josemi From owner-freebsd-ports@FreeBSD.ORG Sun Apr 24 14:53:23 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CE1F16A4CE for ; Sun, 24 Apr 2005 14:53:23 +0000 (GMT) Received: from dppl.com (sapas.dppl.net [216.182.10.231]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E3BB43D1F for ; Sun, 24 Apr 2005 14:53:22 +0000 (GMT) (envelope-from yds@CoolRat.org) Received: from [192.168.1.69] (pcp0011284575pcs.union01.nj.comcast.net [69.248.144.22]) (AUTH: PLAIN yds, TLS: TLSv1/SSLv3,256bits,AES256-SHA) by dppl.com with esmtp; Sun, 24 Apr 2005 10:53:22 -0400 Date: Sun, 24 Apr 2005 10:53:21 -0400 From: Yarema To: Oliver Lehmann Message-ID: <47BCF2A3F4CF4E20338DF86B@tuber.coolrat.org> In-Reply-To: <20050424135657.7abf608c.lehmann@ans-netz.de> References: <20050414111426.775f6afd.lehmann@ans-netz.de> <20050423032503.4e7b0b98.lehmann@ans-netz.de> <88C95BEA8121F2497BEA1AB5@tuber.coolrat.org> <20050424135657.7abf608c.lehmann@ans-netz.de> X-Mailer: Mulberry/3.1.6 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline cc: ports@freebsd.org cc: ports@dino.sk cc: josemi@freebsd.jazztel.es Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 14:53:23 -0000 --On Sunday, April 24, 2005 13:56:57 +0200 Oliver Lehmann wrote: > Yarema wrote: > >> Nice work with the patches. Once again I have a variant on what you >> posted with some notes and fixups at >> > > Ok, I think I got all changes you mentioned. > >> This one should be easy to follow. The main difference is in how the >> courier-authlib and courier-authlib-base are organized. > > Ok... but that I don't changed ;) I like it how it is now (meta-port > shares the .ext file) > >> I think this is a cleaner organization which solves most of the issues >> I've raised and still works exactly the same as the last version you >> posted. > > ok, what issues are now left where courier-authlib port shares the > Makefile.ext file? What I can change is that the subports are only > including courier-authlib/Makefile.ext not courier-authlib/Makefile. But > I really think it should stay in courier-authlib/ No, the Makefile.ext vs.the way I organized it wasn't what I was referring to. That's just an alternative I thought might be easier to follow. And I'd rather offer code than lots and lots of decriptions of what I'm talking about. :) Sorry I wasn't so clear. The issue I've been raising over and over is to *not* have a @pkgdep recoreded for any of the plugins. I was showing how to do that by using BUILD_DEPENDS instead of RUN_DEPENDS to force install of the plugins. This allows the flexibility to install and uninstall plugins without having to fix up any DEPENDS. No package should record a DEPENDS on any of the plugin ports otherwise this flexibility disappears. However OPTIONS selected will be recorded so that future reinstalls of this meta port or any ports which depend on it will ensure that your chosen plugins are installed. -- Yarema http://yds.CoolRat.org From owner-freebsd-ports@FreeBSD.ORG Sun Apr 24 15:12:43 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 709E716A4CF for ; Sun, 24 Apr 2005 15:12:43 +0000 (GMT) Received: from mail.logicx.net (coda.LogicX.net [69.9.186.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CEFF43D5E for ; Sun, 24 Apr 2005 15:12:42 +0000 (GMT) (envelope-from FreeBSD@LogicX.us) Received: (qmail 80055 invoked by uid 89); 24 Apr 2005 15:13:13 -0000 Received: from unknown (HELO ?192.168.1.18?) (LogicX@LogicX.us@69.162.20.202) by mail.logicx.net with (DHE-RSA-AES256-SHA encrypted) SMTP; 24 Apr 2005 15:13:13 -0000 Message-ID: <426BB774.2060104@LogicX.us> Date: Sun, 24 Apr 2005 11:12:52 -0400 From: Mike Schroll Organization: LogicX Network Services User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: lev@freebsd.org, ports@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: FreeBSD Port: subversion-1.1.4 amd64/opteron -fPIC failure X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: FreeBSD@LogicX.us List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 15:12:43 -0000 I get the following build error on FreeBSD-5.4-RC3 on an amd64 (opteron) system. Running Mkbootstrap for SVN::_Core () chmod 644 _Core.bs rm -f blib/arch/auto/SVN/_Core/_Core.so LD_RUN_PATH="/usr/ports/devel/subversion/work/subversion-1.1.4/subversion/libsvn_client/.libs:/usr/ports/devel/subversion/work/subversion-1.1.4/subversion/libsvn_delta/.libs:/usr/ports/devel/subversion/work/subversion-1.1.4/subversion/libsvn_fs/.libs:/usr/ports/devel/subversion/work/subversion-1.1.4/subversion/libsvn_ra/.libs:/usr/ports/devel/subversion/work/subversion-1.1.4/subversion/libsvn_repos/.libs:/usr/ports/devel/subversion/work/subversion-1.1.4/subversion/libsvn_wc/.libs:/usr/ports/devel/subversion/work/subversion-1.1.4/subversion/libsvn_diff/.libs:/usr/ports/devel/subversion/work/subversion-1.1.4/subversion/libsvn_subr/.libs" cc -shared -L/usr/local/lib core.o ../libsvn_swig_perl/.libs/libsvn_swig_perl-1.a -o blib/arch/auto/SVN/_Core/_Core.so -L/usr/ports/devel/subversion/work/subversion-1.1.4/subversion/bindings/swig/perl/libsvn_swig_perl/.libs -L/usr/ports/devel/subversion/work/subversion-1.1.4/subversion/libsvn_client/.libs -L/usr/ports/devel/subversion/work/subversion-1.1.4/subversion/libsvn_delta/.libs -L/usr/ports/devel/subversion/work/subversion-1.1.4/subversion/libsvn_fs/.libs -L/usr/ports/devel/subversion/work/subversion-1.1.4/subversion/libsvn_ra/.libs -L/usr/ports/devel/subversion/work/subversion-1.1.4/subversion/libsvn_repos/.libs -L/usr/ports/devel/subversion/work/subversion-1.1.4/subversion/libsvn_wc/.libs -L/usr/ports/devel/subversion/work/subversion-1.1.4/subversion/libsvn_diff/.libs -L/usr/ports/devel/subversion/work/subversion-1.1.4/subversion/libsvn_subr/.libs -L/usr/ports/devel/subversion/work/subversion-1.1.4/subversion/libsvn_ra_local/.libs -L/usr/ports/devel/subversion/work/subversion-1.1.4/subversion/libsvn_ra_svn/.libs -L/usr/ports/devel/subversion/work/subversion-1.1.4/subversion/libsvn_ra_dav/.libs -L/usr/ports/devel/subversion/work/subversion-1.1.4/subversion/libsvn_fs_base/.libs -L/usr/ports/devel/subversion/work/subversion-1.1.4/subversion/libsvn_fs_fs/.libs -lsvn_client-1 -lsvn_delta-1 -lsvn_fs-1 -lsvn_ra-1 -lsvn_repos-1 -lsvn_wc-1 -lsvn_diff-1 -lsvn_subr-1 /usr/bin/ld: ../libsvn_swig_perl/.libs/libsvn_swig_perl-1.a(swigutil_pl.o): relocation R_X86_64_32 can not be used when making a shared object; recompile with -fPIC ../libsvn_swig_perl/.libs/libsvn_swig_perl-1.a: could not read symbols: Bad value *** Error code 1 Stop in /usr/ports/devel/subversion/work/subversion-1.1.4/subversion/bindings/swig/perl/native. *** Error code 1 Stop in /usr/ports/devel/subversion/work/subversion-1.1.4. *** Error code 1 Stop in /usr/ports/devel/subversion. I have the following set in make.conf CFLAGS?= -Os -fPIC -pipe The issue is resolved when I set it to CFLAGS= -Os -fPIC -pipe This should be an easy fix to make the port either use the CFLAGS, or just set -fPIC on the appropriate architectures. -Mike Schroll -- Applied Networking System Administration Major Rochester Institute of Technology Rochester, NY Information Sciences and Technology Major Penn State University University Park, PA FreeBSD@LogicX.us AIM: L0g1cX http://MSchroll.com From owner-freebsd-ports@FreeBSD.ORG Sun Apr 24 15:59:40 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F54E16A4CE for ; Sun, 24 Apr 2005 15:59:40 +0000 (GMT) Received: from dppl.com (sapas.dppl.com [216.182.10.231]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E8C143D2F for ; Sun, 24 Apr 2005 15:59:39 +0000 (GMT) (envelope-from yds@CoolRat.org) Received: from [192.168.1.69] (pcp0011284575pcs.union01.nj.comcast.net [69.248.144.22]) (AUTH: PLAIN yds, TLS: TLSv1/SSLv3,256bits,AES256-SHA) by dppl.com with esmtp; Sun, 24 Apr 2005 11:59:39 -0400 Date: Sun, 24 Apr 2005 11:59:38 -0400 From: Yarema To: Jose M Rodriguez , Oliver Lehmann , freebsd-ports@freebsd.org Message-ID: <0561D730E8127604A75416F9@tuber.coolrat.org> In-Reply-To: <200504241605.32882.josemi@redesjm.local> References: <20050414111426.775f6afd.lehmann@ans-netz.de> <200504241413.23396.josemi@redesjm.local> <20050424151838.0046502c.lehmann@ans-netz.de> <200504241605.32882.josemi@redesjm.local> X-Mailer: Mulberry/3.1.6 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline cc: ports@dino.sk Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 15:59:40 -0000 --On Sunday, April 24, 2005 16:05:32 +0200 Jose M Rodriguez=20 wrote: > El Domingo, 24 de Abril de 2005 15:18, Oliver Lehmann escribi=F3: >> Jose M Rodriguez wrote: >> > Also, I think an UPDATING entry must be done pointing that ports >> > that depends on this, must need BUILD_DEPENDS on >> > courier-authlib-base and RUN_DEPENDS on courier-authlib-pam to be >> > able of reading system passwd. >> >> I still don't see the point why we must force pam or pwd.db support >> to install? Why not left the choise to the user what "plugin" to >> install? A user who uses MySQL don't need PAM or pwd.db support same >> for me, I use vpopmail's user db. > > Well, I try this slowly > > three system auth modules come with courier-authlib > > libauthpwd -> for systems with old system 7 passwd, with real readable > passwords in /etc/passwd (very old systems, not FreeBSD) > > libauthshadow -> for systems with system V shadow passwords, but without > a pam lib (ej: Slackware linux). > > libauthpam -> for systems with a pam library (FreeBSD). > > And just one of this must be implemented. I think we only need > libauthpam, allthough libauthpwd may build and install (but it isn't > able to authtenticate). > > without this, you can't authenticate or locate system accounts. this is > a fact. > > Now, take out your 'courier-authlib point of view' and take this from a > 'courier-imap point of view' > > If you RUN_DEPENDS on courier-authlib-base instead of > courier-authlib-pam, you will end with a default courier-imap install > that isn't able to read system accounts. I don't think this is > acceptable. > > This is why I point to make courier-authlib-base with authpam, in the > sense you can get from the actual pkg-descr. > > This is not any set of auth modules, just the one base module needed to > read system accounts. And if you fill this dangerous or not needed, > you can easy tweak authdaemonrc to not load the authpam module. > > I think that it easy expect a pro user implementing a virtual mail > system have the resources to edit authdaemonrc that a home user trying > to install courier-imap can locale the real need of installing > courier-authlib-pam to get his system accounts working. Thank you, josemi. That's pretty much been my stance on this from day=20 one. You spelled it out quite clearly. Oliver, your description of how libauthpwd works is incorrect. You=20 describe it as offering "/etc/pwd.db support" which implies that it works=20 directly with that file. However the description in=20 reads as follows: The authpwd authentication module This modules obtains account information and passwords from the /etc/passwd = file. NOTE: This module doesn't actually read the /etc/passwd file, it uses the C = library's getpw() functions. The C library implementation could use any=20 mechanism to obtain the equivalent information. Which means that if one has NIS set up the account info would be gotten=20 from there. etc. and if you lookup the man page for getpw(3) two things=20 jump out: 1) the library this function lives in is libcompat 2) the getpw() function is made obsolete by getpwuid(3) Further down in the authpam section of=20 we get the=20 following: The authpam authentication module This modules uses the system's PAM library (pluggable authentication=20 modules) for authentication. This is, essentially, a way to use existing=20 PAM modules for authentication. Note, however, that the authenticated=20 account's home directory, userid and groupid are still read from the=20 /etc/passwd file, since PAM functionality is limited to validating account=20 passwords. NOTE: The specific configuration steps differ from system to system.=20 Consult the system documentation for more information. It might be tempting = to throw in a towel and use authshadow or authpwd if you cannot figure out=20 how to *install* PAM support, however that is not advisable. It is highly=20 recommended to use authpam wherever the PAM library is available. I added the emphasis on *install*. Well, we *can* figure out how to=20 install authpam and there is no OS_VERSION of FreeBSD supported by the=20 ports system which does not contain PAM in the base OS. Which makes=20 authpwd completely undesirable anywhere near a FreeBSD system. As for having authpam in the base courier-authlib port. The library is=20 only 6476 bytes on my build. There's more space wasted leaving the lib*.a=20 files in the base install. So space is not an argument. The argument=20 seems to be that you only use vchkpw some other user only uses=20 userdb,ldap,mysql,pgsql and authpam is not needed for you. That's what=20 authmodulelist is for in authdaemonrc -- to specifically list only the=20 modules you want considered for user authentication. Having authpam=20 installed as part of the base courier-authlib won't hurt you. But having a = courier-authlib which is not capable of doing anything out-of-the-box might = be painfull for someone looking at courier for the first time. Having to=20 find out what's causing the pain from an UPDATING file might cause further=20 frustration. The already provided documentation is painful enough. Also take a look at courier-authlib.spec to see how the packaging is=20 organized on an rpm system. There's no separate authpam or authpwd=20 package. Authentication to system accounts is included in the "base"=20 install. The subpackages are split because they require extra library=20 dependencies one might not want when all they need is a working=20 courier-authlib. Not because they qualify as auth modules. That's one of=20 the reasons you had to write extra patches to prevent authpwd form being=20 installed. courier-authlib was never intended by its author to be=20 installed without a system authmodule. courier-authlib.spec and you=20 needing to patch it to accomplish that is evidence enough. To sum it up not including authpam is more difficult to maintain and the=20 benefit is rather negligible: having a pure courier-authlib which only=20 contains the one authmodule you selected. The benefit of including authpam = in the base is no patching to remove authpwd from the base install,=20 --with-authpam does that for you and fewer authmodules for a user to=20 consider: base courier-authlib for system account authentication -- any of=20 the plugins to use anything above and beyond system accounts. For some=20 authpam would be sufficient even if they wanna use LDAP since it's possible = to configure PAM that way. --=20 Yarema http://yds.CoolRat.org From owner-freebsd-ports@FreeBSD.ORG Sun Apr 24 16:00:20 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A461216A4CE for ; Sun, 24 Apr 2005 16:00:20 +0000 (GMT) Received: from 62-15-211-171.inversas.jazztel.es (62-15-211-171.inversas.jazztel.es [62.15.211.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id 675D943D1D for ; Sun, 24 Apr 2005 16:00:19 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) j3OFxVKI004917; Sun, 24 Apr 2005 17:59:31 +0200 (CEST) (envelope-from josemi@redesjm.local) Received: from localhost (localhost [[UNIX: localhost]]) by redesjm.local (8.13.3/8.13.3/Submit) id j3OFxSnO060084; Sun, 24 Apr 2005 17:59:28 +0200 (CEST) (envelope-from josemi@redesjm.local) From: Jose M Rodriguez To: Oliver Lehmann Date: Sun, 24 Apr 2005 17:59:26 +0200 User-Agent: KMail/1.8 References: <20050414111426.775f6afd.lehmann@ans-netz.de> <47BCF2A3F4CF4E20338DF86B@tuber.coolrat.org> <20050424175609.570c71f6.lehmann@ans-netz.de> In-Reply-To: <20050424175609.570c71f6.lehmann@ans-netz.de> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200504241759.27811.josemi@redesjm.local> X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-3; AVE: 6.30.0.7; VDF: 6.30.0.116; host: antares.redesjm.local) cc: ports@freebsd.org cc: ports@dino.sk cc: Yarema cc: josemi@freebsd.jazztel.es Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 16:00:20 -0000 El Domingo, 24 de Abril de 2005 17:56, Oliver Lehmann escribi=F3: > Yarema wrote: > > Sorry I wasn't so clear. The issue I've been raising over and over > > is to *not* have a @pkgdep recoreded for any of the plugins. I was > > showing how to do that by using BUILD_DEPENDS instead of > > RUN_DEPENDS to force install of the plugins. > > Yeah, that is cool, I adopted this ;) maintain authpam as a RUN_DEPENDS or stock pkg will ship without pam. > > > However OPTIONS selected will be recorded so that future reinstalls > > of this meta port or any ports which depend on it will ensure that > > your chosen plugins are installed. > > That is right, but no port will depend on that meta-port ;) =2D- josemi From owner-freebsd-ports@FreeBSD.ORG Sun Apr 24 16:18:49 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DDF2816A4CE for ; Sun, 24 Apr 2005 16:18:49 +0000 (GMT) Received: from 62-15-211-171.inversas.jazztel.es (62-15-211-171.inversas.jazztel.es [62.15.211.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D17843D48 for ; Sun, 24 Apr 2005 16:18:49 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) j3OGIAEJ004964; Sun, 24 Apr 2005 18:18:10 +0200 (CEST) (envelope-from josemi@redesjm.local) Received: from localhost (localhost [[UNIX: localhost]]) by redesjm.local (8.13.3/8.13.3/Submit) id j3OGI9QU081016; Sun, 24 Apr 2005 18:18:09 +0200 (CEST) (envelope-from josemi@redesjm.local) From: Jose M Rodriguez To: Oliver Lehmann Date: Sun, 24 Apr 2005 18:18:08 +0200 User-Agent: KMail/1.8 References: <20050414111426.775f6afd.lehmann@ans-netz.de> <200504241605.32882.josemi@redesjm.local> <20050424175819.7c4946d2.lehmann@ans-netz.de> In-Reply-To: <20050424175819.7c4946d2.lehmann@ans-netz.de> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200504241818.09510.josemi@redesjm.local> X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-3; AVE: 6.30.0.7; VDF: 6.30.0.116; host: antares.redesjm.local) cc: ports@dino.sk cc: yds@CoolRat.org cc: freebsd-ports@freebsd.org Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 16:18:50 -0000 El Domingo, 24 de Abril de 2005 17:58, Oliver Lehmann escribi=F3: > Jose M Rodriguez wrote: > > If you RUN_DEPENDS on courier-authlib-base instead of > > I've changed that so you can choose the auth modules you want when > installing courier-imap, sqwebmail and later courier. PAM is choosed > by default. I don't think this is a good working plan. All this will only work for=20 ports, not for packages. But, while default packages for courier-imap and so ship with =20 courier-authlib-pam run-depends, on objections on this. =2D- josemi From owner-freebsd-ports@FreeBSD.ORG Sun Apr 24 16:55:32 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C166216A4CF for ; Sun, 24 Apr 2005 16:55:32 +0000 (GMT) Received: from avocado.salatschuessel.net (avocado.salatschuessel.net [83.136.81.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2E7D43D48 for ; Sun, 24 Apr 2005 16:55:31 +0000 (GMT) (envelope-from lehmann@ans-netz.de) Received: (qmail 91666 invoked by uid 89); 24 Apr 2005 16:55:22 -0000 Received: from unknown (HELO kartoffel.salatschuessel.net) (83.136.81.185) by avocado.salatschuessel.net with SMTP; 24 Apr 2005 16:55:22 -0000 Date: Sun, 24 Apr 2005 18:55:28 +0200 From: Oliver Lehmann To: freebsd-ports@freebsd.org Message-Id: <20050424185528.1799cd84.lehmann@ans-netz.de> In-Reply-To: <20050424184306.798fb356.lehmann@ans-netz.de> References: <20050414111426.775f6afd.lehmann@ans-netz.de> <200504241413.23396.josemi@redesjm.local> <20050424151838.0046502c.lehmann@ans-netz.de> <200504241605.32882.josemi@redesjm.local> <0561D730E8127604A75416F9@tuber.coolrat.org> <20050424184306.798fb356.lehmann@ans-netz.de> X-Mailer: Sylpheed version 1.9.9 (GTK+ 2.6.7; i386-portbld-freebsd5.3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: ports@dino.sk cc: yds@CoolRat.org cc: josemi@freebsd.jazztel.es Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 16:55:32 -0000 Oliver Lehmann wrote: > Ok, you both convinced me. I'll change -base (allready done, I'm testing) It's uploaded now. I also changed sysconftool to a build-dep since we need ed during the install target and not later, and we don't need it after the installation for a running courier-authlib. -- Oliver Lehmann http://www.pofo.de/ http://wishlist.ans-netz.de/ From owner-freebsd-ports@FreeBSD.ORG Sun Apr 24 17:30:55 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 78FA716A4CE for ; Sun, 24 Apr 2005 17:30:55 +0000 (GMT) Received: from 62-15-211-171.inversas.jazztel.es (62-15-211-171.inversas.jazztel.es [62.15.211.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12D0243D58 for ; Sun, 24 Apr 2005 17:30:54 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) j3OHU1CH005114; Sun, 24 Apr 2005 19:30:01 +0200 (CEST) (envelope-from josemi@redesjm.local) Received: from localhost (localhost [[UNIX: localhost]]) by redesjm.local (8.13.3/8.13.3/Submit) id j3OHTw1Y026343; Sun, 24 Apr 2005 19:29:58 +0200 (CEST) (envelope-from josemi@redesjm.local) From: Jose M Rodriguez To: Oliver Lehmann Date: Sun, 24 Apr 2005 19:29:56 +0200 User-Agent: KMail/1.8 References: <20050414111426.775f6afd.lehmann@ans-netz.de> <0561D730E8127604A75416F9@tuber.coolrat.org> <20050424184306.798fb356.lehmann@ans-netz.de> In-Reply-To: <20050424184306.798fb356.lehmann@ans-netz.de> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200504241929.57736.josemi@redesjm.local> X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-3; AVE: 6.30.0.7; VDF: 6.30.0.116; host: antares.redesjm.local) cc: ports@dino.sk cc: Yarema cc: freebsd-ports@freebsd.org Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 17:30:55 -0000 El Domingo, 24 de Abril de 2005 18:43, Oliver Lehmann escribi=F3: > Yarema wrote: > > To sum it up not including authpam is more difficult to maintain > > and the benefit is rather negligible: having a pure courier-authlib > > which only contains the one authmodule you selected. The benefit > > of including authpam in the base is no patching to remove authpwd > > from the base install, --with-authpam does that for you and fewer > > authmodules for a user to consider: base courier-authlib for system > > account authentication -- any of the plugins to use anything above > > and beyond system accounts. For some authpam would be sufficient > > even if they wanna use LDAP since it's possible to configure PAM > > that way. > > Ok, you both convinced me. I'll change -base (allready done, I'm > testing) so it will install libauthpam, courier-authlib-pam will be > removed. But I think libauthpwd could stay as seperate port. Most > users (No user?) won't need it because of PAM imho. I can't realize what can you get from courier-authlib-pwd that you can't=20 get from libauthpam. Ah, yes, you can get some mail from a novice asking you why this ports=20 exist. +12000 ports are enough for me. Well, I'm finish a working set with courier-authlib-pam and=20 courier-authlib-pwd, but I'll rework this without them. I also made some other changes: =2D maintain couier-authlib under mail: due this is now, more or less, a tribute to what exist, we may live without moving this to security. =2D split makefiles in: Makefile -> for the metaport selector Makefile.ext -> imported from modules Makefile.inc -> imported from Makefile and Makelife.ext =2D modules (Makefile): MASTERDIR=3D ${CURDIR}/../../mail/courier-authlib .include "${MASTERDIR}/Makefile.ext" so modules are ready to be placed in any cathegory, but they must define his CATEGORIES before. =2D Makefile: CONFLICTS=3D courier-0.45* add support for WITH_GDBM env add detection of USERDB and USERGDBM collision in options =2D Makefile.ext add support for USERDB env add support for WITH_SYSLOG_FACILITY env CONFLICTS=3D courier-0.45* =2D- josemi From owner-freebsd-ports@FreeBSD.ORG Sun Apr 24 17:48:59 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD7D716A4CE for ; Sun, 24 Apr 2005 17:48:59 +0000 (GMT) Received: from mail.logicx.net (coda.LogicX.net [69.9.186.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E20C43D1F for ; Sun, 24 Apr 2005 17:48:59 +0000 (GMT) (envelope-from FreeBSD@LogicX.us) Received: (qmail 22046 invoked by uid 89); 24 Apr 2005 17:49:32 -0000 Received: from unknown (HELO ?192.168.1.18?) (LogicX@LogicX.us@69.162.20.202) by mail.logicx.net with (DHE-RSA-AES256-SHA encrypted) SMTP; 24 Apr 2005 17:49:32 -0000 Message-ID: <426BDC16.4050101@LogicX.us> Date: Sun, 24 Apr 2005 13:49:10 -0400 From: Mike Schroll Organization: LogicX Network Services User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: r.vdooren@snow.nl Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: FreeBSD Port: rsnapshot-1.1.6 - outdated & insecure X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: FreeBSD@LogicX.us List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 17:48:59 -0000 The latest version of this port is 1.2.1, which fixes the following security vulnerability: http://www.rsnapshot.org/security/2005/001.html This is present in the current 1.1.6 port in the ports tree. I've already notified the FreeBSD Security team concerning this, so hopefully it'll be added to vuXML shortly -- in the meantime, I suggest updating this port so users can upgrade to a secure version. -Mike Schroll -- Applied Networking System Administration Major Rochester Institute of Technology Rochester, NY Information Sciences and Technology Major Penn State University University Park, PA FreeBSD@LogicX.us AIM: L0g1cX http://MSchroll.com From owner-freebsd-ports@FreeBSD.ORG Sun Apr 24 18:08:47 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 90C8E16A4CE for ; Sun, 24 Apr 2005 18:08:47 +0000 (GMT) Received: from 62-15-211-171.inversas.jazztel.es (62-15-211-171.inversas.jazztel.es [62.15.211.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id 953B743D39 for ; Sun, 24 Apr 2005 18:08:46 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) j3OI88fA005197; Sun, 24 Apr 2005 20:08:08 +0200 (CEST) (envelope-from josemi@redesjm.local) Received: from localhost (localhost [[UNIX: localhost]]) by redesjm.local (8.13.3/8.13.3/Submit) id j3OI88t6051176; Sun, 24 Apr 2005 20:08:08 +0200 (CEST) (envelope-from josemi@redesjm.local) From: Jose M Rodriguez To: Oliver Lehmann Date: Sun, 24 Apr 2005 20:08:07 +0200 User-Agent: KMail/1.8 References: <20050414111426.775f6afd.lehmann@ans-netz.de> <200504241929.57736.josemi@redesjm.local> <20050424194714.6426c457.lehmann@ans-netz.de> In-Reply-To: <20050424194714.6426c457.lehmann@ans-netz.de> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200504242008.08143.josemi@redesjm.local> X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-3; AVE: 6.30.0.7; VDF: 6.30.0.116; host: antares.redesjm.local) cc: ports@dino.sk cc: yds@CoolRat.org cc: freebsd-ports@freebsd.org Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 18:08:47 -0000 El Domingo, 24 de Abril de 2005 19:47, Oliver Lehmann escribi=F3: > Jose M Rodriguez wrote: > > I can't realize what can you get from courier-authlib-pwd that you > > can't get from libauthpam. > > Thats exactly the point why it won't be installed by default. I can > only think of rare cases (I don't want PAM because of ). > > > Ah, yes, you can get some mail from a novice asking you why this > > ports exist. +12000 ports are enough for me. > > That is not your truth, is it? the number of ports is no argument. > > I'll stop this discussing now since I feel it is the time to get it > done. I'l request repocopies and after that I'll commit it. I think you missed the point. You may do libauthpam with -base or in a=20 courier-authlib-pam. I can live well with both ways. Just choose one. =20 But I can't see any reason to support libauthpwd. If we do, I'll ask=20 you why we don't support libauthshadow. As I point before, libauthpwd, libauthshadow and libauthpam are three=20 modules to choose the one that better fits in your system. And, in a=20 =46reeBSD system from 4.x and up, this is libauthpam. I still have the feeling that you suppouses some inter-dependencies=20 between those modules. Allthough all three share some code, they are=20 really independent. I'll finish my actual work and mail/post it as I describe before. Take=20 what you like from this. =2D- josemi =20 From owner-freebsd-ports@FreeBSD.ORG Sun Apr 24 19:21:38 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77EF416A4CE for ; Sun, 24 Apr 2005 19:21:38 +0000 (GMT) Received: from mail.gmx.net (pop.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id CC50E43D46 for ; Sun, 24 Apr 2005 19:21:37 +0000 (GMT) (envelope-from 5-d@gmx.net) Received: (qmail invoked by alias); 24 Apr 2005 19:21:36 -0000 Received: from p54BE56A4.dip.t-dialin.net (EHLO [84.190.86.164]) [84.190.86.164] by mail.gmx.net (mp023) with SMTP; 24 Apr 2005 21:21:36 +0200 X-Authenticated: #103696 Message-ID: <426BF1BA.5080309@gmx.net> Date: Sun, 24 Apr 2005 21:21:30 +0200 From: michael schamber <5-d@gmx.net> User-Agent: Mozilla Thunderbird 0.7.3 (X11/20040808) X-Accept-Language: en-us, en MIME-Version: 1.0 To: patrick li Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 cc: ports@FreeBSD.org Subject: freebsd: port: astro/starplot: www link correction X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 19:21:38 -0000 hello patrick, the www link of the astro/starplot port points to a wrong url: it should be http://www.starplot.org/ instead of http://www.starplot.com/ it would be nice if you apply this small fix. best regard, michael. From owner-freebsd-ports@FreeBSD.ORG Sun Apr 24 19:21:47 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9DCE916A4CE for ; Sun, 24 Apr 2005 19:21:47 +0000 (GMT) Received: from mail.gmx.net (pop.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 0AA7F43D39 for ; Sun, 24 Apr 2005 19:21:47 +0000 (GMT) (envelope-from 5-d@gmx.net) Received: (qmail invoked by alias); 24 Apr 2005 19:21:45 -0000 Received: from p54BE56A4.dip.t-dialin.net (EHLO [84.190.86.164]) [84.190.86.164] by mail.gmx.net (mp006) with SMTP; 24 Apr 2005 21:21:45 +0200 X-Authenticated: #103696 Message-ID: <426BF1C2.7020905@gmx.net> Date: Sun, 24 Apr 2005 21:21:38 +0200 From: michael schamber <5-d@gmx.net> User-Agent: Mozilla Thunderbird 0.7.3 (X11/20040808) X-Accept-Language: en-us, en MIME-Version: 1.0 To: marcus@FreeBSD.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 cc: ports@FreeBSD.org Subject: freebsd: port: gnome-swallow: www link correction X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 19:21:47 -0000 hello marcus, the www link of the x11/gnome-swallow port points to a wrong url: instead of http://www-unix.oit.umass.edu/~tetron/technology/swallow/ it should be http://interreality.org/~tetron/technology/swallow/ as also listed in master sites. it would be nice if you apply this small fix. best regard, michael. From owner-freebsd-ports@FreeBSD.ORG Sun Apr 24 19:30:58 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 48DAA16A4CE for ; Sun, 24 Apr 2005 19:30:58 +0000 (GMT) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.200]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0000D43D41 for ; Sun, 24 Apr 2005 19:30:57 +0000 (GMT) (envelope-from jon.drews@gmail.com) Received: by zproxy.gmail.com with SMTP id 34so2019107nzf for ; Sun, 24 Apr 2005 12:30:57 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=CZWk8DaMzxaSAzpT/BZZYR/Amk8AxCzi+0NCtz6hAnE1RxWyv5MJ77KxH3AqPb/xKErtw8SeUQAua6CkJZUm6+2t5643m1PiOBE/PQDnCgNDBY/2Y1v4KUz+LeBg+rct/XKGd9E3mIxSBQDICWppwxPY/jXalCFFBzGb/NvGQJE= Received: by 10.36.9.5 with SMTP id 5mr431407nzi; Sun, 24 Apr 2005 12:30:57 -0700 (PDT) Received: by 10.36.59.20 with HTTP; Sun, 24 Apr 2005 12:30:57 -0700 (PDT) Message-ID: <8cb27cbf0504241230dac6e44@mail.gmail.com> Date: Sun, 24 Apr 2005 13:30:57 -0600 From: Jon Drews To: FreeBSD Ports Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Subject: [HEADS UP] Submitting update for math/gsl X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jon Drews List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 19:30:58 -0000 Port: math/gsl Hello: I am sending in the PR for the update of math/gsl from version 1.5 to 1.6, on Monday, 25th April. The ports math/yacas, cad/gmsh, and math/ruby-gsl depend on it. I will be sending in patches for the YaCaS and gmsh ports. I have written the maintainer, knu@, concerning ruby-gsl. Kind regards, Jon From owner-freebsd-ports@FreeBSD.ORG Sun Apr 24 20:57:40 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87A9816A4CE for ; Sun, 24 Apr 2005 20:57:40 +0000 (GMT) Received: from smtp.io.com (smtp.io.com [209.198.128.91]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24E4643D53 for ; Sun, 24 Apr 2005 20:57:40 +0000 (GMT) (envelope-from eighner@io.com) Received: from io.com (206-224-83-161-dialup.io.com [206.224.83.161]) by smtp.io.com (8.13.3/8.13.1) with SMTP id j3OKvc1O025246 for ; Sun, 24 Apr 2005 15:57:38 -0500 (CDT) (envelope-from eighner@io.com) Received: by io.com (nbSMTP-0.98) for uid 1001 for ; Sun, 24 Apr 2005 15:57:11 -0500 (CDT) Date: Sun, 24 Apr 2005 15:56:29 -0500 (CDT) From: Lars Eighner To: freebsd-ports@FreeBSD.ORG Message-ID: <20050424152309.V97630@goodwill.io.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: ClamAV 0.83/850/Sat Apr 23 23:08:28 2005 on smtp.io.com X-Virus-Status: Clean Subject: Xscreensaver source server broken X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 20:57:40 -0000 It appears to me that the xscreensaver-gnome port is broken in that the source server (at jwz.org) will not reliably serve the source file. In particular, it serves a truncated file for xscreensaver-4.21.tar.gz . A review of google results for "xscreensaver freebsd truncated" will show this has been a widespread (some 254 hits) problem reported to this and other freebsd lists since at least March 2004 (when the version was 4.15). Attempts to fetch this file manually via http and ftp fail, with the servers reporting the correct size for the file, but truncating it after about 17k has been transfered. Version 4.21 does not appear to exist at ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/ either. I am of the opinion that ports should not use known broken servers, even when the broken server is the author's - and this goes double for ports that will break such undertakings as the gnome upgrade script. The file can be found at: http://fresh.t-systems-sfr.com/unix/src/misc/ . -- Lars Eighner eighner@io.com http://www.larseighner.com/index.html 8800 N IH35 APT 1191 AUSTIN TX 78753-5266 From owner-freebsd-ports@FreeBSD.ORG Sun Apr 24 21:17:26 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E68E16A4CE; Sun, 24 Apr 2005 21:17:26 +0000 (GMT) Received: from itapoa.terra.com.br (itapoa.terra.com.br [200.154.55.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id A49B843D46; Sun, 24 Apr 2005 21:17:25 +0000 (GMT) (envelope-from danilopsico@terra.com.br) Received: from cuenca.terra.com.br (cuenca.terra.com.br [200.154.55.130]) by itapoa.terra.com.br (Postfix) with ESMTP id 5250430C32C; Sun, 24 Apr 2005 18:17:24 -0300 (BRT) X-Terra-Karma: -2% X-Terra-Hash: 5d00859c9d13762578990720fbb9f6e4 Received-SPF: pass (cuenca.terra.com.br: domain of terra.com.br designates 200.154.55.130 as permitted sender) client-ip=200.154.55.130; envelope-from=danilopsico@terra.com.br; helo=psico; Received: from psico (200-148-95-107.dsl.telesp.net.br [200.148.95.107]) (authenticated user danilopsico) by cuenca.terra.com.br (Postfix) with ESMTP id 0A35A130023; Sun, 24 Apr 2005 18:17:24 -0300 (BRT) From: "danilo psico" To: Date: Sun, 24 Apr 2005 18:17:18 -0300 MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.6353 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2527 Thread-Index: AcVJEv6tqYQtoR/VQfGgUqyCmmaekQ== Message-Id: <20050424211724.0A35A130023@cuenca.terra.com.br> cc: ports@FreeBSD.org Subject: FreeBSD Port: mars_nwe-0.99.b19_1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 21:17:26 -0000 Hello, I am writing this email to ask you why don't you have a port of the mars_nwe version 0.99pl20, as the one actually in use today has the 0.99pl19. Regards, Danilo sanchez vendruscolo brazil From owner-freebsd-ports@FreeBSD.ORG Sun Apr 24 21:23:57 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C57DD16A4CE for ; Sun, 24 Apr 2005 21:23:57 +0000 (GMT) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id D9E5443D4C for ; Sun, 24 Apr 2005 21:23:56 +0000 (GMT) (envelope-from freebsd-ports@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1DPoUx-0000TH-Po for freebsd-ports@freebsd.org; Sun, 24 Apr 2005 23:18:39 +0200 Received: from pcp08490587pcs.levtwn01.pa.comcast.net ([68.83.169.224]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 24 Apr 2005 23:18:39 +0200 Received: from apeiron+usenet by pcp08490587pcs.levtwn01.pa.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 24 Apr 2005 23:18:39 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: Christopher Nehren Date: Sun, 24 Apr 2005 21:18:15 +0000 (UTC) Organization: /usr/bin/false Lines: 25 Message-ID: References: <20050424211724.0A35A130023@cuenca.terra.com.br> X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: pcp08490587pcs.levtwn01.pa.comcast.net User-Agent: slrn/0.9.8.1 (FreeBSD) Sender: news Subject: Re: FreeBSD Port: mars_nwe-0.99.b19_1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 21:23:57 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 2005-04-24, danilo psico scribbled these curious markings: > I am writing this email to ask you why don't you have a port of the mars_nwe > version 0.99pl20, as the one actually in use today has the 0.99pl19. Because you haven't updated it. Best Regards, Christopher Nehren -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCbA5Dk/lo7zvzJioRAvDlAKC45F/wP/XkEW29p72KOxpYuVNt+QCdEBLn XoVnVgrvN1QQpWseKUBCXd0= =ioFW -----END PGP SIGNATURE----- -- I abhor a system designed for the "user", if that word is a coded pejorative meaning "stupid and unsophisticated". -- Ken Thompson If you ask the wrong questions, you get answers like "42" and "God". Unix is user friendly. However, it isn't idiot friendly. From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 01:34:18 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0586016A4CE for ; Mon, 25 Apr 2005 01:34:18 +0000 (GMT) Received: from bigbird.logicsquad.net (ppp248-119.lns2.adl2.internode.on.net [203.122.248.119]) by mx1.FreeBSD.org (Postfix) with SMTP id B956343D3F for ; Mon, 25 Apr 2005 01:34:16 +0000 (GMT) (envelope-from paulh@bigbird.logicsquad.net) Received: (qmail 87415 invoked by uid 1001); 25 Apr 2005 01:34:15 -0000 Date: Mon, 25 Apr 2005 11:04:15 +0930 From: "Paul A. Hoadley" To: freebsd-ports@freebsd.org Message-ID: <20050425013415.GD33556@bigbird.logicsquad.net> References: <20050423062648.GE61472@bigbird.logicsquad.net> <20050423063143.GA96226@xor.obsecurity.org> <20050423071716.GG61472@bigbird.logicsquad.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="5p8PegU4iirBW1oA" Content-Disposition: inline In-Reply-To: <20050423071716.GG61472@bigbird.logicsquad.net> User-Agent: Mutt/1.4.2.1i Subject: Re: Depending on other ports with OPTIONS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 01:34:18 -0000 --5p8PegU4iirBW1oA Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Apr 23, 2005 at 04:47:16PM +0930, Paul A. Hoadley wrote: > On Fri, Apr 22, 2005 at 11:31:43PM -0700, Kris Kennaway wrote: >=20 > > The solution is to make a slave port that enables the option you > > need, depend on that, and make it conflict with the other > > non-enabled versions of the port. >=20 > Just bear with me for a few more minutes... So the approach would > be to make refdb-mysql, refdb-pgsql and refdb-sqlite, each of which > depend on the appropriate libdbi-driver, and refdb with common code? > How do I make these slaves conflict with the non-enabled versions of > libdbi-drivers---that is, how does > "CONFLICTS=3Dlibdbi-drivers-0.7.1_2" differentiate between having > chosen, say, libmysql or libpgsql when it was built? Or have I > misunderstood your advice? I've hit a wall here---can anyone give me a push in the right direction? Even just pointing me at a port that depends on certain OPTIONs having been chosen in another port would probably be sufficient. I am willing to work it out from the Makefiles. --=20 Paul. w http://logicsquad.net/ h http://paul.hoadley.name/ --5p8PegU4iirBW1oA Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCbEkX730Z/jysbzIRAvkAAJwNijXWCG0ZJ611KWCiELBjDyKQWgCfQerb ASNGDns0bzE/ZDt9/cSOh+Y= =8ZCO -----END PGP SIGNATURE----- --5p8PegU4iirBW1oA-- From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 01:43:33 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F4E316A4CE for ; Mon, 25 Apr 2005 01:43:33 +0000 (GMT) Received: from connectmail.carleton.ca (connectmail.carleton.ca [134.117.2.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E22543D53 for ; Mon, 25 Apr 2005 01:43:33 +0000 (GMT) (envelope-from adamw@FreeBSD.org) Received: from [192.168.1.105] ([134.117.145.25]) by connectmail.carleton.ca (iPlanet Messaging Server 5.2 HotFix 2.02 (built Oct 21 2004)) with ESMTPSA id <0IFH007JFBGJOB@connectmail.carleton.ca> for freebsd-ports@freebsd.org; Sun, 24 Apr 2005 21:43:32 -0400 (EDT) Date: Sun, 24 Apr 2005 21:44:42 -0400 From: Adam Weinberger In-reply-to: <20050425013415.GD33556@bigbird.logicsquad.net> To: "Paul A. Hoadley" Message-id: <426C4B8A.7070508@FreeBSD.org> MIME-version: 1.0 Content-type: text/plain; charset=ISO-8859-1; format=flowed Content-transfer-encoding: 7BIT X-Accept-Language: en-ca, en-gb, en-us, en User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-CA; rv:1.7.5) Gecko/20050105 Thunderbird/1.0 OMFG PANTS References: <20050423062648.GE61472@bigbird.logicsquad.net> <20050423063143.GA96226@xor.obsecurity.org> <20050423071716.GG61472@bigbird.logicsquad.net> <20050425013415.GD33556@bigbird.logicsquad.net> cc: freebsd-ports@freebsd.org Subject: Re: Depending on other ports with OPTIONS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 01:43:33 -0000 Paul A. Hoadley wrote: > On Sat, Apr 23, 2005 at 04:47:16PM +0930, Paul A. Hoadley wrote: > >>On Fri, Apr 22, 2005 at 11:31:43PM -0700, Kris Kennaway wrote: >> >> >>>The solution is to make a slave port that enables the option you >>>need, depend on that, and make it conflict with the other >>>non-enabled versions of the port. >> >>Just bear with me for a few more minutes... So the approach would >>be to make refdb-mysql, refdb-pgsql and refdb-sqlite, each of which >>depend on the appropriate libdbi-driver, and refdb with common code? >>How do I make these slaves conflict with the non-enabled versions of >>libdbi-drivers---that is, how does >>"CONFLICTS=libdbi-drivers-0.7.1_2" differentiate between having >>chosen, say, libmysql or libpgsql when it was built? Or have I >>misunderstood your advice? > > > I've hit a wall here---can anyone give me a push in the right > direction? Even just pointing me at a port that depends on certain > OPTIONs having been chosen in another port would probably be > sufficient. I am willing to work it out from the Makefiles. Really, the simplest thing is to determine whether someone has installed the proper flavour (for example, look for mysql-backend.file). If not, output an error message saying "Rebuild port foo with the mysql-backend enabled". I bet that'd be enough for most users. # Adam -- Adam Weinberger adamw@magnesium.net || adamw@FreeBSD.org adamw@vectors.cx || adamw@gnome.org http://www.vectors.cx From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 01:44:53 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0CB116A4CF for ; Mon, 25 Apr 2005 01:44:53 +0000 (GMT) Received: from daphne.michaelchaney.com (mail.michaelchaney.com [207.65.84.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C2F043D1D for ; Mon, 25 Apr 2005 01:44:53 +0000 (GMT) (envelope-from bandix@home.funnyvalentine.net) Received: from adsl-065-007-237-012.sip.bna.bellsouth.net (home.funnyvalentine.net) [65.7.237.12] by daphne.michaelchaney.com with esmtp (Exim 4.20 #1 (FreeBSD)) id 1DPsbY-0009Ne-VK; Sun, 24 Apr 2005 20:41:45 -0500 Received: from home.funnyvalentine.net (cjf1bui009dyjmxo@dallben [127.0.0.1]) j3P1ff5x027999; Sun, 24 Apr 2005 20:41:41 -0500 (CDT) (envelope-from bandix@home.funnyvalentine.net) Received: (from bandix@localhost) by home.funnyvalentine.net (8.13.3/8.12.10/Submit) id j3P1ff7h027998; Sun, 24 Apr 2005 20:41:41 -0500 (CDT) (envelope-from bandix) Date: Sun, 24 Apr 2005 20:41:40 -0500 From: "Brandon D. Valentine" To: Lars Eighner Message-ID: <20050425014140.GB23184@brandon.dvalentine.com> References: <20050424152309.V97630@goodwill.io.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050424152309.V97630@goodwill.io.com> User-Agent: Mutt/1.5.6i X-MailScanner-Information: Please see http://www.michaelchaney.com/mail/spam.php for more information X-MailScanner: Found to be clean X-MailScanner-SpamCheck: not spam, SpamAssassin (score=-2.594, required 3.5, autolearn=not spam, AWL 0.01, BAYES_00 -2.60) X-MailScanner-From: bandix@home.funnyvalentine.net cc: jwz@jwz.org cc: freebsd-ports@FreeBSD.ORG Subject: Re: Xscreensaver source server broken X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 01:44:53 -0000 On Sun, Apr 24, 2005 at 03:56:29PM -0500, Lars Eighner wrote: > It appears to me that the xscreensaver-gnome port is broken in > that the source server (at jwz.org) will not reliably serve the > source file. > > In particular, it serves a truncated file for > xscreensaver-4.21.tar.gz . > > A review of google results for "xscreensaver freebsd truncated" > will show this has been a widespread (some 254 hits) problem > reported to this and other freebsd lists since at least March > 2004 (when the version was 4.15). Attempts to fetch this file > manually via http and ftp fail, with the servers reporting the > correct size for the file, but truncating it after about 17k has > been transfered. Has anyone attempted to contact jwz regarding this issue? Brandon -- Pseudo-Random Googlism: sunshine is to flower what she to me From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 02:08:17 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A364116A4D0 for ; Mon, 25 Apr 2005 02:08:17 +0000 (GMT) Received: from mail.logicx.net (coda.LogicX.net [69.9.186.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA19943D4C for ; Mon, 25 Apr 2005 02:08:16 +0000 (GMT) (envelope-from FreeBSD@LogicX.us) Received: (qmail 54732 invoked by uid 89); 25 Apr 2005 02:08:51 -0000 Received: from unknown (HELO ?192.168.1.18?) (LogicX@LogicX.us@69.162.20.202) by mail.logicx.net with (DHE-RSA-AES256-SHA encrypted) SMTP; 25 Apr 2005 02:08:51 -0000 Message-ID: <426C511C.1070500@LogicX.us> Date: Sun, 24 Apr 2005 22:08:28 -0400 From: Mike Schroll Organization: LogicX Network Services User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: tobez@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: perl-5.8.6_2 threaded on amd64 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: FreeBSD@LogicX.us List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 02:08:17 -0000 .if defined(WITH_THREADS) .if ${ARCH} == "amd64" IGNORE= Threaded perl does not pass tests on ${ARCH} .endif Is this still the case? I seem to have no problems with make test: All tests successful. u=1.25 s=2.01562 cu=145.836 cs=28.3516 scripts=848 tests=87785 nor using threaded perl in normal everyday operations. I have four amd64 boxes I can test this on (5.3-RELEASE-p9 and 5.4-RC3 systems). If any further testing is required, please contact me. Otherwise, I'd like to see this IGNORE removed, if it is infact deprecated. Thanks -Mike Schroll -- Applied Networking System Administration Major Rochester Institute of Technology Rochester, NY Information Sciences and Technology Major Penn State University University Park, PA FreeBSD@LogicX.us AIM: L0g1cX http://MSchroll.com From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 02:14:19 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2219F16A4CE for ; Mon, 25 Apr 2005 02:14:18 +0000 (GMT) Received: from mail.logicx.net (coda.LogicX.net [69.9.186.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D6BC43D41 for ; Mon, 25 Apr 2005 02:14:18 +0000 (GMT) (envelope-from FreeBSD@LogicX.us) Received: (qmail 56312 invoked by uid 89); 25 Apr 2005 02:14:54 -0000 Received: from unknown (HELO ?192.168.1.18?) (LogicX@LogicX.us@69.162.20.202) by mail.logicx.net with (DHE-RSA-AES256-SHA encrypted) SMTP; 25 Apr 2005 02:14:54 -0000 Message-ID: <426C5286.5060606@LogicX.us> Date: Sun, 24 Apr 2005 22:14:30 -0400 From: Mike Schroll Organization: LogicX Network Services User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: clement@FreeBSD.org, bms@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: ntop-3.1_1 / libpcap-0.8.3 -fPIC on amd64 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: FreeBSD@LogicX.us List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 02:14:19 -0000 Another port I came across which seemingly doesn't handle amd64 -fPIC properly. In conversation with lev regarding subversion, I'd like to hear what the proper procedure is for handling -fPIC as once again I have in my /etc/make.conf: CFLAGS?= -Os -fPIC -pipe I compiled with: WITHOUT_LOCALE=true WITH_PCAP_PORT=true WITH_XMLDUMP=true WITH_TCPWRAPPER=true rm -fr .libs/libntop.la .libs/libntop.* .libs/libntop-3.1.* cc -shared -Wl,--rpath -Wl,/usr/local/lib address.lo argv.lo dataFormat.lo fcUtils.lo getopt.lo getopt1.lo globals-core.lo hash.lo iface.lo initialize.lo leaks.lo ntop.lo pbuf.lo plugin.lo prefs.lo protocols.lo sessions.lo term.lo util.lo traffic.lo vendor.lo version.lo ntop_darwin.lo -L/usr/local/lib -L/usr/lib -lgdome -lxml2 -lglib-2.0 -lpthread -lc -lcrypt -lssl -lcrypto -lpcap -lgdbm -lgd -lpng -lz -lwrap -Wl,-soname -Wl,libntop-3.1.so -o .libs/libntop-3.1.so /usr/bin/ld: /usr/local/lib/libpcap.a(pcap-bpf.o): relocation R_X86_64_32 can not be used when making a shared object; recompile with -fPIC /usr/local/lib/libpcap.a: could not read symbols: Bad value gmake[2]: *** [libntop.la] Error 1 gmake[2]: Leaving directory `/usr/ports/net/ntop/work/ntop' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/net/ntop/work/ntop' gmake: *** [all] Error 2 *** Error code 2 Stop in /usr/ports/net/ntop. *** Error code 1 Stop in /usr/ports/net/ntop. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade80600.1 make WITHOUT_X11=yes ** Fix the problem and try again. -Mike Schroll -- Applied Networking System Administration Major Rochester Institute of Technology Rochester, NY Information Sciences and Technology Major Penn State University University Park, PA FreeBSD@LogicX.us AIM: L0g1cX http://MSchroll.com From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 02:33:23 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF25016A4CE; Mon, 25 Apr 2005 02:33:23 +0000 (GMT) Received: from creme-brulee.marcuscom.com (creme-brulee.marcuscom.com [24.172.16.118]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CB8A43D41; Mon, 25 Apr 2005 02:33:23 +0000 (GMT) (envelope-from marcus@marcuscom.com) Received: from shumai.marcuscom.com (shumai.marcuscom.com [192.168.1.4]) j3P2YFmv030911; Sun, 24 Apr 2005 22:34:15 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: thurners@t-online.de In-Reply-To: <1114345905.330.8.camel@xris.fu41.vpn> References: <1114345905.330.8.camel@xris.fu41.vpn> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-npjda8+Q0g9bB9FJaP0Z" Organization: MarcusCom, Inc. Date: Sun, 24 Apr 2005 22:33:18 -0400 Message-Id: <1114396398.92171.18.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Evolution 2.2.2 FreeBSD GNOME Team Port cc: gnome@freebsd.org cc: ports@freebsd.org Subject: Re: FreeBSD Port: gdm-2.6.0.9 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 02:33:24 -0000 --=-npjda8+Q0g9bB9FJaP0Z Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sun, 2005-04-24 at 14:31 +0200, thurners@t-online.de wrote: > Hi! >=20 > There is a little typo in the new rcNG startup script. > Now it looks like at the console: >=20 > Local package initialization:Starting GDM >=20 > But it should look like all the other messages: >=20 > Local package initialization: Starting GDM > ^ > with a space Space added. Thanks. Joe >=20 > -Stefan --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-npjda8+Q0g9bB9FJaP0Z Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQBCbFbub2iPiv4Uz4cRAi8vAKCTNoQBlL58xNuiIjeXDyHX701xQgCfZMNT FZptZQkle51ta3lKZbpStyg= =A00R -----END PGP SIGNATURE----- --=-npjda8+Q0g9bB9FJaP0Z-- From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 03:12:45 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 584FB16A4CE for ; Mon, 25 Apr 2005 03:12:45 +0000 (GMT) Received: from dppl.com (sapas.dppl.biz [216.182.10.231]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA0ED43D1F for ; Mon, 25 Apr 2005 03:12:44 +0000 (GMT) (envelope-from yds@CoolRat.org) Received: from [192.168.1.69] (pcp0011284575pcs.union01.nj.comcast.net [69.248.144.22]) (AUTH: PLAIN yds, TLS: TLSv1/SSLv3,256bits,AES256-SHA) by dppl.com with esmtp; Sun, 24 Apr 2005 23:12:44 -0400 Date: Sun, 24 Apr 2005 23:12:43 -0400 From: Yarema To: Oliver Lehmann , freebsd-ports@freebsd.org Message-ID: <339B10D72C827615DC94770B@tuber.coolrat.org> In-Reply-To: <20050424185528.1799cd84.lehmann@ans-netz.de> References: <20050414111426.775f6afd.lehmann@ans-netz.de> <200504241413.23396.josemi@redesjm.local> <20050424151838.0046502c.lehmann@ans-netz.de> <200504241605.32882.josemi@redesjm.local> <0561D730E8127604A75416F9@tuber.coolrat.org> <20050424184306.798fb356.lehmann@ans-netz.de> <20050424185528.1799cd84.lehmann@ans-netz.de> X-Mailer: Mulberry/3.1.6 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline cc: ports@dino.sk cc: josemi@freebsd.jazztel.es Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 03:12:45 -0000 --On Sunday, April 24, 2005 18:55:28 +0200 Oliver Lehmann wrote: > Oliver Lehmann wrote: > >> Ok, you both convinced me. I'll change -base (allready done, I'm testing) > > It's uploaded now. I also changed sysconftool to a build-dep since we > need ed during the install target and not later, and we don't need it > after the installation for a running courier-authlib. Oliver, sysconftool needs to stay a RUN_DEPENDS because, unfortunately we do not have an INSTALL_DEPENDS, and if you make it a BUILD_DEPENDS it will not be recorded as a @pkgdep and will not exist when run by pkg_add when installing from a binary package. Also please do not put CONFLICTS=courier-0.45* since I'll be submitting an update to that which will need to depend on courier-authlib. -- Yarema http://yds.CoolRat.org From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 04:19:37 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25CD816A4CE for ; Mon, 25 Apr 2005 04:19:37 +0000 (GMT) Received: from dppl.com (sapas.dppl.net [216.182.10.231]) by mx1.FreeBSD.org (Postfix) with ESMTP id 88C7243D1D for ; Mon, 25 Apr 2005 04:19:36 +0000 (GMT) (envelope-from yds@CoolRat.org) Received: from [192.168.1.69] (pcp0011284575pcs.union01.nj.comcast.net [69.248.144.22]) (AUTH: PLAIN yds, TLS: TLSv1/SSLv3,256bits,AES256-SHA) by dppl.com with esmtp; Mon, 25 Apr 2005 00:19:35 -0400 Date: Mon, 25 Apr 2005 00:19:30 -0400 From: Yarema To: Oliver Lehmann , freebsd-ports@freebsd.org Message-ID: In-Reply-To: <20050424185528.1799cd84.lehmann@ans-netz.de> References: <20050414111426.775f6afd.lehmann@ans-netz.de> <200504241413.23396.josemi@redesjm.local> <20050424151838.0046502c.lehmann@ans-netz.de> <200504241605.32882.josemi@redesjm.local> <0561D730E8127604A75416F9@tuber.coolrat.org> <20050424184306.798fb356.lehmann@ans-netz.de> <20050424185528.1799cd84.lehmann@ans-netz.de> X-Mailer: Mulberry/3.1.6 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline cc: ports@dino.sk cc: josemi@freebsd.jazztel.es Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 04:19:37 -0000 --On Sunday, April 24, 2005 18:55:28 +0200 Oliver Lehmann wrote: > Oliver Lehmann wrote: > >> Ok, you both convinced me. I'll change -base (allready done, I'm testing) > > It's uploaded now. I also changed sysconftool to a build-dep since we > need ed during the install target and not later, and we don't need it > after the installation for a running courier-authlib. Oliver, as usual a couple of notes regarding the latest you uploaded :) .if ${AUTHMOD} == authbase CONFIGURE_ARGS+=--with-base --with-pam shouldn't that be: CONFIGURE_ARGS+=--with-base --with-authpam Also you reintroduced: .if defined(WITH_SYSLOG_FACILITY) CONFIGURE_ARGS+=--with-syslog=${WITH_SYSLOG_FACILITY} .endif This is handled at runtime by the: files/patch-authdaemond.in files/patch-authdaemonrc.in patches. Of course it does no harm, but there's no need to tweak the compile time --with-syslog= if one is free to tweak it at run time all they want. The pkg-descr-pwd still refers to /etc/pwd.db instead of getpw() or getpw(3). Of course the authpwd subport could be sent to the great bit-bucket in the sky and nobody would miss it.. ;) but I don't really care anymore. Thanks for making PAM the default. :) One last note. There's a few places where portlint complained that you have blank spaces at the end of the line: Lines 45 and 62 in your version of Makefile.ext /\s\+$// will fix them in vim. And a few places where you have spaces instead of tabs indenting the line: Lines 58,60,61,63,64,66,67,68,69 and 78 in Makefile.ext / \+/ will find these. Most likely artifacts of cutting and pasting. One of the advantages of not having Makefile.ext as a separate file is that portlint helps find such things. I ran portlint and fixed these every time I posted a tweaked version of the port for you to review. And one last idea I had was that if you were to adopt the standalone meta and stand alone base organization I demonstrated. Then the naming could go back to courier-authlib without -base and a courier-authlib-meta. And if we were to go that way then why not a courier-meta where we could select not only courier-authlib BUILD_DEPENDS but whether to install courier or courier-imap and/or sqwebmail. With Makefile.opt and Makefile.dep available why do we need a meta port and a -base? This strays from the naming convention used by rpm based packaging. Just a thought... -- Yarema http://yds.CoolRat.org From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 05:53:16 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C058B16A4CE for ; Mon, 25 Apr 2005 05:53:16 +0000 (GMT) Received: from ics.snow.nl (ics.snow.nl [212.72.238.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E8EE43D39 for ; Mon, 25 Apr 2005 05:53:16 +0000 (GMT) (envelope-from r.vdooren@snow.nl) Received: from localhost (localhost [127.0.0.1]) by ics.snow.nl (Postfix) with ESMTP id 6D8B1222CF5; Mon, 25 Apr 2005 07:50:57 +0200 (CEST) Received: from 62.58.16.80 ([62.58.16.80]) by scn.snow.nl (IMP) with HTTP for ; Mon, 25 Apr 2005 07:50:57 +0200 Message-ID: <1114408257.426c85414ed8f@scn.snow.nl> Date: Mon, 25 Apr 2005 07:50:57 +0200 From: Ralf van Dooren To: FreeBSD@LogicX.us References: <426BDC16.4050101@LogicX.us> In-Reply-To: <426BDC16.4050101@LogicX.us> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 3.2.2 X-Originating-IP: 62.58.16.80 cc: ports@freebsd.org Subject: Re: FreeBSD Port: rsnapshot-1.1.6 - outdated & insecure X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 05:53:16 -0000 Mike, Thanks for the notification, I'll update the port as soon as possible. Thanks, Ralf (port maintainer rsnapshot) Quoting Mike Schroll : > The latest version of this port is 1.2.1, which fixes the following > security vulnerability: > http://www.rsnapshot.org/security/2005/001.html > > This is present in the current 1.1.6 port in the ports tree. > > I've already notified the FreeBSD Security team concerning this, so > hopefully it'll be added to vuXML shortly -- > in the meantime, I suggest updating this port so users can upgrade to a > secure version. > > -Mike Schroll > > -- > Applied Networking System Administration Major > Rochester Institute of Technology > Rochester, NY > > Information Sciences and Technology Major > Penn State University > University Park, PA > > FreeBSD@LogicX.us > AIM: L0g1cX > http://MSchroll.com > -- Ralf van Dooren Unix specialists consultant Snow B.V. http://snow.nl r.vdooren@snow.nl t: +31418 653333 ---------------------------------------------------------------- This message was sent using IMP, the Internet Messaging Program. From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 05:57:02 2005 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3757616A4CE; Mon, 25 Apr 2005 05:57:02 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E4CE43D48; Mon, 25 Apr 2005 05:57:02 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from freefall.freebsd.org (sem@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j3P5v1P3006901; Mon, 25 Apr 2005 05:57:01 GMT (envelope-from sem@freefall.freebsd.org) Received: (from sem@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j3P5v1gd006897; Mon, 25 Apr 2005 05:57:01 GMT (envelope-from sem) Date: Mon, 25 Apr 2005 05:57:01 GMT From: Sergey Matveychuk Message-Id: <200504250557.j3P5v1gd006897@freefall.freebsd.org> To: sem@FreeBSD.org, freebsd-ports@FreeBSD.org, sem@FreeBSD.org Subject: Re: ports/79094: A lot of changes on qmail master and all slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 05:57:02 -0000 Synopsis: A lot of changes on qmail master and all slave ports Responsible-Changed-From-To: freebsd-ports->sem Responsible-Changed-By: sem Responsible-Changed-When: Mon Apr 25 05:56:54 GMT 2005 Responsible-Changed-Why: Grab http://www.freebsd.org/cgi/query-pr.cgi?pr=79094 From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 06:34:16 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A16E16A4CE for ; Mon, 25 Apr 2005 06:34:16 +0000 (GMT) Received: from 62-15-211-171.inversas.jazztel.es (62-15-211-171.inversas.jazztel.es [62.15.211.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF96D43D53 for ; Mon, 25 Apr 2005 06:34:14 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) j3P6XVY7035753; Mon, 25 Apr 2005 08:33:31 +0200 (CEST) (envelope-from josemi@redesjm.local) Received: from localhost (localhost [[UNIX: localhost]]) by redesjm.local (8.13.3/8.13.3/Submit) id j3P6XOgI000825; Mon, 25 Apr 2005 08:33:24 +0200 (CEST) (envelope-from josemi@redesjm.local) From: Jose M Rodriguez To: Yarema Date: Mon, 25 Apr 2005 08:33:23 +0200 User-Agent: KMail/1.8 References: <20050414111426.775f6afd.lehmann@ans-netz.de> <20050424185528.1799cd84.lehmann@ans-netz.de> <339B10D72C827615DC94770B@tuber.coolrat.org> In-Reply-To: <339B10D72C827615DC94770B@tuber.coolrat.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200504250833.24164.josemi@redesjm.local> X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-3; AVE: 6.30.0.7; VDF: 6.30.0.116; host: antares.redesjm.local) cc: ports@dino.sk cc: freebsd-ports@freebsd.org cc: josemi@freebsd.jazztel.es Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 06:34:16 -0000 El Lunes, 25 de Abril de 2005 05:12, Yarema escribi=F3: > --On Sunday, April 24, 2005 18:55:28 +0200 Oliver Lehmann > > wrote: > > Oliver Lehmann wrote: > >> Ok, you both convinced me. I'll change -base (allready done, I'm > >> testing) > > > > It's uploaded now. I also changed sysconftool to a build-dep since > > we need ed during the install target and not later, and we don't > > need it after the installation for a running courier-authlib. > > Oliver, sysconftool needs to stay a RUN_DEPENDS because, > unfortunately we do not have an INSTALL_DEPENDS, and if you make it a > BUILD_DEPENDS it will not be recorded as a @pkgdep and will not exist > when run by pkg_add when installing from a binary package. > > Also please do not put CONFLICTS=3Dcourier-0.45* since I'll be > submitting an update to that which will need to depend on > courier-authlib. that will be courier-0.49... This will not conflict. =2D- josemi From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 06:34:25 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6146716A4CE for ; Mon, 25 Apr 2005 06:34:25 +0000 (GMT) Received: from john.hrz.tu-chemnitz.de (john.hrz.tu-chemnitz.de [134.109.132.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7BBDA43D4C for ; Mon, 25 Apr 2005 06:34:24 +0000 (GMT) (envelope-from stefan.thurner@mb.tu-chemnitz.de) Received: from hedwig.hrz.tu-chemnitz.de ([134.109.132.173] helo=mailbox.hrz.tu-chemnitz.de) by john.hrz.tu-chemnitz.de with esmtp (Exim 4.41) id 1DPxAl-0003nl-Ka for freebsd-ports@freebsd.org; Mon, 25 Apr 2005 08:34:23 +0200 Received: from pandora.hrz.tu-chemnitz.de ([134.109.132.63] ident=[ikMSPSN6EspcHVqUft5c01AqcMEz9x2+]) by mailbox.hrz.tu-chemnitz.de with esmtp (Exim 4.43) id 1DPxAl-0001v8-IC for freebsd-ports@freebsd.org; Mon, 25 Apr 2005 08:34:23 +0200 Received: from localhost (stthu@localhost)j3P6YN706971 for ; Mon, 25 Apr 2005 08:34:23 +0200 X-Authentication-Warning: pandora.hrz.tu-chemnitz.de: stthu owned process doing -bs Date: Mon, 25 Apr 2005 08:34:13 +0200 (MEST) From: Stefan Thurner To: freebsd-ports@freebsd.org Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Scan-Signature: e3260060fbba42ba6f18958e4f5000eb Subject: FreeBSD Port: gdm-2.6.0.9 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 06:34:25 -0000 Hi! Sorry for my inexact (incomplete) description of the typos. There are some more in the rc script. 1) echo " Starting GDM " echo " Stopping GDM. " The first echoed text has a trailing dot "." and the second has not. What is right? 2) echo " Starting GDM " echo " Stopping GDM. " Both comments have a trailing space. That is incorrect. Because the next service has a leading space too. And than 2 spaces are shown between the comments of the services at the console. best regards -Stefan -- _ ___ ___ stthu@hrz.tu-chemnitz.de Dipl.-Ing. S. Thurner | || __|/ _| www.tu-chemnitz.de/~stthu TU Chemnitz / IFS | || _| _\ \ tel:0049-371-531-2403 Reichenhainer Str. 70 |_||_| |___/ fax:0049-371-531-2441 D-09126 Chemnitz From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 07:06:33 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF51716A4F0 for ; Mon, 25 Apr 2005 07:06:33 +0000 (GMT) Received: from 62-15-211-171.inversas.jazztel.es (62-15-211-171.inversas.jazztel.es [62.15.211.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDD6243D4C for ; Mon, 25 Apr 2005 07:06:32 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) j3P75rFC035825; Mon, 25 Apr 2005 09:05:53 +0200 (CEST) (envelope-from josemi@redesjm.local) Received: from localhost (localhost [[UNIX: localhost]]) by redesjm.local (8.13.3/8.13.3/Submit) id j3P75nck000965; Mon, 25 Apr 2005 09:05:49 +0200 (CEST) (envelope-from josemi@redesjm.local) From: Jose M Rodriguez To: freebsd-ports@freebsd.org Date: Mon, 25 Apr 2005 09:05:48 +0200 User-Agent: KMail/1.8 References: <20050414111426.775f6afd.lehmann@ans-netz.de> <20050424185528.1799cd84.lehmann@ans-netz.de> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200504250905.49493.josemi@redesjm.local> X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-3; AVE: 6.30.0.7; VDF: 6.30.0.116; host: antares.redesjm.local) cc: ports@dino.sk cc: Yarema Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 07:06:34 -0000 El Lunes, 25 de Abril de 2005 06:19, Yarema escribi=F3: > --On Sunday, April 24, 2005 18:55:28 +0200 Oliver Lehmann > > wrote: > > Oliver Lehmann wrote: > >> Ok, you both convinced me. I'll change -base (allready done, I'm > >> testing) > > > > It's uploaded now. I also changed sysconftool to a build-dep since > > we need ed during the install target and not later, and we don't > > need it after the installation for a running courier-authlib. > > Oliver, as usual a couple of notes regarding the latest you uploaded > :) > > .if ${AUTHMOD} =3D=3D authbase > CONFIGURE_ARGS+=3D--with-base --with-pam > > shouldn't that be: > > CONFIGURE_ARGS+=3D--with-base --with-authpam > > Also you reintroduced: > .if defined(WITH_SYSLOG_FACILITY) > CONFIGURE_ARGS+=3D--with-syslog=3D${WITH_SYSLOG_FACILITY} > .endif > > This is handled at runtime by the: > files/patch-authdaemond.in > files/patch-authdaemonrc.in > patches. Of course it does no harm, but there's no need to tweak the > compile time --with-syslog=3D if one is free to tweak it at run time > all they want. This is a compat env to previous versions of courier-authlib and=20 courier-imap. I can't found a reason to break existing functionality. > > The pkg-descr-pwd still refers to /etc/pwd.db instead of getpw() or > getpw(3). Of course the authpwd subport could be sent to the great > bit-bucket in the sky and nobody would miss it.. ;) but I don't > really care anymore. Thanks for making PAM the default. :) > > One last note. There's a few places where portlint complained that > you have blank spaces at the end of the line: > Lines 45 and 62 in your version of Makefile.ext > /\s\+$// will fix them in vim. > And a few places where you have spaces instead of tabs indenting the > line: Lines 58,60,61,63,64,66,67,68,69 and 78 in Makefile.ext > / \+/ will find these. > > Most likely artifacts of cutting and pasting. > > One of the advantages of not having Makefile.ext as a separate file > is that portlint helps find such things. I ran portlint and fixed > these every time I posted a tweaked version of the port for you to > review. > I also become to think that if we only import Makefile.ext from Makefile=20 and we import Makefile from slave ports, there isn't no real reason to=20 not merge Makefile.ext code directly into Makefile. > And one last idea I had was that if you were to adopt the standalone > meta and stand alone base organization I demonstrated. Then the This have a mayor drawbacks: you must hand sync things like PORTVERSION=20 into both. And include a common Makefile.inc has never the placet of=20 portlint. > naming could go back to courier-authlib without -base and a > courier-authlib-meta. And if we were to go that way then why not a This will break any prob that portupgrade may chase the split. The port=20 will 'All' the functionality, including actual options, will be=20 courier-authlib. I even doubt if it is a good idea moving this from mail to security. =20 Adding a security category will be simple. And not need a repocopy=20 request. Just add the components ports and make an update. > courier-meta where we could select not only courier-authlib No. You can't make all the functionality of courier from actual=20 component. Also, there are people like me that don't like courier as a=20 MTA. > BUILD_DEPENDS but whether to install courier or courier-imap and/or > sqwebmail. With Makefile.opt and Makefile.dep available why do we > need a meta port and a -base? This strays from the naming convention > used by rpm based packaging. Just a thought... be carefull with this aproach. We can't make 'subproducts' from a build=20 like rpm. In the ports system, this will end up with more real work to do and=20 maintaint. Keep this simple when possible, it's very common found that you doesn't=20 have the resources to maintaint your 'criatures' when live goes on. =2D- josemi From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 10:19:33 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 21EC316A4CE for ; Mon, 25 Apr 2005 10:19:33 +0000 (GMT) Received: from mail.logicx.net (coda.LogicX.net [69.9.186.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6DF9943D60 for ; Mon, 25 Apr 2005 10:19:32 +0000 (GMT) (envelope-from FreeBSD@LogicX.us) Received: (qmail 88227 invoked by uid 89); 25 Apr 2005 10:20:10 -0000 Received: from unknown (HELO ?192.168.1.18?) (LogicX@LogicX.us@69.162.20.202) by mail.logicx.net with (DHE-RSA-AES256-SHA encrypted) SMTP; 25 Apr 2005 10:20:10 -0000 Message-ID: <426CC440.8000002@LogicX.us> Date: Mon, 25 Apr 2005 06:19:44 -0400 From: Mike Schroll Organization: LogicX Network Services User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: paul@aps.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: cfengine-2.1.13 -> cfengine-2.1.14 updated X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: FreeBSD@LogicX.us List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 10:19:33 -0000 this port should be updated, cfengine-2.1.14 is out http://www.cfengine.org/download.phtml -Mike Schroll -- Applied Networking System Administration Major Rochester Institute of Technology Rochester, NY Information Sciences and Technology Major Penn State University University Park, PA FreeBSD@LogicX.us AIM: L0g1cX http://MSchroll.com From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 10:42:46 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2257116A4CE for ; Mon, 25 Apr 2005 10:42:46 +0000 (GMT) Received: from bsd.dino.sk (bsd.dino.sk [213.215.72.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id C473A43D2F for ; Mon, 25 Apr 2005 10:42:44 +0000 (GMT) (envelope-from milan@netlabplus.sk) Received: from tablet.dino.sk ([213.215.72.59]) (AUTH: PLAIN milan) by bsd.dino.sk with esmtp; Mon, 25 Apr 2005 12:43:08 +0200 id 000000C9.426CC9BC.00002665 From: Milan Obuch To: freebsd-ports@freebsd.org Date: Mon, 25 Apr 2005 12:42:10 +0200 User-Agent: KMail/1.7.2 References: <20050414111426.775f6afd.lehmann@ans-netz.de> <200504232247.18540.ports@dino.sk> <20050423233338.4b804d27.lehmann@ans-netz.de> In-Reply-To: <20050423233338.4b804d27.lehmann@ans-netz.de> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200504251242.10960.milan@netlabplus.sk> Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 10:42:46 -0000 On Saturday 23 April 2005 23:33, Oliver Lehmann wrote: > as a port or as a package? I've installed now all ports as package and it > looks like everything works as well. Of course, the functional test I can > only do with the vchkpw/vpopmail interface. Used with courier-imap and > sqwebmail. As far as I can see, it works. > > Anything left? I did some more tests and found one more bug in stratscript. Basically, ldconfig does not know about new location of libauthcourier.so (or whatever the exact name is). When starting system anew, there were error message. I changed start script this way (pseudo-patch): bindir="${exec_prefix}/bin" +libdir="${prefix}/lib/courier-authlib" l ibexecdir="${prefix}/libexec/courier-authlib" courier_authdaemond_prestart() fi + ldconfig -m ${libdir} echo "Starting ${name}." and it works now - boot time error messages are gone. Milan From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 11:00:54 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0977A16A4CE for ; Mon, 25 Apr 2005 11:00:54 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D68143D1D for ; Mon, 25 Apr 2005 11:00:53 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j3PB0rUc060372 for ; Mon, 25 Apr 2005 11:00:53 GMT (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j3PB0qne060366 for freebsd-ports@freebsd.org; Mon, 25 Apr 2005 11:00:52 GMT (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 25 Apr 2005 11:00:52 GMT Message-Id: <200504251100.j3PB0qne060366@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD ports list Subject: Current unassigned ports problem reports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 11:00:54 -0000 Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The problem is understood and a solution is being sought. f - feedback Further work requires additional information from the originator or the community - possibly confirmation of the effectiveness of a proposed solution. p - patched A patch has been committed, but some issues (MFC and / or confirmation from originator) are still open. s - suspended The problem is not being worked on, due to lack of information or resources. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested -- or when fixing the problem is abandoned. Critical problems Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2002/04/07] ports/36846 ports-bugs fxtv 1.03 freezes the system when $LANG=d s [2002/12/18] ports/46338 ports-bugs security/cyrus-sasl 1.5.27_7 mysql_verify s [2003/05/11] ports/52079 ports-bugs vmware3 hangs when nmdm(4) is used as COM s [2003/08/08] ports/55371 ports-bugs xfig dumps core (unaligned access), if US a [2004/07/20] ports/69322 ports-bugs ghostscript-afpl (8.14_5.1) fails if I tr o [2004/09/07] ports/71475 ports-bugs ACID (snort DB) detects versions incorrec o [2004/09/26] ports/72114 ports-bugs [PATCH] libtool15 chokes on gcc34 on 4-ST o [2004/11/20] ports/74177 ports-bugs misc/linux-edonkey-tool-recovermet proble o [2004/11/26] ports/74432 ports-bugs ohphone 1.4.1 crashes in 5.3 Stable s [2004/12/08] ports/74857 ports-bugs clamav socket problem o [2004/12/23] ports/75416 ports-bugs x11-toolkits/xview broken from removal of o [2005/01/15] ports/76293 ports-bugs port graphics/togl VERY broken o [2005/01/18] ports/76434 ports-bugs sysutils/lcdproc coredumps when started w o [2005/02/07] ports/77185 ports-bugs (re)add PCL3 driver to print/ghostscript- o [2005/02/16] ports/77584 ports-bugs New ports: games/sear, games/sear-media. o [2005/03/14] ports/78830 ports-bugs New port: print/latex-auto-greek Auto-swi f [2005/03/26] ports/79250 ports-bugs devel/strace 4.5.1 Broken o [2005/03/30] ports/79353 ports-bugs zh-CJK Makefile broken for teTeX 3.0 o [2005/04/09] ports/79711 ports-bugs fail to build japanese/eijiro-fpw f [2005/04/11] ports/79774 ports-bugs mod_fastcgi builds but won't install (wro f [2005/04/21] ports/80212 ports-bugs advice after installing Zabbix o [2005/04/23] ports/80288 ports-bugs [PATCH] samba: processing of symlinks bro f [2005/04/24] ports/80308 ports-bugs Update port o [2005/04/25] ports/80319 ports-bugs patch lang/elisp-manual: only the index f 24 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- f [2001/03/29] ports/26192 ports-bugs apel appeared both in xemacs/site-package a [2002/08/23] ports/41945 ports-bugs [patch] bsd.port.mk: does not run ACLOCAL s [2002/10/07] ports/43771 ports-bugs LaTeX ports mixed between print and textp o [2003/04/12] ports/50866 ports-bugs [PATCH] Introduce patch to qmail-1.03 to o [2003/07/02] ports/54002 ports-bugs QMTPC patch for qmail-1.03 o [2003/07/02] ports/54041 ports-bugs libtool13 (as installed) doesn't recogniz o [2003/08/22] ports/55866 ports-bugs port devel/libtool13 installs .la files s [2003/08/28] ports/56091 ports-bugs hp220 driver for print/ghostscript-gnu do o [2003/12/20] ports/60440 ports-bugs [New Features] Port: mail/qmail o [2003/12/21] ports/60472 ports-bugs [New Port] devel/doxymacs Doxymacs is Dox o [2003/12/23] ports/60521 ports-bugs sane-backends-1.0.13_1 coredumps in use w s [2004/01/17] ports/61471 ports-bugs Suggested mini-patch to ports/graphics/sa o [2004/02/02] ports/62256 ports-bugs New port: chinese/mozilla-sclp o [2004/02/14] ports/62840 ports-bugs New Port: dns/bind9-sdb-ldap, bind9 patch f [2004/02/25] ports/63357 ports-bugs [patch] www/linux-mozillafirefox port cre f [2004/03/13] ports/64202 ports-bugs New Port: x11/kde_api_reference_32, the k o [2004/03/15] ports/64307 ports-bugs [NEW PORT] databases/linux-unixODBC: RPM o [2004/03/28] ports/64838 ports-bugs new port: chinese/msttf o [2004/03/29] ports/64898 ports-bugs new port: misc/heyu2 for X10 control o [2004/04/28] ports/66042 ports-bugs new port: www/suexec13 (standalone suexec o [2004/05/04] ports/66246 ports-bugs new ports: textproc/docbook-utils, textpr f [2004/05/05] ports/66282 ports-bugs [NEW PORT] mail/p5-Mail-Vispan: PERL scri s [2004/05/25] ports/67192 ports-bugs mod_perl-related regressions in the newes o [2004/06/04] ports/67572 ports-bugs New port: mnogosearch-devel: Full feature s [2004/06/11] ports/67815 ports-bugs ImageMagick no longer recognizes FlashPix o [2004/07/08] ports/68826 ports-bugs various anomalies with xemacs port o [2004/07/25] ports/69586 ports-bugs New port: chinese/PCManX o [2004/08/05] ports/70017 ports-bugs New port: japanized strings(1) command (j o [2004/08/06] ports/70062 ports-bugs tetxproc/p5-Bloom-Filter - A new port of f [2004/08/21] ports/70801 ports-bugs [NEW PORT] mail/crm114-devel: An Markov b o [2004/08/26] ports/70999 ports-bugs New port: graphics/evas1 Hardware acceler f [2004/09/08] ports/71489 ports-bugs [PATCH] www/slash: initial support for mo o [2004/09/09] ports/71535 ports-bugs port sysutils/xbatt modification o [2004/09/13] ports/71706 ports-bugs Update of net/linux-edonkey-core o [2004/09/21] ports/71953 ports-bugs New port: x11-themes/kde-splash-freebsd: o [2004/09/22] ports/71997 ports-bugs New port:math/webwork used to create prob f [2004/09/29] ports/72167 ports-bugs New port: lang/xharbour An extended xBase o [2004/10/07] ports/72421 ports-bugs new port: py-Levenshtein o [2004/10/12] ports/72550 ports-bugs [NEW PORT] mail/itraxp: Advanced perl sup o [2004/10/16] ports/72758 ports-bugs New port: latex-schedule o [2004/10/20] ports/72938 ports-bugs Work-around for palm/pose BROKENess s [2004/10/21] ports/72956 ports-bugs x11/dgs incorrectly marked as IGNORE o [2004/10/26] ports/73152 ports-bugs [NEW PORT] graphics/chartdirector: Charti o [2004/10/30] ports/73320 ports-bugs New Port: kde_head_api_reference, the kde s [2004/11/09] ports/73721 ports-bugs [MAINTAINER] lang/pike76: Fix 64bits brea f [2004/11/11] ports/73833 ports-bugs sysutils/smartmontools: smartctl -a /dev/ f [2004/11/13] ports/73917 ports-bugs [PATCH] Update audio/cheesetracker to 0.9 o [2004/11/18] ports/74086 ports-bugs New port:chinese/chmsee A viewer for Micr s [2004/11/21] ports/74195 ports-bugs fix build error of devel/swarm for gcc 3. o [2004/11/24] ports/74340 ports-bugs New port: sysutils/pcfclock - userland ac o [2004/11/26] ports/74435 ports-bugs [PATCH] devel/automake19: [SUMMARIZE CHAN o [2004/11/27] ports/74442 ports-bugs Upgrade multimedia/dvdrip to the latest r o [2004/12/02] ports/74615 ports-bugs new port: net/quoted s [2004/12/02] ports/74625 ports-bugs outdated GNU gatekeeper port f [2004/12/12] ports/74996 ports-bugs [NEW PORT] sysutils/logwatch: Logwatch is f [2004/12/14] ports/75050 ports-bugs new port: net/ventrilo f [2004/12/16] ports/75147 ports-bugs [PATCH] Several improvements to security/ o [2004/12/21] ports/75369 ports-bugs new port net/p5-Perlbal o [2004/12/27] ports/75555 ports-bugs [NEW PORT] x11-toolkits/py-gtksourceview: o [2005/01/02] ports/75720 ports-bugs The 4.10-RELEASE samba 3 package smbpassw o [2005/01/08] ports/75966 ports-bugs [patch] improve samba-vscan port p [2005/01/11] ports/76116 ports-bugs PORT UPDATE: graphics/lcms (with PATCH) o [2005/01/12] ports/76131 ports-bugs New port: x11-toolkits/py-wxPython-devel f [2005/01/13] ports/76227 ports-bugs RLE support for graphics/fbm o [2005/01/17] ports/76365 ports-bugs NEW PORT net/xdb_auth_cpile A user auth/c o [2005/01/17] ports/76379 ports-bugs New port:biology/p5-Bio-Das f [2005/01/18] ports/76409 ports-bugs cfengine2 compile problems, berkeleydb re o [2005/01/20] ports/76510 ports-bugs [NEW PORT] sysutils/fanout: Allow you to o [2005/01/26] ports/76731 ports-bugs [PATCH] make cups-pstoraster GHOSTSCRIPT_ o [2005/01/29] ports/76820 ports-bugs isc-dhcp3-server build for use in jail sh o [2005/01/29] ports/76825 ports-bugs isc-dhcp3-server port should allow listen o [2005/01/30] ports/76875 ports-bugs security/cryptopp crashes if build with d o [2005/01/31] ports/76908 ports-bugs [patch] port net/arla (AFS client) is mar o [2005/01/31] ports/76928 ports-bugs New port: www/WebCalendar, web-based cale o [2005/02/02] ports/76986 ports-bugs New port: print/pmx a pre-processor of Mu f [2005/02/02] ports/77015 ports-bugs /usr/ports/net/linpopup/ (linpopup-1.2.0_ f [2005/02/03] ports/77042 ports-bugs new port: games/hattrickorganizer o [2005/02/03] ports/77059 ports-bugs New port: devel/atlas60. o [2005/02/10] ports/77359 ports-bugs New port: graphics/gephex Software-based o [2005/02/11] ports/77373 ports-bugs new port for squidclamav-1.1 s [2005/02/13] ports/77453 ports-bugs [request] new port: print/ghostpcl o [2005/02/14] ports/77471 ports-bugs New port: Device driver for Voicetronix O o [2005/02/18] ports/77690 ports-bugs new port submission - security/sguil-serv f [2005/02/19] ports/77740 ports-bugs [patch] www/mod_fastcgi allow select NO_S o [2005/02/22] ports/77899 ports-bugs [Maintainer Update] graphics/bugle 0.0. o [2005/02/22] ports/77924 ports-bugs [MAINTAINER-UPDATE] devel/ruby18-freeride o [2005/02/23] ports/77980 ports-bugs New Port: www/p5-POE-Component-Server-HTT o [2005/02/24] ports/78012 ports-bugs [NEW PORT] net/abills: Billing system fro f [2005/02/24] ports/78030 ports-bugs New port: net/p5-IP-Country - Perl module f [2005/02/26] ports/78102 ports-bugs /usr/ports/mail/qmail-scanner doesn't det o [2005/02/27] ports/78150 ports-bugs Update Port: devel/libtool15 to 1.5.14 o [2005/02/28] ports/78213 ports-bugs [MAINTAINER] Update port: mail/milter-bog o [2005/03/02] ports/78279 ports-bugs New port:japanese/mell (an emacs lisp lib o [2005/03/02] ports/78280 ports-bugs New port:japanese/suikyo (a romaji-kana c o [2005/03/02] ports/78281 ports-bugs New port:japanese/prime (a japanese kana- o [2005/03/02] ports/78282 ports-bugs New port:japanese/prime-el (an elisp fron o [2005/03/02] ports/78284 ports-bugs New port:japanese/prime-dict (dictionary f [2005/03/04] ports/78393 ports-bugs [maintainer-update] update mail/sccmilter o [2005/03/04] ports/78397 ports-bugs [port update] print/foomatic-db - changed f [2005/03/05] ports/78436 ports-bugs Maintainer Update: multimedia/dvd-slidesh f [2005/03/06] ports/78473 ports-bugs New port: graphics/opencv (Open Source Co o [2005/03/15] ports/78898 ports-bugs new ports chinese/lumaqq: General QQ-like o [2005/03/19] ports/79010 ports-bugs [patch] bsd.port.mk - all-depends-tree ta o [2005/03/19] ports/79021 ports-bugs New port: linux_base-fedora f [2005/03/19] ports/79030 ports-bugs New port: deskutils/kchm A KDE viewer for o [2005/03/20] ports/79038 ports-bugs New port: misc/krecipes recipe manager fo o [2005/03/20] ports/79040 ports-bugs New Port: games/marathon2-data o [2005/03/20] ports/79049 ports-bugs New port net-mgmt/netdump-server:RedHat s p [2005/03/22] ports/79119 ports-bugs [PATCH] mplayer with optimized cflags on f [2005/03/23] ports/79177 ports-bugs games/alephone update [PATCH] o [2005/03/24] ports/79178 ports-bugs new port games/alphabet_sounds_fr: french o [2005/03/24] ports/79179 ports-bugs new port: games/childsplay_plugins o [2005/03/24] ports/79195 ports-bugs New port: textproc/p5-String-Format o [2005/03/24] ports/79211 ports-bugs NEW PORT: security/p5-Digest-SHA256 SHA{2 f [2005/03/25] ports/79216 ports-bugs Maintainer update: devel/flyspray 0.9.5 - f [2005/03/25] ports/79233 ports-bugs ports update biology/paml o [2005/03/25] ports/79235 ports-bugs [maintainer update] sysutils/dtc: v0.17.0 o [2005/03/28] ports/79297 ports-bugs New port: audio/p5-MP3-ID3Lib f [2005/03/29] ports/79345 ports-bugs Update for mail/crm114 o [2005/03/30] ports/79346 ports-bugs New port: devel/gobo-eiffel. Libraries an o [2005/03/30] ports/79360 ports-bugs [new port] Add ripmake, a ripping makefil o [2005/04/04] ports/79529 ports-bugs new port: misc/gopod o [2005/04/06] ports/79599 ports-bugs patch for dhcp lease query, used in cisco o [2005/04/08] ports/79676 ports-bugs NEW PORT: A tool that, installed on a gat o [2005/04/13] ports/79885 ports-bugs New Port: security/p5-CSP, a CA managemen o [2005/04/15] ports/79978 ports-bugs Script error of /usr/ports/chinese/CJK f [2005/04/16] ports/80007 ports-bugs New port: net/evaq (QQ IM Client for KDE3 o [2005/04/17] ports/80043 ports-bugs New port: devel/metaEnv CWI MetaEnvironme o [2005/04/18] ports/80055 ports-bugs [NEW PORT] chinese/libiconv: A character o [2005/04/20] ports/80129 ports-bugs First-cut port of cups-pstoraster for esp f [2005/04/20] ports/80165 ports-bugs [PATCH] x11/xdialog: added options --with f [2005/04/20] ports/80173 ports-bugs unixstat port broken under FreeBSD 5.3 (b o [2005/04/21] ports/80211 ports-bugs [NEW PORT] bruteforceblocker o [2005/04/22] ports/80251 ports-bugs New port: devel/mcpp a C/C++ preprocessor s [2005/04/22] ports/80254 ports-bugs update net/poptop and rename to net/pptpd o [2005/04/22] ports/80255 ports-bugs New Port : print/lpr-wrapper A user level o [2005/04/23] ports/80272 ports-bugs [MAINTAINER] devel/svk: update to 0.992 o [2005/04/23] ports/80274 ports-bugs GDB console problem (ddd-3.3.10 with Free o [2005/04/23] ports/80284 ports-bugs New port: misc/p5-Asterisk. Asterisk perl o [2005/04/24] ports/80307 ports-bugs [PATCH] net/jit: Fixed linking with -lc_r o [2005/04/24] ports/80310 ports-bugs New port: net/ruby-mpi MPI binding for Ru o [2005/04/25] ports/80317 ports-bugs update port: mail/imapsync from 1.123 up o [2005/04/25] ports/80318 ports-bugs MAINTAINER UPDATE: security/amavisd-new 143 problems total. From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 11:01:19 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB90F16A4CE for ; Mon, 25 Apr 2005 11:01:19 +0000 (GMT) Received: from bsd.dino.sk (bsd.dino.sk [213.215.72.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8ACF843D1D for ; Mon, 25 Apr 2005 11:01:18 +0000 (GMT) (envelope-from ports@dino.sk) Received: from tablet.dino.sk ([213.215.72.59]) (AUTH: PLAIN milan) by bsd.dino.sk with esmtp; Mon, 25 Apr 2005 13:01:43 +0200 id 000000C9.426CCE17.0000276C From: Milan Obuch Date: Mon, 25 Apr 2005 13:00:45 +0200 User-Agent: KMail/1.7.2 To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200504251300.46269.ports@dino.sk> Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 11:01:20 -0000 On Saturday 23 April 2005 23:33, Oliver Lehmann wrote: > as a port or as a package? I've installed now all ports as package and it > looks like everything works as well. Of course, the functional test I can > only do with the vchkpw/vpopmail interface. Used with courier-imap and > sqwebmail. As far as I can see, it works. > > Anything left? I did some more tests and found one more bug in stratscript. Basically, ldconfig does not know about new location of libauthcourier.so (or whatever the exact name is). When starting system anew, there were error message. I changed start script this way (pseudo-patch): bindir="${exec_prefix}/bin" +libdir="${prefix}/lib/courier-authlib" l ibexecdir="${prefix}/libexec/courier-authlib" courier_authdaemond_prestart() fi + ldconfig -m ${libdir} echo "Starting ${name}." and it works now - boot time error messages are gone. Milan From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 11:40:28 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2DE7F16A4CE for ; Mon, 25 Apr 2005 11:40:28 +0000 (GMT) Received: from 62-15-211-171.inversas.jazztel.es (62-15-211-171.inversas.jazztel.es [62.15.211.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5F7743D5D for ; Mon, 25 Apr 2005 11:40:26 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) j3PBeL8x090322; Mon, 25 Apr 2005 13:40:21 +0200 (CEST) (envelope-from josemi@redesjm.local) Received: from localhost (localhost [[UNIX: localhost]]) by redesjm.local (8.13.3/8.13.3/Submit) id j3PBeKCP074421; Mon, 25 Apr 2005 13:40:20 +0200 (CEST) (envelope-from josemi@redesjm.local) From: Jose M Rodriguez To: freebsd-ports@freebsd.org Date: Mon, 25 Apr 2005 13:40:19 +0200 User-Agent: KMail/1.8 References: <20050414111426.775f6afd.lehmann@ans-netz.de> <20050423233338.4b804d27.lehmann@ans-netz.de> <200504251242.10960.milan@netlabplus.sk> In-Reply-To: <200504251242.10960.milan@netlabplus.sk> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200504251340.20071.josemi@redesjm.local> X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-3; AVE: 6.30.0.7; VDF: 6.30.0.116; host: antares.redesjm.local) cc: Milan Obuch Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 11:40:28 -0000 El Lunes, 25 de Abril de 2005 12:42, Milan Obuch escribi=F3: > On Saturday 23 April 2005 23:33, Oliver Lehmann wrote: > > as a port or as a package? I've installed now all ports as package > > and it looks like everything works as well. Of course, the > > functional test I can only do with the vchkpw/vpopmail interface. > > Used with courier-imap and sqwebmail. As far as I can see, it > > works. > > > > Anything left? > > I did some more tests and found one more bug in stratscript. > Basically, ldconfig does not know about new location of > libauthcourier.so (or whatever the exact name is). When starting > system anew, there were error message. I changed start script this > way (pseudo-patch): > > bindir=3D"${exec_prefix}/bin" > +libdir=3D"${prefix}/lib/courier-authlib" > l ibexecdir=3D"${prefix}/libexec/courier-authlib" > This is a problem in the makefile (I think). Apart of INSTALLS_SHLIB,=20 we must need LDCONFIG_DIRS as we install libs under=20 $prefix/lib/$PORTNAME, not under $prefix/lib/ Yes: make -V LDCONFIG_DIRS Try in courier-authlib Makefile.ext INSTALLS_SHLIB=3D yes +LDCONFIG_DIRS=3D %%PREFIX%%/lib/${PORTNAME} I think I can do a rework of this with other fixes at lunch =20 =2D- josemi From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 12:50:36 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4AA2D16A506 for ; Mon, 25 Apr 2005 12:50:32 +0000 (GMT) Received: from web61001.mail.yahoo.com (web61001.mail.yahoo.com [216.155.196.90]) by mx1.FreeBSD.org (Postfix) with SMTP id DF07B43D58 for ; Mon, 25 Apr 2005 12:50:31 +0000 (GMT) (envelope-from hugoiver@yahoo.com.br) Received: (qmail 73374 invoked by uid 60001); 25 Apr 2005 12:50:29 -0000 Message-ID: <20050425125029.73372.qmail@web61001.mail.yahoo.com> Received: from [164.41.14.161] by web61001.mail.yahoo.com via HTTP; Mon, 25 Apr 2005 09:50:29 ART Date: Mon, 25 Apr 2005 09:50:29 -0300 (ART) From: iii To: ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Subject: Problems with the nautilus2 port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 12:50:36 -0000 Hello, Is anynone else having problems with the nautilus2 port? I have been trying to install it but i always get some compiling errors messages whic don't seem related to some dependecy but to some coding mistake. Can anyone help? []'s PS: if necessary i can post the full file with the compiling output. Yahoo! Acesso Grátis - Internet rápida e grátis. Instale o discador agora! http://br.acesso.yahoo.com/ From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 13:39:31 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9BF3516A4CE for ; Mon, 25 Apr 2005 13:39:31 +0000 (GMT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 8401243D55 for ; Mon, 25 Apr 2005 13:39:30 +0000 (GMT) (envelope-from michaelnottebrock@gmx.net) Received: (qmail invoked by alias); 25 Apr 2005 13:39:27 -0000 Received: from p508BE399.dip.t-dialin.net (EHLO lofi.dyndns.org) [80.139.227.153] by mail.gmx.net (mp004) with SMTP; 25 Apr 2005 15:39:27 +0200 X-Authenticated: #443188 Received: from kiste.my.domain (lofi@kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.13.3/8.12.10) with ESMTP id j3PDd8dj024159 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Mon, 25 Apr 2005 15:39:09 +0200 (CEST) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: freebsd-ports@freebsd.org Date: Mon, 25 Apr 2005 15:39:01 +0200 User-Agent: KMail/1.8 References: <20050423062648.GE61472@bigbird.logicsquad.net> <20050425013415.GD33556@bigbird.logicsquad.net> <426C4B8A.7070508@FreeBSD.org> In-Reply-To: <426C4B8A.7070508@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart19901755.ucpm2BcNyC"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200504251539.07223.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new X-Y-GMX-Trusted: 0 cc: "Paul A. Hoadley" Subject: Re: Depending on other ports with OPTIONS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 13:39:31 -0000 --nextPart19901755.ucpm2BcNyC Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Monday, 25. April 2005 03:44, Adam Weinberger wrote: > Paul A. Hoadley wrote: > > I've hit a wall here---can anyone give me a push in the right > > direction? Even just pointing me at a port that depends on certain > > OPTIONs having been chosen in another port would probably be > > sufficient. I am willing to work it out from the Makefiles. > > Really, the simplest thing is to determine whether someone has installed > the proper flavour (for example, look for mysql-backend.file). If not, > output an error message saying "Rebuild port foo with the mysql-backend > enabled". I bet that'd be enough for most users. The best thing to do would be splitting the libdbi-drivers port into=20 individual ports per backend (or make it a meta/master-port for=20 backend-specific ports), which you can then specifically depend on. It's ye= t=20 more work, but if the libdbi-drivers port-maintainer is ok with the change = in=20 principle and you submit a reworked bunch of libdbi-drivers-foo ports, it=20 should be doable pretty quickly. =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --nextPart19901755.ucpm2BcNyC Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQBCbPL7Xhc68WspdLARAsxGAJ98SxNWn+53pulR7WrXVfnHNwyhuwCgjM/i PMCBRVHfzi4XvzznR4G7Rwc= =vAcs -----END PGP SIGNATURE----- --nextPart19901755.ucpm2BcNyC-- From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 13:57:48 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 609FC16A4CE for ; Mon, 25 Apr 2005 13:57:48 +0000 (GMT) Received: from pastinakel.tue.nl (pastinakel.tue.nl [131.155.2.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id E461C43D31 for ; Mon, 25 Apr 2005 13:57:47 +0000 (GMT) (envelope-from stijn@pcwin002.win.tue.nl) Received: by pastinakel.tue.nl (Postfix, from userid 40) id 9B91D14BB25; Mon, 25 Apr 2005 15:57:46 +0200 (CEST) Received: from pcwin002.win.tue.nl (pcwin002.win.tue.nl [131.155.71.72]) by pastinakel.tue.nl (Postfix) with ESMTP id 80C5A14BB65; Mon, 25 Apr 2005 15:57:42 +0200 (CEST) Received: (from stijn@localhost) by pcwin002.win.tue.nl (8.13.3/8.13.1/Submit) id j3PDvgxW029251; Mon, 25 Apr 2005 15:57:42 +0200 (CEST) (envelope-from stijn) Date: Mon, 25 Apr 2005 15:57:42 +0200 From: Stijn Hoop To: Kris Kennaway Message-ID: <20050425135742.GT89718@pcwin002.win.tue.nl> References: <20050423062648.GE61472@bigbird.logicsquad.net> <20050423063143.GA96226@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="o7gdRJTuwFmWapyH" Content-Disposition: inline In-Reply-To: <20050423063143.GA96226@xor.obsecurity.org> User-Agent: Mutt/1.4.2.1i X-Bright-Idea: Let's abolish HTML mail! X-Spam-DCC: CollegeOfNewCaledonia: pastinakel.tue.nl 1189; Body=1 Fuz1=1 Fuz2=1 X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on pastinakel.tue.nl X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=6.3 tests=BAYES_00 autolearn=ham version=2.64 cc: "Paul A. Hoadley" cc: freebsd-ports@freebsd.org Subject: Re: Depending on other ports with OPTIONS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 13:57:48 -0000 --o7gdRJTuwFmWapyH Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Apr 22, 2005 at 11:31:43PM -0700, Kris Kennaway wrote: > The solution is to make a slave port that enables the option you need, > depend on that, and make it conflict with the other non-enabled > versions of the port. Which also sucks sometimes; qv devel/svk which depends on devel/subversion-perl even if I have devel/subversion WITH_PERL=3Dyes installed. Now because subversion-perl and subversion apparently don't have the correct CONFLICTS lines, this suddenly worked, but if they do conflict it is a problem. How do you propose to handle this? --Stijn --=20 The rain it raineth on the just And also on the unjust fella, But chiefly on the just, because The unjust steals the just's umbrella. --o7gdRJTuwFmWapyH Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCbPdWY3r/tLQmfWcRAo05AJ9xKGRuxJAca50nH47YZIG04TQ2MQCgkv/F iPq3j97vunCqNdwpD6T+Aqg= =g6UG -----END PGP SIGNATURE----- --o7gdRJTuwFmWapyH-- From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 14:42:43 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8AD016A4CE for ; Mon, 25 Apr 2005 14:42:43 +0000 (GMT) Received: from mail.gmx.net (pop.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id D7E3043D54 for ; Mon, 25 Apr 2005 14:42:42 +0000 (GMT) (envelope-from michaelnottebrock@gmx.net) Received: (qmail invoked by alias); 25 Apr 2005 14:42:40 -0000 Received: from p508BE399.dip.t-dialin.net (EHLO lofi.dyndns.org) [80.139.227.153] by mail.gmx.net (mp022) with SMTP; 25 Apr 2005 16:42:40 +0200 X-Authenticated: #443188 Received: from kiste.my.domain (lofi@kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.13.3/8.12.10) with ESMTP id j3PEgQ0o024906 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Mon, 25 Apr 2005 16:42:27 +0200 (CEST) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: freebsd-ports@freebsd.org Date: Mon, 25 Apr 2005 16:42:18 +0200 User-Agent: KMail/1.8 References: <20050423062648.GE61472@bigbird.logicsquad.net> <20050423063143.GA96226@xor.obsecurity.org> <20050425135742.GT89718@pcwin002.win.tue.nl> In-Reply-To: <20050425135742.GT89718@pcwin002.win.tue.nl> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart2880796.yEKsao0Q2b"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200504251642.26228.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new X-Y-GMX-Trusted: 0 cc: "Paul A. Hoadley" cc: Kris Kennaway Subject: Re: Depending on other ports with OPTIONS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 14:42:44 -0000 --nextPart2880796.yEKsao0Q2b Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Monday, 25. April 2005 15:57, Stijn Hoop wrote: > On Fri, Apr 22, 2005 at 11:31:43PM -0700, Kris Kennaway wrote: > > The solution is to make a slave port that enables the option you need, > > depend on that, and make it conflict with the other non-enabled > > versions of the port. > > How do you propose to handle this? The subversion-perl/python ports should be modified to only install the=20 perl/python specific bits and the subversion port should lose the=20 WITH_PERL/WITH_PYTHON switches. =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --nextPart2880796.yEKsao0Q2b Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQBCbQHSXhc68WspdLARAi2NAJ4/0d4SvoD0Gh9dfgqleuHA7h8zygCfXuji /bDgxseyoO5OCdAP7H53Mis= =4RuW -----END PGP SIGNATURE----- --nextPart2880796.yEKsao0Q2b-- From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 14:51:28 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 627A016A4CE for ; Mon, 25 Apr 2005 14:51:28 +0000 (GMT) Received: from kweetal.tue.nl (kweetal.tue.nl [131.155.3.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0293043D48 for ; Mon, 25 Apr 2005 14:51:27 +0000 (GMT) (envelope-from stijn@pcwin002.win.tue.nl) Received: by kweetal.tue.nl (Postfix, from userid 40) id 10AD713B871; Mon, 25 Apr 2005 16:51:27 +0200 (CEST) Received: from pcwin002.win.tue.nl (pcwin002.win.tue.nl [131.155.71.72]) by kweetal.tue.nl (Postfix) with ESMTP id A97C913B8D6; Mon, 25 Apr 2005 16:51:26 +0200 (CEST) Received: (from stijn@localhost) by pcwin002.win.tue.nl (8.13.3/8.13.1/Submit) id j3PEpQB0029749; Mon, 25 Apr 2005 16:51:26 +0200 (CEST) (envelope-from stijn) Date: Mon, 25 Apr 2005 16:51:26 +0200 From: Stijn Hoop To: Michael Nottebrock Message-ID: <20050425145126.GU89718@pcwin002.win.tue.nl> References: <20050423062648.GE61472@bigbird.logicsquad.net> <20050423063143.GA96226@xor.obsecurity.org> <20050425135742.GT89718@pcwin002.win.tue.nl> <200504251642.26228.michaelnottebrock@gmx.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="CxDuMX1Cv2n9FQfo" Content-Disposition: inline In-Reply-To: <200504251642.26228.michaelnottebrock@gmx.net> User-Agent: Mutt/1.4.2.1i X-Bright-Idea: Let's abolish HTML mail! X-Spam-DCC: : X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on kweetal.tue.nl X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=6.3 tests=BAYES_00 autolearn=ham version=2.64 cc: "Paul A. Hoadley" cc: freebsd-ports@freebsd.org cc: Kris Kennaway Subject: Re: Depending on other ports with OPTIONS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 14:51:28 -0000 --CxDuMX1Cv2n9FQfo Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Apr 25, 2005 at 04:42:18PM +0200, Michael Nottebrock wrote: > On Monday, 25. April 2005 15:57, Stijn Hoop wrote: > > On Fri, Apr 22, 2005 at 11:31:43PM -0700, Kris Kennaway wrote: > > > The solution is to make a slave port that enables the option you need, > > > depend on that, and make it conflict with the other non-enabled > > > versions of the port. > > > > How do you propose to handle this? >=20 > The subversion-perl/python ports should be modified to only install the= =20 > perl/python specific bits and the subversion port should lose the=20 > WITH_PERL/WITH_PYTHON switches. In short, the slave ports should NOT conflict with the master... --Stijn --=20 "From the moment I picked your book up until I laid it down I was convulsed with laughter. Some day I intend reading it." -- Groucho Marx --CxDuMX1Cv2n9FQfo Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCbQPuY3r/tLQmfWcRApl5AJ9AA/pNYtObogylT7wgKHc67Rr8mgCfX5Nw pPyHx2sFT0rfgLmcXwGtQIU= =F7J8 -----END PGP SIGNATURE----- --CxDuMX1Cv2n9FQfo-- From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 15:14:26 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CAC016A4CE for ; Mon, 25 Apr 2005 15:14:26 +0000 (GMT) Received: from mail.gmx.net (imap.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 1883143D67 for ; Mon, 25 Apr 2005 15:14:25 +0000 (GMT) (envelope-from michaelnottebrock@gmx.net) Received: (qmail invoked by alias); 25 Apr 2005 15:14:23 -0000 Received: from p508BE399.dip.t-dialin.net (EHLO lofi.dyndns.org) [80.139.227.153] by mail.gmx.net (mp014) with SMTP; 25 Apr 2005 17:14:23 +0200 X-Authenticated: #443188 Received: from kiste.my.domain (lofi@kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.13.3/8.12.10) with ESMTP id j3PFEHTi025391 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Mon, 25 Apr 2005 17:14:18 +0200 (CEST) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: Stijn Hoop Date: Mon, 25 Apr 2005 17:14:12 +0200 User-Agent: KMail/1.8 References: <20050423062648.GE61472@bigbird.logicsquad.net> <200504251642.26228.michaelnottebrock@gmx.net> <20050425145126.GU89718@pcwin002.win.tue.nl> In-Reply-To: <20050425145126.GU89718@pcwin002.win.tue.nl> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart1223081.pCCqBbrf2v"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200504251714.16660.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new X-Y-GMX-Trusted: 0 cc: "Paul A. Hoadley" cc: freebsd-ports@freebsd.org cc: Kris Kennaway Subject: Re: Depending on other ports with OPTIONS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 15:14:26 -0000 --nextPart1223081.pCCqBbrf2v Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Monday, 25. April 2005 16:51, Stijn Hoop wrote: > On Mon, Apr 25, 2005 at 04:42:18PM +0200, Michael Nottebrock wrote: > > On Monday, 25. April 2005 15:57, Stijn Hoop wrote: > > > On Fri, Apr 22, 2005 at 11:31:43PM -0700, Kris Kennaway wrote: > > > > The solution is to make a slave port that enables the option you > > > > need, depend on that, and make it conflict with the other non-enabl= ed > > > > versions of the port. > > > > > > How do you propose to handle this? > > > > The subversion-perl/python ports should be modified to only install the > > perl/python specific bits and the subversion port should lose the > > WITH_PERL/WITH_PYTHON switches. > > In short, the slave ports should NOT conflict with the master... At least if they're depended on by other ports. =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --nextPart1223081.pCCqBbrf2v Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQBCbQlIXhc68WspdLARAgOGAJ9WGtJeC/G4IXD04FD/RzrnnCv/yACeLXtL 7Hf3ZKYmeoVtnpX+RtffVBs= =kmNy -----END PGP SIGNATURE----- --nextPart1223081.pCCqBbrf2v-- From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 15:57:46 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 263D116A4CE for ; Mon, 25 Apr 2005 15:57:46 +0000 (GMT) Received: from dppl.com (sapas.dppl.com [216.182.10.231]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7DD3B43D46 for ; Mon, 25 Apr 2005 15:57:45 +0000 (GMT) (envelope-from yds@CoolRat.org) Received: from [192.168.1.69] (pcp0011284575pcs.union01.nj.comcast.net [69.248.144.22]) (AUTH: PLAIN yds, TLS: TLSv1/SSLv3,256bits,AES256-SHA) by dppl.com with esmtp; Mon, 25 Apr 2005 11:57:44 -0400 Date: Mon, 25 Apr 2005 11:57:44 -0400 From: Yarema To: Oliver Lehmann Message-ID: <7FED6BD2EB2A5924B2448D7B@tuber.coolrat.org> In-Reply-To: <895A5ED96F5ECDED176975AC@[192.168.1.73]> References: <20050414111426.775f6afd.lehmann@ans-netz.de> <200504191258.53327.freebsd@redesjm.local> <20050419173039.4725638a.lehmann@ans-netz.de> <200504191827.05896.ports@dino.sk> <20050420121254.34c59e53.lehmann@ans-netz.de> <9F0C7E4FBA18BFD0B3946DFE@tuber.coolrat.org> <20050420205646.5c7b72df.lehmann@ans-netz.de> <13A599297289B8FA39CA73DB@tuber.coolrat.org> <20050421231051.17229f02.lehmann@ans-netz.de> <895A5ED96F5ECDED176975AC@[192.168.1.73]> X-Mailer: Mulberry/3.1.6 (Linux/x86) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="==========2B17E83D6255D9BA68BB==========" cc: ports@FreeBSD.org cc: ports@dino.sk cc: josemi@freebsd.jazztel.es Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 15:57:46 -0000 --==========2B17E83D6255D9BA68BB========== Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline --On Friday, April 22, 2005 00:37:25 -0400 Yarema wrote: > --On Thursday, April 21, 2005 11:10 PM +0200 Oliver Lehmann > wrote: > >> Hi once more >> >> Yarema wrote: >> >>> Note that "USE_RCORDER= courier-authdaemond.sh" will process >>> 'files/courier-authdaemond.sh.in' and not >>> 'files/courier-authdaemond.sh', that's just how deals >>> with it. >>> >> >> Just a small note: >> USE_RC_SUBR= courier-authdaemond.sh is what we want. >> USE_RCORDER=... installes the file in /etd/rc.d instead of ${PREFIX}/etc/ >> rc.d > > It's not what we all want.. I for one want USE_RCORDER so that in > courier.sh of the courier port I can: > ># PROVIDE: courier mail ># REQUIRE: DAEMON courier_authdaemond ># KEYWORD: FreeBSD shutdown > > and have the system run courier_authdaemond before it runs courier. > > USE_RC_SUBR= startup scripts installed in ${PREFIX}/etc/rc.d/ do not > honor the REQUIRE: and BEFORE: ordering. > > USE_RCORDER= scripts installed in /etd/rc.d/ do honor those. That's what > USE_RCORDER= is for. > > courier-imap and sqwebmail could stand to benefit from such startup > ordering as well. Oliver, I have a small patch against the latest you posted to handle the above issue: Makefile.opt.diff: - AUTH_VCHKPW "Vpopmail/vchkpw support" off + AUTH_VCHKPW "Vpopmail/vchkpw support" off \ + WITH_RCORDER "start authdaemond early in the boot process" off Makefile.ext.diff: + +.if defined(WITH_RCORDER) +USE_RCORDER= courier-authdaemond.sh +.else USE_RC_SUBR= courier-authdaemond.sh +.endif WITH_RCORDER is chosen to be the same as what net/openldap-server and others use to accomplish the same thing. This allows users like myself who prefer the startup order to be sorted early in the boot process by rcorder(8) to enable this without having to manually move the startup scripts to /etc/rc.d/ yet leaves things as they are by default for anyone who does not like their /etc/rc.d/ being molested by ports. The diffs are attached to avoid cut'n'paste errors. -- Yarema http://yds.CoolRat.org --==========2B17E83D6255D9BA68BB========== Content-Type: text/plain; charset=us-ascii; name="Makefile.opt.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="Makefile.opt.diff"; size=400 --- Makefile.opt.orig Mon Apr 25 11:06:59 2005 +++ Makefile.opt Mon Apr 25 11:40:31 2005 @@ -21,4 +21,5 @@ AUTH_PGSQL "PostgreSQL support" off \ AUTH_USERDB "Userdb support (bdb)" off \ AUTH_USERGDBM "Userdb support (gdbm)" off \ - AUTH_VCHKPW "Vpopmail/vchkpw support" off + AUTH_VCHKPW "Vpopmail/vchkpw support" off \ + WITH_RCORDER "start authdaemond early in the boot process" off --==========2B17E83D6255D9BA68BB========== Content-Type: text/plain; charset=iso-8859-1; name="Makefile.ext.diff" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="Makefile.ext.diff"; size=410 --- Makefile.ext.orig Mon Apr 25 11:32:15 2005 +++ Makefile.ext Mon Apr 25 11:36:48 2005 @@ -70,7 +70,12 @@ AUTHDAEMONVAR=3D${AUTHDAEMONVAR} SUB_LIST:=3D ${PLIST_SUB} SUB_FILES+=3D pkg-install pkg-deinstall + +.if defined(WITH_RCORDER) +USE_RCORDER=3D courier-authdaemond.sh +.else USE_RC_SUBR=3D courier-authdaemond.sh +.endif =20 .else BUILD_DEPENDS+=3D courierauthconfig:${PORTSDIR}/security/courier-authlib-ba= se --==========2B17E83D6255D9BA68BB==========-- From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 16:10:21 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F8B916A4CE for ; Mon, 25 Apr 2005 16:10:21 +0000 (GMT) Received: from 62-15-211-171.inversas.jazztel.es (62-15-211-171.inversas.jazztel.es [62.15.211.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E34F43D5F for ; Mon, 25 Apr 2005 16:10:20 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) j3PG9L9f065423; Mon, 25 Apr 2005 18:09:21 +0200 (CEST) (envelope-from josemi@redesjm.local) Received: from localhost (localhost [[UNIX: localhost]]) by redesjm.local (8.13.3/8.13.3/Submit) id j3PG9J06072062; Mon, 25 Apr 2005 18:09:19 +0200 (CEST) (envelope-from josemi@redesjm.local) From: Jose M Rodriguez To: Yarema Date: Mon, 25 Apr 2005 18:09:18 +0200 User-Agent: KMail/1.8 References: <20050414111426.775f6afd.lehmann@ans-netz.de> <895A5ED96F5ECDED176975AC@[192.168.1.73]> <7FED6BD2EB2A5924B2448D7B@tuber.coolrat.org> In-Reply-To: <7FED6BD2EB2A5924B2448D7B@tuber.coolrat.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-13" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200504251809.19713.josemi@redesjm.local> X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-3; AVE: 6.30.0.7; VDF: 6.30.0.116; host: antares.redesjm.local) cc: ports@FreeBSD.org cc: ports@dino.sk cc: josemi@freebsd.jazztel.es Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 16:10:21 -0000 El Lunes, 25 de Abril de 2005 17:57, Yarema escribi=F3: > --On Friday, April 22, 2005 00:37:25 -0400 Yarema =20 wrote: > > --On Thursday, April 21, 2005 11:10 PM +0200 Oliver Lehmann > > > > wrote: > >> Hi once more > >> > >> Yarema wrote: > >>> Note that "USE_RCORDER=3D courier-authdaemond.sh" will process > >>> 'files/courier-authdaemond.sh.in' and not > >>> 'files/courier-authdaemond.sh', that's just how > >>> deals with it. > >> > >> Just a small note: > >> USE_RC_SUBR=3D courier-authdaemond.sh is what we want. > >> USE_RCORDER=3D... installes the file in /etd/rc.d instead of > >> ${PREFIX}/etc/ rc.d > > > > It's not what we all want.. I for one want USE_RCORDER so that in > > courier.sh of the courier port I can: > > > ># PROVIDE: courier mail > ># REQUIRE: DAEMON courier_authdaemond > ># KEYWORD: FreeBSD shutdown > > > > and have the system run courier_authdaemond before it runs courier. > > > > USE_RC_SUBR=3D startup scripts installed in ${PREFIX}/etc/rc.d/ do > > not honor the REQUIRE: and BEFORE: ordering. > > > > USE_RCORDER=3D scripts installed in /etd/rc.d/ do honor those.=20 > > That's what USE_RCORDER=3D is for. > > > > courier-imap and sqwebmail could stand to benefit from such startup > > ordering as well. > > Oliver, > > I have a small patch against the latest you posted to handle the > above issue: > I think Makefile.opt.diff is not acceptable Remember that we are working to import Makefile.opt from foreing ports=20 and for the metaport. Work with a WITH RCORDER Knob and, if you really need and option in the=20 metaport, place it in Makefile, before importing Makefile.opt =2D- josemi From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 16:46:18 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FBB716A4CE for ; Mon, 25 Apr 2005 16:46:18 +0000 (GMT) Received: from dppl.com (sapas.dppl.com [216.182.10.231]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE5E843D48 for ; Mon, 25 Apr 2005 16:46:17 +0000 (GMT) (envelope-from yds@CoolRat.org) Received: from [192.168.1.69] (pcp0011284575pcs.union01.nj.comcast.net [69.248.144.22]) (AUTH: PLAIN yds, TLS: TLSv1/SSLv3,256bits,AES256-SHA) by dppl.com with esmtp; Mon, 25 Apr 2005 12:46:17 -0400 Date: Mon, 25 Apr 2005 12:46:16 -0400 From: Yarema To: Jose M Rodriguez Message-ID: <715B44AA1C5B1F8BC1C753E0@tuber.coolrat.org> In-Reply-To: <200504251809.19713.josemi@redesjm.local> References: <20050414111426.775f6afd.lehmann@ans-netz.de> <895A5ED96F5ECDED176975AC@[192.168.1.73]> <7FED6BD2EB2A5924B2448D7B@tuber.coolrat.org> <200504251809.19713.josemi@redesjm.local> X-Mailer: Mulberry/3.1.6 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline cc: ports@FreeBSD.org cc: ports@dino.sk Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 16:46:18 -0000 --On Monday, April 25, 2005 18:09:18 +0200 Jose M Rodriguez=20 wrote: > El Lunes, 25 de Abril de 2005 17:57, Yarema escribi=F3: >> --On Friday, April 22, 2005 00:37:25 -0400 Yarema > wrote: >> > --On Thursday, April 21, 2005 11:10 PM +0200 Oliver Lehmann >> > >> > wrote: >> >> Hi once more >> >> >> >> Yarema wrote: >> >>> Note that "USE_RCORDER=3D courier-authdaemond.sh" will process >> >>> 'files/courier-authdaemond.sh.in' and not >> >>> 'files/courier-authdaemond.sh', that's just how >> >>> deals with it. >> >> >> >> Just a small note: >> >> USE_RC_SUBR=3D courier-authdaemond.sh is what we want. >> >> USE_RCORDER=3D... installes the file in /etd/rc.d instead of >> >> ${PREFIX}/etc/ rc.d >> > >> > It's not what we all want.. I for one want USE_RCORDER so that in >> > courier.sh of the courier port I can: >> > >> ># PROVIDE: courier mail >> ># REQUIRE: DAEMON courier_authdaemond >> ># KEYWORD: FreeBSD shutdown >> > >> > and have the system run courier_authdaemond before it runs courier. >> > >> > USE_RC_SUBR=3D startup scripts installed in ${PREFIX}/etc/rc.d/ do >> > not honor the REQUIRE: and BEFORE: ordering. >> > >> > USE_RCORDER=3D scripts installed in /etd/rc.d/ do honor those. >> > That's what USE_RCORDER=3D is for. >> > >> > courier-imap and sqwebmail could stand to benefit from such startup >> > ordering as well. >> >> Oliver, >> >> I have a small patch against the latest you posted to handle the >> above issue: >> > > I think Makefile.opt.diff is not acceptable > > Remember that we are working to import Makefile.opt from foreing ports > and for the metaport. > > Work with a WITH RCORDER Knob and, if you really need and option in the > metaport, place it in Makefile, before importing Makefile.opt I remember, and if courier and courier-imap and sqwebmail all incorporate=20 the WITH_RCORDER tunable then all of these ports could also benefit from=20 Makefile.opt.diff. So whether it's "acceptable" or not is a matter of how convenient you want=20 these ports to be for the end user. The courier port will honor theWITH_RCORDER tunable and I hope that Oliver = uses something similar in the ports he maintains. --=20 Yarema http://yds.CoolRat.org From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 16:57:30 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AA8C16A4CE for ; Mon, 25 Apr 2005 16:57:30 +0000 (GMT) Received: from avocado.salatschuessel.net (avocado.salatschuessel.net [83.136.81.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB80743D45 for ; Mon, 25 Apr 2005 16:57:29 +0000 (GMT) (envelope-from lehmann@ans-netz.de) Received: (qmail 32132 invoked by uid 89); 25 Apr 2005 16:57:19 -0000 Received: from unknown (HELO kartoffel.salatschuessel.net) (83.136.81.185) by avocado.salatschuessel.net with SMTP; 25 Apr 2005 16:57:19 -0000 Date: Mon, 25 Apr 2005 18:57:26 +0200 From: Oliver Lehmann To: Jose M Rodriguez , yds@CoolRat.org Message-Id: <20050425185726.14c7facf.lehmann@ans-netz.de> In-Reply-To: <200504251809.19713.josemi@redesjm.local> References: <20050414111426.775f6afd.lehmann@ans-netz.de> <895A5ED96F5ECDED176975AC@[192.168.1.73]> <7FED6BD2EB2A5924B2448D7B@tuber.coolrat.org> <200504251809.19713.josemi@redesjm.local> X-Mailer: Sylpheed version 1.9.9 (GTK+ 2.6.7; i386-portbld-freebsd5.3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org cc: ports@dino.sk Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 16:57:30 -0000 Jose M Rodriguez wrote: > I think Makefile.opt.diff is not acceptable > > Remember that we are working to import Makefile.opt from foreing ports > and for the metaport. > > Work with a WITH RCORDER Knob and, if you really need and option in the > metaport, place it in Makefile, before importing Makefile.opt hmm the thing is, I don't think it'll work that way. If you think it is important Yarema, OPTIONS= has to be in courier-authlib-base/Makefile (since no port depends on security/courier-authlib, and defining it in courier, sqwebmail would nothing change for courier-authlib-base) I've uploaded an updated version of the tar.gz where I added OPTIONS= to -base besides other changes Jose provided me as pm. -- Oliver Lehmann http://www.pofo.de/ http://wishlist.ans-netz.de/ From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 17:34:57 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFA5D16A4CE for ; Mon, 25 Apr 2005 17:34:57 +0000 (GMT) Received: from dppl.com (sapas.dppl.net [216.182.10.231]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F3AB43D39 for ; Mon, 25 Apr 2005 17:34:57 +0000 (GMT) (envelope-from yds@CoolRat.org) Received: from [192.168.1.69] (pcp0011284575pcs.union01.nj.comcast.net [69.248.144.22]) (AUTH: PLAIN yds, TLS: TLSv1/SSLv3,256bits,AES256-SHA) by dppl.com with esmtp; Mon, 25 Apr 2005 13:34:54 -0400 Date: Mon, 25 Apr 2005 13:34:50 -0400 From: Yarema To: Oliver Lehmann , Jose M Rodriguez Message-ID: <04814815DE2B181F5CC5F5A9@tuber.coolrat.org> In-Reply-To: <20050425185726.14c7facf.lehmann@ans-netz.de> References: <20050414111426.775f6afd.lehmann@ans-netz.de> <895A5ED96F5ECDED176975AC@[192.168.1.73]> <7FED6BD2EB2A5924B2448D7B@tuber.coolrat.org> <200504251809.19713.josemi@redesjm.local> <20050425185726.14c7facf.lehmann@ans-netz.de> X-Mailer: Mulberry/3.1.6 (Linux/x86) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="==========81D0E70A83DAD2D35B44==========" cc: ports@FreeBSD.org cc: ports@dino.sk Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 17:34:58 -0000 --==========81D0E70A83DAD2D35B44========== Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline --On Monday, April 25, 2005 18:57:26 +0200 Oliver Lehmann wrote: > Jose M Rodriguez wrote: > >> I think Makefile.opt.diff is not acceptable >> >> Remember that we are working to import Makefile.opt from foreing ports >> and for the metaport. >> >> Work with a WITH RCORDER Knob and, if you really need and option in the >> metaport, place it in Makefile, before importing Makefile.opt > > hmm the thing is, I don't think it'll work that way. If you think it is > important Yarema, OPTIONS= has to be in courier-authlib-base/Makefile > (since no port depends on security/courier-authlib, and defining it in > courier, sqwebmail would nothing change for courier-authlib-base) > > I've uploaded an updated version of the tar.gz where I added OPTIONS= to > -base besides other changes Jose provided me as pm. OK, I see what you mean.. attached is a small diff to the Makefile moving the MASTER_SITES declaration to the top where portlint likes it. And a couple of blank space at end of line fixes pointed out by portlint. ... and there's another typo in Makefile.dep: s/tist/this/ ;) -- Yarema http://yds.CoolRat.org --==========81D0E70A83DAD2D35B44========== Content-Type: text/plain; charset=us-ascii; name="Makefile.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="Makefile.diff"; size=1169 --- Makefile.orig Mon Apr 25 12:56:13 2005 +++ Makefile Mon Apr 25 13:28:18 2005 @@ -9,7 +9,11 @@ PORTVERSION= 0.55 PORTREVISION= 2 CATEGORIES?= security mail -.if !defined(PKGNAMESUFFIX) + +.if defined(PKGNAMESUFFIX) +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= courier +.else MASTER_SITES= # empty DISTFILES= # empty EXTRACT_ONLY= # empty @@ -26,15 +30,12 @@ NO_BUILD= yes PATCHDIR= /dev/null -OPTIONS+= GDBM "Use gdbm db instead of system bdb" off +OPTIONS+= GDBM "Use gdbm instead of system bdb" off .include "${.CURDIR}/Makefile.opt" .else # !defined(PKGNAMESUFFIX) -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= courier - USE_BZIP2= yes USE_GMAKE= yes USE_LIBLTDL= yes @@ -88,7 +89,7 @@ MAN3= authlib.3 auth_generic.3 auth_login.3 auth_getuserinfo.3 \ auth_enumerate.3 auth_passwd.3 auth_getoption.3 auth_sasl.3 - + DOCS= AUTHORS COPYING ChangeLog INSTALL NEWS README \ README.authdebug.html README_authlib.html @@ -169,7 +170,7 @@ .if ${AUTHMOD} == authbase .if defined(WITH_RCORDER) USE_RCORDER= courier-authdaemond.sh -.else +.else USE_RC_SUBR= courier-authdaemond.sh .endif .endif --==========81D0E70A83DAD2D35B44==========-- From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 18:20:47 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 190E816A528; Mon, 25 Apr 2005 18:20:47 +0000 (GMT) Received: from neon.webfusion.co.uk (neon.webfusion.co.uk [212.67.202.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24AEB43D49; Mon, 25 Apr 2005 18:20:46 +0000 (GMT) (envelope-from michael.hopkins@hopkins-research.com) Received: from 83-216-132-201.markch725.adsl.metronet.co.uk ([83.216.132.201] helo=[192.168.0.5]) by neon.webfusion.co.uk with asmtp (Exim 3.36 #1) id 1DQ8CK-0007mx-00; Mon, 25 Apr 2005 19:20:44 +0100 User-Agent: Microsoft-Entourage/10.1.1.2418 Date: Mon, 25 Apr 2005 19:20:41 +0100 From: Michael Hopkins To: "freebsd-amd64@freebsd.org" , Message-ID: Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit Subject: Attempted install of an Obj-C Foundation library X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 18:20:47 -0000 Hi all I am trying to get a working Objective-C Foundation library on FreeBSD amd64 (5.3-RELEASE-p10 with ports cvsup'd today) so that I can port some Objective-C code from Mac OS X - and not having any success. I first tried a default install of the gnustep-base port but got this: ---------------------------------------------------------------------- Athlon# pwd /usr/ports/lang/gnustep-base Athlon# make ===> gnustep-base-1.10.3 depends on file: /usr/local/lib/libcallback.a - found ===> gnustep-base-1.10.3 depends on file: /usr/local/lib/gcc-lib/x86_64-portbld-freebsd5.3/3.3.6/libobjc.so - not found ===> Verifying install for /usr/local/lib/gcc-lib/x86_64-portbld-freebsd5.3/3.3.6/libobjc.so in /usr/ports/lang/gcc-objc ===> gcc-objc-3.3.6_20050330 is marked as broken: Bus errors in stage2; system compiler may be broken.. *** Error code 1 Stop in /usr/ports/lang/gcc-objc. *** Error code 1 Stop in /usr/ports/lang/gnustep-base. ---------------------------------------------------------------------- Someone then suggested I should use 'make -DGNUSTEP_WITH_GCC34' and try again, so I did and got a lot further. After lots of successful building of GCC 3.4.4 it died. Another attempt (which skips the unsuccessful stuff) gives this: ---------------------------------------------------------------------- ===> Building for gnustep-base-1.10.3 Making all in Source... gmake[1]: Entering directory `/usr/ports/lang/gnustep-base/work/gnustep-base-1.10.3/Source' Making all in subprojects of library libgnustep-base... gmake[2]: Entering directory `/usr/ports/lang/gnustep-base/work/gnustep-base-1.10.3/Source/Additions' Making all for subproject Additions... gmake[3]: Nothing to be done for `internal-subproject-all'. gmake[2]: Leaving directory `/usr/ports/lang/gnustep-base/work/gnustep-base-1.10.3/Source/Additions' Making all for library libgnustep-base... Linking library libgnustep-base ... /usr/bin/ld: /usr/local/lib/libcallback.a(misc.o): relocation R_X86_64_32 can not be used when making a shared object; recompile with -fPIC /usr/local/lib/libcallback.a: could not read symbols: Bad value collect2: ld returned 1 exit status gmake[1]: Leaving directory `/usr/ports/lang/gnustep-base/work/gnustep-base-1.10.3/Source' Making all in SSL... gmake[1]: Entering directory `/usr/ports/lang/gnustep-base/work/gnustep-base-1.10.3/SSL' Making all for bundle SSL... Linking bundle SSL ... /usr/bin/ld: cannot find -lgnustep-base collect2: ld returned 1 exit status gmake[2]: *** [SSL.bundle/./SSL] Error 1 gmake[1]: *** [SSL.all.bundle.variables] Error 2 gmake[1]: Leaving directory `/usr/ports/lang/gnustep-base/work/gnustep-base-1.10.3/SSL' gmake: *** [internal-all] Error 2 *** Error code 2 Stop in /usr/ports/lang/gnustep-base. ---------------------------------------------------------------------- I have also tried the other option i.e. libfoundation, from here: http://download.opengroupware.org/sources/trunk/libfoundation-trunk-latest. tar.gz I am told that this is a pretty complete port of the Foundation library, but the install instructions are rather vague. An attempted build after ./configure gives this: ---------------------------------------------------------------------- root@Athlon /home/mwh/Coding/Obj-C/libfoundation/libfoundation # gmake GNUmakefile:29: /common.make: No such file or directory GNUmakefile:34: /aggregate.make: No such file or directory gmake: *** No rule to make target `/aggregate.make'. Stop. ---------------------------------------------------------------------- Has anyone had any luck getting either gnustep-base or libfoundation to build on FreeBSD amd64? I will also want to get it working with the Linux compatibility environment compiler and mingw32 (both of which are working fine for compiling C code) - any thoughts on how feasible this would be? TIA Michael _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ _/ _/ _/_/_/ Hopkins Research Ltd _/ _/ _/ _/ _/_/_/_/ _/_/_/ http://www.hopkins-research.com/ _/ _/ _/ _/ _/ _/ _/ _/ 'touch the future' _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 18:28:52 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A74016A4CE for ; Mon, 25 Apr 2005 18:28:52 +0000 (GMT) Received: from 62-15-211-171.inversas.jazztel.es (62-15-211-171.inversas.jazztel.es [62.15.211.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1D1C43D5F for ; Mon, 25 Apr 2005 18:28:50 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) j3PIS0Ts065713; Mon, 25 Apr 2005 20:28:00 +0200 (CEST) (envelope-from josemi@redesjm.local) Received: from localhost (localhost [[UNIX: localhost]]) by redesjm.local (8.13.3/8.13.3/Submit) id j3PIRvEo001314; Mon, 25 Apr 2005 20:27:57 +0200 (CEST) (envelope-from josemi@redesjm.local) From: Jose M Rodriguez To: Yarema Date: Mon, 25 Apr 2005 20:27:55 +0200 User-Agent: KMail/1.8 References: <20050414111426.775f6afd.lehmann@ans-netz.de> <200504251809.19713.josemi@redesjm.local> <715B44AA1C5B1F8BC1C753E0@tuber.coolrat.org> In-Reply-To: <715B44AA1C5B1F8BC1C753E0@tuber.coolrat.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200504252027.56917.josemi@redesjm.local> X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-3; AVE: 6.30.0.7; VDF: 6.30.0.116; host: antares.redesjm.local) cc: ports@FreeBSD.org cc: ports@dino.sk cc: Jose M Rodriguez Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 18:28:52 -0000 El Lunes, 25 de Abril de 2005 18:46, Yarema escribi=F3: > --On Monday, April 25, 2005 18:09:18 +0200 Jose M Rodriguez > > wrote: > > El Lunes, 25 de Abril de 2005 17:57, Yarema escribi=F3: > >> --On Friday, April 22, 2005 00:37:25 -0400 Yarema > >> > > > > wrote: > >> > --On Thursday, April 21, 2005 11:10 PM +0200 Oliver Lehmann > >> > > >> > wrote: > >> >> Hi once more > >> >> > >> >> Yarema wrote: > >> >>> Note that "USE_RCORDER=3D courier-authdaemond.sh" will process > >> >>> 'files/courier-authdaemond.sh.in' and not > >> >>> 'files/courier-authdaemond.sh', that's just how > >> >>> deals with it. > >> >> > >> >> Just a small note: > >> >> USE_RC_SUBR=3D courier-authdaemond.sh is what we want. > >> >> USE_RCORDER=3D... installes the file in /etd/rc.d instead of > >> >> ${PREFIX}/etc/ rc.d > >> > > >> > It's not what we all want.. I for one want USE_RCORDER so that > >> > in courier.sh of the courier port I can: > >> > > >> ># PROVIDE: courier mail > >> ># REQUIRE: DAEMON courier_authdaemond > >> ># KEYWORD: FreeBSD shutdown > >> > > >> > and have the system run courier_authdaemond before it runs > >> > courier. > >> > > >> > USE_RC_SUBR=3D startup scripts installed in ${PREFIX}/etc/rc.d/ do > >> > not honor the REQUIRE: and BEFORE: ordering. > >> > > >> > USE_RCORDER=3D scripts installed in /etd/rc.d/ do honor those. > >> > That's what USE_RCORDER=3D is for. > >> > > >> > courier-imap and sqwebmail could stand to benefit from such > >> > startup ordering as well. > >> > >> Oliver, > >> > >> I have a small patch against the latest you posted to handle the > >> above issue: > >> > > > > I think Makefile.opt.diff is not acceptable > > > > Remember that we are working to import Makefile.opt from foreing > > ports and for the metaport. > > > > Work with a WITH RCORDER Knob and, if you really need and option in > > the metaport, place it in Makefile, before importing Makefile.opt > > I remember, and if courier and courier-imap and sqwebmail all > incorporate the WITH_RCORDER tunable then all of these ports could > also benefit from Makefile.opt.diff. > Please, stop this. I allready send changes and agree in having the WITH_RCORDER knob. ALso propose the changes needed to implement this as an option in=20 courier-authlib-base (I'll send a copy in private mail). But every release cicle have his time. We have the ports repo-copied=20 and ready for merge. I'm sorry, it's time. =2D- josemi From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 18:56:39 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 532C216A4CE for ; Mon, 25 Apr 2005 18:56:39 +0000 (GMT) Received: from avocado.salatschuessel.net (avocado.salatschuessel.net [83.136.81.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67CAD43D48 for ; Mon, 25 Apr 2005 18:56:38 +0000 (GMT) (envelope-from lehmann@ans-netz.de) Received: (qmail 34922 invoked by uid 89); 25 Apr 2005 18:56:27 -0000 Received: from unknown (HELO kartoffel.salatschuessel.net) (83.136.81.185) by avocado.salatschuessel.net with SMTP; 25 Apr 2005 18:56:27 -0000 Date: Mon, 25 Apr 2005 20:56:35 +0200 From: Oliver Lehmann To: ports@freebsd.org Message-Id: <20050425205635.63e9c649.lehmann@ans-netz.de> In-Reply-To: <20050414111426.775f6afd.lehmann@ans-netz.de> References: <20050414111426.775f6afd.lehmann@ans-netz.de> X-Mailer: Sylpheed version 1.9.9 (GTK+ 2.6.7; i386-portbld-freebsd5.3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 18:56:39 -0000 Oliver Lehmann wrote: > Hi, > > Yarema (courier maintainer) and I worked on splitting the courier-authlib > port into one main port, and 7 slave ports for the ldap, mysql, pam, > pgsql, userdb, usergdbm and vchkpw functionalities. The result can be > found here: > > http://www.pofo.de/tmp/courier-authlib.tar.gz > > I'll request a repo-copy for each port, and will wait with my commit > until the portstree is 100% open for commits again. > > Any comments are appreciated I'll now do final checks with the latest version I've uploaded just right now, and will commit it tomorrow if everything goes well and I find time for comitting. -- Oliver Lehmann http://www.pofo.de/ http://wishlist.ans-netz.de/ From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 19:15:53 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3497716A4CE for ; Mon, 25 Apr 2005 19:15:53 +0000 (GMT) Received: from ms05.mailstreet2003.net (MS05.mailstreet2003.net [63.251.155.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id CADC343D54 for ; Mon, 25 Apr 2005 19:15:52 +0000 (GMT) (envelope-from chris@sigd.net) X-MimeOLE: Produced By Microsoft Exchange V6.5.7226.0 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Date: Mon, 25 Apr 2005 15:15:45 -0400 Message-ID: <6FC9F9894A9F8C49A722CF9F2132FC2203CE19E3@ms05.mailstreet2003.net> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Cacti.. Thread-Index: AcVJyy4RN1qo0rFjT162G+gOth0dCQ== From: "Haulmark, Chris" To: Subject: Cacti.. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 19:15:53 -0000 Is this port supposed to overwrite the include/config.php. What I did was set up a virtual host in apache's httpd.conf to point to /usr/local/share/cacti and then when it was time to upgrade = cacti...doing that caused mysql permission errors. A quick fix was done by restoring = the mysql settings in include/config.php. I thought that ports files were to be checked via md5 sums to make sure = it was the original and then it would be overwritten unless it was = modified. Chris From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 19:41:36 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C429116A4CE; Mon, 25 Apr 2005 19:41:36 +0000 (GMT) Received: from neon.webfusion.co.uk (neon.webfusion.co.uk [212.67.202.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D0EB43D3F; Mon, 25 Apr 2005 19:41:36 +0000 (GMT) (envelope-from michael.hopkins@hopkins-research.com) Received: from 83-216-132-201.markch725.adsl.metronet.co.uk ([83.216.132.201] helo=[192.168.0.5]) by neon.webfusion.co.uk with asmtp (Exim 3.36 #1) id 1DQ9SZ-0006wS-00; Mon, 25 Apr 2005 20:41:35 +0100 User-Agent: Microsoft-Entourage/10.1.1.2418 Date: Mon, 25 Apr 2005 20:41:32 +0100 From: Michael Hopkins To: Message-ID: Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit cc: ports@FreeBSD.org Subject: FreeBSD Port: gnustep-base-1.10.3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 19:41:36 -0000 Hi Trying to install gnustep-base on FreeBSD amd64 5.3 p10 from either ports or packages, but neither are working. Building from ports is broken as in my recent mail to the amd64 and ports lists. Trying to get it as a package gives this: Athlon# pkg_add -r gnustep-base Error: FTP Unable to get ftp://ftp.freebsd.org/pub/FreeBSD/ports/amd64/packages-5.3-release/Latest/gn ustep-base.tbz: File unavailable (e.g., file not found, no access) pkg_add: unable to fetch 'ftp://ftp.freebsd.org/pub/FreeBSD/ports/amd64/packages-5.3-release/Latest/g nustep-base.tbz' by URL The same result for gnustep and gnustep-make. I wonder if you could advise me on what I should try next. I have googled but not found anything that helps so far. TIA Michael _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ _/ _/ _/_/_/ Hopkins Research Ltd _/ _/ _/ _/ _/_/_/_/ _/_/_/ http://www.hopkins-research.com/ _/ _/ _/ _/ _/ _/ _/ _/ 'touch the future' _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 19:58:15 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7080D16A4CE; Mon, 25 Apr 2005 19:58:15 +0000 (GMT) Received: from 62-15-211-171.inversas.jazztel.es (62-15-211-171.inversas.jazztel.es [62.15.211.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id 34D0443D4C; Mon, 25 Apr 2005 19:58:14 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) j3PJwBkG065903; Mon, 25 Apr 2005 21:58:11 +0200 (CEST) (envelope-from josemi@redesjm.local) Received: from localhost (localhost [[UNIX: localhost]]) by redesjm.local (8.13.3/8.13.3/Submit) id j3PJwAql001066; Mon, 25 Apr 2005 21:58:10 +0200 (CEST) (envelope-from josemi@redesjm.local) From: Jose M Rodriguez To: freebsd-ports@freebsd.org Date: Mon, 25 Apr 2005 21:58:09 +0200 User-Agent: KMail/1.8 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200504252158.10279.josemi@redesjm.local> X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-3; AVE: 6.30.0.7; VDF: 6.30.0.116; host: antares.redesjm.local) cc: Michael Hopkins cc: ports@freebsd.org Subject: Re: FreeBSD Port: gnustep-base-1.10.3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 19:58:15 -0000 El Lunes, 25 de Abril de 2005 21:41, Michael Hopkins escribi=F3: > Hi > > Trying to install gnustep-base on FreeBSD amd64 5.3 p10 from either > ports or packages, but neither are working. > > The same result for gnustep and gnustep-make. > > I wonder if you could advise me on what I should try next. I have > googled but not found anything that helps so far. > Have you mounted /proc (procfs), I can remember this is needed to build=20 gnustep ports =2D- josemi From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 19:58:15 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7080D16A4CE; Mon, 25 Apr 2005 19:58:15 +0000 (GMT) Received: from 62-15-211-171.inversas.jazztel.es (62-15-211-171.inversas.jazztel.es [62.15.211.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id 34D0443D4C; Mon, 25 Apr 2005 19:58:14 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) j3PJwBkG065903; Mon, 25 Apr 2005 21:58:11 +0200 (CEST) (envelope-from josemi@redesjm.local) Received: from localhost (localhost [[UNIX: localhost]]) by redesjm.local (8.13.3/8.13.3/Submit) id j3PJwAql001066; Mon, 25 Apr 2005 21:58:10 +0200 (CEST) (envelope-from josemi@redesjm.local) From: Jose M Rodriguez To: freebsd-ports@freebsd.org Date: Mon, 25 Apr 2005 21:58:09 +0200 User-Agent: KMail/1.8 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200504252158.10279.josemi@redesjm.local> X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-3; AVE: 6.30.0.7; VDF: 6.30.0.116; host: antares.redesjm.local) cc: Michael Hopkins cc: ports@freebsd.org Subject: Re: FreeBSD Port: gnustep-base-1.10.3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 19:58:15 -0000 El Lunes, 25 de Abril de 2005 21:41, Michael Hopkins escribi=F3: > Hi > > Trying to install gnustep-base on FreeBSD amd64 5.3 p10 from either > ports or packages, but neither are working. > > The same result for gnustep and gnustep-make. > > I wonder if you could advise me on what I should try next. I have > googled but not found anything that helps so far. > Have you mounted /proc (procfs), I can remember this is needed to build=20 gnustep ports =2D- josemi From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 20:03:00 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 57B0C16A4CE for ; Mon, 25 Apr 2005 20:03:00 +0000 (GMT) Received: from yertle.kcilink.com (yertle.kcilink.com [65.205.34.180]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6A6A43D1F for ; Mon, 25 Apr 2005 20:02:57 +0000 (GMT) (envelope-from vivek@khera.org) Received: from [192.168.7.103] (host-103.int.kcilink.com [192.168.7.103]) by yertle.kcilink.com (Postfix) with ESMTP id 0C710B80A for ; Mon, 25 Apr 2005 16:02:57 -0400 (EDT) Mime-Version: 1.0 (Apple Message framework v622) In-Reply-To: <426BB774.2060104@LogicX.us> References: <426BB774.2060104@LogicX.us> Content-Type: multipart/signed; micalg=sha1; boundary=Apple-Mail-54-860706532; protocol="application/pkcs7-signature" Message-Id: <8c66f2ecba487b31f82221d79b4d3a7d@khera.org> From: Vivek Khera Date: Mon, 25 Apr 2005 16:02:56 -0400 To: ports@freebsd.org X-Mailer: Apple Mail (2.622) X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Re: FreeBSD Port: subversion-1.1.4 amd64/opteron -fPIC failure X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 20:03:00 -0000 --Apple-Mail-54-860706532 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; format=flowed On Apr 24, 2005, at 11:12 AM, Mike Schroll wrote: > I have the following set in make.conf > CFLAGS?= -Os -fPIC -pipe > what is your thinking behind turning on PIC for all compiles of system and port? how do you expect the system to build at all? --Apple-Mail-54-860706532-- From owner-freebsd-ports@FreeBSD.ORG Mon Apr 25 20:04:14 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3639916A4CE for ; Mon, 25 Apr 2005 20:04:14 +0000 (GMT) Received: from 62-15-211-171.inversas.jazztel.es (62-15-211-171.inversas.jazztel.es [62.15.211.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E6C143D55 for ; Mon, 25 Apr 2005 20:04:13 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) j3PK3YeV065928; Mon, 25 Apr 2005 22:03:34 +0200 (CEST) (envelope-from josemi@redesjm.local) Received: from localhost (localhost [[UNIX: localhost]]) by redesjm.local (8.13.3/8.13.3/Submit) id j3PK3Xh5001127; Mon, 25 Apr 2005 22:03:33 +0200 (CEST) (envelope-from josemi@redesjm.local) Received: from smtp2.jazztel.es (192.168.24.13) by mail.jazztel.es (NPlex 4.5.053) id 426D100B000043E7 for josemi@freebsd.jazztel.es; Mon, 25 Apr 2005 21:04:11 +0200 Received: from antivirus by smtp2.jazztel.es with antivirus id 1DQ8r2-0002Lg-00 for josemi@freebsd.jazztel.es Mon, 25 Apr 2005 21:02:48 +0200 Received: from [80.132.246.25] (helo=dill.salatschuessel.net) by smtp2.jazztel.es with esmtp id 1DQ8qn-0001zR-00 for josemi@freebsd.jazztel.es Mon, 25 Apr 2005 21:02:34 +0200 Received: (qmail 83643 invoked by uid 89); 25 Apr 2005 19:02:09 -0000 Received: from unknown (HELO kartoffel.salatschuessel.net) (olivleh1@dill.salatschuessel.net@10.0.1.51) by dill.salatschuessel.net with SMTP; 25 Apr 2005 19:02:09 -0000 Date: Mon, 25 Apr 2005 22:03:32 +0200 From: Jose M Rodriguez To: ports@FreeBSD.org Message-Id: <200504252203.33513.josemi@redesjm.local> In-Reply-To: <200504252009.41744.josemi@redesjm.local> References: <20050425171119.59ad98b7.lehmann@ans-netz.de> <200504251732.11384.josemi@redesjm.local> <20050425181843.5591580a.lehmann@ans-netz.de> <200504252009.41744.josemi@redesjm.local> X-Mailer: Sylpheed version 1.9.9 (GTK+ 2.6.7; i386-portbld-freebsd5.3) Mime-Version: 1.0 X-Virus-Scanned: by antivirus User-Agent: KMail/1.8 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-3; AVE: 6.30.0.7; VDF: 6.30.0.116; host: antares.redesjm.local) cc: Milan Obuch cc: Yarema Subject: Fwd: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2005 20:04:14 -0000 Well, those may be latest tests of: http://www.pofo.de/tmp/courier-authlib.tar.gz -- josemi PD: Sorry, I'm not sending tarball to the list ---------- forwarded message ---------- I've uploaded it now and will start final checks with sqwebmail/vpopmail/ courier-imap. Tomorrow evening (hopefully... I've to search an new exhaust manifold tomorrow afternoon for my car ;) I'll import it into CVS. -- Oliver Lehmann http://www.pofo.de/ http://wishlist.ans-netz.de/ ------------------------------------------------------- From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 00:35:44 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2907C16A4CE for ; Tue, 26 Apr 2005 00:35:44 +0000 (GMT) Received: from skippyii.compar.com (mail.compar.com [216.208.38.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65A5643D55 for ; Tue, 26 Apr 2005 00:35:39 +0000 (GMT) (envelope-from matt@gsicomp.on.ca) Received: from hermes (CPE00062566c7bb-CM000039c69a66.cpe.net.cable.rogers.com [69.193.82.185]) by skippyii.compar.com (8.13.1/8.13.1) with ESMTP id j3Q0jWhF080410 for ; Mon, 25 Apr 2005 20:45:41 -0400 (EDT) (envelope-from matt@gsicomp.on.ca) Message-ID: <001301c549f7$de978970$1200a8c0@gsicomp.on.ca> From: "Matt Emmerton" To: Date: Mon, 25 Apr 2005 20:35:26 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1437 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 Subject: php4 and mod_php4 on the same system? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 00:35:44 -0000 [ Please cc me since I don't track the -ports list ] I'm trying to figure out how I can install both php4 and mod_php4 on a production web server. We have a custom web application written in PHP and is served up with mod_php4. We also have some daily batch processing for this application that is cron-driven and needs to use some of the common PHP code that the web app uses in order to accomplish its tasks. Thus, I'd want to install lang/php4 and www/mod_php4 on our production web server -- but the current ports won't allow it due to the CONFLICT mechanism. What are the dangers of overriding the CONFLICT mechanism in the ports subsystem so that I can install both? Thanks, -- Matt Emmerton From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 01:54:44 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E95016A4CE for ; Tue, 26 Apr 2005 01:54:44 +0000 (GMT) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.207]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B02843D1F for ; Tue, 26 Apr 2005 01:54:44 +0000 (GMT) (envelope-from ringworm01@gmail.com) Received: by wproxy.gmail.com with SMTP id 49so15371wri for ; Mon, 25 Apr 2005 18:54:43 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:from:to:subject:date:user-agent:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=swKeL/FF/n0FrpebedK7z8Reeebaalx9elBHA3epUXUDozuWsWdVHG3GAaf5dKUgXja1PeKbmhO7EJIg2Z8jfu/fbp0bR+uaifgr+hysx6prDQOxS7VorB4+Nnvykj6KAD9tIjjp04XeJu19zrud07CPiId9nBXJA8QAvDQQt0M= Received: by 10.54.59.21 with SMTP id h21mr23617wra; Mon, 25 Apr 2005 18:54:43 -0700 (PDT) Received: from ?192.168.1.10? ([4.28.64.41]) by mx.gmail.com with ESMTP id 39sm669902wrl.2005.04.25.18.54.42; Mon, 25 Apr 2005 18:54:43 -0700 (PDT) From: "Michael C. Shultz" To: bock@bock.nnov.ru, freebsd-ports@freebsd.org Date: Mon, 25 Apr 2005 18:54:34 -0700 User-Agent: KMail/1.8 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200504251854.35101.ringworm01@gmail.com> Subject: /usr/ports/games/doomlegacy X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 01:54:44 -0000 /usr/ports/games/doomlegacy Where are the instructions on how to start this game? I've tried: /usr/local/bin/doomsday -g jdoom -f /usr/local/share/deng/Data/jDoom/jDoom.wad with no luck. The documents in /usr/local/share/doc/deng seem useless. -Mike From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 02:03:20 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 22F5316A4CE for ; Tue, 26 Apr 2005 02:03:20 +0000 (GMT) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 513BF43D3F for ; Tue, 26 Apr 2005 02:03:19 +0000 (GMT) (envelope-from freebsd-ports@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1DQFKa-0003wl-Lq for freebsd-ports@freebsd.org; Tue, 26 Apr 2005 03:57:44 +0200 Received: from pcp08490587pcs.levtwn01.pa.comcast.net ([68.83.169.224]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 26 Apr 2005 03:57:44 +0200 Received: from apeiron+usenet by pcp08490587pcs.levtwn01.pa.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 26 Apr 2005 03:57:44 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: Christopher Nehren Date: Tue, 26 Apr 2005 01:57:11 +0000 (UTC) Organization: /usr/bin/false Lines: 31 Message-ID: References: <200504251854.35101.ringworm01@gmail.com> X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: pcp08490587pcs.levtwn01.pa.comcast.net User-Agent: slrn/0.9.8.1 (FreeBSD) Sender: news Subject: Re: /usr/ports/games/doomlegacy X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 02:03:20 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 2005-04-26, Michael C. Shultz scribbled these curious markings: > /usr/ports/games/doomlegacy Have you thought of, just perhaps: pkg_info -Lx doomlegacy | grep bin ? > /usr/local/bin/doomsday -g jdoom -f /usr/local/share/deng/Data/jDoom/jDoom.wad ... that's for games/doomsday, which you start with deng, as the pkg-message clearly shows you when you install it. Best Regards, Christopher Nehren -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCbaEuk/lo7zvzJioRAh17AJ9loOSF/oGTf6bwR+7xEqL9qj5cewCdGeZA ZCq5nAN+in3Lz7jKe6KFYIY= =UeHf -----END PGP SIGNATURE----- -- I abhor a system designed for the "user", if that word is a coded pejorative meaning "stupid and unsophisticated". -- Ken Thompson If you ask the wrong questions, you get answers like "42" and "God". Unix is user friendly. However, it isn't idiot friendly. From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 02:06:43 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 18B2916A4CE for ; Tue, 26 Apr 2005 02:06:43 +0000 (GMT) Received: from dppl.com (sapas.dppl.net [216.182.10.231]) by mx1.FreeBSD.org (Postfix) with ESMTP id A290643D31 for ; Tue, 26 Apr 2005 02:06:42 +0000 (GMT) (envelope-from yds@CoolRat.org) Received: from [192.168.1.69] (pcp0011284575pcs.union01.nj.comcast.net [69.248.144.22]) (AUTH: PLAIN yds, TLS: TLSv1/SSLv3,256bits,AES256-SHA) by dppl.com with esmtp; Mon, 25 Apr 2005 22:06:41 -0400 Date: Mon, 25 Apr 2005 22:06:36 -0400 From: Yarema To: Oliver Lehmann Message-ID: <9FD5FCAF2F0093AA4991B478@tuber.coolrat.org> In-Reply-To: <20050425194255.2fb68377.lehmann@ans-netz.de> References: <20050414111426.775f6afd.lehmann@ans-netz.de> <895A5ED96F5ECDED176975AC@[192.168.1.73]> <7FED6BD2EB2A5924B2448D7B@tuber.coolrat.org> <200504251809.19713.josemi@redesjm.local> <20050425185726.14c7facf.lehmann@ans-netz.de> <04814815DE2B181F5CC5F5A9@tuber.coolrat.org> <20050425194255.2fb68377.lehmann@ans-netz.de> X-Mailer: Mulberry/3.1.6 (Linux/x86) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="==========4DF9871AD190BBAD4D42==========" cc: ports@FreeBSD.org cc: ports@dino.sk cc: josemi@freebsd.jazztel.es Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 02:06:43 -0000 --==========4DF9871AD190BBAD4D42========== Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline --On Monday, April 25, 2005 19:42:55 +0200 Oliver Lehmann wrote: > Yarema wrote: > >> attached is a small diff to the Makefile moving >> the MASTER_SITES declaration to the top where portlint likes it. > > It looks more consitent - even if at least my portlint hates it ;) > > FATAL: Makefile: MASTER_SITES appears out-of-order. > FATAL: Makefile: order must be PORTNAME/PORTVERSION/DISTVERSIONPREFIX/ > DISTVERSION/DISTVERSIONSUFFIX/PORTREVISION/PORTEPOCH/CATEGORIES/ > MASTER_SITES/MASTER_SITE_SUBDIR/PKGNAMEPREFIX/PKGNAMESUFFIX/DISTNAME/ > EXTRACT_SUFX/DISTFILES/DIST_SUBDIR/EXTRACT_ONLY. > > >> And a >> couple of blank space at end of line fixes pointed out by portlint. >> >> ... and there's another typo in Makefile.dep: s/tist/this/ ;) > > Damn.. will we ever get this to fly? ;) > Being on call and fixing "real problems" and doing portswork at the same > time - looks that this isn't a good idea :-/ > > Ok, changes taken - tar.gz uploaded (as usual) I hear that! It'll fly once we all stop looking at the code and start using it... :) Here's another note: In security/courier-authlib-base/Makefile -OPTIONS+= RCORDER "start authdaemond early in the boot process" off +OPTIONS+= RCORDER "Start authdaemond early in the boot process" off "Start" should probably be capitalized.. and that's probably my fault.. -- Yarema http://yds.CoolRat.org --==========4DF9871AD190BBAD4D42========== Content-Type: text/plain; charset=iso-8859-1; name="Makefile.dep.diff" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="Makefile.dep.diff"; size=752 --- Makefile.dep.orig Mon Apr 25 17:05:55 2005 +++ Makefile.dep Mon Apr 25 18:54:55 2005 @@ -23,12 +23,10 @@ .if defined(WITH_AUTH_PGSQL) BUILD_DEPENDS+=3D ${LOCALBASE}/lib/courier-authlib/libauthpgsql.so:${PORTSD= IR}/databases/courier-authlib-pgsql .endif -.if defined(WITH_AUTH_USERDB) -.if defined(WITH_GDBM) +.if defined(WITH_AUTH_USERDB) || defined(WITH_GDBM) BUILD_DEPENDS+=3D ${LOCALBASE}/lib/courier-authlib/libauthuserdb.so:${PORTS= DIR}/databases/courier-authlib-usergdbm .else BUILD_DEPENDS+=3D ${LOCALBASE}/lib/courier-authlib/libauthuserdb.so:${PORTS= DIR}/databases/courier-authlib-userdb -.endif .endif .if defined(WITH_AUTH_VCHKPW) BUILD_DEPENDS+=3D ${LOCALBASE}/lib/courier-authlib/libauthvchkpw.so:${PORTS= DIR}/mail/courier-authlib-vchkpw --==========4DF9871AD190BBAD4D42==========-- From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 02:21:38 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5060016A4CE for ; Tue, 26 Apr 2005 02:21:38 +0000 (GMT) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id E08EA43D49 for ; Tue, 26 Apr 2005 02:21:37 +0000 (GMT) (envelope-from ringworm01@gmail.com) Received: by wproxy.gmail.com with SMTP id 69so1441535wra for ; Mon, 25 Apr 2005 19:21:37 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:from:to:subject:date:user-agent:references:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=i0/rWbLSN5AsRUBFDX2o/5ivDX6jhevBOUsO5ZCEXxj5otNgrV6ZDf0KCX0gKodphBV2w6bagD1F8A499lKh//empQ7pc1JzDVjwCC4GxGmtcgGc6KaZla4jOtgGVGTAdVxsuL84S4oH7r7BR5U9zbpBa1nYxcu3K6Wt67pYxwI= Received: by 10.54.50.15 with SMTP id x15mr2320502wrx; Mon, 25 Apr 2005 19:21:37 -0700 (PDT) Received: from ?192.168.1.10? ([4.28.64.41]) by mx.gmail.com with ESMTP id 27sm192176wrl.2005.04.25.19.21.35; Mon, 25 Apr 2005 19:21:37 -0700 (PDT) From: "Michael C. Shultz" To: freebsd-ports@freebsd.org, Christopher Nehren Date: Mon, 25 Apr 2005 19:21:31 -0700 User-Agent: KMail/1.8 References: <200504251854.35101.ringworm01@gmail.com> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200504251921.31614.ringworm01@gmail.com> Subject: Re: /usr/ports/games/doomlegacy X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 02:21:38 -0000 On Monday 25 April 2005 18:57, Christopher Nehren wrote: > On 2005-04-26, Michael C. Shultz scribbled these > > curious markings: > > /usr/ports/games/doomlegacy > > Have you thought of, just perhaps: > pkg_info -Lx doomlegacy | grep bin > ? > > > /usr/local/bin/doomsday -g jdoom -f > > /usr/local/share/deng/Data/jDoom/jDoom.wad > > ... that's for games/doomsday, which you start with deng, as the > pkg-message clearly shows you when you install it. > > Best Regards, > Christopher Nehren pkg_info -Lx doomlegacy | grep bin returns: /usr/local/bin/legacy which returns Error: Main WAD file not found You need either doom.wad, doom1.wad, doom2.wad, tnt.wad, plutonia.wad, heretic.wad or heretic1.wad from any sharware or commercial version of Doom or Heretic! If you have one of those files, be sure it has the correct case or use the -IWAD command line switch. find shows none of the "wad" files on the hard drive and there seems to be no instructions on how to acquire them. also, "... that's for games/doomsday, which you start with deng, as the pkg-message clearly shows you when you install it." does not seem to work as the pkg-info suggested it should when I ran "/usr/local/bin/doomsday -g jdoom -f /usr/local/share/deng/Data/jDoom/jDoom.wad". -Mike From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 02:30:32 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0204716A4CE for ; Tue, 26 Apr 2005 02:30:32 +0000 (GMT) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74E8143D1F for ; Tue, 26 Apr 2005 02:30:31 +0000 (GMT) (envelope-from freebsd-ports@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1DQFl9-0007rw-Q3 for freebsd-ports@freebsd.org; Tue, 26 Apr 2005 04:25:11 +0200 Received: from pcp08490587pcs.levtwn01.pa.comcast.net ([68.83.169.224]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 26 Apr 2005 04:25:11 +0200 Received: from apeiron+usenet by pcp08490587pcs.levtwn01.pa.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 26 Apr 2005 04:25:11 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: Christopher Nehren Date: Tue, 26 Apr 2005 02:24:57 +0000 (UTC) Organization: /usr/bin/false Lines: 40 Message-ID: References: <200504251854.35101.ringworm01@gmail.com> <200504251921.31614.ringworm01@gmail.com> X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: pcp08490587pcs.levtwn01.pa.comcast.net User-Agent: slrn/0.9.8.1 (FreeBSD) Sender: news Subject: Re: /usr/ports/games/doomlegacy X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 02:30:32 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 2005-04-26, Michael C. Shultz scribbled these curious markings: > Error: Main WAD file not found > You need either doom.wad, doom1.wad, doom2.wad, > tnt.wad, plutonia.wad, heretic.wad or heretic1.wad > from any sharware or commercial version of Doom or Heretic! > If you have one of those files, be sure it has the correct case > or use the -IWAD command line switch. You need to get a WAD from somewhere (e.g. a shareware copy of one of the aforementioned games, or commercial, registered installation media). In the U.S., you should be able to pick up a copy of DOOM '95 or DOOM2 '95 at your local Wal-Mart for ~ 10 USD (which is what I paid for mine). Just copy the WAD from the disc and you're ready to go. > also, "... that's for games/doomsday, which you start with deng, as the > pkg-message clearly shows you when you install it." does not seem to work as > the pkg-info suggested it should when I ran "/usr/local/bin/doomsday -g jdoom > -f /usr/local/share/deng/Data/jDoom/jDoom.wad". Hmph. Blame my (normally superb) memory for that one. My apologies. Best Regards, Christopher Nehren -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCbaewk/lo7zvzJioRAssWAKCvD7vp1HDUk2yihEb8WKa8CpfwXQCgjgUC KXrWMrGAcYRxEZbOBscLr5M= =07x2 -----END PGP SIGNATURE----- -- I abhor a system designed for the "user", if that word is a coded pejorative meaning "stupid and unsophisticated". -- Ken Thompson If you ask the wrong questions, you get answers like "42" and "God". Unix is user friendly. However, it isn't idiot friendly. From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 03:45:04 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60B8016A4CE for ; Tue, 26 Apr 2005 03:45:04 +0000 (GMT) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA43843D41 for ; Tue, 26 Apr 2005 03:45:03 +0000 (GMT) (envelope-from ringworm01@gmail.com) Received: by wproxy.gmail.com with SMTP id 49so23810wri for ; Mon, 25 Apr 2005 20:45:03 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:from:to:subject:date:user-agent:references:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=KpVA4UVlhYnO7vZkCdeoeetJgEaAt7VWEQMJZ7ieHZ6oQc310Uxp/A9HHK4tu8x1UgmfN5y4zX+Fp+A5+4bTGiAieP5MOmxFHL5xTmpD+Y3+kJ7GW8TWOrD/gqjvm4aUfsynmsuYBgmXXdU88BZVYFUpWdnE2XuIMebK8zBig6Q= Received: by 10.54.59.2 with SMTP id h2mr29175wra; Mon, 25 Apr 2005 20:45:03 -0700 (PDT) Received: from ?192.168.1.10? ([4.28.64.41]) by mx.gmail.com with ESMTP id 10sm508671wrl.2005.04.25.20.45.02; Mon, 25 Apr 2005 20:45:03 -0700 (PDT) From: "Michael C. Shultz" To: freebsd-ports@freebsd.org, Christopher Nehren Date: Mon, 25 Apr 2005 20:44:52 -0700 User-Agent: KMail/1.8 References: <200504251854.35101.ringworm01@gmail.com> <200504251921.31614.ringworm01@gmail.com> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200504252044.53341.ringworm01@gmail.com> Subject: Re: /usr/ports/games/doomlegacy X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 03:45:04 -0000 On Monday 25 April 2005 19:24, Christopher Nehren wrote: > On 2005-04-26, Michael C. Shultz scribbled these > > curious markings: > > Error: Main WAD file not found > > You need either doom.wad, doom1.wad, doom2.wad, > > tnt.wad, plutonia.wad, heretic.wad or heretic1.wad > > from any sharware or commercial version of Doom or Heretic! > > If you have one of those files, be sure it has the correct case > > or use the -IWAD command line switch. > > You need to get a WAD from somewhere (e.g. a shareware copy of one of > the aforementioned games, or commercial, registered installation media). > In the U.S., you should be able to pick up a copy of DOOM '95 or DOOM2 > '95 at your local Wal-Mart for ~ 10 USD (which is what I paid for mine). > Just copy the WAD from the disc and you're ready to go. > OK, I found a wad file through google and this works now, the doomsday port I'm giving up on however. Thanks for your help! -Mike > > also, "... that's for games/doomsday, which you start with deng, as the > > pkg-message clearly shows you when you install it." does not seem to > > work as the pkg-info suggested it should when I ran > > "/usr/local/bin/doomsday -g jdoom -f > > /usr/local/share/deng/Data/jDoom/jDoom.wad". > > Hmph. Blame my (normally superb) memory for that one. My apologies. > > Best Regards, > Christopher Nehren From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 03:45:30 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 046C016A4CE for ; Tue, 26 Apr 2005 03:45:30 +0000 (GMT) Received: from absinthe.tincture.us (adsl-67-113-224-217.dsl.snfc21.pacbell.net [67.113.224.217]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D8A443D1D for ; Tue, 26 Apr 2005 03:45:29 +0000 (GMT) (envelope-from fred@tincture.us) Received: from [10.0.0.20] (red.tincture.us [10.0.0.20] (may be forged)) (authenticated bits=0) by absinthe.tincture.us (8.13.3/8.13.3) with ESMTP id j3Q3jSBB002874 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NO); Mon, 25 Apr 2005 20:45:28 -0700 (PDT) (envelope-from fred@tincture.us) In-Reply-To: <001301c549f7$de978970$1200a8c0@gsicomp.on.ca> References: <001301c549f7$de978970$1200a8c0@gsicomp.on.ca> Mime-Version: 1.0 (Apple Message framework v622) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <4bc120c7b6a3ce4b6819552ba5ccf399@tincture.us> Content-Transfer-Encoding: 7bit From: Fred Condo Date: Mon, 25 Apr 2005 20:45:27 -0700 To: "Matt Emmerton" X-Mailer: Apple Mail (2.622) cc: freebsd-ports@freebsd.org Subject: Re: php4 and mod_php4 on the same system? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 03:45:30 -0000 On Apr 25, 2005, at 5:35 PM, Matt Emmerton wrote: > [ Please cc me since I don't track the -ports list ] > > I'm trying to figure out how I can install both php4 and mod_php4 on a > production web server. > > We have a custom web application written in PHP and is served up with > mod_php4. > We also have some daily batch processing for this application that is > cron-driven and needs to use some of the common PHP code that the web > app > uses in order to accomplish its tasks. > > Thus, I'd want to install lang/php4 and www/mod_php4 on our production > web > server -- but the current ports won't allow it due to the CONFLICT > mechanism. > > What are the dangers of overriding the CONFLICT mechanism in the ports > subsystem so that I can install both? No need to install both: lang/php4 also installs the Apache module. If you really want to install them separately, you might be able to use lang/php4-cli and www/mod_php4. From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 04:03:48 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE98216A4CE; Tue, 26 Apr 2005 04:03:48 +0000 (GMT) Received: from carver.gumbysoft.com (carver.gumbysoft.com [66.220.23.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id C11E443D39; Tue, 26 Apr 2005 04:03:48 +0000 (GMT) (envelope-from dwhite@gumbysoft.com) Received: by carver.gumbysoft.com (Postfix, from userid 1000) id B469372DE5; Mon, 25 Apr 2005 21:03:48 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by carver.gumbysoft.com (Postfix) with ESMTP id B25ED72DE4; Mon, 25 Apr 2005 21:03:48 -0700 (PDT) Date: Mon, 25 Apr 2005 21:03:48 -0700 (PDT) From: Doug White To: Uzi Klein In-Reply-To: <4263DB52.8020408@bmby.com> Message-ID: <20050425210312.J43358@carver.gumbysoft.com> References: <4263D37E.6070805@bmby.com> <4263D723.6020405@bmby.com> <4263DB52.8020408@bmby.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-stable@freebsd.org cc: freebsd-ports@freebsd.org Subject: Re: MySQL signal 11 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 04:03:49 -0000 On Mon, 18 Apr 2005, Uzi Klein wrote: > Uzi Klein wrote: > > Uzi Klein wrote: > > > >> > >> Hi > >> > >> I got this message from mysql-error log. > >> Nothing visible on system log, but after it happens, mysql starts > >> acting strange (shoes double fields values as 0 while is still > >> contains the data - visible after restarting mysql) > >> > >> Hardware should be OK, nothing wrong in boot message and its a brand > >> new HP DL380-G4. > >> > >> Any leads or ideas? > >> > > > > eh.. something causing only 1 attachment to appear... sorry... > > > > * mysql-error.log : * > > mysqld got signal 11; > This could be because you hit a bug. It is also possible that this binary > or one of the libraries it was linked against is corrupt, improperly built, > or misconfigured. This error can also be caused by malfunctioning hardware. > We will try our best to scrape up some info that will hopefully help > diagnose > the problem, but since we have already crashed, something is definitely > wrong > and this may fail. This is generally indicative of bad memory or nonfunctional cooling. Check the system's environmentals. -- Doug White | FreeBSD: The Power to Serve dwhite@gumbysoft.com | www.FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 06:12:01 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8668116A4CE for ; Tue, 26 Apr 2005 06:12:01 +0000 (GMT) Received: from 62-15-211-171.inversas.jazztel.es (62-15-211-171.inversas.jazztel.es [62.15.211.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DCEB43D5A for ; Tue, 26 Apr 2005 06:12:00 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) j3Q6BERn086644; Tue, 26 Apr 2005 08:11:15 +0200 (CEST) (envelope-from josemi@redesjm.local) Received: from localhost (localhost [[UNIX: localhost]]) by redesjm.local (8.13.3/8.13.3/Submit) id j3Q6BCJJ000897; Tue, 26 Apr 2005 08:11:12 +0200 (CEST) (envelope-from josemi@redesjm.local) From: Jose M Rodriguez To: Yarema Date: Tue, 26 Apr 2005 08:11:11 +0200 User-Agent: KMail/1.8 References: <20050414111426.775f6afd.lehmann@ans-netz.de> <20050425194255.2fb68377.lehmann@ans-netz.de> <9FD5FCAF2F0093AA4991B478@tuber.coolrat.org> In-Reply-To: <9FD5FCAF2F0093AA4991B478@tuber.coolrat.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-13" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200504260811.12640.josemi@redesjm.local> X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-3; AVE: 6.30.0.7; VDF: 6.30.0.116; host: antares.redesjm.local) cc: ports@FreeBSD.org cc: ports@dino.sk cc: josemi@freebsd.jazztel.es Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 06:12:01 -0000 El Martes, 26 de Abril de 2005 04:06, Yarema escribi=F3: > --On Monday, April 25, 2005 19:42:55 +0200 Oliver Lehmann > > wrote: > > Yarema wrote: > >> attached is a small diff to the Makefile moving > >> the MASTER_SITES declaration to the top where portlint likes it. > > > > It looks more consitent - even if at least my portlint hates it ;) > > > > FATAL: Makefile: MASTER_SITES appears out-of-order. > > FATAL: Makefile: order must be > > PORTNAME/PORTVERSION/DISTVERSIONPREFIX/ > > DISTVERSION/DISTVERSIONSUFFIX/PORTREVISION/PORTEPOCH/CATEGORIES/ > > MASTER_SITES/MASTER_SITE_SUBDIR/PKGNAMEPREFIX/PKGNAMESUFFIX/DISTNAM > >E/ EXTRACT_SUFX/DISTFILES/DIST_SUBDIR/EXTRACT_ONLY. > > > >> And a > >> couple of blank space at end of line fixes pointed out by > >> portlint. > >> > >> ... and there's another typo in Makefile.dep: s/tist/this/ ;) > > > > Damn.. will we ever get this to fly? ;) > > Being on call and fixing "real problems" and doing portswork at the > > same time - looks that this isn't a good idea :-/ > > > > Ok, changes taken - tar.gz uploaded (as usual) > > I hear that! It'll fly once we all stop looking at the code and > start using it... :) > > Here's another note: > > In security/courier-authlib-base/Makefile > > -OPTIONS+=3D RCORDER "start authdaemond early in the boot process" off > +OPTIONS+=3D RCORDER "Start authdaemond early in the boot process" off +OPTIONS=3D RCORDER "Start authdaemond early in the boot process" off > > "Start" should probably be capitalized.. and that's probably my > fault.. =2D- josemi From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 06:50:07 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4517716A4CE for ; Tue, 26 Apr 2005 06:50:07 +0000 (GMT) Received: from 62-15-211-171.inversas.jazztel.es (62-15-211-171.inversas.jazztel.es [62.15.211.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E27443D2D for ; Tue, 26 Apr 2005 06:50:06 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) j3Q6o41w086878; Tue, 26 Apr 2005 08:50:04 +0200 (CEST) (envelope-from josemi@redesjm.local) Received: from localhost (localhost [[UNIX: localhost]]) by redesjm.local (8.13.3/8.13.3/Submit) id j3Q6o3gd001152; Tue, 26 Apr 2005 08:50:03 +0200 (CEST) (envelope-from josemi@redesjm.local) From: Jose M Rodriguez Date: Tue, 26 Apr 2005 08:50:03 +0200 User-Agent: KMail/1.8 References: <200504252158.10279.josemi@redesjm.local> In-Reply-To: <200504252158.10279.josemi@redesjm.local> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline To: "Undisclosed.Recipients": ; Message-Id: <200504260850.03644.josemi@redesjm.local> X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-3; AVE: 6.30.0.7; VDF: 6.30.0.116; host: antares.redesjm.local) cc: Michael Hopkins cc: ports@freebsd.org Subject: Re: FreeBSD Port: gnustep-base-1.10.3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 06:50:07 -0000 El Lunes, 25 de Abril de 2005 21:58, Jose M Rodriguez escribi=F3: > El Lunes, 25 de Abril de 2005 21:41, Michael Hopkins escribi=F3: > > Hi > > > > Trying to install gnustep-base on FreeBSD amd64 5.3 p10 from either > > ports or packages, but neither are working. > > > > The same result for gnustep and gnustep-make. > > > > I wonder if you could advise me on what I should try next. I have > > googled but not found anything that helps so far. > > Have you mounted /proc (procfs), I can remember this is needed to > build gnustep ports > > -- > josemi I think I point you in the wrong direction. Apart of this, the only hope I can offer you is that this can be built=20 with other gcc gnustep uses GNUSTEP_WITH_GCC32, GNUSTEP_WITH_GCC33(default) and=20 GNUSTEP_WITH_GCC34 Try define GNUSTEP_WITH_GCC34 or GNUSTEP_WITH_GCC32 in /etc/make.conf=20 before build =2D- josemi > _______________________________________________ > 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 Tue Apr 26 07:16:14 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D49A716A4CE for ; Tue, 26 Apr 2005 07:16:14 +0000 (GMT) Received: from 62-15-211-171.inversas.jazztel.es (62-15-211-171.inversas.jazztel.es [62.15.211.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C24243D2F for ; Tue, 26 Apr 2005 07:16:13 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) j3Q7GBRU086951 for ; Tue, 26 Apr 2005 09:16:11 +0200 (CEST) (envelope-from josemi@redesjm.local) Received: from localhost (localhost [[UNIX: localhost]]) by redesjm.local (8.13.3/8.13.3/Submit) id j3Q7GBTS002416 for ports@FreeBSD.org; Tue, 26 Apr 2005 09:16:11 +0200 (CEST) (envelope-from josemi@redesjm.local) From: Jose M Rodriguez To: ports@FreeBSD.org Date: Tue, 26 Apr 2005 09:16:10 +0200 User-Agent: KMail/1.8 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200504260916.11192.josemi@redesjm.local> X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-3; AVE: 6.30.0.7; VDF: 6.30.0.116; host: antares.redesjm.local) Subject: problems with options in pkg cluster builds. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 07:16:15 -0000 Hi, I'm having problems with pkg cluster builds after latest changes to options code. I want force the way packages must be build from make.conf and pkgtools.conf, but seems that default config is chase due to options code. This is an automated build in a fresh chroot with PACKAGE_BUILDING and BATCH defined that used to work before. Any know method to disabled options code? Any hope that this change may be reverted and options processing is supressed when PACKAGE_BUILDING is defined? I don't have problems with options code active when only BATCH is defined. Also, if a new env must be used for that, I can define this in make.conf. -- josemi From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 07:59:43 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AACE016A4CE for ; Tue, 26 Apr 2005 07:59:43 +0000 (GMT) Received: from mail.grippunt.nl (host-3.grip-2.demon.nl [212.238.176.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id E813843D49 for ; Tue, 26 Apr 2005 07:59:42 +0000 (GMT) (envelope-from deruysscher@grip.nl) Received: from localhost (localhost.grip.nl [127.0.0.1]) by mail.grippunt.nl (Postfix) with ESMTP id 5642D291; Tue, 26 Apr 2005 09:59:41 +0200 (CEST) Received: from mail.grippunt.nl ([127.0.0.1]) by localhost (ns1.grip.nl [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10577-04; Tue, 26 Apr 2005 09:59:41 +0200 (CEST) Received: from GMMLAPTOPREMY (unknown [192.168.100.163]) by mail.grippunt.nl (Postfix) with SMTP id 12FFE278; Tue, 26 Apr 2005 09:59:41 +0200 (CEST) Message-ID: <002401c54a35$e5e37b60$a364a8c0@grip.nl> From: "Remy de Ruysscher - Grip MultiMedia" To: Date: Tue, 26 Apr 2005 09:59:39 +0200 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2527 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2527 X-Virus-Scanned: by amavisd-new at grippunt.nl Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 cc: ports@FreeBSD.org Subject: FreeBSD Port: rsnapshot-1.1.6 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 07:59:43 -0000 Hi Ralf, I was wondering when rsnaphot will be updated to 1.1.7 in the ports. What are your experiences with the 1.2.1 release and is it possible to = commit=20 a rsnapshot-devel (1.2.1) to the ports? Thanks in advance. Met vriendelijke groet, =20 Remy de Ruysscher Network Engineer ________________________ GRIP MULTIMEDIA BV De serieuze stap naar internet =20 Zie http://grip.nl voor meer informatie en het laatste nieuws From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 08:14:20 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA99216A4CE for ; Tue, 26 Apr 2005 08:14:20 +0000 (GMT) Received: from relay.vertex.kz (relay.vertex.kz [212.19.129.142]) by mx1.FreeBSD.org (Postfix) with ESMTP id 172C943D39 for ; Tue, 26 Apr 2005 08:14:20 +0000 (GMT) (envelope-from bp@vertex.kz) Received: from lion.butya.kz (localhost [127.0.0.1]) by relay.vertex.kz (Postfix) with SMTP id EB3FB5C5B; Tue, 26 Apr 2005 14:14:16 +0600 (ALMT) Received: from relay.vertex.kz (localhost [127.0.0.1]) by localhost.vertex.kz (Postfix) with ESMTP id C6B3F5BAE; Tue, 26 Apr 2005 14:14:16 +0600 (ALMT) Received: by relay.vertex.kz (Postfix, from userid 1000) id C23A45BAD; Tue, 26 Apr 2005 14:14:16 +0600 (ALMT) Date: Tue, 26 Apr 2005 14:14:16 +0600 From: Boris Popov To: danilo psico Message-ID: <20050426081416.GI29319@vertex.kz> References: <20050424211724.0A35A130023@cuenca.terra.com.br> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050424211724.0A35A130023@cuenca.terra.com.br> User-Agent: Mutt/1.5.6i cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: mars_nwe-0.99.b19_1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 08:14:21 -0000 On Sun, Apr 24, 2005 at 06:17:18PM -0300, danilo psico wrote: > > I am writing this email to ask you why don't you have a port of the mars_nwe > version 0.99pl20, as the one actually in use today has the 0.99pl19. pl20 had stability issues (like coredumps) which wasnt't easy to track, so I decided not to upgrade. pl19 works fine in 24x7 mode for about 4 years. -- Boris Popov http://rbp.euro.ru From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 10:03:27 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3536616A4D0 for ; Tue, 26 Apr 2005 10:03:27 +0000 (GMT) Received: from sbk-gw.sibnet.ru (sbk-gw.sibnet.ru [217.70.96.146]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1244B43D1D for ; Tue, 26 Apr 2005 10:03:22 +0000 (GMT) (envelope-from stranger@sberbank.sibnet.ru) Received: from sbk-gw.sibnet.ru (root@localhost) by sbk-gw.sibnet.ru (8.13.1/8.13.1) with SMTP id j3QA3BFW076595 for ; Tue, 26 Apr 2005 17:03:11 +0700 (NOVST) (envelope-from stranger@sberbank.sibnet.ru) Received: from sbk-gw.sibnet.ru (localhost [127.0.0.1]) by sbk-gw.sibnet.ru (8.13.1/8.13.1) with ESMTP id j3QA3Bl4076590 for ; Tue, 26 Apr 2005 17:03:11 +0700 (NOVST) (envelope-from stranger@sberbank.sibnet.ru) Received: from localhost (stranger@localhost)j3QA37n0076587 for ; Tue, 26 Apr 2005 17:03:10 +0700 (NOVST) (envelope-from stranger@sberbank.sibnet.ru) X-Authentication-Warning: sbk-gw.sibnet.ru: stranger owned process doing -bs Date: Tue, 26 Apr 2005 17:03:07 +0700 (NOVST) From: "Maxim M. Kazachek" X-X-Sender: stranger@sbk-gw.sibnet.ru To: freebsd-ports@freebsd.org In-Reply-To: <20050420092631.E56245@sbk-gw.sibnet.ru> Message-ID: <20050426170229.J75787@sbk-gw.sibnet.ru> References: <20050420092631.E56245@sbk-gw.sibnet.ru> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: Re: security/racoon X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 10:03:27 -0000 My fault, just too "look the same" IP addresses. It works like charm right now Sincerely, Maxim M. Kazachek mailto:stranger@sberbank.sibnet.ru mailto:stranger@fpm.ami.nstu.ru On Wed, 20 Apr 2005, Maxim M. Kazachek wrote: > I have G.SHDSL connection and my provider gives me both local and > remote IP addresses same on PPPoE connection. And racoon doesn't want to use > this IP address for key exchange. > > Sincerely, Maxim M. Kazachek > mailto:stranger@sberbank.sibnet.ru > mailto:stranger@fpm.ami.nstu.ru > > From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 10:22:45 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D0A016A4CE for ; Tue, 26 Apr 2005 10:22:45 +0000 (GMT) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9769E43D5D for ; Tue, 26 Apr 2005 10:22:44 +0000 (GMT) (envelope-from lioux@uol.com.br) Received: from 200.140.3.246 (unknown [200.140.3.246]) by vette.gigo.com (Postfix) with ESMTP id 4E5ED55FD for ; Tue, 26 Apr 2005 03:22:44 -0700 (PDT) Received: (qmail 44620 invoked by uid 1001); 26 Apr 2005 10:11:18 -0000 Message-ID: <20050426101118.44617.qmail@exxodus.fedaykin.here> Date: Tue, 26 Apr 2005 07:10:56 -0300 From: Mario Sergio Fujikawa Ferreira To: freebsd-ports@FreeBSD.org Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="M9NhX3UHpAaciwkO" Content-Disposition: inline User-Agent: Mutt/1.5.9i cc: freebsd-multimedia@FreeBSD.org Subject: Sample multimedia/mplayer version MPlayer-1.0pre7 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 10:22:45 -0000 --M9NhX3UHpAaciwkO Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, The port MAINTAINER is aware of the update and he is proofing any mistakes I might have made producing this sample port. I am sure his version will be cleaner and more complete. However, while most of us wait, I thought you guys would like to be using this sample update to the latest version of mplayer MPlayer-1.0pre7. The changelog is huge, so head over to http://www.mplayer.hu/ for more information. Please, take the time to read mplayer's team petiotion atht the front page. Well, the usual disclaimer applies. This sample port has been working for me for the past 2 days. I haven't had any problems but your mileage may vary. Despite of the disclaimer, it should work nicely. Regards, --=20 Mario S F Ferreira - DF - Brazil - "I guess this is a signature." feature, n: a documented bug | bug, n: an undocumented feature --M9NhX3UHpAaciwkO Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCbhPGrxEiaFLzGQwRAl27AJ9SynpeHYMZD8F896DV6hIzjU/tCwCfYsCX VhZZwB1v3+ukpsu8LZQVjAA= =exeH -----END PGP SIGNATURE----- --M9NhX3UHpAaciwkO-- From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 10:38:11 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF01016A4D1 for ; Tue, 26 Apr 2005 10:38:11 +0000 (GMT) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7050943D2F for ; Tue, 26 Apr 2005 10:38:11 +0000 (GMT) (envelope-from lioux@uol.com.br) Received: from 200.140.3.246 (unknown [200.140.3.246]) by vette.gigo.com (Postfix) with ESMTP id 0558F55FD for ; Tue, 26 Apr 2005 03:38:11 -0700 (PDT) Received: (qmail 3956 invoked by uid 1001); 26 Apr 2005 10:36:38 -0000 Message-ID: <20050426103638.3955.qmail@exxodus.fedaykin.here> Date: Tue, 26 Apr 2005 07:36:16 -0300 From: Mario Sergio Fujikawa Ferreira To: Mario Sergio Fujikawa Ferreira References: <20050426101056.GA40346@exxodus.fedaykin.here> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050426101056.GA40346@exxodus.fedaykin.here> User-Agent: Mutt/1.5.9i cc: freebsd-multimedia@FreeBSD.org cc: freebsd-ports@FreeBSD.org Subject: Re: Sample multimedia/mplayer version MPlayer-1.0pre7 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 10:38:12 -0000 Forgot to mention the URL: http://people.FreeBSD.org/~lioux/mplayer.tgz -- Mario S F Ferreira - DF - Brazil - "I guess this is a signature." feature, n: a documented bug | bug, n: an undocumented feature From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 10:59:17 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D34E16A4CE for ; Tue, 26 Apr 2005 10:59:17 +0000 (GMT) Received: from bigbird.logicsquad.net (ppp248-119.lns2.adl2.internode.on.net [203.122.248.119]) by mx1.FreeBSD.org (Postfix) with SMTP id 016B843D39 for ; Tue, 26 Apr 2005 10:59:16 +0000 (GMT) (envelope-from paulh@bigbird.logicsquad.net) Received: (qmail 81023 invoked by uid 1001); 26 Apr 2005 10:59:14 -0000 Date: Tue, 26 Apr 2005 20:29:14 +0930 From: "Paul A. Hoadley" To: Adam Weinberger Message-ID: <20050426105914.GA80521@bigbird.logicsquad.net> References: <20050423062648.GE61472@bigbird.logicsquad.net> <20050423063143.GA96226@xor.obsecurity.org> <20050423071716.GG61472@bigbird.logicsquad.net> <20050425013415.GD33556@bigbird.logicsquad.net> <426C4B8A.7070508@FreeBSD.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="6TrnltStXW4iwmi0" Content-Disposition: inline In-Reply-To: <426C4B8A.7070508@FreeBSD.org> User-Agent: Mutt/1.4.2.1i cc: freebsd-ports@freebsd.org Subject: Re: Depending on other ports with OPTIONS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 10:59:17 -0000 --6TrnltStXW4iwmi0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi Adam, On Sun, Apr 24, 2005 at 09:44:42PM -0400, Adam Weinberger wrote: > Paul A. Hoadley wrote: > > >I've hit a wall here---can anyone give me a push in the right > >direction? Even just pointing me at a port that depends on certain > >OPTIONs having been chosen in another port would probably be > >sufficient. I am willing to work it out from the Makefiles. >=20 > Really, the simplest thing is to determine whether someone has > installed the proper flavour (for example, look for > mysql-backend.file). If not, output an error message saying "Rebuild > port foo with the mysql-backend enabled". I bet that'd be enough for > most users. This is what I will do in the first instance. I'm happy to try the master/slave approach, I just need an example of what is being suggested. --=20 Paul. w http://logicsquad.net/ h http://paul.hoadley.name/ --6TrnltStXW4iwmi0 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCbh8C730Z/jysbzIRAji2AJ4vwKWStfOSR3yGo0Hg6wk1c9lhGwCfeW9M Qzm/cJJzDyTsR9hJyWxA5ak= =Z4fR -----END PGP SIGNATURE----- --6TrnltStXW4iwmi0-- From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 11:01:04 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2AE016A4CE for ; Tue, 26 Apr 2005 11:01:04 +0000 (GMT) Received: from bigbird.logicsquad.net (ppp248-119.lns2.adl2.internode.on.net [203.122.248.119]) by mx1.FreeBSD.org (Postfix) with SMTP id 8414243D2F for ; Tue, 26 Apr 2005 11:01:03 +0000 (GMT) (envelope-from paulh@bigbird.logicsquad.net) Received: (qmail 81170 invoked by uid 1001); 26 Apr 2005 11:01:02 -0000 Date: Tue, 26 Apr 2005 20:31:02 +0930 From: "Paul A. Hoadley" To: Michael Nottebrock Message-ID: <20050426110102.GB80521@bigbird.logicsquad.net> References: <20050423062648.GE61472@bigbird.logicsquad.net> <20050425013415.GD33556@bigbird.logicsquad.net> <426C4B8A.7070508@FreeBSD.org> <200504251539.07223.michaelnottebrock@gmx.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="wzJLGUyc3ArbnUjN" Content-Disposition: inline In-Reply-To: <200504251539.07223.michaelnottebrock@gmx.net> User-Agent: Mutt/1.4.2.1i cc: freebsd-ports@freebsd.org Subject: Re: Depending on other ports with OPTIONS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 11:01:04 -0000 --wzJLGUyc3ArbnUjN Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Apr 25, 2005 at 03:39:01PM +0200, Michael Nottebrock wrote: > On Monday, 25. April 2005 03:44, Adam Weinberger wrote: > > Paul A. Hoadley wrote: > > > I've hit a wall here---can anyone give me a push in the right > > > direction? Even just pointing me at a port that depends on > > > certain OPTIONs having been chosen in another port would > > > probably be sufficient. I am willing to work it out from the > > > Makefiles. > > > > Really, the simplest thing is to determine whether someone has > > installed the proper flavour (for example, look for > > mysql-backend.file). If not, output an error message saying > > "Rebuild port foo with the mysql-backend enabled". I bet that'd be > > enough for most users. >=20 > The best thing to do would be splitting the libdbi-drivers port into > individual ports per backend (or make it a meta/master-port for > backend-specific ports), which you can then specifically depend > on. It's yet more work, but if the libdbi-drivers port-maintainer is > ok with the change in principle and you submit a reworked bunch of > libdbi-drivers-foo ports, it should be doable pretty quickly. That sounds good. I will contact the maintainer of libdbi-drivers and see what they think. --=20 Paul. w http://logicsquad.net/ h http://paul.hoadley.name/ --wzJLGUyc3ArbnUjN Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCbh9u730Z/jysbzIRAhtiAJ46yWGwDqayYHWwCYXmeWtJ18/qvACfQNyG SCYtKHa/Ygrgy4TeNnCdtwA= =TUAW -----END PGP SIGNATURE----- --wzJLGUyc3ArbnUjN-- From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 12:18:31 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B231B16A4CF for ; Tue, 26 Apr 2005 12:18:31 +0000 (GMT) Received: from smtp2.pp.htv.fi (smtp2.pp.htv.fi [213.243.153.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F38443D5D for ; Tue, 26 Apr 2005 12:18:29 +0000 (GMT) (envelope-from ekarkkai@pp.htv.fi) Received: from cs78133185.pp.htv.fi (cs78133185.pp.htv.fi [62.78.133.185]) by smtp2.pp.htv.fi (Postfix) with ESMTP id E4195296E96; Tue, 26 Apr 2005 15:17:25 +0300 (EEST) Received: from thunderbolt.my.domain (thunderbolt.my.domain [10.192.168.30]) by cs78133185.pp.htv.fi (8.13.3/8.13.3) with ESMTP id j3QCHP6a020926; Tue, 26 Apr 2005 15:17:25 +0300 (EEST) (envelope-from ekarkkai@pp.htv.fi) Received: from thunderbolt.my.domain (localhost [127.0.0.1]) by thunderbolt.my.domain (8.13.3/8.13.3) with ESMTP id j3QCHPkh001302; Tue, 26 Apr 2005 15:17:25 +0300 (EEST) (envelope-from ejk@thunderbolt.my.domain) Received: (from ejk@localhost) by thunderbolt.my.domain (8.13.3/8.13.3/Submit) id j3QCH6Wr001295; Tue, 26 Apr 2005 15:17:06 +0300 (EEST) (envelope-from ejk) Date: Tue, 26 Apr 2005 15:17:06 +0300 From: Esa Karkkainen To: ports@freebsd.org Message-ID: <20050426121706.GA902@pp.htv.fi> Mail-Followup-To: ports@freebsd.org, avleeuwen@piwebs.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.1i cc: avleeuwen@piwebs.com Subject: opera-8.0.20050415 has problem resolving IP addresses in 5.4-RC3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 12:18:31 -0000 Hi For some reason opera-8.0.20050415 can not resolve IP addresses in FreeBSD 5.4-RC3, but all other programs, firefox and host for example, can resolve IP addresses with out any problems. I have cleaned ~/.opera directory as % opera -debugdns dns: Resolving 'portal.opera.com' dns: Thread created dns: Resolving 'xml.opera.com' dns: Thread created dns: Resolving 'rgs1.opera.com' dns: Thread created dns: IPv6 protocol family not supported by the operating system dns: Trying IPv4 lookup for host 'portal.opera.com'... dns: gethostbyname failed with return value 43 (Protocol not supported). hostent pointer:0x0 dns: IPv6 protocol family not supported by the operating system dns: Trying IPv4 lookup for host 'xml.opera.com'... dns: gethostbyname failed with return value 43 (Protocol not supported). hostent pointer:0x0 dns: IPv6 protocol family not supported by the operating system dns: Trying IPv4 lookup for host 'rgs1.opera.com'... dns: gethostbyname failed with return value 43 (Protocol not supported). hostent pointer:0x0 dns: Thread completed with error code 3 dns: Thread completed with error code 3 dns: Thread completed with error code 3 dns: Resolving 'portal.opera.com' dns: Thread created dns: IPv6 protocol family not supported by the operating system dns: Trying IPv4 lookup for host 'portal.opera.com'... dns: gethostbyname failed with return value 43 (Protocol not supported). hostent pointer:0x0 dns: Thread completed with error code 3 dns: Resolving 'rgs2.opera.com' dns: Thread created dns: IPv6 protocol family not supported by the operating system dns: Trying IPv4 lookup for host 'rgs2.opera.com'... dns: gethostbyname failed with return value 43 (Protocol not supported). hostent pointer:0x0 dns: Thread completed with error code 3 % host portal.opera.com portal.opera.com is an alias for front.opera.com. front.opera.com has address 193.69.116.18 front.opera.com has address 193.69.116.22 portal.opera.com is an alias for front.opera.com. portal.opera.com is an alias for front.opera.com. -- "In the beginning the Universe was created. This has made a lot of people very angry and been widely regarded as a bad move." -- Douglas Adams 1952 - 2001 From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 15:10:17 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 072B716A4CE; Tue, 26 Apr 2005 15:10:17 +0000 (GMT) Received: from mail-in-06.arcor-online.net (mail-in-06.arcor-online.net [151.189.21.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id 39E2143D5F; Tue, 26 Apr 2005 15:10:16 +0000 (GMT) (envelope-from udo@ebi.xs4all.nl) Received: from [192.168.2.23] (dsl-082-082-100-231.arcor-ip.net [82.82.100.231]) by mail-in-06.arcor-online.net (Postfix) with ESMTP id 7652D116785; Tue, 26 Apr 2005 17:10:14 +0200 (CEST) Message-ID: <426E59D7.6090301@ebi.xs4all.nl> Date: Tue, 26 Apr 2005 17:10:15 +0200 From: Udo Mueller User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; de-AT; rv:1.7.7) Gecko/20050416 X-Accept-Language: de, de-de, zh, zh-cn, zh-tw MIME-Version: 1.0 To: gnome@FreeBSD.org X-Enigmail-Version: 0.91.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit cc: ports@FreeBSD.org Subject: FreeBSD Port: dbus-0.32_2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 15:10:17 -0000 I tried to upgrade dbus using portupgrade 0.3.2_1 ==> 0.3.2_2 with FreeBSD 5.4 STABLE, It askes for a file to patch, but as I read the Makefile I cannot find what file it should be. Here the output: ------------------------------------------------------------------ ===> Extracting for dbus-0.32_2 => Checksum OK for dbus-0.32.tar.gz. ===> Patching for dbus-0.32_2 ===> Applying FreeBSD patches for dbus-0.32_2 File to patch: dbus.sh No file found--skip this patch? [n] y 6 out of 6 hunks ignored--saving rejects to dbus.sh.rej => Patch patch-dbus_dbus-sysdeps.c failed to apply cleanly. => Patch(es) patch-configure patch-dbus-1.pc.in patch-dbus_Makefile.in patch-dbus_dbus-sysdeps-util.c applied cleanly. *** Error code 1 Stop in /usr/ports/devel/dbus. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade89312.0 make ** Fix the problem and try again. ** Listing the failed packages (*:skipped / !:failed) ! devel/dbus (dbus-0.32_1) (patch error) ---> Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed -------------------------------------------------------------------- I tried to use several filenames -- without any result. How can I fix it? Regards: Udo Müller. From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 15:24:48 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF97916A4CE for ; Tue, 26 Apr 2005 15:24:48 +0000 (GMT) Received: from dppl.com (sapas.dppl.net [216.182.10.231]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FD0143D45 for ; Tue, 26 Apr 2005 15:24:48 +0000 (GMT) (envelope-from yds@CoolRat.org) Received: from [192.168.1.69] (pcp0011284575pcs.union01.nj.comcast.net [69.248.144.22]) (AUTH: PLAIN yds, TLS: TLSv1/SSLv3,256bits,AES256-SHA) by dppl.com with esmtp; Tue, 26 Apr 2005 11:24:47 -0400 Date: Tue, 26 Apr 2005 11:24:47 -0400 From: Yarema To: Jose M Rodriguez , Oliver Lehmann Message-ID: <6309B48EABE0AB085E8EC642@tuber.coolrat.org> In-Reply-To: <200504261633.30262.josemi@redesjm.local> References: <20050425171119.59ad98b7.lehmann@ans-netz.de> <200504261602.16471.josemi@redesjm.local> <2C4B5E66C964EB3FE9F69526@tuber.coolrat.org> <200504261633.30262.josemi@redesjm.local> X-Mailer: Mulberry/3.1.6 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline cc: ports@FreeBSD.org cc: Milan Obuch Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 15:24:49 -0000 --On Tuesday, April 26, 2005 16:33:28 +0200 Jose M Rodriguez=20 wrote: > El Martes, 26 de Abril de 2005 16:25, Yarema escribi=F3: >> --On Tuesday, April 26, 2005 16:02:15 +0200 Jose M Rodriguez >> >> wrote: >> > El Martes, 26 de Abril de 2005 15:32, Oliver Lehmann escribi=F3: >> >> Milan Obuch wrote: >> >> > Issue with ldconfig seems not to be solved to me. Any idea? >> >> > Milan >> >> >> >> right, courier-authlib works, but the path got not registered for >> >> ldconfig permanently. >> >> >> >> >> >> root@curry courier-authlib> ldconfig -vr >> >> /var/run/ld-elf.so.hints: >> >> search directories: >> >> /lib:/usr/lib:/usr/lib/compat:/usr/local/lib:/ >> >> usr/local/lib/courier-authlib:/usr/local/lib/mysql >> >> >> >> reboot... >> >> >> >> >> >> root@curry olivleh1> ldconfig -vr >> >> /var/run/ld-elf.so.hints: >> >> search directories: >> >> /lib:/usr/lib:/usr/lib/compat:/usr/local/lib:/ usr/local/lib/mysql >> >> >> >> But that is like it is now. With mail/courier-authlib like it is >> >> now, the same thing happens. >> >> >> >> >> >> I'm not really shure why this happens since >> >> >> >> root@curry courier-authlib-mysql> make -VLDCONFIG_DIRS >> >> %%PREFIX%%/lib/courier-authlib >> >> >> >> >> >> works... I'll take a look for that error. If I don't find anything >> >> I'll commit w/o fixing it right now. >> > >> > I can see the correct ldconfig lines recorded in +CONTENTS, but >> > also I can reproduce the ldconfig -vr output. >> > >> > In any case, authdaemond start ok, but claims that it can't load >> > the modules in modulelist I not installed. >> > >> > I you like, try to get authdaemonrc.dist more closer to the ports >> > behavior: only put authpam in the modulelist (what -base install) >> > This is made in the Makefile (reimplace). At last supress authpwd. >> > >> > And..., can you work a quick pkg-message or UPDATING note on the >> > need to tweak authdaemonrc to polite oper? >> >> The documentaion at >> says: >> >> ~~~~~ >> The configuration file /usr/local/etc/authlib/authdaemonrc contains >> several settings. The most important of them are: >> >> A list of authentication modules to activate. By default, this list >> includes all available authentication modules, even if some are not >> actually installed at the moment. When the authentication library is >> set up, only those authentication modules that can be supported by >> the operating system will be installed. Some of the listed modules >> may not actually be there, however that's not a problem. Any >> unavailable authentication modules will be ignored. Also, on some >> platforms certain authentication modules are installed by optional >> sub-packages. Installing the sub-package is the only action needed to >> make use of it. >> >> The only time the list of authentication modules need to be adjusted >> is when an available authentication module must be disabled for some >> reason. This should only be needed in the most unusual circumstances. >> ~~~~~ >> >> Which I take to mean that authdaemond complaining about modules it >> cannot load at startup can be safely ignored. authpwd should >> definitely not be there anymore. But authmodulelist should include >> all the plugin modules which we support and as the comment referring >> to authmodulelist in authdaemonrc suggests "You may selectively >> disable modules simply by removing them from the following list." In >> any case authmodulelistorig needs to contain all the modules we >> support and should never be modified. >> >> This is just a matter of RTFM for the user before firing up >> courier-authlib. The staretup messages are mere warning and if they >> are an eyesore we can redirect them to >/dev/null 2>&1 in the startup >> script. > > The problem is that 'out of the box' this goes to /var/log/maillog with > some precious FATAL on it. Perhaps needs to change them FATAL messages to INFO = or WARNING to comply with his own documentation and rpm packaging=20 methodology... :) > In any case I'm with you, supress only authpwd (we not install it in any > case) and make some warning about this and the convenience to tweak > authdaemonrc. > > And UPDATING entry with do the task. Agreed. Actually going through the documentation our out-of-the-box=20 settings in authdaemonrc should be: authmodulelist=3D"authcram authuserdb authvchkpw authpam authldap authmysql = authpgsql" authmodulelistorig=3D"authcram authuserdb authvchkpw authpam authldap=20 authmysql authpgsql" in that order. authcram is part of userdb and needs to be listed first.=20 Then authuserdb gets tried then authvchkpw and if none of them are=20 available or configured then authpam tries to see if there's a system=20 account. authldap authmysql authpgsql need to stay at the end because as=20 noted at the bottom of=20 : ~~~~~ authdaemond tries each of the configured authentication modules in turn,=20 until either one accepts the login, or they have all rejected it (in which=20 case the usual "Login failed" error is returned, and the user can try=20 again). However, if one of these modules is unable to run because some resource is=20 not available, then it gives a "temporary failure" response and no further=20 modules are tried. You should find the exact cause in your mail logs, but=20 typically it means that you have a module like 'authmysql' in your module=20 list, but the mysql database is not running. So unless you actually do have account data in mysql (in which case you=20 need to fix your mysql setup), you should remove 'authmysql' and any other=20 modules you do not use from authmodulelist in authdaemonrc. ~~~~~ --=20 Yarema http://yds.CoolRat.org From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 16:08:04 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD70416A4CE for ; Tue, 26 Apr 2005 16:08:04 +0000 (GMT) Received: from 62-15-211-171.inversas.jazztel.es (62-15-211-171.inversas.jazztel.es [62.15.211.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id D49BC43D2D for ; Tue, 26 Apr 2005 16:08:02 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) j3QG7Bpd001704; Tue, 26 Apr 2005 18:07:11 +0200 (CEST) (envelope-from josemi@redesjm.local) Received: from localhost (localhost [[UNIX: localhost]]) by redesjm.local (8.13.3/8.13.3/Submit) id j3QG79vg078536; Tue, 26 Apr 2005 18:07:09 +0200 (CEST) (envelope-from josemi@redesjm.local) From: Jose M Rodriguez To: Oliver Lehmann Date: Tue, 26 Apr 2005 18:07:07 +0200 User-Agent: KMail/1.8 References: <20050425171119.59ad98b7.lehmann@ans-netz.de> <6309B48EABE0AB085E8EC642@tuber.coolrat.org> <20050426173000.16bc46c6.lehmann@ans-netz.de> In-Reply-To: <20050426173000.16bc46c6.lehmann@ans-netz.de> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200504261807.08663.josemi@redesjm.local> X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-3; AVE: 6.30.0.7; VDF: 6.30.0.116; host: antares.redesjm.local) cc: ports@FreeBSD.org cc: ports@dino.sk cc: Yarema cc: josemi@freebsd.jazztel.es Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 16:08:04 -0000 El Martes, 26 de Abril de 2005 17:30, Oliver Lehmann escribi=F3: > Yarema wrote: > > authmodulelist=3D"authcram authuserdb authvchkpw authpam authldap > > authmysql authpgsql" > > authmodulelistorig=3D"authcram authuserdb authvchkpw authpam authldap > > authmysql authpgsql" > > > > in that order. authcram is part of userdb and needs to be listed > > first. > > but we don't ship libauthcram.so?! I'm not sure this is needed for cram-md5 now. Go ahead and commit=20 without authcram. I think this is now part of libcourierauthsasl. We'll do a pull-up of the Makefile after this is tested, without needing=20 a PORTREVISION bump. Also for the TODO list: =2D test if we really need INSTALLS_SHLIB and friends. =2D test cram-md5 with mysql/pgsql (will work, having userdbpw). =2D- josemi From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 16:37:50 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62A8116A4CE for ; Tue, 26 Apr 2005 16:37:50 +0000 (GMT) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1572143D2F for ; Tue, 26 Apr 2005 16:37:50 +0000 (GMT) (envelope-from freebsd-ports@m.gmane.org) Received: from root by ciao.gmane.org with local (Exim 4.43) id 1DQSxE-0003pr-BN for freebsd-ports@freebsd.org; Tue, 26 Apr 2005 18:30:32 +0200 Received: from 86.red-213-97-212.pooles.rima-tde.net ([213.97.212.86]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 26 Apr 2005 18:30:32 +0200 Received: from pica-news by 86.red-213-97-212.pooles.rima-tde.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 26 Apr 2005 18:30:32 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: Joan Picanyol i Puig Date: Tue, 26 Apr 2005 18:23:55 +0200 Lines: 17 Message-ID: References: <20050420175047.GB29990@grummit.biaix.org> <42674D94.7070108@gmail.com> <20050421155406.GB86490@grummit.biaix.org> <16999.53351.603626.223836@devzero.bogus.domain> <20050421191441.GB9754@grummit.biaix.org> <16999.65302.366221.91861@devzero.bogus.domain> <20050422130841.GB40624@grummit.biaix.org> <42691073.6070106@struchtrup.com> <17001.4818.589089.94780@devzero.bogus.domain> <8742.146.232.65.6.1114199399.squirrel@mail.struchtrup.com> <20050423141330.GA30909@grummit.biaix.org> <426A9E94.20705@struchtrup.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: 86.red-213-97-212.pooles.rima-tde.net User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050330) X-Accept-Language: en-us, en In-Reply-To: <426A9E94.20705@struchtrup.com> Sender: news cc: help@octave.org Subject: Re: issues compiling octave-2.1.69 on FreeBSD 5.4 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 16:37:50 -0000 Sebastian Schulze Struchtrup wrote: > Joan Picanyol i Puig wrote: > >> Can you confirm that it is the existence of the heimdal port (and thus >> /usr/local/include/fnmatch.h) what causes the breakage? >> >> tks >> >> > Builds without problem on 6.0-CURRENT without heimdal. > After installing heimdal, it breaks with the same error. http://www.freebsd.org/cgi/query-pr.cgi?pr=80366 tks -- pica From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 16:44:41 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8053516A4CE for ; Tue, 26 Apr 2005 16:44:41 +0000 (GMT) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.206]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0ABB43D46 for ; Tue, 26 Apr 2005 16:44:39 +0000 (GMT) (envelope-from swhetzel@gmail.com) Received: by wproxy.gmail.com with SMTP id 69so1654286wri for ; Tue, 26 Apr 2005 09:44:37 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=X3CBOtkZ0s0Ef7/cXQYfaA06eCKza2DelvN8fwqDPP0pJJUcrOGAS+5ClMoWRSlFiyg3GkCIzx/y1YF8ocEKRRa16c9bfixy4945RHNBV8xHX3NXT1zFY/I1wLsDPoZFjqW7ihQv2g5Pupibj6UhU8SOKD/L82rWW4mB0Qjhrj8= Received: by 10.54.83.5 with SMTP id g5mr2374342wrb; Tue, 26 Apr 2005 09:44:37 -0700 (PDT) Received: by 10.54.29.77 with HTTP; Tue, 26 Apr 2005 09:44:37 -0700 (PDT) Message-ID: <790a9fff0504260944704d2700@mail.gmail.com> Date: Tue, 26 Apr 2005 11:44:37 -0500 From: Scot Hetzel To: "Haulmark, Chris" In-Reply-To: <6FC9F9894A9F8C49A722CF9F2132FC2203CE19E3@ms05.mailstreet2003.net> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <6FC9F9894A9F8C49A722CF9F2132FC2203CE19E3@ms05.mailstreet2003.net> cc: freebsd-ports@freebsd.org Subject: Re: Cacti.. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Scot Hetzel List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 16:44:41 -0000 On 4/25/05, Haulmark, Chris wrote: > Is this port supposed to overwrite the include/config.php. >=20 > What I did was set up a virtual host in apache's httpd.conf to point to > /usr/local/share/cacti and then when it was time to upgrade cacti...doing > that caused mysql permission errors. A quick fix was done by restoring t= he > mysql settings in include/config.php. >=20 > I thought that ports files were to be checked via md5 sums to make sure i= t > was the original and then it would be overwritten unless it was modified. >=20 When you delete a port, it checks the md5 sum of the file, and if it doesn't match it might leave the file. When you install the port, the port will overwrite the config file, unless the port maintainer has identified the configuration files, and made changes to the ports sources to install the file with an extension (i.e. -dist, -sample, ...), and then makes a check to see if the file without an extension (i.e. -dist) exists, and if it doesn't then copy the file wiwth the extension to the original file name. You could try to create a patch to address this problem (and send PR it), or ask the maintainer to fix the port to not overwrite the configuration files. From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 16:54:23 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 56B2F16A4CE for ; Tue, 26 Apr 2005 16:54:23 +0000 (GMT) Received: from kane.otenet.gr (kane.otenet.gr [195.170.0.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id C655543D49 for ; Tue, 26 Apr 2005 16:54:21 +0000 (GMT) (envelope-from inray@otenet.gr) Received: from ADMIN (thes730a-347.otenet.gr [62.103.78.93]) j3QGr3vm005055 for ; Tue, 26 Apr 2005 19:53:04 +0300 Message-Id: <200504261653.j3QGr3vm005055@kane.otenet.gr> From: "Sakis Papademetriou" To: Date: Tue, 26 Apr 2005 19:54:30 +0300 Organization: INRAY MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.6353 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2527 thread-index: AcVKgJ0NHk3grOoBT9WYzeQuI5Eu7g== Subject: Statically compiled Bash3 still depends on shared libs. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 16:54:23 -0000 I tried to modify Bash 3 port, building a static Bash. The problem I have is that Bash always depends on libintl.so.6 and libiconv.so.3. I passed ==enable-static-link to Bash configure and LDFLAGS= "-static" but still no success. Finally i tried to build Bash-3 from its sources. I've noticed that its configure cannot detect and use static libs (libiconv.a) Is it a Bash specific bug or i missed something ? Any idea ? From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 16:54:45 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3AFF116A4CE for ; Tue, 26 Apr 2005 16:54:45 +0000 (GMT) Received: from 62-15-211-171.inversas.jazztel.es (62-15-211-171.inversas.jazztel.es [62.15.211.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FF9F43D58 for ; Tue, 26 Apr 2005 16:54:44 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) j3QGs2iI001800; Tue, 26 Apr 2005 18:54:02 +0200 (CEST) (envelope-from josemi@redesjm.local) Received: from localhost (localhost [[UNIX: localhost]]) by redesjm.local (8.13.3/8.13.3/Submit) id j3QGs0Df063132; Tue, 26 Apr 2005 18:54:00 +0200 (CEST) (envelope-from josemi@redesjm.local) From: Jose M Rodriguez To: Oliver Lehmann Date: Tue, 26 Apr 2005 18:53:58 +0200 User-Agent: KMail/1.8 References: <20050425171119.59ad98b7.lehmann@ans-netz.de> <6309B48EABE0AB085E8EC642@tuber.coolrat.org> <20050426173000.16bc46c6.lehmann@ans-netz.de> In-Reply-To: <20050426173000.16bc46c6.lehmann@ans-netz.de> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200504261853.59836.josemi@redesjm.local> X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-3; AVE: 6.30.0.7; VDF: 6.30.0.116; host: antares.redesjm.local) cc: ports@FreeBSD.org cc: ports@dino.sk cc: Yarema cc: josemi@freebsd.jazztel.es Subject: Re: splitting courier-authlib into master+slave ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 16:54:45 -0000 El Martes, 26 de Abril de 2005 17:30, Oliver Lehmann escribi=F3: > Yarema wrote: > > authmodulelist=3D"authcram authuserdb authvchkpw authpam authldap > > authmysql authpgsql" > > authmodulelistorig=3D"authcram authuserdb authvchkpw authpam authldap > > authmysql authpgsql" > > > > in that order. authcram is part of userdb and needs to be listed > > first. > > but we don't ship libauthcram.so?! =46rom changelog: 2004-10-04 Mr. Sam * Merged authuserdb with authcram. Fixed CRAM password changes. Do not reset the environment before exec-ing userdb and makeuserdb. =2D- josemi From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 17:01:16 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C12D016A4CE; Tue, 26 Apr 2005 17:01:16 +0000 (GMT) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9294C43D53; Tue, 26 Apr 2005 17:01:16 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.3/8.13.3) with ESMTP id j3QH1Fk9069065; Tue, 26 Apr 2005 10:01:15 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.3/8.13.1/Submit) id j3QH1FSI069055; Tue, 26 Apr 2005 10:01:15 -0700 (PDT) (envelope-from obrien) Date: Tue, 26 Apr 2005 10:01:15 -0700 From: "David O'Brien" To: Michael Hopkins Message-ID: <20050426170115.GB45067@dragon.NUXI.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Operating-System: FreeBSD 6.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i cc: freebsd-ports@freebsd.org cc: "freebsd-amd64@freebsd.org" Subject: Re: Attempted install of an Obj-C Foundation library X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: freebsd-amd64@freebsd.org, freebsd-ports@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 17:01:16 -0000 On Mon, Apr 25, 2005 at 07:20:41PM +0100, Michael Hopkins wrote: > > > Hi all > > I am trying to get a working Objective-C Foundation library on FreeBSD amd64 > (5.3-RELEASE-p10 with ports cvsup'd today) so that I can port some > Objective-C code from Mac OS X - and not having any success. ... > ===> gcc-objc-3.3.6_20050330 is marked as broken: Bus errors in stage2; > system compiler may be broken.. > *** Error code 1 I must be missing something -- why cant you use the base ObjC compiler? -- -- David (obrien@FreeBSD.org) From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 17:01:39 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50FEE16A4CE; Tue, 26 Apr 2005 17:01:39 +0000 (GMT) Received: from lakermmtao10.cox.net (lakermmtao10.cox.net [68.230.240.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DFEB43D55; Tue, 26 Apr 2005 17:01:38 +0000 (GMT) (envelope-from mezz7@cox.net) Received: from mezz.mezzweb.com ([68.103.32.140]) by lakermmtao10.cox.net (InterMail vM.6.01.04.00 201-2131-118-20041027) with ESMTP id <20050426170136.FKZJ7787.lakermmtao10.cox.net@mezz.mezzweb.com>; Tue, 26 Apr 2005 13:01:36 -0400 To: "Udo Mueller" References: <426E59D7.6090301@ebi.xs4all.nl> Message-ID: Date: Tue, 26 Apr 2005 12:02:43 -0500 From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=utf-8 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit In-Reply-To: <426E59D7.6090301@ebi.xs4all.nl> User-Agent: Opera M2/8.0 (Linux, build 1095) cc: ports@freebsd.org cc: gnome@freebsd.org Subject: Re: FreeBSD Port: dbus-0.32_2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 17:01:39 -0000 On Tue, 26 Apr 2005 10:10:15 -0500, Udo Mueller wrote: > I tried to upgrade dbus using portupgrade 0.3.2_1 ==> 0.3.2_2 with > FreeBSD 5.4 STABLE, It askes for a file to patch, but as I read the > Makefile I cannot find what file it should be. Here the output: Fixed by marcus, wait for CVS mirrors to catch up. Cheers, Mezz > ------------------------------------------------------------------ > ===> Extracting for dbus-0.32_2 > => Checksum OK for dbus-0.32.tar.gz. > ===> Patching for dbus-0.32_2 > ===> Applying FreeBSD patches for dbus-0.32_2 > File to patch: dbus.sh > No file found--skip this patch? [n] y > 6 out of 6 hunks ignored--saving rejects to dbus.sh.rej > => Patch patch-dbus_dbus-sysdeps.c failed to apply cleanly. > => Patch(es) patch-configure patch-dbus-1.pc.in patch-dbus_Makefile.in > patch-dbus_dbus-sysdeps-util.c applied cleanly. > *** Error code 1 > > Stop in /usr/ports/devel/dbus. > ** Command failed [exit code 1]: /usr/bin/script -qa > /tmp/portupgrade89312.0 make > ** Fix the problem and try again. > ** Listing the failed packages (*:skipped / !:failed) > ! devel/dbus (dbus-0.32_1) (patch error) > ---> Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed > -------------------------------------------------------------------- > > I tried to use several filenames -- without any result. How can I fix it? > > Regards: Udo Müller. -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 17:37:15 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DAF4116A4CE for ; Tue, 26 Apr 2005 17:37:15 +0000 (GMT) Received: from skippyii.compar.com (cistore.compar.com [216.208.38.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13C6243D55 for ; Tue, 26 Apr 2005 17:37:15 +0000 (GMT) (envelope-from matt@gsicomp.on.ca) Received: from hermes (CPE00062566c7bb-CM000039c69a66.cpe.net.cable.rogers.com [69.193.82.185]) by skippyii.compar.com (8.13.1/8.13.1) with ESMTP id j3QHlKUS081664; Tue, 26 Apr 2005 13:47:21 -0400 (EDT) (envelope-from matt@gsicomp.on.ca) Message-ID: <001b01c54a86$98a15470$1200a8c0@gsicomp.on.ca> From: "Matt Emmerton" To: "Fred Condo" References: <001301c549f7$de978970$1200a8c0@gsicomp.on.ca> <4bc120c7b6a3ce4b6819552ba5ccf399@tincture.us> Date: Tue, 26 Apr 2005 13:37:18 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1437 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 cc: freebsd-ports@freebsd.org Subject: Re: php4 and mod_php4 on the same system? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 17:37:16 -0000 > On Apr 25, 2005, at 5:35 PM, Matt Emmerton wrote: > > > [ Please cc me since I don't track the -ports list ] > > > > I'm trying to figure out how I can install both php4 and mod_php4 on a > > production web server. > > > > We have a custom web application written in PHP and is served up with > > mod_php4. > > We also have some daily batch processing for this application that is > > cron-driven and needs to use some of the common PHP code that the web > > app > > uses in order to accomplish its tasks. > > > > Thus, I'd want to install lang/php4 and www/mod_php4 on our production > > web > > server -- but the current ports won't allow it due to the CONFLICT > > mechanism. > > > > What are the dangers of overriding the CONFLICT mechanism in the ports > > subsystem so that I can install both? > > No need to install both: lang/php4 also installs the Apache module. I found that out after a more careful examination of the port's Makefile. I deinstall www/mod_php4, installed lang/php4 and now everything is working perfectly. Thanks! -- Matt From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 17:43:34 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6BC916A4CF; Tue, 26 Apr 2005 17:43:34 +0000 (GMT) Received: from 62-15-211-171.inversas.jazztel.es (62-15-211-171.inversas.jazztel.es [62.15.211.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F05A43D39; Tue, 26 Apr 2005 17:43:33 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) j3QHhVU3001922; Tue, 26 Apr 2005 19:43:31 +0200 (CEST) (envelope-from josemi@redesjm.local) Received: from localhost (localhost [[UNIX: localhost]]) by redesjm.local (8.13.3/8.13.3/Submit) id j3QHhVBT012306; Tue, 26 Apr 2005 19:43:31 +0200 (CEST) (envelope-from josemi@redesjm.local) From: Jose M Rodriguez To: freebsd-ports@freebsd.org, freebsd-amd64@freebsd.org Date: Tue, 26 Apr 2005 19:43:30 +0200 User-Agent: KMail/1.8 References: <20050426170115.GB45067@dragon.NUXI.org> In-Reply-To: <20050426170115.GB45067@dragon.NUXI.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200504261943.31021.josemi@redesjm.local> X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-3; AVE: 6.30.0.7; VDF: 6.30.0.116; host: antares.redesjm.local) cc: Michael Hopkins Subject: Re: Attempted install of an Obj-C Foundation library X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 17:43:34 -0000 El Martes, 26 de Abril de 2005 19:01, David O'Brien escribi=F3: > On Mon, Apr 25, 2005 at 07:20:41PM +0100, Michael Hopkins wrote: > > Hi all > > > > I am trying to get a working Objective-C Foundation library on > > FreeBSD amd64 (5.3-RELEASE-p10 with ports cvsup'd today) so that I > > can port some Objective-C code from Mac OS X - and not having any > > success. > > ... > > > =3D=3D=3D> gcc-objc-3.3.6_20050330 is marked as broken: Bus errors in > > stage2; system compiler may be broken.. > > *** Error code 1 > > I must be missing something -- why cant you use the base ObjC > compiler? See ports lang/gcc-objc Makefile. This is the default behavior, ask=20 gnustep guys why. =2D- josemi From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 17:59:00 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB89716A4CE; Tue, 26 Apr 2005 17:59:00 +0000 (GMT) Received: from mindfields.energyhq.es.eu.org (73.Red-213-97-200.pooles.rima-tde.net [213.97.200.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1859643D31; Tue, 26 Apr 2005 17:58:57 +0000 (GMT) (envelope-from flynn@energyhq.es.eu.org) Received: from scienide.energyhq.es.eu.org (scienide.energyhq.es.eu.org [IPv6:2001:470:1f01:198:210:4bff:fe3d:e256]) by mindfields.energyhq.es.eu.org (Postfix) with SMTP id 1C468365DC; Tue, 26 Apr 2005 19:58:55 +0200 (CEST) Date: Tue, 26 Apr 2005 19:58:09 +0200 From: Miguel Mendez To: freebsd-amd64@freebsd.org, freebsd-ports@freebsd.org Message-Id: <20050426195809.1fb28305.flynn@energyhq.es.eu.org> In-Reply-To: <20050426170115.GB45067@dragon.NUXI.org> References: <20050426170115.GB45067@dragon.NUXI.org> X-Mailer: Sylpheed version 1.9.8 (GTK+ 2.6.4; i386-portbld-freebsd5.4) Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="PGP-SHA1"; boundary="Signature=_Tue__26_Apr_2005_19_58_09_+0200_CsjIe4rj.XuVXFld" cc: michael.hopkins@hopkins-research.com Subject: Re: Attempted install of an Obj-C Foundation library X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 17:59:00 -0000 --Signature=_Tue__26_Apr_2005_19_58_09_+0200_CsjIe4rj.XuVXFld Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, 26 Apr 2005 10:01:15 -0700 "David O'Brien" wrote: > > I am trying to get a working Objective-C Foundation library on FreeBSD = amd64 > > (5.3-RELEASE-p10 with ports cvsup'd today) so that I can port some > > Objective-C code from Mac OS X - and not having any success. > ... > > =3D=3D=3D> gcc-objc-3.3.6_20050330 is marked as broken: Bus errors in = stage2; > > system compiler may be broken.. > > *** Error code 1 >=20 > I must be missing something -- why cant you use the base ObjC compiler? Seems gnustep-base needs "libgcc_s.so.1" which isn't anywhere in /usr/lib but is installed by the the obj-gcc port as=20 ${PREFIX}/lib/gcc-lib/i386-portbld-freebsd5.4/3.3.6/libgcc_s.so.1 Cheers, --=20 Miguel Mendez http://www.energyhq.es.eu.org PGP Key: 0xDC8514F1 --Signature=_Tue__26_Apr_2005_19_58_09_+0200_CsjIe4rj.XuVXFld Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCboEznLctrNyFFPERAmxYAJ9IdNazk5u4+eDKrRlV8ELuZnWhggCeIKMO ikCfOdFXs/VJ37g7vL4SPB8= =SHJ8 -----END PGP SIGNATURE----- --Signature=_Tue__26_Apr_2005_19_58_09_+0200_CsjIe4rj.XuVXFld-- From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 18:44:52 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E1A516A4CE; Tue, 26 Apr 2005 18:44:52 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2B7543D1D; Tue, 26 Apr 2005 18:44:51 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id DCCBE514C9; Tue, 26 Apr 2005 11:44:50 -0700 (PDT) Date: Tue, 26 Apr 2005 11:44:50 -0700 From: Kris Kennaway To: Emanuel Strobl Message-ID: <20050426184450.GA25304@xor.obsecurity.org> References: <200504261931.40466@harrymail> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="+QahgC5+KEYLbs62" Content-Disposition: inline In-Reply-To: <200504261931.40466@harrymail> User-Agent: Mutt/1.4.2.1i cc: ports@FreeBSD.org cc: freebsd-stable@freebsd.org Subject: Re: HAS_CONFIGURE error? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: ports@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 18:44:52 -0000 --+QahgC5+KEYLbs62 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 26, 2005 at 07:31:32PM +0200, Emanuel Strobl wrote: > Hello, from the Mk/bsd.port.mk I read: >=20 > # CONFIGURE_ARGS > # - Pass these args to configure if ${HAS_CONFIGURE} is set. > # Default: "--prefix=3D${PREFIX} ${CONFIGURE_TARGET}" if > # GNU_CONFIGURE is set, "CC=3D${CC} CCFLAGS=3D${CFLAGS} > # PREFIX=3D${PREFIX} INSTALLPRIVLIB=3D${PREFIX}/lib > # INSTALLARCHLIB=3D${PREFIX}/lib" if PERL_CONFIGURE is se= t, > # empty otherwise. >=20 > The first sentence isn't true on 5.4-RC3. If I define HAS_CONFIGURE=3Dyes= =20 > without CONFIGURE_ENV=3D--prefix=3D${PREFIX} the configure script doesn't= get=20 > --prefix set right. First, note CONFIGURE_ARGS not CONFIGURE_ENV. I expect that setting CONFIGURE_ENV as you suggested would not do anything sensible. Can you confirm what you meant? > Is the description outdated or is this behaviour not intended? You could check later in the bsd.port.mk file to confirm what it actually does. Kris P.S. Discussion of the ports tree should happen on freebsd-ports. --+QahgC5+KEYLbs62 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCbowgWry0BWjoQKURAgUjAKClu/7/clUByyfSHQ4nqkX4ecqcpQCbBh0W 7BQpOinW7EvhTvSNXdG7uoA= =gPl7 -----END PGP SIGNATURE----- --+QahgC5+KEYLbs62-- From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 19:25:34 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2991816A4CE for ; Tue, 26 Apr 2005 19:25:34 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD69D43D46 for ; Tue, 26 Apr 2005 19:25:33 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id B302B516F2; Tue, 26 Apr 2005 12:25:32 -0700 (PDT) Date: Tue, 26 Apr 2005 12:25:32 -0700 From: Kris Kennaway To: Jose M Rodriguez Message-ID: <20050426192532.GA41681@xor.obsecurity.org> References: <200504260916.11192.josemi@redesjm.local> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="sm4nu43k4a2Rpi4c" Content-Disposition: inline In-Reply-To: <200504260916.11192.josemi@redesjm.local> User-Agent: Mutt/1.4.2.1i cc: ports@FreeBSD.org Subject: Re: problems with options in pkg cluster builds. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 19:25:34 -0000 --sm4nu43k4a2Rpi4c Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 26, 2005 at 09:16:10AM +0200, Jose M Rodriguez wrote: > Hi, >=20 > I'm having problems with pkg cluster builds after latest changes to=20 > options code. >=20 > I want force the way packages must be build from make.conf and > pkgtools.conf, but seems that default config is chase due to options=20 > code. >=20 > This is an automated build in a fresh chroot with PACKAGE_BUILDING and=20 > BATCH defined that used to work before. >=20 > Any know method to disabled options code? >=20 > Any hope that this change may be reverted and options processing is=20 > supressed when PACKAGE_BUILDING is defined? No, this was a deliberate change, so your port needs to accomodate it. Kris --sm4nu43k4a2Rpi4c Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCbpWsWry0BWjoQKURAtt5AJwIzO/nhV/655LrL/tJdLthRNgeuQCfT7lI KHl1GpPrDV7xFZL/DOgjW48= =F4cN -----END PGP SIGNATURE----- --sm4nu43k4a2Rpi4c-- From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 19:35:52 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8714616A4CE for ; Tue, 26 Apr 2005 19:35:52 +0000 (GMT) Received: from 62-15-211-171.inversas.jazztel.es (62-15-211-171.inversas.jazztel.es [62.15.211.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id A683943D48 for ; Tue, 26 Apr 2005 19:35:51 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) j3QJZn0m010387; Tue, 26 Apr 2005 21:35:49 +0200 (CEST) (envelope-from josemi@redesjm.local) Received: from localhost (localhost [[UNIX: localhost]]) by redesjm.local (8.13.3/8.13.3/Submit) id j3QJZmY9086644; Tue, 26 Apr 2005 21:35:48 +0200 (CEST) (envelope-from josemi@redesjm.local) From: Jose M Rodriguez To: Kris Kennaway Date: Tue, 26 Apr 2005 21:35:46 +0200 User-Agent: KMail/1.8 References: <200504260916.11192.josemi@redesjm.local> <20050426192532.GA41681@xor.obsecurity.org> In-Reply-To: <20050426192532.GA41681@xor.obsecurity.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-13" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200504262135.48495.josemi@redesjm.local> X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-3; AVE: 6.30.0.7; VDF: 6.30.0.116; host: antares.redesjm.local) cc: ports@FreeBSD.org cc: Jose M Rodriguez Subject: Re: problems with options in pkg cluster builds. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 19:35:52 -0000 El Martes, 26 de Abril de 2005 21:25, Kris Kennaway escribi=F3: > On Tue, Apr 26, 2005 at 09:16:10AM +0200, Jose M Rodriguez wrote: > > Hi, > > > > I'm having problems with pkg cluster builds after latest changes to > > options code. > > > > I want force the way packages must be build from make.conf and > > pkgtools.conf, but seems that default config is chase due to > > options code. > > > > This is an automated build in a fresh chroot with PACKAGE_BUILDING > > and BATCH defined that used to work before. > > > > Any know method to disabled options code? > > > > Any hope that this change may be reverted and options processing is > > supressed when PACKAGE_BUILDING is defined? > > No, this was a deliberate change, so your port needs to accomodate > it. > There aren't my ports. I hate local patches. I Know this is deliberate. But it's not so simple to workaround as I=20 spect. I'm using local patches. And thinking in do the config and them=20 populate /var/db/ports from tarball in the beggin of the cluster=20 scripting. but this is really odd. =2D- josemi From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 19:48:32 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C69F716A4CE for ; Tue, 26 Apr 2005 19:48:32 +0000 (GMT) Received: from smtp0.clinicomp.com (smtp0.clinicomp.com [63.251.123.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F64543D53 for ; Tue, 26 Apr 2005 19:48:32 +0000 (GMT) (envelope-from rmvega@san.rr.com) Received: from [10.224.34.50] (hella [10.224.34.50]) by smtp0.clinicomp.com (Postfix) with ESMTP id E4CDC23922 for ; Tue, 26 Apr 2005 12:48:25 -0700 (PDT), Message-ID: <426E9BCB.6030006@san.rr.com> Date: Tue, 26 Apr 2005 12:51:39 -0700 From: "Raymundo M. Vega" User-Agent: Mozilla Thunderbird 0.6 (X11/20040506) X-Accept-Language: en-us, en MIME-Version: 1.0 To: ports@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Make index fail X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 19:48:32 -0000 Yesterday i upgraded the sources on a server from 5.2.1 to 5.3, this is the output from uname -a: FreeBSD steeler.clinicomp.com 5.3-RELEASE-p10 FreeBSD 5.3-RELEASE-p10 #0: Mon Apr 25 16:40:42 PDT 2005 rvega@steeler.clinicomp.com:/usr/obj/usr/src/sys/GENERIC i386 Today i am upgrading ports, after cvsup the sources, make index fails on two ports with same error (german/ispell-new and mail/mls), i don't use them so i removed them from the ports tree. steeler# cd /usr/ports steeler# make index Generating INDEX-5 - please wait.."/usr/ports/Mk/bsd.port.mk", line 4847: warning: duplicate script for target "add-plist-post" ignored ===> mail/mls failed *** Error code 1 1 error ******************************************************************** Before reporting this error, verify that you are running a supported version of FreeBSD (see http://www.FreeBSD.org/ports/) and that you have a complete and up-to-date ports collection. (INDEX builds are not supported with partial or out-of-date ports collections -- in particular, if you are using cvsup, you must cvsup the "ports-all" collection, and have no "refuse" files.) If that is the case, then report the failure to ports@FreeBSD.org together with relevant details of your ports configuration (including FreeBSD version, your architecture, your environment, and your /etc/make.conf settings, especially compiler flags and WITH/WITHOUT settings). Note: the latest pre-generated version of INDEX may be fetched automatically with "make fetchindex". ******************************************************************** *** Error code 1 Stop in /var/ports. ======================================================== steeler# more /etc/make.conf # -- use.perl generated deltas -- # # Created: Thu Jun 24 21:42:53 2004 # Setting to use base perl from ports: PERL_VER=5.6.1 PERL_VERSION=5.6.1 PERL_ARCH=mach NOPERL=yo NO_PERL=yo NO_PERL_WRAPPER=yo From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 19:56:57 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4822716A4CE for ; Tue, 26 Apr 2005 19:56:57 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1CE743D2F for ; Tue, 26 Apr 2005 19:56:56 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 27452516F2; Tue, 26 Apr 2005 12:56:56 -0700 (PDT) Date: Tue, 26 Apr 2005 12:56:56 -0700 From: Kris Kennaway To: Jose M Rodriguez Message-ID: <20050426195656.GA42269@xor.obsecurity.org> References: <200504260916.11192.josemi@redesjm.local> <20050426192532.GA41681@xor.obsecurity.org> <200504262135.48495.josemi@redesjm.local> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ikeVEW9yuYc//A+q" Content-Disposition: inline In-Reply-To: <200504262135.48495.josemi@redesjm.local> User-Agent: Mutt/1.4.2.1i cc: ports@FreeBSD.org cc: Kris Kennaway Subject: Re: problems with options in pkg cluster builds. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 19:56:57 -0000 --ikeVEW9yuYc//A+q Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 26, 2005 at 09:35:46PM +0200, Jose M Rodriguez wrote: > El Martes, 26 de Abril de 2005 21:25, Kris Kennaway escribi?: > > On Tue, Apr 26, 2005 at 09:16:10AM +0200, Jose M Rodriguez wrote: > > > Hi, > > > > > > I'm having problems with pkg cluster builds after latest changes to > > > options code. > > > > > > I want force the way packages must be build from make.conf and > > > pkgtools.conf, but seems that default config is chase due to > > > options code. > > > > > > This is an automated build in a fresh chroot with PACKAGE_BUILDING > > > and BATCH defined that used to work before. > > > > > > Any know method to disabled options code? > > > > > > Any hope that this change may be reverted and options processing is > > > supressed when PACKAGE_BUILDING is defined? > > > > No, this was a deliberate change, so your port needs to accomodate > > it. > > >=20 > There aren't my ports. I hate local patches. >=20 > I Know this is deliberate. But it's not so simple to workaround as I=20 > spect. >=20 > I'm using local patches. And thinking in do the config and them=20 > populate /var/db/ports from tarball in the beggin of the cluster=20 > scripting. >=20 > but this is really odd. You'll have to explain what problem you're seeing. Kris --ikeVEW9yuYc//A+q Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCbp0HWry0BWjoQKURArVXAKD1eDfEi0JPwI67nHKHrd0awCdMXQCffYOO 7FHcyePQm0Z2QoPCFL44R+0= =uT7s -----END PGP SIGNATURE----- --ikeVEW9yuYc//A+q-- From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 19:58:41 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 335FB16A4CF for ; Tue, 26 Apr 2005 19:58:41 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id E159943D41 for ; Tue, 26 Apr 2005 19:58:40 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 1B950516F2; Tue, 26 Apr 2005 12:58:40 -0700 (PDT) Date: Tue, 26 Apr 2005 12:58:40 -0700 From: Kris Kennaway To: "Raymundo M. Vega" Message-ID: <20050426195839.GB42269@xor.obsecurity.org> References: <426E9BCB.6030006@san.rr.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="3lcZGd9BuhuYXNfi" Content-Disposition: inline In-Reply-To: <426E9BCB.6030006@san.rr.com> User-Agent: Mutt/1.4.2.1i cc: ports@freebsd.org Subject: Re: Make index fail X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 19:58:41 -0000 --3lcZGd9BuhuYXNfi Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 26, 2005 at 12:51:39PM -0700, Raymundo M. Vega wrote: > Yesterday i upgraded the sources on a server from 5.2.1 to 5.3, > this is the output from uname -a: >=20 > FreeBSD steeler.clinicomp.com 5.3-RELEASE-p10 FreeBSD 5.3-RELEASE-p10 #0:= =20 > Mon Apr 25 16:40:42 PDT 2005 =20 > rvega@steeler.clinicomp.com:/usr/obj/usr/src/sys/GENERIC i386 >=20 > Today i am upgrading ports, after cvsup the sources, make index fails > on two ports with same error (german/ispell-new and mail/mls), i don't > use them so i removed them from the ports tree. >=20 > steeler# cd /usr/ports > steeler# make index > Generating INDEX-5 - please wait.."/usr/ports/Mk/bsd.port.mk", line 4847:= =20 > warning: duplicate script for target "add-plist-post" ignored > =3D=3D=3D> mail/mls failed > *** Error code 1 > 1 error Why are you surprised that the index build fails when you removed these ports? Kris --3lcZGd9BuhuYXNfi Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCbp1vWry0BWjoQKURAgpHAJ9AKFLbuco15Lf+Nug5CMt3uv8JPQCdG699 waMDEXQUY/SyLnhSyfcyMvE= =vcAV -----END PGP SIGNATURE----- --3lcZGd9BuhuYXNfi-- From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 20:09:26 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06FF516A4CE for ; Tue, 26 Apr 2005 20:09:26 +0000 (GMT) Received: from relay.rdsnet.ro (gimli.rdsnet.ro [193.231.236.70]) by mx1.FreeBSD.org (Postfix) with SMTP id A063F43D31 for ; Tue, 26 Apr 2005 20:09:24 +0000 (GMT) (envelope-from itetcu@people.tecnik93.com) Received: (qmail 20202 invoked from network); 26 Apr 2005 20:02:21 -0000 Received: from unknown (HELO smtp.rdsnet.ro) (62.231.74.130) by smtp1-133.rdsnet.ro with SMTP; 26 Apr 2005 20:02:21 -0000 Received: (qmail 2178 invoked by uid 89); 26 Apr 2005 20:20:57 -0000 Received: from unknown (HELO buh.cameradicommercio.ro) (82.76.1.117) by 0 with SMTP; 26 Apr 2005 20:20:57 -0000 Received: from buh.cameradicommercio.ro (localhost [127.0.0.1]) by buh.cameradicommercio.ro (Postfix) with ESMTP id BF9FC60C1; Tue, 26 Apr 2005 23:09:20 +0300 (EEST) Received: from it.buh.cameradicommercio.ro (it.buh.cameradicommercio.ro [192.168.0.10]) by buh.cameradicommercio.ro (Postfix) with ESMTP; Tue, 26 Apr 2005 23:09:20 +0300 (EEST) Received: from it.buh.cameradicommercio.ro (localhost.buh.tecnik93.com [127.0.0.1]) by it.buh.cameradicommercio.ro (Postfix) with ESMTP id 6CA4767; Tue, 26 Apr 2005 23:10:01 +0300 (EEST) Date: Tue, 26 Apr 2005 23:09:58 +0300 From: Ion-Mihai Tetcu To: Kris Kennaway Message-ID: <20050426230958.6045156d@it.buh.cameradicommercio.ro> In-Reply-To: <20050426195839.GB42269@xor.obsecurity.org> References: <426E9BCB.6030006@san.rr.com> <20050426195839.GB42269@xor.obsecurity.org> X-Mailer: Sylpheed-Claws 1.0.4 (GTK+ 1.2.10; i386-portbld-freebsd5.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-AV-Checked: on buh by ClamAV using ClamSMTP cc: ports@freebsd.org cc: "Raymundo M. Vega" Subject: Re: Make index fail X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 20:09:26 -0000 On Tue, 26 Apr 2005 12:58:40 -0700 Kris Kennaway wrote: > On Tue, Apr 26, 2005 at 12:51:39PM -0700, Raymundo M. Vega wrote: > > Yesterday i upgraded the sources on a server from 5.2.1 to 5.3, > > this is the output from uname -a: > > > > FreeBSD steeler.clinicomp.com 5.3-RELEASE-p10 FreeBSD 5.3-RELEASE-p10 #0: > > Mon Apr 25 16:40:42 PDT 2005 > > rvega@steeler.clinicomp.com:/usr/obj/usr/src/sys/GENERIC i386 > > > > Today i am upgrading ports, after cvsup the sources, make index fails > > on two ports with same error (german/ispell-new and mail/mls), i don't > > use them so i removed them from the ports tree. > > > > steeler# cd /usr/ports > > steeler# make index > > Generating INDEX-5 - please wait.."/usr/ports/Mk/bsd.port.mk", line 4847: > > warning: duplicate script for target "add-plist-post" ignored > > ===> mail/mls failed > > *** Error code 1 > > 1 error > > Why are you surprised that the index build fails when you removed > these ports? I'm getting this as a warning when building index with p5-FreeBSD-portindex with up-to-date ports tree. -- IOnut Unregistered ;) FreeBSD "user" From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 20:10:16 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B1FB416A4CE for ; Tue, 26 Apr 2005 20:10:16 +0000 (GMT) Received: from rwcrmhc11.comcast.net (rwcrmhc11.comcast.net [204.127.198.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9213743D5D for ; Tue, 26 Apr 2005 20:10:16 +0000 (GMT) (envelope-from e.schuele@computer.org) Received: from [208.206.151.59] (host59.gtisd.com[208.206.151.59]) by comcast.net (rwcrmhc11) with ESMTP id <2005042620101501300cftpse>; Tue, 26 Apr 2005 20:10:16 +0000 Message-ID: <426EA027.8060002@computer.org> Date: Tue, 26 Apr 2005 15:10:15 -0500 From: Eric Schuele User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050325) X-Accept-Language: en-us, en MIME-Version: 1.0 To: ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: anyone working on the broken xfe? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 20:10:16 -0000 Hello, I was wondering if anyone used xfe (other than me)... and if anyone was working on 'fixing' the port which is marked broken? I enjoy the app. and if no one is currently working on it... I'll kick it around a bit. -- Regards, Eric From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 20:14:53 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8482116A4CE for ; Tue, 26 Apr 2005 20:14:53 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3437843D5C for ; Tue, 26 Apr 2005 20:14:53 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id BDE6B516F2; Tue, 26 Apr 2005 13:14:51 -0700 (PDT) Date: Tue, 26 Apr 2005 13:14:51 -0700 From: Kris Kennaway To: Ion-Mihai Tetcu Message-ID: <20050426201451.GA45206@xor.obsecurity.org> References: <426E9BCB.6030006@san.rr.com> <20050426195839.GB42269@xor.obsecurity.org> <20050426230958.6045156d@it.buh.cameradicommercio.ro> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="XsQoSWH+UP9D9v3l" Content-Disposition: inline In-Reply-To: <20050426230958.6045156d@it.buh.cameradicommercio.ro> User-Agent: Mutt/1.4.2.1i cc: ports@freebsd.org cc: "Raymundo M. Vega" cc: Kris Kennaway Subject: Re: Make index fail X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 20:14:53 -0000 --XsQoSWH+UP9D9v3l Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 26, 2005 at 11:09:58PM +0300, Ion-Mihai Tetcu wrote: > On Tue, 26 Apr 2005 12:58:40 -0700 > Kris Kennaway wrote: >=20 > > On Tue, Apr 26, 2005 at 12:51:39PM -0700, Raymundo M. Vega wrote: > > > Yesterday i upgraded the sources on a server from 5.2.1 to 5.3, > > > this is the output from uname -a: > > >=20 > > > FreeBSD steeler.clinicomp.com 5.3-RELEASE-p10 FreeBSD 5.3-RELEASE-p10= #0:=20 > > > Mon Apr 25 16:40:42 PDT 2005 =20 > > > rvega@steeler.clinicomp.com:/usr/obj/usr/src/sys/GENERIC i386 > > >=20 > > > Today i am upgrading ports, after cvsup the sources, make index fails > > > on two ports with same error (german/ispell-new and mail/mls), i don't > > > use them so i removed them from the ports tree. > > >=20 > > > steeler# cd /usr/ports > > > steeler# make index > > > Generating INDEX-5 - please wait.."/usr/ports/Mk/bsd.port.mk", line 4= 847:=20 > > > warning: duplicate script for target "add-plist-post" ignored > > > =3D=3D=3D> mail/mls failed > > > *** Error code 1 > > > 1 error > >=20 > > Why are you surprised that the index build fails when you removed > > these ports? >=20 > I'm getting this as a warning when building index with > p5-FreeBSD-portindex with up-to-date ports tree. Yeah, but the warning isn't an error. Kris --XsQoSWH+UP9D9v3l Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCbqE7Wry0BWjoQKURAj1/AKDd1YaiAAFlPvhY+/atJ3YpGSpP4wCeMn6B RulayGt9ooHFaR3K3/2RzTY= =JBKc -----END PGP SIGNATURE----- --XsQoSWH+UP9D9v3l-- From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 20:19:14 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE1A916A4CE for ; Tue, 26 Apr 2005 20:19:14 +0000 (GMT) Received: from relay.rdsnet.ro (gimli.rdsnet.ro [193.231.236.70]) by mx1.FreeBSD.org (Postfix) with SMTP id F350143D1F for ; Tue, 26 Apr 2005 20:19:13 +0000 (GMT) (envelope-from itetcu@people.tecnik93.com) Received: (qmail 21759 invoked from network); 26 Apr 2005 20:12:11 -0000 Received: from unknown (HELO smtp.rdsnet.ro) (62.231.74.130) by smtp1-133.rdsnet.ro with SMTP; 26 Apr 2005 20:12:11 -0000 Received: (qmail 3203 invoked by uid 89); 26 Apr 2005 20:30:47 -0000 Received: from unknown (HELO buh.cameradicommercio.ro) (82.76.1.117) by 0 with SMTP; 26 Apr 2005 20:30:47 -0000 Received: from buh.cameradicommercio.ro (localhost [127.0.0.1]) by buh.cameradicommercio.ro (Postfix) with ESMTP id 4BFE960C1; Tue, 26 Apr 2005 23:19:11 +0300 (EEST) Received: from it.buh.cameradicommercio.ro (it.buh.cameradicommercio.ro [192.168.0.10]) by buh.cameradicommercio.ro (Postfix) with ESMTP; Tue, 26 Apr 2005 23:19:11 +0300 (EEST) Received: from it.buh.cameradicommercio.ro (localhost.buh.tecnik93.com [127.0.0.1]) by it.buh.cameradicommercio.ro (Postfix) with ESMTP id 7F74E9B; Tue, 26 Apr 2005 23:19:52 +0300 (EEST) Date: Tue, 26 Apr 2005 23:19:51 +0300 From: Ion-Mihai Tetcu To: Kris Kennaway Message-ID: <20050426231951.0daba01f@it.buh.cameradicommercio.ro> In-Reply-To: <20050426201451.GA45206@xor.obsecurity.org> References: <426E9BCB.6030006@san.rr.com> <20050426195839.GB42269@xor.obsecurity.org> <20050426230958.6045156d@it.buh.cameradicommercio.ro> <20050426201451.GA45206@xor.obsecurity.org> X-Mailer: Sylpheed-Claws 1.0.4 (GTK+ 1.2.10; i386-portbld-freebsd5.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-AV-Checked: on buh by ClamAV using ClamSMTP cc: ports@freebsd.org cc: "Raymundo M. Vega" cc: Kris Kennaway Subject: Re: Make index fail X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 20:19:15 -0000 On Tue, 26 Apr 2005 13:14:51 -0700 Kris Kennaway wrote: > On Tue, Apr 26, 2005 at 11:09:58PM +0300, Ion-Mihai Tetcu wrote: > > On Tue, 26 Apr 2005 12:58:40 -0700 > > Kris Kennaway wrote: > > > > > On Tue, Apr 26, 2005 at 12:51:39PM -0700, Raymundo M. Vega wrote: > > > > Yesterday i upgraded the sources on a server from 5.2.1 to 5.3, > > > > this is the output from uname -a: > > > > > > > > FreeBSD steeler.clinicomp.com 5.3-RELEASE-p10 FreeBSD 5.3-RELEASE-p10 #0: > > > > Mon Apr 25 16:40:42 PDT 2005 > > > > rvega@steeler.clinicomp.com:/usr/obj/usr/src/sys/GENERIC i386 > > > > > > > > Today i am upgrading ports, after cvsup the sources, make index fails > > > > on two ports with same error (german/ispell-new and mail/mls), i don't > > > > use them so i removed them from the ports tree. > > > > > > > > steeler# cd /usr/ports > > > > steeler# make index > > > > Generating INDEX-5 - please wait.."/usr/ports/Mk/bsd.port.mk", line 4847: > > > > warning: duplicate script for target "add-plist-post" ignored > > > > ===> mail/mls failed > > > > *** Error code 1 > > > > 1 error > > > > > > Why are you surprised that the index build fails when you removed > > > these ports? > > > > I'm getting this as a warning when building index with > > p5-FreeBSD-portindex with up-to-date ports tree. > > Yeah, but the warning isn't an error. AFAIK portindex treats some things considered errors by *.mk as warnings and I haven't have time to track it down. -- IOnut Unregistered ;) FreeBSD "user" From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 20:23:18 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95D3816A593 for ; Tue, 26 Apr 2005 20:23:18 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3235443D4C for ; Tue, 26 Apr 2005 20:23:18 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 50A8B513B1; Tue, 26 Apr 2005 13:23:17 -0700 (PDT) Date: Tue, 26 Apr 2005 13:23:17 -0700 From: Kris Kennaway To: Ion-Mihai Tetcu Message-ID: <20050426202317.GA58236@xor.obsecurity.org> References: <426E9BCB.6030006@san.rr.com> <20050426195839.GB42269@xor.obsecurity.org> <20050426230958.6045156d@it.buh.cameradicommercio.ro> <20050426201451.GA45206@xor.obsecurity.org> <20050426231951.0daba01f@it.buh.cameradicommercio.ro> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="IS0zKkzwUGydFO0o" Content-Disposition: inline In-Reply-To: <20050426231951.0daba01f@it.buh.cameradicommercio.ro> User-Agent: Mutt/1.4.2.1i cc: ports@freebsd.org cc: "Raymundo M. Vega" cc: Kris Kennaway Subject: Re: Make index fail X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 20:23:18 -0000 --IS0zKkzwUGydFO0o Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 26, 2005 at 11:19:51PM +0300, Ion-Mihai Tetcu wrote: > On Tue, 26 Apr 2005 13:14:51 -0700 > Kris Kennaway wrote: >=20 > > On Tue, Apr 26, 2005 at 11:09:58PM +0300, Ion-Mihai Tetcu wrote: > > > On Tue, 26 Apr 2005 12:58:40 -0700 > > > Kris Kennaway wrote: > > >=20 > > > > On Tue, Apr 26, 2005 at 12:51:39PM -0700, Raymundo M. Vega wrote: > > > > > Yesterday i upgraded the sources on a server from 5.2.1 to 5.3, > > > > > this is the output from uname -a: > > > > >=20 > > > > > FreeBSD steeler.clinicomp.com 5.3-RELEASE-p10 FreeBSD 5.3-RELEASE= -p10 #0:=20 > > > > > Mon Apr 25 16:40:42 PDT 2005 =20 > > > > > rvega@steeler.clinicomp.com:/usr/obj/usr/src/sys/GENERIC i386 > > > > >=20 > > > > > Today i am upgrading ports, after cvsup the sources, make index f= ails > > > > > on two ports with same error (german/ispell-new and mail/mls), i = don't > > > > > use them so i removed them from the ports tree. > > > > >=20 > > > > > steeler# cd /usr/ports > > > > > steeler# make index > > > > > Generating INDEX-5 - please wait.."/usr/ports/Mk/bsd.port.mk", li= ne 4847:=20 > > > > > warning: duplicate script for target "add-plist-post" ignored > > > > > =3D=3D=3D> mail/mls failed > > > > > *** Error code 1 > > > > > 1 error > > > >=20 > > > > Why are you surprised that the index build fails when you removed > > > > these ports? > > >=20 > > > I'm getting this as a warning when building index with > > > p5-FreeBSD-portindex with up-to-date ports tree. > >=20 > > Yeah, but the warning isn't an error. >=20 > AFAIK portindex treats some things considered errors by *.mk as warnings > and I haven't have time to track it down. I don't think so. The warning comes from another port anyway. Kris --IS0zKkzwUGydFO0o Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCbqM0Wry0BWjoQKURAhZuAKCTyAWqSpApXggCN9LqFkeESjWBQwCdFw8N llcAOycrWkEkzo9wF8FF+X0= =nXKE -----END PGP SIGNATURE----- --IS0zKkzwUGydFO0o-- From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 20:27:09 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C9EC916A4CE; Tue, 26 Apr 2005 20:27:09 +0000 (GMT) Received: from 62-15-211-171.inversas.jazztel.es (62-15-211-171.inversas.jazztel.es [62.15.211.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7BFB43D3F; Tue, 26 Apr 2005 20:27:08 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) j3QKR7T5022428; Tue, 26 Apr 2005 22:27:07 +0200 (CEST) (envelope-from josemi@redesjm.local) Received: from localhost (localhost [[UNIX: localhost]]) by redesjm.local (8.13.3/8.13.3/Submit) id j3QKR6mL006285; Tue, 26 Apr 2005 22:27:06 +0200 (CEST) (envelope-from josemi@redesjm.local) From: Jose M Rodriguez To: freebsd-ports@freebsd.org Date: Tue, 26 Apr 2005 22:27:05 +0200 User-Agent: KMail/1.8 References: <200504260916.11192.josemi@redesjm.local> <200504262135.48495.josemi@redesjm.local> <20050426195656.GA42269@xor.obsecurity.org> In-Reply-To: <20050426195656.GA42269@xor.obsecurity.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-13" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200504262227.06290.josemi@redesjm.local> X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-3; AVE: 6.30.0.7; VDF: 6.30.0.116; host: antares.redesjm.local) cc: ports@freebsd.org cc: Jose M Rodriguez cc: Kris Kennaway Subject: Re: problems with options in pkg cluster builds. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 20:27:09 -0000 El Martes, 26 de Abril de 2005 21:56, Kris Kennaway escribi=F3: > On Tue, Apr 26, 2005 at 09:35:46PM +0200, Jose M Rodriguez wrote: > > El Martes, 26 de Abril de 2005 21:25, Kris Kennaway escribi?: > > > On Tue, Apr 26, 2005 at 09:16:10AM +0200, Jose M Rodriguez wrote: > > > > Hi, > > > > > > > > I'm having problems with pkg cluster builds after latest > > > > changes to options code. > > > > > > > > I want force the way packages must be build from make.conf and > > > > pkgtools.conf, but seems that default config is chase due to > > > > options code. > > > > > > > > This is an automated build in a fresh chroot with > > > > PACKAGE_BUILDING and BATCH defined that used to work before. > > > > > > > > Any know method to disabled options code? > > > > > > > > Any hope that this change may be reverted and options > > > > processing is supressed when PACKAGE_BUILDING is defined? > > > > > > No, this was a deliberate change, so your port needs to > > > accomodate it. > > > > There aren't my ports. I hate local patches. > > > > I Know this is deliberate. But it's not so simple to workaround as > > I spect. > > > > I'm using local patches. And thinking in do the config and them > > populate /var/db/ports from tarball in the beggin of the cluster > > scripting. > > > > but this is really odd. > > You'll have to explain what problem you're seeing. > I can't be able to make pktools.conf and make.conf supersede ports=20 default options from a fresh chroot cage without and /var/db/ports dir Maybe my fault, but ... any clues? =2D- josemi > Kris From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 20:27:09 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C9EC916A4CE; Tue, 26 Apr 2005 20:27:09 +0000 (GMT) Received: from 62-15-211-171.inversas.jazztel.es (62-15-211-171.inversas.jazztel.es [62.15.211.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7BFB43D3F; Tue, 26 Apr 2005 20:27:08 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) j3QKR7T5022428; Tue, 26 Apr 2005 22:27:07 +0200 (CEST) (envelope-from josemi@redesjm.local) Received: from localhost (localhost [[UNIX: localhost]]) by redesjm.local (8.13.3/8.13.3/Submit) id j3QKR6mL006285; Tue, 26 Apr 2005 22:27:06 +0200 (CEST) (envelope-from josemi@redesjm.local) From: Jose M Rodriguez To: freebsd-ports@freebsd.org Date: Tue, 26 Apr 2005 22:27:05 +0200 User-Agent: KMail/1.8 References: <200504260916.11192.josemi@redesjm.local> <200504262135.48495.josemi@redesjm.local> <20050426195656.GA42269@xor.obsecurity.org> In-Reply-To: <20050426195656.GA42269@xor.obsecurity.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-13" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200504262227.06290.josemi@redesjm.local> X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-3; AVE: 6.30.0.7; VDF: 6.30.0.116; host: antares.redesjm.local) cc: ports@freebsd.org cc: Jose M Rodriguez cc: Kris Kennaway Subject: Re: problems with options in pkg cluster builds. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 20:27:10 -0000 El Martes, 26 de Abril de 2005 21:56, Kris Kennaway escribi=F3: > On Tue, Apr 26, 2005 at 09:35:46PM +0200, Jose M Rodriguez wrote: > > El Martes, 26 de Abril de 2005 21:25, Kris Kennaway escribi?: > > > On Tue, Apr 26, 2005 at 09:16:10AM +0200, Jose M Rodriguez wrote: > > > > Hi, > > > > > > > > I'm having problems with pkg cluster builds after latest > > > > changes to options code. > > > > > > > > I want force the way packages must be build from make.conf and > > > > pkgtools.conf, but seems that default config is chase due to > > > > options code. > > > > > > > > This is an automated build in a fresh chroot with > > > > PACKAGE_BUILDING and BATCH defined that used to work before. > > > > > > > > Any know method to disabled options code? > > > > > > > > Any hope that this change may be reverted and options > > > > processing is supressed when PACKAGE_BUILDING is defined? > > > > > > No, this was a deliberate change, so your port needs to > > > accomodate it. > > > > There aren't my ports. I hate local patches. > > > > I Know this is deliberate. But it's not so simple to workaround as > > I spect. > > > > I'm using local patches. And thinking in do the config and them > > populate /var/db/ports from tarball in the beggin of the cluster > > scripting. > > > > but this is really odd. > > You'll have to explain what problem you're seeing. > I can't be able to make pktools.conf and make.conf supersede ports=20 default options from a fresh chroot cage without and /var/db/ports dir Maybe my fault, but ... any clues? =2D- josemi > Kris From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 20:28:38 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4901E16A4CE for ; Tue, 26 Apr 2005 20:28:38 +0000 (GMT) Received: from relay.rdsnet.ro (gimli.rdsnet.ro [193.231.236.70]) by mx1.FreeBSD.org (Postfix) with SMTP id 4616B43D53 for ; Tue, 26 Apr 2005 20:28:37 +0000 (GMT) (envelope-from itetcu@people.tecnik93.com) Received: (qmail 23356 invoked from network); 26 Apr 2005 20:21:34 -0000 Received: from unknown (HELO smtp.rdsnet.ro) (62.231.74.130) by smtp1-133.rdsnet.ro with SMTP; 26 Apr 2005 20:21:34 -0000 Received: (qmail 4231 invoked by uid 89); 26 Apr 2005 20:40:10 -0000 Received: from unknown (HELO buh.cameradicommercio.ro) (82.76.1.117) by 0 with SMTP; 26 Apr 2005 20:40:10 -0000 Received: from buh.cameradicommercio.ro (localhost [127.0.0.1]) by buh.cameradicommercio.ro (Postfix) with ESMTP id 51B7360BE; Tue, 26 Apr 2005 23:28:35 +0300 (EEST) Received: from it.buh.cameradicommercio.ro (it.buh.cameradicommercio.ro [192.168.0.10]) by buh.cameradicommercio.ro (Postfix) with ESMTP; Tue, 26 Apr 2005 23:28:35 +0300 (EEST) Received: from it.buh.cameradicommercio.ro (localhost.buh.tecnik93.com [127.0.0.1]) by it.buh.cameradicommercio.ro (Postfix) with ESMTP id D0D579B; Tue, 26 Apr 2005 23:29:16 +0300 (EEST) Date: Tue, 26 Apr 2005 23:29:16 +0300 From: Ion-Mihai Tetcu To: Kris Kennaway Message-ID: <20050426232916.0c8f186e@it.buh.cameradicommercio.ro> In-Reply-To: <20050426202317.GA58236@xor.obsecurity.org> References: <426E9BCB.6030006@san.rr.com> <20050426195839.GB42269@xor.obsecurity.org> <20050426230958.6045156d@it.buh.cameradicommercio.ro> <20050426201451.GA45206@xor.obsecurity.org> <20050426231951.0daba01f@it.buh.cameradicommercio.ro> <20050426202317.GA58236@xor.obsecurity.org> X-Mailer: Sylpheed-Claws 1.0.4 (GTK+ 1.2.10; i386-portbld-freebsd5.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-AV-Checked: on buh by ClamAV using ClamSMTP cc: ports@freebsd.org cc: "Raymundo M. Vega" cc: Kris Kennaway Subject: Re: Make index fail X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 20:28:38 -0000 On Tue, 26 Apr 2005 13:23:17 -0700 Kris Kennaway wrote: > On Tue, Apr 26, 2005 at 11:19:51PM +0300, Ion-Mihai Tetcu wrote: > > On Tue, 26 Apr 2005 13:14:51 -0700 > > Kris Kennaway wrote: > > > > > On Tue, Apr 26, 2005 at 11:09:58PM +0300, Ion-Mihai Tetcu wrote: > > > > On Tue, 26 Apr 2005 12:58:40 -0700 > > > > Kris Kennaway wrote: > > > > > > > > > On Tue, Apr 26, 2005 at 12:51:39PM -0700, Raymundo M. Vega wrote: > > > > > > Yesterday i upgraded the sources on a server from 5.2.1 to 5.3, > > > > > > this is the output from uname -a: > > > > > > > > > > > > FreeBSD steeler.clinicomp.com 5.3-RELEASE-p10 FreeBSD 5.3-RELEASE-p10 #0: > > > > > > Mon Apr 25 16:40:42 PDT 2005 > > > > > > rvega@steeler.clinicomp.com:/usr/obj/usr/src/sys/GENERIC i386 > > > > > > > > > > > > Today i am upgrading ports, after cvsup the sources, make index fails > > > > > > on two ports with same error (german/ispell-new and mail/mls), i don't > > > > > > use them so i removed them from the ports tree. > > > > > > > > > > > > steeler# cd /usr/ports > > > > > > steeler# make index > > > > > > Generating INDEX-5 - please wait.."/usr/ports/Mk/bsd.port.mk", line 4847: > > > > > > warning: duplicate script for target "add-plist-post" ignored > > > > > > ===> mail/mls failed > > > > > > *** Error code 1 > > > > > > 1 error > > > > > > > > > > Why are you surprised that the index build fails when you removed > > > > > these ports? > > > > > > > > I'm getting this as a warning when building index with > > > > p5-FreeBSD-portindex with up-to-date ports tree. > > > > > > Yeah, but the warning isn't an error. > > > > AFAIK portindex treats some things considered errors by *.mk as warnings > > and I haven't have time to track it down. > > I don't think so. > >The warning comes from another port anyway. Do you happen to know what port ? I'm curious. Thanks, -- IOnut Unregistered ;) FreeBSD "user" From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 20:31:01 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 340FD16A4CE for ; Tue, 26 Apr 2005 20:31:01 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id C6E2A43D31 for ; Tue, 26 Apr 2005 20:31:00 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id B4E425132F; Tue, 26 Apr 2005 13:30:59 -0700 (PDT) Date: Tue, 26 Apr 2005 13:30:59 -0700 From: Kris Kennaway To: Ion-Mihai Tetcu Message-ID: <20050426203059.GA58482@xor.obsecurity.org> References: <426E9BCB.6030006@san.rr.com> <20050426195839.GB42269@xor.obsecurity.org> <20050426230958.6045156d@it.buh.cameradicommercio.ro> <20050426201451.GA45206@xor.obsecurity.org> <20050426231951.0daba01f@it.buh.cameradicommercio.ro> <20050426202317.GA58236@xor.obsecurity.org> <20050426232916.0c8f186e@it.buh.cameradicommercio.ro> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="4Ckj6UjgE2iN1+kY" Content-Disposition: inline In-Reply-To: <20050426232916.0c8f186e@it.buh.cameradicommercio.ro> User-Agent: Mutt/1.4.2.1i cc: ports@freebsd.org cc: "Raymundo M. Vega" cc: Kris Kennaway Subject: Re: Make index fail X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 20:31:01 -0000 --4Ckj6UjgE2iN1+kY Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 26, 2005 at 11:29:16PM +0300, Ion-Mihai Tetcu wrote: > On Tue, 26 Apr 2005 13:23:17 -0700 > Kris Kennaway wrote: >=20 > > On Tue, Apr 26, 2005 at 11:19:51PM +0300, Ion-Mihai Tetcu wrote: > > > On Tue, 26 Apr 2005 13:14:51 -0700 > > > Kris Kennaway wrote: > > >=20 > > > > On Tue, Apr 26, 2005 at 11:09:58PM +0300, Ion-Mihai Tetcu wrote: > > > > > On Tue, 26 Apr 2005 12:58:40 -0700 > > > > > Kris Kennaway wrote: > > > > >=20 > > > > > > On Tue, Apr 26, 2005 at 12:51:39PM -0700, Raymundo M. Vega wrot= e: > > > > > > > Yesterday i upgraded the sources on a server from 5.2.1 to 5.= 3, > > > > > > > this is the output from uname -a: > > > > > > >=20 > > > > > > > FreeBSD steeler.clinicomp.com 5.3-RELEASE-p10 FreeBSD 5.3-REL= EASE-p10 #0:=20 > > > > > > > Mon Apr 25 16:40:42 PDT 2005 =20 > > > > > > > rvega@steeler.clinicomp.com:/usr/obj/usr/src/sys/GENERIC i386 > > > > > > >=20 > > > > > > > Today i am upgrading ports, after cvsup the sources, make ind= ex fails > > > > > > > on two ports with same error (german/ispell-new and mail/mls)= , i don't > > > > > > > use them so i removed them from the ports tree. > > > > > > >=20 > > > > > > > steeler# cd /usr/ports > > > > > > > steeler# make index > > > > > > > Generating INDEX-5 - please wait.."/usr/ports/Mk/bsd.port.mk"= , line 4847:=20 > > > > > > > warning: duplicate script for target "add-plist-post" ignored > > > > > > > =3D=3D=3D> mail/mls failed > > > > > > > *** Error code 1 > > > > > > > 1 error > > > > > >=20 > > > > > > Why are you surprised that the index build fails when you remov= ed > > > > > > these ports? > > > > >=20 > > > > > I'm getting this as a warning when building index with > > > > > p5-FreeBSD-portindex with up-to-date ports tree. > > > >=20 > > > > Yeah, but the warning isn't an error. > > >=20 > > > AFAIK portindex treats some things considered errors by *.mk as warni= ngs > > > and I haven't have time to track it down. > >=20 > > I don't think so. =20 > > > >The warning comes from another port anyway. >=20 > Do you happen to know what port ? I'm curious. Not off-hand. grep for add-plist-post. Kris --4Ckj6UjgE2iN1+kY Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCbqUDWry0BWjoQKURAoJwAKC5tAeL496c9w3ebIaNBE1mxDSNFgCgvCvJ 8AcEOTmcj+imIdeeoeePeA0= =akZl -----END PGP SIGNATURE----- --4Ckj6UjgE2iN1+kY-- From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 20:54:29 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D08516A4CE for ; Tue, 26 Apr 2005 20:54:29 +0000 (GMT) Received: from smtp0.clinicomp.com (smtp0.clinicomp.com [63.251.123.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 379D343D53 for ; Tue, 26 Apr 2005 20:54:29 +0000 (GMT) (envelope-from rmvega@san.rr.com) Received: from [10.224.34.50] (hella [10.224.34.50]) by smtp0.clinicomp.com (Postfix) with ESMTP id 860CE238CC; Tue, 26 Apr 2005 13:54:23 -0700 (PDT), Message-ID: <426EAB41.8070107@san.rr.com> Date: Tue, 26 Apr 2005 13:57:37 -0700 From: "Raymundo M. Vega" User-Agent: Mozilla Thunderbird 0.6 (X11/20040506) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Kris Kennaway , ports@freebsd.org References: <426E9BCB.6030006@san.rr.com> <20050426195839.GB42269@xor.obsecurity.org> <426EA1FE.9070402@san.rr.com> <20050426202149.GA57893@xor.obsecurity.org> In-Reply-To: <20050426202149.GA57893@xor.obsecurity.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: Make index fail X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 20:54:29 -0000 Kris Kennaway wrote: > On Tue, Apr 26, 2005 at 01:18:06PM -0700, Raymundo M. Vega wrote: > >>The error was issued before i removed them, the make install finished OK >>after removal. >> >>raymundo > > > * Please don't top-post. Also, don't drop the mailing list from the > CC line if you want others to be able to help you. > > * In order to diagnose this further you'd have to add back those two > ports and run 'make describe' from those directories to obtain the > error. > > Kris > > >>Kris Kennaway wrote: >> >>>On Tue, Apr 26, 2005 at 12:51:39PM -0700, Raymundo M. Vega wrote: >>> >>> >>>>Yesterday i upgraded the sources on a server from 5.2.1 to 5.3, >>>>this is the output from uname -a: >>>> >>>>FreeBSD steeler.clinicomp.com 5.3-RELEASE-p10 FreeBSD 5.3-RELEASE-p10 #0: >>>>Mon Apr 25 16:40:42 PDT 2005 >>>>rvega@steeler.clinicomp.com:/usr/obj/usr/src/sys/GENERIC i386 >>>> >>>>Today i am upgrading ports, after cvsup the sources, make index fails >>>>on two ports with same error (german/ispell-new and mail/mls), i don't >>>>use them so i removed them from the ports tree. >>>> >>>>steeler# cd /usr/ports >>>>steeler# make index >>>>Generating INDEX-5 - please wait.."/usr/ports/Mk/bsd.port.mk", line 4847: >>>>warning: duplicate script for target "add-plist-post" ignored >>>>===> mail/mls failed >>>>*** Error code 1 >>>>1 error >>> >>> >>>Why are you surprised that the index build fails when you removed >>>these ports? >>> >>>Kris >> > This is the output on each port steeler# cd mls steeler# make describe mls-1.3_1|/var/ports/mail/mls|/usr/local|Program for generating various statistics on emails|/var/ports/mail/mls/pkg-descr|anarcat@anarcat.ath.cx|mail||||||http://www.marki-online.net/MLS/ steeler# cd ispell-neu/ steeler# make describe de-ispell-neu-20001109-3.2.06_12|/var/ports/german/ispell-neu|/usr/local|An interactive spelling checker for multiple languages|/var/ports/german/ispell-neu/../../textproc/ispell/pkg-descr|alex@FreeBSD.org|german textproc|/usr/ports/lang/perl5|/usr/ports/lang/perl5||/usr/ports/lang/perl5|/usr/ports/lang/perl5|http://fmg-www.cs.ucla.edu/geoff/ispell.html From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 20:59:44 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68F1116A4CE for ; Tue, 26 Apr 2005 20:59:44 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id E1A6843D1D for ; Tue, 26 Apr 2005 20:59:43 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 98957513B1; Tue, 26 Apr 2005 13:59:42 -0700 (PDT) Date: Tue, 26 Apr 2005 13:59:42 -0700 From: Kris Kennaway To: "Raymundo M. Vega" Message-ID: <20050426205942.GA59062@xor.obsecurity.org> References: <426E9BCB.6030006@san.rr.com> <20050426195839.GB42269@xor.obsecurity.org> <426EA1FE.9070402@san.rr.com> <20050426202149.GA57893@xor.obsecurity.org> <426EAB41.8070107@san.rr.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="wRRV7LY7NUeQGEoC" Content-Disposition: inline In-Reply-To: <426EAB41.8070107@san.rr.com> User-Agent: Mutt/1.4.2.1i cc: ports@freebsd.org cc: Kris Kennaway Subject: Re: Make index fail X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 20:59:44 -0000 --wRRV7LY7NUeQGEoC Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 26, 2005 at 01:57:37PM -0700, Raymundo M. Vega wrote: > Kris Kennaway wrote: > >On Tue, Apr 26, 2005 at 01:18:06PM -0700, Raymundo M. Vega wrote: > > > >>The error was issued before i removed them, the make install finished O= K=20 > >>after removal. > >> > >>raymundo > > > > > >* Please don't top-post. Also, don't drop the mailing list from the > >CC line if you want others to be able to help you. > > > >* In order to diagnose this further you'd have to add back those two > >ports and run 'make describe' from those directories to obtain the > >error. > > > >Kris > > > > > >>Kris Kennaway wrote: > >> > >>>On Tue, Apr 26, 2005 at 12:51:39PM -0700, Raymundo M. Vega wrote: > >>> > >>> > >>>>Yesterday i upgraded the sources on a server from 5.2.1 to 5.3, > >>>>this is the output from uname -a: > >>>> > >>>>FreeBSD steeler.clinicomp.com 5.3-RELEASE-p10 FreeBSD 5.3-RELEASE-p10= =20 > >>>>#0: Mon Apr 25 16:40:42 PDT 2005 =20 > >>>>rvega@steeler.clinicomp.com:/usr/obj/usr/src/sys/GENERIC i386 > >>>> > >>>>Today i am upgrading ports, after cvsup the sources, make index fails > >>>>on two ports with same error (german/ispell-new and mail/mls), i don't > >>>>use them so i removed them from the ports tree. > >>>> > >>>>steeler# cd /usr/ports > >>>>steeler# make index > >>>>Generating INDEX-5 - please wait.."/usr/ports/Mk/bsd.port.mk", line= =20 > >>>>4847: warning: duplicate script for target "add-plist-post" ignored > >>>>=3D=3D=3D> mail/mls failed > >>>>*** Error code 1 > >>>>1 error > >>> > >>> > >>>Why are you surprised that the index build fails when you removed > >>>these ports? > >>> > >>>Kris > >> > > >=20 > This is the output on each port >=20 > steeler# cd mls > steeler# make describe > mls-1.3_1|/var/ports/mail/mls|/usr/local|Program for generating various= =20 > statistics on=20 > emails|/var/ports/mail/mls/pkg-descr|anarcat@anarcat.ath.cx|mail||||||htt= p://www.marki-online.net/MLS/ >=20 >=20 >=20 >=20 > steeler# cd ispell-neu/ > steeler# make describe > de-ispell-neu-20001109-3.2.06_12|/var/ports/german/ispell-neu|/usr/local|= An=20 > interactive spelling checker for multiple=20 > languages|/var/ports/german/ispell-neu/../../textproc/ispell/pkg-descr|al= ex@FreeBSD.org|german textproc|/usr/ports/lang/perl5|/usr/ports/lang/perl5|= |/usr/ports/lang/perl5|/usr/ports/lang/perl5|http://fmg-www.cs.ucla.edu/geo= ff/ispell.html Since no error was reported here I expect no error to be reported by 'make index' (which runs 'make describe' over every port). Can you confirm? Kris --wRRV7LY7NUeQGEoC Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCbqu+Wry0BWjoQKURAmZfAKD6N9XOgerExGCoKCtpMfHilksC4wCguxfq JwvEziOg3vZCGbtVX/a0b/U= =LDad -----END PGP SIGNATURE----- --wRRV7LY7NUeQGEoC-- From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 22:00:33 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11A3816A4D3 for ; Tue, 26 Apr 2005 22:00:32 +0000 (GMT) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.207]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B76C43D45 for ; Tue, 26 Apr 2005 22:00:32 +0000 (GMT) (envelope-from jon.drews@gmail.com) Received: by zproxy.gmail.com with SMTP id 34so131525nzf for ; Tue, 26 Apr 2005 15:00:31 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=ddhKupnrhsx6hj28qhuFIWGpe5ZtQZGznmu1E1NUMebcva7j57I+oNOnuS6SiuOwcPT+Uc9eHoTbzu/ZeoB9wpzg5rmAAjzWNd0eFgz3vJ6IDt+yHc/HEarB0MNWB3E1BDZhoNEPGmpKNU4K+YQtsidyraGxXcdsD6K9zgWa7+g= Received: by 10.36.12.9 with SMTP id 9mr11710nzl; Tue, 26 Apr 2005 15:00:31 -0700 (PDT) Received: by 10.36.59.20 with HTTP; Tue, 26 Apr 2005 15:00:31 -0700 (PDT) Message-ID: <8cb27cbf05042615007ec0d27b@mail.gmail.com> Date: Tue, 26 Apr 2005 16:00:31 -0600 From: Jon Drews To: Eric Schuele In-Reply-To: <426EA027.8060002@computer.org> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <426EA027.8060002@computer.org> cc: ports@freebsd.org Subject: Re: anyone working on the broken xfe? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jon Drews List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 22:00:33 -0000 Hi Eric: On 4/26/05, Eric Schuele wrote: > Hello, >=20 > I was wondering if anyone used xfe (other than me)... and if anyone was > working on 'fixing' the port which is marked broken? I tried to update the port. The new version (0.80) is out: http://roland65.free.fr/xfe/ I get this error when I compile the new port: DirPanel.cc:79: error: `ID_MOUNT' is not a member of `DirPanel' DirPanel.cc:79: error: `ID_MOUNT' is not a member of `DirPanel' DirPanel.cc:80: error: `ID_UMOUNT' is not a member of `DirPanel' DirPanel.cc:80: error: `ID_UMOUNT' is not a member of `DirPanel' DirPanel.cc: In member function `long int DirPanel::onUpdMount(FX::FXObject= *, FX ::FXSelector, void*)': DirPanel.cc:814: error: `fsdevices' undeclared (first use this function) DirPanel.cc:814: error: (Each undeclared identifier is reported only once f= or ea ch function it appears in.) DirPanel.cc:814: error: `mtdevices' undeclared (first use this function) DirPanel.cc: In member function `long int DirPanel::onUpdUnmount(FX::FXObje= ct*,=20 FX::FXSelector, void*)': DirPanel.cc:834: error: `fsdevices' undeclared (first use this function) DirPanel.cc:834: error: `mtdevices' undeclared (first use this function) gmake[2]: *** [DirPanel.o] Error 1 gmake[2]: Leaving directory `/usr/ports/x11-fm/xfe/work/xfe-0.80/src' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/x11-fm/xfe/work/xfe-0.80' gmake: *** [all] Error 2 *** Error code 2 In the DirPanel.cc, I saw this: #if defined(linux) =20 FXMAPFUNC(SEL_COMMAND,DirPanel::ID_MOUNT,DirPanel::onCmdMount), =20 FXMAPFUNC(SEL_COMMAND,DirPanel::ID_UMOUNT,DirPanel::onCmdMount), #endif=20 so since it's FreeBSD, it may not be used and hence the above error. That is just a wild guess. I don't know how to diagnose this one. --=20 Kind regards, Jonathan From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 05:58:12 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6889516A4CE for ; Wed, 27 Apr 2005 05:58:12 +0000 (GMT) Received: from mail.leaguehost.net (node-423a611b.sjc.onnet.us.uu.net [66.58.97.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 480B343D5A for ; Wed, 27 Apr 2005 05:58:12 +0000 (GMT) (envelope-from eric@pretorious.net) Received: from [172.16.0.129] (node-423a611e.sjc.onnet.us.uu.net [66.58.97.30]) by mail.leaguehost.net (Postfix) with ESMTP id ECF12ACD; Tue, 26 Apr 2005 23:00:10 -0700 (PDT) From: Eric Pretorious To: andrew@amrx.net Date: Tue, 26 Apr 2005 22:58:13 -0700 User-Agent: KMail/1.7.1 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200504262258.14173.eric@pretorious.net> cc: ports@freebsd.org Subject: FreeBSD Port: aimsniff-0.9d X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 05:58:12 -0000 Hi, Andrew: I noticed that you added the aimsniff port to the collection. Thanks! How do I use this port since it's not committed to any of the release branches yet. e.g., Untar it in /usr/ports/security and then `make install`? -- Eric P., Truckee, CA From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 07:41:27 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A08F116A4CE for ; Wed, 27 Apr 2005 07:41:27 +0000 (GMT) Received: from relay.rdsnet.ro (gimli.rdsnet.ro [193.231.236.70]) by mx1.FreeBSD.org (Postfix) with SMTP id 24C1043D1D for ; Wed, 27 Apr 2005 07:41:26 +0000 (GMT) (envelope-from itetcu@people.tecnik93.com) Received: (qmail 12735 invoked from network); 27 Apr 2005 07:34:21 -0000 Received: from unknown (HELO smtp.rdsnet.ro) (62.231.74.130) by smtp1-133.rdsnet.ro with SMTP; 27 Apr 2005 07:34:21 -0000 Received: (qmail 1988 invoked by uid 89); 27 Apr 2005 07:53:02 -0000 Received: from unknown (HELO buh.cameradicommercio.ro) (82.76.1.117) by 0 with SMTP; 27 Apr 2005 07:53:02 -0000 Received: from buh.cameradicommercio.ro (localhost [127.0.0.1]) by buh.cameradicommercio.ro (Postfix) with ESMTP id 6C50C609C; Wed, 27 Apr 2005 10:41:22 +0300 (EEST) Received: from it.buh.cameradicommercio.ro (it.buh.cameradicommercio.ro [192.168.0.10]) by buh.cameradicommercio.ro (Postfix) with ESMTP; Wed, 27 Apr 2005 10:41:22 +0300 (EEST) Received: from it.buh.cameradicommercio.ro (localhost.buh.tecnik93.com [127.0.0.1]) by it.buh.cameradicommercio.ro (Postfix) with ESMTP id 8330D11D; Wed, 27 Apr 2005 10:42:03 +0300 (EEST) Date: Wed, 27 Apr 2005 10:42:03 +0300 From: Ion-Mihai Tetcu To: avleeuwen@piwebs.com Message-ID: <20050427104203.044756ed@it.buh.cameradicommercio.ro> X-Mailer: Sylpheed-Claws 1.0.4 (GTK+ 1.2.10; i386-portbld-freebsd5.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-AV-Checked: on buh by ClamAV using ClamSMTP cc: ports@FreeBSD.ORG Subject: www/opera: Could not start plug-in executable 'operamotifwrapper' X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 07:41:27 -0000 Hi, For reasons I am yet to understand I get the following message when starting the new Opera 8.0. Changing the plug-in path to /usr/X11R6/share/opera/plugins where operamotifwrapper-3 is actually installed, the plug-in path order, symlinking, starting with the old ~/.opera etc. does not fix the problem. The most disturbing results are core dumps and ~5 minutes disk-intensive start time. ----------- Opera encountered a problem during plug-in setup. Plug-ins will not work properly. Check your installation. Could not start plug-in executable 'operamotifwrapper'. /usr/X11R6/lib/browser_plugins/operamotifwrapper-3 Please install Motif. Plug-in path (Path can be modified in Preferences dialog) /usr/X11R6/share/opera/plugins /usr/X11R6/lib/browser_plugins ------------ # pkg_info -R open-motif\* Information for open-motif-2.2.3_1: Required by: kdegraphics-3.4.0 teTeX-3.0 ted-2.17 xdvik-tetex-22.84.8_1 xpdf-3.00_6 uname: 5.4-STABLE FreeBSD 5.4-STABLE #8: Mon Apr 11 06:36:26 EEST 2005 Any help will be appreciated. -- IOnut Unregistered ;) FreeBSD "user" From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 07:57:29 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 69B3B16A4D6 for ; Wed, 27 Apr 2005 07:57:29 +0000 (GMT) Received: from lakermmtao10.cox.net (lakermmtao10.cox.net [68.230.240.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id C751D43D62 for ; Wed, 27 Apr 2005 07:57:28 +0000 (GMT) (envelope-from mezz7@cox.net) Received: from mezz.mezzweb.com ([68.103.32.140]) by lakermmtao10.cox.net (InterMail vM.6.01.04.00 201-2131-118-20041027) with ESMTP id <20050427075725.QAJY7787.lakermmtao10.cox.net@mezz.mezzweb.com>; Wed, 27 Apr 2005 03:57:25 -0400 To: "Ion-Mihai Tetcu" References: <20050427104203.044756ed@it.buh.cameradicommercio.ro> Message-ID: Date: Wed, 27 Apr 2005 02:58:30 -0500 From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=us-ascii MIME-Version: 1.0 Content-Transfer-Encoding: 8bit In-Reply-To: <20050427104203.044756ed@it.buh.cameradicommercio.ro> User-Agent: Opera M2/8.0 (Linux, build 1095) cc: ports@freebsd.org cc: avleeuwen@piwebs.com Subject: Re: www/opera: Could not start plug-in executable 'operamotifwrapper' X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 07:57:29 -0000 On Wed, 27 Apr 2005 02:42:03 -0500, Ion-Mihai Tetcu wrote: > Hi, > > > For reasons I am yet to understand I get the following message when > starting the new Opera 8.0. Changing the plug-in path to > /usr/X11R6/share/opera/plugins where operamotifwrapper-3 is actually > installed, the plug-in path order, symlinking, starting with the old > ~/.opera > etc. does not fix the problem. The most disturbing results are core > dumps and ~5 minutes disk-intensive start time. > > ----------- > Opera encountered a problem during plug-in setup. > Plug-ins will not work properly. > Check your installation. > > Could not start plug-in executable 'operamotifwrapper'. > /usr/X11R6/lib/browser_plugins/operamotifwrapper-3 > Please install Motif. > > Plug-in path > (Path can be modified in Preferences dialog) > > /usr/X11R6/share/opera/plugins > /usr/X11R6/lib/browser_plugins > ------------ > > # pkg_info -R open-motif\* > Information for open-motif-2.2.3_1: > > Required by: > kdegraphics-3.4.0 > teTeX-3.0 > ted-2.17 > xdvik-tetex-22.84.8_1 > xpdf-3.00_6 > > uname: > 5.4-STABLE FreeBSD 5.4-STABLE #8: Mon Apr 11 06:36:26 EEST 2005 > > Any help will be appreciated. I don't think you can use plugin when you have open-motif built in FreeBSD 5.x and www/opera binary was built in 4.x. Bug Opera developer for build a different version for FreeBSD 5.x. -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 08:03:14 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4078716A4CE for ; Wed, 27 Apr 2005 08:03:14 +0000 (GMT) Received: from relay.rdsnet.ro (gimli.rdsnet.ro [193.231.236.70]) by mx1.FreeBSD.org (Postfix) with SMTP id 3666843D64 for ; Wed, 27 Apr 2005 08:03:13 +0000 (GMT) (envelope-from itetcu@people.tecnik93.com) Received: (qmail 22198 invoked from network); 27 Apr 2005 07:56:09 -0000 Received: from unknown (HELO smtp.rdsnet.ro) (62.231.74.130) by smtp1-133.rdsnet.ro with SMTP; 27 Apr 2005 07:56:09 -0000 Received: (qmail 12160 invoked by uid 89); 27 Apr 2005 08:14:49 -0000 Received: from unknown (HELO buh.cameradicommercio.ro) (82.76.1.117) by 0 with SMTP; 27 Apr 2005 08:14:49 -0000 Received: from buh.cameradicommercio.ro (localhost [127.0.0.1]) by buh.cameradicommercio.ro (Postfix) with ESMTP id 996F960C7; Wed, 27 Apr 2005 11:03:09 +0300 (EEST) Received: from it.buh.cameradicommercio.ro (it.buh.cameradicommercio.ro [192.168.0.10]) by buh.cameradicommercio.ro (Postfix) with ESMTP; Wed, 27 Apr 2005 11:03:09 +0300 (EEST) Received: from it.buh.cameradicommercio.ro (localhost.buh.tecnik93.com [127.0.0.1]) by it.buh.cameradicommercio.ro (Postfix) with ESMTP id 7DFE6AA; Wed, 27 Apr 2005 11:03:50 +0300 (EEST) Date: Wed, 27 Apr 2005 11:03:47 +0300 From: Ion-Mihai Tetcu To: "Jeremy Messenger" Message-ID: <20050427110347.2b889b38@it.buh.cameradicommercio.ro> In-Reply-To: References: <20050427104203.044756ed@it.buh.cameradicommercio.ro> X-Mailer: Sylpheed-Claws 1.0.4 (GTK+ 1.2.10; i386-portbld-freebsd5.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-AV-Checked: on buh by ClamAV using ClamSMTP cc: ports@freebsd.org cc: avleeuwen@piwebs.com Subject: Re: www/opera: Could not start plug-in executable 'operamotifwrapper' X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 08:03:14 -0000 On Wed, 27 Apr 2005 02:58:30 -0500 "Jeremy Messenger" wrote: > On Wed, 27 Apr 2005 02:42:03 -0500, Ion-Mihai Tetcu > wrote: > > > Hi, > > > > > > For reasons I am yet to understand I get the following message when > > starting the new Opera 8.0. Changing the plug-in path to > > /usr/X11R6/share/opera/plugins where operamotifwrapper-3 is actually > > installed, the plug-in path order, symlinking, starting with the old > > ~/.opera > > etc. does not fix the problem. The most disturbing results are core > > dumps and ~5 minutes disk-intensive start time. > > > > ----------- > > Opera encountered a problem during plug-in setup. > > Plug-ins will not work properly. > > Check your installation. > > > > Could not start plug-in executable 'operamotifwrapper'. > > /usr/X11R6/lib/browser_plugins/operamotifwrapper-3 > > Please install Motif. > > > > Plug-in path > > (Path can be modified in Preferences dialog) > > > > /usr/X11R6/share/opera/plugins > > /usr/X11R6/lib/browser_plugins > > ------------ > > > > # pkg_info -R open-motif\* > > Information for open-motif-2.2.3_1: > > > > Required by: > > kdegraphics-3.4.0 > > teTeX-3.0 > > ted-2.17 > > xdvik-tetex-22.84.8_1 > > xpdf-3.00_6 > > > > uname: > > 5.4-STABLE FreeBSD 5.4-STABLE #8: Mon Apr 11 06:36:26 EEST 2005 > > > > Any help will be appreciated. > > I don't think you can use plugin when you have open-motif built in FreeBSD > 5.x and www/opera binary was built in 4.x. Bug Opera developer for build a > different version for FreeBSD 5.x. Yeh and that .x stands for .6 I think. Hmm, I was wondering how does it owrk and it used to work until this last version. -- IOnut Unregistered ;) FreeBSD "user" From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 08:04:01 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 869E216A4CE for ; Wed, 27 Apr 2005 08:04:01 +0000 (GMT) Received: from gimp.piwebs.com (82-197-201-59.dsl.cambrium.nl [82.197.201.59]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F2D043D5D for ; Wed, 27 Apr 2005 08:04:00 +0000 (GMT) (envelope-from avleeuwen@piwebs.com) Received: (qmail 15348 invoked from network); 27 Apr 2005 08:02:16 -0000 Received: from winston.piwebs.com (192.168.0.98) by gimp.piwebs.com with SMTP; 27 Apr 2005 08:02:16 -0000 From: Arjan van Leeuwen To: "Jeremy Messenger" Date: Wed, 27 Apr 2005 10:01:55 +0200 User-Agent: KMail/1.8 References: <20050427104203.044756ed@it.buh.cameradicommercio.ro> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200504271001.56373.avleeuwen@piwebs.com> cc: Ion-Mihai Tetcu cc: ports@freebsd.org Subject: Re: www/opera: Could not start plug-in executable 'operamotifwrapper' X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 08:04:01 -0000 Op woensdag 27 april 2005 09:58, schreef Jeremy Messenger: > On Wed, 27 Apr 2005 02:42:03 -0500, Ion-Mihai Tetcu > > wrote: > > Hi, > > > > > > For reasons I am yet to understand I get the following message when > > starting the new Opera 8.0. Changing the plug-in path to > > /usr/X11R6/share/opera/plugins where operamotifwrapper-3 is actually > > installed, the plug-in path order, symlinking, starting with the old > > ~/.opera > > etc. does not fix the problem. The most disturbing results are core > > dumps and ~5 minutes disk-intensive start time. > > > > ----------- > > Opera encountered a problem during plug-in setup. > > Plug-ins will not work properly. > > Check your installation. > > > > Could not start plug-in executable 'operamotifwrapper'. > > /usr/X11R6/lib/browser_plugins/operamotifwrapper-3 > > Please install Motif. > > > > Plug-in path > > (Path can be modified in Preferences dialog) > > > > /usr/X11R6/share/opera/plugins > > /usr/X11R6/lib/browser_plugins > > ------------ > > > > # pkg_info -R open-motif\* > > Information for open-motif-2.2.3_1: > > > > Required by: > > kdegraphics-3.4.0 > > teTeX-3.0 > > ted-2.17 > > xdvik-tetex-22.84.8_1 > > xpdf-3.00_6 > > > > uname: > > 5.4-STABLE FreeBSD 5.4-STABLE #8: Mon Apr 11 06:36:26 EEST 2005 > > > > Any help will be appreciated. > > I don't think you can use plugin when you have open-motif built in FreeBSD > 5.x and www/opera binary was built in 4.x. Bug Opera developer for build a > different version for FreeBSD 5.x. That's correct. Opera is working on a FreeBSD 5.x build. Arjan From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 08:08:54 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CFEF716A4CE for ; Wed, 27 Apr 2005 08:08:54 +0000 (GMT) Received: from lakermmtao02.cox.net (lakermmtao02.cox.net [68.230.240.37]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F80843D2D for ; Wed, 27 Apr 2005 08:08:54 +0000 (GMT) (envelope-from mezz7@cox.net) Received: from mezz.mezzweb.com ([68.103.32.140]) by lakermmtao02.cox.net (InterMail vM.6.01.04.00 201-2131-118-20041027) with ESMTP id <20050427080851.TQUF26223.lakermmtao02.cox.net@mezz.mezzweb.com>; Wed, 27 Apr 2005 04:08:51 -0400 To: "Arjan van Leeuwen" References: <20050427104203.044756ed@it.buh.cameradicommercio.ro> <200504271001.56373.avleeuwen@piwebs.com> Message-ID: Date: Wed, 27 Apr 2005 03:09:56 -0500 From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=us-ascii MIME-Version: 1.0 Content-Transfer-Encoding: 8bit In-Reply-To: <200504271001.56373.avleeuwen@piwebs.com> User-Agent: Opera M2/8.0 (Linux, build 1095) cc: ports@freebsd.org cc: Ion-Mihai Tetcu Subject: Re: www/opera: Could not start plug-in executable 'operamotifwrapper' X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 08:08:54 -0000 On Wed, 27 Apr 2005 03:01:55 -0500, Arjan van Leeuwen wrote: > Op woensdag 27 april 2005 09:58, schreef Jeremy Messenger: >> On Wed, 27 Apr 2005 02:42:03 -0500, Ion-Mihai Tetcu >> >> wrote: >> > Hi, >> > >> > >> > For reasons I am yet to understand I get the following message when >> > starting the new Opera 8.0. Changing the plug-in path to >> > /usr/X11R6/share/opera/plugins where operamotifwrapper-3 is actually >> > installed, the plug-in path order, symlinking, starting with the old >> > ~/.opera >> > etc. does not fix the problem. The most disturbing results are core >> > dumps and ~5 minutes disk-intensive start time. >> > >> > ----------- >> > Opera encountered a problem during plug-in setup. >> > Plug-ins will not work properly. >> > Check your installation. >> > >> > Could not start plug-in executable 'operamotifwrapper'. >> > /usr/X11R6/lib/browser_plugins/operamotifwrapper-3 >> > Please install Motif. >> > >> > Plug-in path >> > (Path can be modified in Preferences dialog) >> > >> > /usr/X11R6/share/opera/plugins >> > /usr/X11R6/lib/browser_plugins >> > ------------ >> > >> > # pkg_info -R open-motif\* >> > Information for open-motif-2.2.3_1: >> > >> > Required by: >> > kdegraphics-3.4.0 >> > teTeX-3.0 >> > ted-2.17 >> > xdvik-tetex-22.84.8_1 >> > xpdf-3.00_6 >> > >> > uname: >> > 5.4-STABLE FreeBSD 5.4-STABLE #8: Mon Apr 11 06:36:26 EEST 2005 >> > >> > Any help will be appreciated. >> >> I don't think you can use plugin when you have open-motif built in >> FreeBSD >> 5.x and www/opera binary was built in 4.x. Bug Opera developer for >> build a >> different version for FreeBSD 5.x. > > That's correct. Opera is working on a FreeBSD 5.x build. Maybe you should add disable plugin/spellcheck by default for FreeBSD 5.x only. Cheers, Mezz > Arjan -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 08:13:31 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2199E16A4CE for ; Wed, 27 Apr 2005 08:13:31 +0000 (GMT) Received: from lakermmtao12.cox.net (lakermmtao12.cox.net [68.230.240.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69A5543D1D for ; Wed, 27 Apr 2005 08:13:30 +0000 (GMT) (envelope-from mezz7@cox.net) Received: from mezz.mezzweb.com ([68.103.32.140]) by lakermmtao12.cox.net (InterMail vM.6.01.04.00 201-2131-118-20041027) with ESMTP id <20050427081328.BZGQ10612.lakermmtao12.cox.net@mezz.mezzweb.com>; Wed, 27 Apr 2005 04:13:28 -0400 Date: Wed, 27 Apr 2005 03:14:32 -0500 To: "Ion-Mihai Tetcu" References: <20050427104203.044756ed@it.buh.cameradicommercio.ro> <20050427110347.2b889b38@it.buh.cameradicommercio.ro> From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=us-ascii MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID: In-Reply-To: <20050427110347.2b889b38@it.buh.cameradicommercio.ro> User-Agent: Opera M2/8.0 (Linux, build 1095) cc: ports@freebsd.org cc: avleeuwen@piwebs.com Subject: Re: www/opera: Could not start plug-in executable 'operamotifwrapper' X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 08:13:31 -0000 On Wed, 27 Apr 2005 03:03:47 -0500, Ion-Mihai Tetcu wrote: > On Wed, 27 Apr 2005 02:58:30 -0500 > "Jeremy Messenger" wrote: > >> On Wed, 27 Apr 2005 02:42:03 -0500, Ion-Mihai Tetcu >> wrote: >> >> > Hi, >> > >> > >> > For reasons I am yet to understand I get the following message when >> > starting the new Opera 8.0. Changing the plug-in path to >> > /usr/X11R6/share/opera/plugins where operamotifwrapper-3 is actually >> > installed, the plug-in path order, symlinking, starting with the old >> > ~/.opera >> > etc. does not fix the problem. The most disturbing results are core >> > dumps and ~5 minutes disk-intensive start time. >> > >> > ----------- >> > Opera encountered a problem during plug-in setup. >> > Plug-ins will not work properly. >> > Check your installation. >> > >> > Could not start plug-in executable 'operamotifwrapper'. >> > /usr/X11R6/lib/browser_plugins/operamotifwrapper-3 >> > Please install Motif. >> > >> > Plug-in path >> > (Path can be modified in Preferences dialog) >> > >> > /usr/X11R6/share/opera/plugins >> > /usr/X11R6/lib/browser_plugins >> > ------------ >> > >> > # pkg_info -R open-motif\* >> > Information for open-motif-2.2.3_1: >> > >> > Required by: >> > kdegraphics-3.4.0 >> > teTeX-3.0 >> > ted-2.17 >> > xdvik-tetex-22.84.8_1 >> > xpdf-3.00_6 >> > >> > uname: >> > 5.4-STABLE FreeBSD 5.4-STABLE #8: Mon Apr 11 06:36:26 EEST 2005 >> > >> > Any help will be appreciated. >> >> I don't think you can use plugin when you have open-motif built in >> FreeBSD >> 5.x and www/opera binary was built in 4.x. Bug Opera developer for >> build a >> different version for FreeBSD 5.x. > > Yeh and that .x stands for .6 I think. Hmm, I was wondering how does it > owrk and it used to work until this last version. It's because Opera 7.x used to depend on libXm.so.2 when FreeBSD doesn't has it for years. It's why you never have the problem, because the plugins wasn't work and disabled. The Opera 8.x has finally move to libXm.so.3 and the plugins works. You can see my comment: http://www.freebsd.org/cgi/getmsg.cgi?fetch=1085936+0+/usr/local/www/db/text/2004/cvs-all/20040801.cvs-all Cheers, Mezz -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 08:33:07 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A81316A4CE for ; Wed, 27 Apr 2005 08:33:07 +0000 (GMT) Received: from relay.rdsnet.ro (gimli.rdsnet.ro [193.231.236.70]) by mx1.FreeBSD.org (Postfix) with SMTP id D79D043D60 for ; Wed, 27 Apr 2005 08:33:05 +0000 (GMT) (envelope-from itetcu@people.tecnik93.com) Received: (qmail 1868 invoked from network); 27 Apr 2005 08:26:01 -0000 Received: from unknown (HELO smtp.rdsnet.ro) (62.231.74.130) by smtp1-133.rdsnet.ro with SMTP; 27 Apr 2005 08:26:01 -0000 Received: (qmail 32756 invoked by uid 89); 27 Apr 2005 08:44:42 -0000 Received: from unknown (HELO buh.cameradicommercio.ro) (82.76.1.117) by 0 with SMTP; 27 Apr 2005 08:44:42 -0000 Received: from buh.cameradicommercio.ro (localhost [127.0.0.1]) by buh.cameradicommercio.ro (Postfix) with ESMTP id 46AB56128; Wed, 27 Apr 2005 11:33:03 +0300 (EEST) Received: from it.buh.cameradicommercio.ro (it.buh.cameradicommercio.ro [192.168.0.10]) by buh.cameradicommercio.ro (Postfix) with ESMTP; Wed, 27 Apr 2005 11:33:03 +0300 (EEST) Received: from it.buh.cameradicommercio.ro (localhost.buh.tecnik93.com [127.0.0.1]) by it.buh.cameradicommercio.ro (Postfix) with ESMTP id 2152EAA; Wed, 27 Apr 2005 11:33:44 +0300 (EEST) Date: Wed, 27 Apr 2005 11:33:43 +0300 From: Ion-Mihai Tetcu To: "Jeremy Messenger" Message-ID: <20050427113343.354ebf8e@it.buh.cameradicommercio.ro> In-Reply-To: References: <20050427104203.044756ed@it.buh.cameradicommercio.ro> <20050427110347.2b889b38@it.buh.cameradicommercio.ro> X-Mailer: Sylpheed-Claws 1.0.4 (GTK+ 1.2.10; i386-portbld-freebsd5.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-AV-Checked: on buh by ClamAV using ClamSMTP cc: ports@freebsd.org cc: avleeuwen@piwebs.com Subject: Re: www/opera: Could not start plug-in executable 'operamotifwrapper' X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 08:33:07 -0000 On Wed, 27 Apr 2005 03:14:32 -0500 "Jeremy Messenger" wrote: > On Wed, 27 Apr 2005 03:03:47 -0500, Ion-Mihai Tetcu > wrote: > > > On Wed, 27 Apr 2005 02:58:30 -0500 > > "Jeremy Messenger" wrote: [ ... ] > >> I don't think you can use plugin when you have open-motif built in > >> FreeBSD > >> 5.x and www/opera binary was built in 4.x. Bug Opera developer for > >> build a > >> different version for FreeBSD 5.x. > > > > Yeh and that .x stands for .6 I think. Hmm, I was wondering how does it > > owrk and it used to work until this last version. > > It's because Opera 7.x used to depend on libXm.so.2 when FreeBSD doesn't > has it for years. It's why you never have the problem, because the plugins > wasn't work and disabled. The Opera 8.x has finally move to libXm.so.3 and > the plugins works. You can see my comment: > > http://www.freebsd.org/cgi/getmsg.cgi?fetch=1085936+0+/usr/local/www/db/text/2004/cvs-all/20040801.cvs-all Got it. I've read that back then, but failed to make the connection. Thanks, -- IOnut Unregistered ;) FreeBSD "user" From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 08:38:50 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 733B816A4CE for ; Wed, 27 Apr 2005 08:38:50 +0000 (GMT) Received: from mail.rdu.kirov.ru (ns.rdu.kirov.ru [217.9.151.217]) by mx1.FreeBSD.org (Postfix) with ESMTP id EFB0A43D5E for ; Wed, 27 Apr 2005 08:38:49 +0000 (GMT) (envelope-from elsukov@rdu.kirov.ru) Received: from kirov.so-cdu.ru (unknown [172.21.81.1]) by mail.rdu.kirov.ru (Postfix) with ESMTP id A0641FDAE for ; Wed, 27 Apr 2005 12:38:48 +0400 (MSD) Received: from kirov.so-cdu.ru (localhost [127.0.0.1]) by rdu.kirov.ru (Postfix) with SMTP id 9CD2D1560B for ; Wed, 27 Apr 2005 12:38:48 +0400 (MSD) Received: from [172.21.81.52] (elsukov.kirov.so-cdu.ru [172.21.81.52]) by rdu.kirov.ru (Postfix) with ESMTP id 76D8315608 for ; Wed, 27 Apr 2005 12:38:48 +0400 (MSD) Message-ID: <426F4F74.3030105@rdu.kirov.ru> Date: Wed, 27 Apr 2005 12:38:12 +0400 From: "Andrey V. Elsukov" Organization: The Kirov RDO User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-ports@freebsd.org X-Enigmail-Version: 0.91.0.0 Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 7bit Subject: Shell access to IA64 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: elsukov@rdu.kirov.ru List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 08:38:50 -0000 Hi, People, somebody known, where can get shell access to IA64 architecture? I want to test build my port on IA64.. -- WBR, Andrey V. Elsukov From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 09:34:22 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC93C16A4CE for ; Wed, 27 Apr 2005 09:34:22 +0000 (GMT) Received: from gimp.piwebs.com (82-197-201-59.dsl.cambrium.nl [82.197.201.59]) by mx1.FreeBSD.org (Postfix) with ESMTP id D12C543D5C for ; Wed, 27 Apr 2005 09:34:21 +0000 (GMT) (envelope-from avleeuwen@piwebs.com) Received: (qmail 20913 invoked from network); 27 Apr 2005 09:32:38 -0000 Received: from winston.piwebs.com (192.168.0.98) by gimp.piwebs.com with SMTP; 27 Apr 2005 09:32:38 -0000 From: Arjan van Leeuwen To: "Jeremy Messenger" Date: Wed, 27 Apr 2005 11:32:14 +0200 User-Agent: KMail/1.8 References: <20050427104203.044756ed@it.buh.cameradicommercio.ro> <200504271001.56373.avleeuwen@piwebs.com> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200504271132.17006.avleeuwen@piwebs.com> cc: ports@freebsd.org cc: Ion-Mihai Tetcu Subject: Re: www/opera: Could not start plug-in executable 'operamotifwrapper' X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 09:34:22 -0000 Op woensdag 27 april 2005 10:09, schreef Jeremy Messenger: > On Wed, 27 Apr 2005 03:01:55 -0500, Arjan van Leeuwen > > wrote: > > Op woensdag 27 april 2005 09:58, schreef Jeremy Messenger: > >> On Wed, 27 Apr 2005 02:42:03 -0500, Ion-Mihai Tetcu > >> > >> wrote: > >> > Hi, > >> > > >> > > >> > For reasons I am yet to understand I get the following message when > >> > starting the new Opera 8.0. Changing the plug-in path to > >> > /usr/X11R6/share/opera/plugins where operamotifwrapper-3 is actually > >> > installed, the plug-in path order, symlinking, starting with the old > >> > ~/.opera > >> > etc. does not fix the problem. The most disturbing results are core > >> > dumps and ~5 minutes disk-intensive start time. > >> > > >> > ----------- > >> > Opera encountered a problem during plug-in setup. > >> > Plug-ins will not work properly. > >> > Check your installation. > >> > > >> > Could not start plug-in executable 'operamotifwrapper'. > >> > /usr/X11R6/lib/browser_plugins/operamotifwrapper-3 > >> > Please install Motif. > >> > > >> > Plug-in path > >> > (Path can be modified in Preferences dialog) > >> > > >> > /usr/X11R6/share/opera/plugins > >> > /usr/X11R6/lib/browser_plugins > >> > ------------ > >> > > >> > # pkg_info -R open-motif\* > >> > Information for open-motif-2.2.3_1: > >> > > >> > Required by: > >> > kdegraphics-3.4.0 > >> > teTeX-3.0 > >> > ted-2.17 > >> > xdvik-tetex-22.84.8_1 > >> > xpdf-3.00_6 > >> > > >> > uname: > >> > 5.4-STABLE FreeBSD 5.4-STABLE #8: Mon Apr 11 06:36:26 EEST 2005 > >> > > >> > Any help will be appreciated. > >> > >> I don't think you can use plugin when you have open-motif built in > >> FreeBSD > >> 5.x and www/opera binary was built in 4.x. Bug Opera developer for > >> build a > >> different version for FreeBSD 5.x. > > > > That's correct. Opera is working on a FreeBSD 5.x build. > > Maybe you should add disable plugin/spellcheck by default for FreeBSD 5.x > only. That's a very good suggestion. I'll do that ASAP. Best regards, Arjan > > Cheers, > Mezz > > > Arjan From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 09:39:19 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EBD216A4CE for ; Wed, 27 Apr 2005 09:39:19 +0000 (GMT) Received: from 62-15-211-171.inversas.jazztel.es (62-15-211-171.inversas.jazztel.es [62.15.211.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7DA0043D1D for ; Wed, 27 Apr 2005 09:39:17 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) j3R9dEPc024508; Wed, 27 Apr 2005 11:39:14 +0200 (CEST) (envelope-from josemi@redesjm.local) Received: from localhost (localhost [[UNIX: localhost]]) by redesjm.local (8.13.3/8.13.3/Submit) id j3R9dBx4012256; Wed, 27 Apr 2005 11:39:11 +0200 (CEST) (envelope-from josemi@redesjm.local) From: Jose M Rodriguez Date: Wed, 27 Apr 2005 11:39:10 +0200 User-Agent: KMail/1.8 References: <200504260916.11192.josemi@redesjm.local> <20050426195656.GA42269@xor.obsecurity.org> <200504262227.06290.josemi@redesjm.local> In-Reply-To: <200504262227.06290.josemi@redesjm.local> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-13" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline To: "Undisclosed.Recipients": ; Message-Id: <200504271139.10968.josemi@redesjm.local> X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-3; AVE: 6.30.0.7; VDF: 6.30.0.116; host: antares.redesjm.local) cc: ports@freebsd.org cc: Jose M Rodriguez cc: Kris Kennaway Subject: Re: problems with options in pkg cluster builds. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 09:39:19 -0000 El Martes, 26 de Abril de 2005 22:27, Jose M Rodriguez escribi=F3: > El Martes, 26 de Abril de 2005 21:56, Kris Kennaway escribi=F3: > > On Tue, Apr 26, 2005 at 09:35:46PM +0200, Jose M Rodriguez wrote: > > > El Martes, 26 de Abril de 2005 21:25, Kris Kennaway escribi?: > > > > On Tue, Apr 26, 2005 at 09:16:10AM +0200, Jose M Rodriguez=20 wrote: > > > > > Hi, > > > > > > > > > > I'm having problems with pkg cluster builds after latest > > > > > changes to options code. > > > > > > > > > > I want force the way packages must be build from make.conf > > > > > and pkgtools.conf, but seems that default config is chase due > > > > > to options code. > > > > > > > > > > This is an automated build in a fresh chroot with > > > > > PACKAGE_BUILDING and BATCH defined that used to work before. > > > > > > > > > > Any know method to disabled options code? > > > > > > > > > > Any hope that this change may be reverted and options > > > > > processing is supressed when PACKAGE_BUILDING is defined? > > > > > > > > No, this was a deliberate change, so your port needs to > > > > accomodate it. > > > > > > There aren't my ports. I hate local patches. > > > > > > I Know this is deliberate. But it's not so simple to workaround > > > as I spect. > > > > > > I'm using local patches. And thinking in do the config and them > > > populate /var/db/ports from tarball in the beggin of the cluster > > > scripting. > > > > > > but this is really odd. > > > > You'll have to explain what problem you're seeing. > > I can't be able to make pktools.conf and make.conf supersede ports > default options from a fresh chroot cage without and /var/db/ports > dir > > Maybe my fault, but ... any clues? > > -- > josemi > > > Kris Apart the gs thing, maybe this NO_OPTIONS env aceptable for FreeBSD. If so, I'll test this, polite and send-pr. =2D- josemi =2D-- patch-no_options begins here --- Index: bsd.port.mk =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/cvs/freebsd/ports/Mk/bsd.port.mk,v retrieving revision 1.511 diff -u -r1.511 bsd.port.mk =2D-- bsd.port.mk 17 Mar 2005 23:22:07 -0000 1.511 +++ bsd.port.mk 27 Apr 2005 09:31:07 -0000 @@ -1085,10 +1085,12 @@ .endif OPTIONSFILE?=3D ${PORT_DBDIR}/${UNIQUENAME}/options _OPTIONSFILE!=3D ${ECHO_CMD} "${OPTIONSFILE}" =2D.if defined(OPTIONS) +.if !defined(NO_OPTIONS) && defined(OPTIONS) . if defined(PACKAGE_BUILDING) || (defined(BATCH)=20 && !exists(${_OPTIONSFILE})) WITHOUT:=3D WITH:=3D +# redundant? see +4 +# I don't understand this piece of code from +3 . if defined(OPTIONS) REALOPTIONS=3D${OPTIONS:C/".*"//g} . for O in ${REALOPTIONS} @@ -1101,6 +1103,7 @@ . endif OPT:=3D${RO} . endfor +# redundant? . endif . for W in ${WITH} WITH_${W}:=3D true @@ -1786,23 +1789,19 @@ # compatible functionality. .if !defined(WITHOUT_X11) .if defined(WITH_GHOSTSCRIPT_AFPL) =2D.if ${WITH_GHOSTSCRIPT_AFPL} =3D=3D yes GHOSTSCRIPT_PORT?=3D print/ghostscript-afpl =2D.else +.elif defined(WITH_GHOSTSCRIPT_GNU) GHOSTSCRIPT_PORT?=3D print/ghostscript-gnu =2D.endif .else =2DGHOSTSCRIPT_PORT?=3D print/ghostscript-gnu +GHOSTSCRIPT_PORT?=3D print/ghostscript-gpl .endif .else .if defined(WITH_GHOSTSCRIPT_AFPL) =2D.if ${WITH_GHOSTSCRIPT_AFPL} =3D=3D yes GHOSTSCRIPT_PORT?=3D print/ghostscript-afpl-nox11 =2D.else +.elif defined(WITH_GHOSTSCRIPT_GNU) GHOSTSCRIPT_PORT?=3D print/ghostscript-gnu-nox11 =2D.endif .else =2DGHOSTSCRIPT_PORT?=3D print/ghostscript-gnu-nox11 +GHOSTSCRIPT_PORT?=3D print/ghostscript-gpl-nox11 .endif .endif =20 @@ -2898,6 +2897,7 @@ ################################################################ .if (!defined(OPTIONS) || defined(CONFIG_DONE) || \ defined(PACKAGE_BUILDING) || defined(BATCH) || \ + defined(NO_OPTIONS) || \ exists(${_OPTIONSFILE}) || exists(${_OPTIONSFILE}.local)) _OPTIONS_OK=3Dyes .endif @@ -4991,7 +4991,7 @@ =20 .if !target(config) config: =2D.if !defined(OPTIONS) +.if defined(NO_OPTIONS) || !defined(OPTIONS) @${ECHO_MSG} "=3D=3D=3D> No options to configure" .else .if ${OPTIONSFILE} !=3D ${_OPTIONSFILE} @@ -5078,14 +5078,14 @@ =20 .if !target(config-conditional) config-conditional: =2D.if defined(OPTIONS) && !exists(${_OPTIONSFILE}) +.if !defined(NO_OPTIONS) && defined(OPTIONS)=20 && !exists(${_OPTIONSFILE}) cd ${.CURDIR} && ${MAKE} config; .endif .endif =20 .if !target(showconfig) showconfig: =2D.if defined(OPTIONS) && exists(${_OPTIONSFILE}) +.if !defined(NO_OPTIONS) && defined(OPTIONS) && exists(${_OPTIONSFILE}) @${ECHO_MSG} "=3D=3D=3D> The following configuration options are set for= =20 ${PKGNAME}:" -@if [ -e ${_OPTIONSFILE} ]; then \ . ${_OPTIONSFILE}; \ @@ -5117,7 +5117,7 @@ =20 .if !target(rmconfig) rmconfig: =2D.if defined(OPTIONS) && exists(${_OPTIONSFILE}) +.if !defined(NO_OPTIONS) && defined(OPTIONS) && exists(${_OPTIONSFILE}) -@${ECHO_MSG} "=3D=3D=3D> Removing user-configured options for ${PKGNAME}= ";=20 \ if [ `${ID} -u` !=3D 0 -a "x${INSTALL_AS_USER}" =3D "x" ]; then \ ${ECHO_MSG} "=3D=3D=3D> Switching to root credentials to remove=20 ${_OPTIONSFILE} and `${DIRNAME} ${_OPTIONSFILE}`"; \ =2D-- patch-no_options ends here --- From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 09:50:21 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4815516A4CE for ; Wed, 27 Apr 2005 09:50:21 +0000 (GMT) Received: from relay.rdsnet.ro (gimli.rdsnet.ro [193.231.236.70]) by mx1.FreeBSD.org (Postfix) with SMTP id DE01643D7B for ; Wed, 27 Apr 2005 09:50:19 +0000 (GMT) (envelope-from itetcu@people.tecnik93.com) Received: (qmail 28249 invoked from network); 27 Apr 2005 09:43:15 -0000 Received: from unknown (HELO smtp.rdsnet.ro) (62.231.74.130) by smtp1-133.rdsnet.ro with SMTP; 27 Apr 2005 09:43:15 -0000 Received: (qmail 2689 invoked by uid 89); 27 Apr 2005 10:01:56 -0000 Received: from unknown (HELO buh.cameradicommercio.ro) (82.76.1.117) by 0 with SMTP; 27 Apr 2005 10:01:56 -0000 Received: from buh.cameradicommercio.ro (localhost [127.0.0.1]) by buh.cameradicommercio.ro (Postfix) with ESMTP id D01ED60BE; Wed, 27 Apr 2005 12:50:16 +0300 (EEST) Received: from it.buh.cameradicommercio.ro (it.buh.cameradicommercio.ro [192.168.0.10]) by buh.cameradicommercio.ro (Postfix) with ESMTP; Wed, 27 Apr 2005 12:50:16 +0300 (EEST) Received: from it.buh.cameradicommercio.ro (localhost.buh.tecnik93.com [127.0.0.1]) by it.buh.cameradicommercio.ro (Postfix) with ESMTP id 86473AA; Wed, 27 Apr 2005 12:50:57 +0300 (EEST) Date: Wed, 27 Apr 2005 12:50:56 +0300 From: Ion-Mihai Tetcu To: Arjan van Leeuwen Message-ID: <20050427125056.0e3f90d4@it.buh.cameradicommercio.ro> In-Reply-To: <200504271001.56373.avleeuwen@piwebs.com> References: <20050427104203.044756ed@it.buh.cameradicommercio.ro> <200504271001.56373.avleeuwen@piwebs.com> X-Mailer: Sylpheed-Claws 1.0.4 (GTK+ 1.2.10; i386-portbld-freebsd5.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-AV-Checked: on buh by ClamAV using ClamSMTP cc: ports@freebsd.org cc: Jeremy Messenger Subject: Re: www/opera: Could not start plug-in executable 'operamotifwrapper' X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 09:50:21 -0000 On Wed, 27 Apr 2005 10:01:55 +0200 Arjan van Leeuwen wrote: > > I don't think you can use plugin when you have open-motif built in FreeBSD > > 5.x and www/opera binary was built in 4.x. Bug Opera developer for build a > > different version for FreeBSD 5.x. > > That's correct. Opera is working on a FreeBSD 5.x build. Any ETA on it ? This new version is much more unstable (w/o plug-ins now) that the last one (which I was forced to restarted anyway after 1-3 days because of refusing to resolve addresses). > gdb ./opera.core GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-marcel-freebsd"..."/home/itetcu/opera.core": not in executable format: File format not recognized > file ./opera.core ./opera.core: ELF 32-bit LSB core file Intel 80386, version 1 (FreeBSD), FreeBSD-style, from 'opera' -- IOnut Unregistered ;) FreeBSD "user" From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 11:05:59 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC48E16A4CE for ; Wed, 27 Apr 2005 11:05:59 +0000 (GMT) Received: from relay.rdsnet.ro (gimli.rdsnet.ro [193.231.236.70]) by mx1.FreeBSD.org (Postfix) with SMTP id 891E143D5C for ; Wed, 27 Apr 2005 11:05:58 +0000 (GMT) (envelope-from itetcu@people.tecnik93.com) Received: (qmail 19489 invoked from network); 27 Apr 2005 10:58:54 -0000 Received: from unknown (HELO smtp.rdsnet.ro) (62.231.74.130) by smtp1-133.rdsnet.ro with SMTP; 27 Apr 2005 10:58:54 -0000 Received: (qmail 2755 invoked by uid 89); 27 Apr 2005 11:17:34 -0000 Received: from unknown (HELO buh.cameradicommercio.ro) (82.76.1.117) by 0 with SMTP; 27 Apr 2005 11:17:34 -0000 Received: from buh.cameradicommercio.ro (localhost [127.0.0.1]) by buh.cameradicommercio.ro (Postfix) with ESMTP id 1693C6143; Wed, 27 Apr 2005 14:05:54 +0300 (EEST) Received: from it.buh.cameradicommercio.ro (it.buh.cameradicommercio.ro [192.168.0.10]) by buh.cameradicommercio.ro (Postfix) with ESMTP; Wed, 27 Apr 2005 14:05:53 +0300 (EEST) Received: from it.buh.cameradicommercio.ro (localhost.buh.tecnik93.com [127.0.0.1]) by it.buh.cameradicommercio.ro (Postfix) with ESMTP id 672A5398; Wed, 27 Apr 2005 14:06:35 +0300 (EEST) Date: Wed, 27 Apr 2005 14:06:34 +0300 From: Ion-Mihai Tetcu To: Ion-Mihai Tetcu Message-ID: <20050427140634.2e795a7c@it.buh.cameradicommercio.ro> In-Reply-To: <20050427125056.0e3f90d4@it.buh.cameradicommercio.ro> References: <20050427104203.044756ed@it.buh.cameradicommercio.ro> <200504271001.56373.avleeuwen@piwebs.com> <20050427125056.0e3f90d4@it.buh.cameradicommercio.ro> X-Mailer: Sylpheed-Claws 1.0.4 (GTK+ 1.2.10; i386-portbld-freebsd5.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-AV-Checked: on buh by ClamAV using ClamSMTP cc: ports@freebsd.org cc: Jeremy Messenger cc: Arjan van Leeuwen Subject: Re: www/opera: Could not start plug-in executable 'operamotifwrapper' X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 11:06:00 -0000 On Wed, 27 Apr 2005 12:50:56 +0300 Ion-Mihai Tetcu wrote: > On Wed, 27 Apr 2005 10:01:55 +0200 > Arjan van Leeuwen wrote: > > > > I don't think you can use plugin when you have open-motif built in FreeBSD > > > 5.x and www/opera binary was built in 4.x. Bug Opera developer for build a > > > different version for FreeBSD 5.x. > > > > That's correct. Opera is working on a FreeBSD 5.x build. > > Any ETA on it ? This new version is much more unstable (w/o plug-ins > now) that the last one (which I was forced to restarted anyway after 1-3 > days because of refusing to resolve addresses). > > gdb ./opera.core > GNU gdb 6.1.1 [FreeBSD] > Copyright 2004 Free Software Foundation, Inc. > GDB is free software, covered by the GNU General Public License, and you are > welcome to change it and/or distribute copies of it under certain conditions. > Type "show copying" to see the conditions. > There is absolutely no warranty for GDB. Type "show warranty" for details. > This GDB was configured as "i386-marcel-freebsd"..."/home/itetcu/opera.core": not in executable format: File format not recognized Haha, should work less or at least sleep more ;) > gdb /usr/X11R6/share/opera/bin/opera opera.core GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-marcel-freebsd"...(no debugging symbols found)... Core was generated by `opera'. Program terminated with signal 11, Segmentation fault. Reading symbols from /usr/X11R6/lib/libX11.so.6...(no debugging symbols found)...done. Loaded symbols for /usr/X11R6/lib/libX11.so.6 Reading symbols from /usr/X11R6/lib/libXext.so.6...(no debugging symbols found)...done. Loaded symbols for /usr/X11R6/lib/libXext.so.6 Reading symbols from /usr/X11R6/lib/libSM.so.6...(no debugging symbols found)...done. Loaded symbols for /usr/X11R6/lib/libSM.so.6 Reading symbols from /usr/X11R6/lib/libICE.so.6...(no debugging symbols found)...done. Loaded symbols for /usr/X11R6/lib/libICE.so.6 Reading symbols from /lib/libz.so.2...(no debugging symbols found)...done. Loaded symbols for /lib/libz.so.2 Reading symbols from /usr/lib/compat/libm.so.2...(no debugging symbols found)...done. Loaded symbols for /usr/lib/compat/libm.so.2 Reading symbols from /usr/lib/compat/libc_r.so.4...(no debugging symbols found)...done. Loaded symbols for /usr/lib/compat/libc_r.so.4 Reading symbols from /usr/X11R6/lib/X11/locale/lib/common/xlcDef.so.2...(no debugging symbols found)...done. Loaded symbols for /usr/X11R6/lib/X11/locale/lib/common/xlcDef.so.2 Reading symbols from /usr/X11R6/lib/X11/locale/lib/common/ximcp.so.2...(no debugging symbols found)...done. Loaded symbols for /usr/X11R6/lib/X11/locale/lib/common/ximcp.so.2 Reading symbols from /usr/X11R6/lib/libXrender.so.1...(no debugging symbols found)...done. Loaded symbols for /usr/X11R6/lib/libXrender.so.1 Reading symbols from /usr/X11R6/lib/libfontconfig.so.1...(no debugging symbols found)...done. Loaded symbols for /usr/X11R6/lib/libfontconfig.so.1 Reading symbols from /usr/local/lib/libfreetype.so.9...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libfreetype.so.9 Reading symbols from /usr/local/lib/libexpat.so.5...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libexpat.so.5 Reading symbols from /lib/libc.so.5...(no debugging symbols found)...done. Loaded symbols for /lib/libc.so.5 Reading symbols from /usr/X11R6/lib/libXft.so.2...(no debugging symbols found)...done. Loaded symbols for /usr/X11R6/lib/libXft.so.2 Reading symbols from /usr/X11R6/share/opera/bin//missingsyms.so...(no debugging symbols found)...done. Loaded symbols for /usr/X11R6/share/opera/bin//missingsyms.so Reading symbols from /usr/X11R6/lib/libXt.so.6...(no debugging symbols found)...done. Loaded symbols for /usr/X11R6/lib/libXt.so.6 Reading symbols from /usr/X11R6/lib/libXcursor.so.1...(no debugging symbols found)...done. Loaded symbols for /usr/X11R6/lib/libXcursor.so.1 Reading symbols from /usr/X11R6/lib/X11/locale/lib/common/xomGeneric.so.2...(no debugging symbols found)...done. Loaded symbols for /usr/X11R6/lib/X11/locale/lib/common/xomGeneric.so.2 Reading symbols from /usr/libexec/ld-elf.so.1...(no debugging symbols found)...done. Loaded symbols for /usr/libexec/ld-elf.so.1 #0 0x083f28dd in ?? () (gdb) bt #0 0x083f28dd in ?? () Cannot find thread 2: Thread ID=1, generic error -- IOnut Unregistered ;) FreeBSD "user" From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 11:31:33 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE22516A4CE for ; Wed, 27 Apr 2005 11:31:33 +0000 (GMT) Received: from mail.onlinefix.de (mail2-out.titan-networks.de [217.140.72.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 183AE43D5D for ; Wed, 27 Apr 2005 11:31:32 +0000 (GMT) (envelope-from sw@gegenunendlich.de) Received: from kyuzo.dunkelkammer.void (3290872670.tidsl.titannet.de [217.173.141.104]) (authenticated bits=0)j3RBVSkA027421 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Wed, 27 Apr 2005 13:31:29 +0200 Received: by kyuzo.dunkelkammer.void (Postfix, from userid 1002) id 6C3F839F7; Wed, 27 Apr 2005 13:31:27 +0200 (CEST) Date: Wed, 27 Apr 2005 13:31:27 +0200 From: Stefan Walter To: ports@freebsd.org Message-ID: <20050427113127.GA43762@kyuzo.dunkelkammer.void> Mail-Followup-To: ports@freebsd.org References: <200504262258.14173.eric@pretorious.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="pWyiEgJYm5f9v55/" Content-Disposition: inline In-Reply-To: <200504262258.14173.eric@pretorious.net> Organization: Infinity Approximation Task Force X-PGP-key: http://www.gegenunendlich.de/swalter-rsa.asc X-PGP-fingerprint: 85D8 6A49 22C7 6CD9 B011 5D6A 5691 111B 12B9 E0B3 User-Agent: Mutt/1.5.9i Subject: Re: FreeBSD Port: aimsniff-0.9d X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 11:31:34 -0000 --pWyiEgJYm5f9v55/ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Eric Pretorious, 27.04.05, 07:58h CEST: > I noticed that you added the aimsniff port to the collection. Thanks! >=20 > How do I use this port since it's not committed to any of the release bra= nches=20 > yet. e.g., Untar it in /usr/ports/security and then `make install`? Please read [1], specifically the paragraph about the "CVSup Method". Stefan [1]: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ports-using.= html --pWyiEgJYm5f9v55/ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iQGVAwUBQm94D1aRERsSueCzAQIk5wv+KRB6PnyH3mJAhf4Q4KK252uUu/X6O+g3 CzprN8MYnyb+zGINTvUc5WMUc9azXvSj72gyuBKZB8mCVL7vJTYYi2LCQVE6FnRV NYTToVyCQbJix69A0Zh9hB8WFygSjs5UP7B36fZXZ+eJf4u+0WjXcvs7X7q0xIUi rIDl+dgVnXtBYMhAhKr98hACPrXL5SjBJQq1C0XXCyCDZ85XTTeYR4zvoaZZ2TAN twMdH/0LYPA8NecGzxsD7vjmfExMvhGzvO8QHrSy/7klXcrnSPGqtsNMS2FfHE69 pIryVZN2DHkRxLCFAccN7lHSGsmfxuYrcXdNDqgUq08EzQf/rUHUENJ/ssh6KhRh OUV5NCSOTE/effNb+Tt+/blo59o/eehGOMNyMeSpZl7SnZhJxivgO1MMsUqUzc0G 7y4g+xc7q++TYYMPf5Q5733exB0p7ESTP7PoQOrUnkC+bPq1GueSDVEzL79MljgZ udB0uxQP6l7ozysLcFNXqYCVMIKECrLQ =Uy4P -----END PGP SIGNATURE----- --pWyiEgJYm5f9v55/-- From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 11:34:03 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CE6016A4CE for ; Wed, 27 Apr 2005 11:34:03 +0000 (GMT) Received: from gimp.piwebs.com (82-197-201-59.dsl.cambrium.nl [82.197.201.59]) by mx1.FreeBSD.org (Postfix) with ESMTP id 670CC43D46 for ; Wed, 27 Apr 2005 11:34:02 +0000 (GMT) (envelope-from avleeuwen@piwebs.com) Received: (qmail 28274 invoked from network); 27 Apr 2005 11:32:16 -0000 Received: from winston.piwebs.com (192.168.0.98) by gimp.piwebs.com with SMTP; 27 Apr 2005 11:32:16 -0000 From: Arjan van Leeuwen To: Ion-Mihai Tetcu Date: Wed, 27 Apr 2005 13:31:55 +0200 User-Agent: KMail/1.8 References: <20050427104203.044756ed@it.buh.cameradicommercio.ro> <200504271001.56373.avleeuwen@piwebs.com> <20050427125056.0e3f90d4@it.buh.cameradicommercio.ro> In-Reply-To: <20050427125056.0e3f90d4@it.buh.cameradicommercio.ro> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200504271331.56316.avleeuwen@piwebs.com> cc: ports@freebsd.org cc: Jeremy Messenger Subject: Re: www/opera: Could not start plug-in executable 'operamotifwrapper' X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 11:34:03 -0000 Op woensdag 27 april 2005 11:50, schreef Ion-Mihai Tetcu: > On Wed, 27 Apr 2005 10:01:55 +0200 > > Arjan van Leeuwen wrote: > > > I don't think you can use plugin when you have open-motif built in > > > FreeBSD 5.x and www/opera binary was built in 4.x. Bug Opera developer > > > for build a different version for FreeBSD 5.x. > > > > That's correct. Opera is working on a FreeBSD 5.x build. > > Any ETA on it ? Nope. They should have had a build already, but Opera didn't have enough time/manpower to set it up. Very busy people :). > This new version is much more unstable (w/o plug-ins > now) that the last one (which I was forced to restarted anyway after 1-3 > days because of refusing to resolve addresses). Hmm... Do you have reproducible crashes? Arjan > > > gdb ./opera.core > > GNU gdb 6.1.1 [FreeBSD] > Copyright 2004 Free Software Foundation, Inc. > GDB is free software, covered by the GNU General Public License, and you > are welcome to change it and/or distribute copies of it under certain > conditions. Type "show copying" to see the conditions. > There is absolutely no warranty for GDB. Type "show warranty" for details. > This GDB was configured as > "i386-marcel-freebsd"..."/home/itetcu/opera.core": not in executable > format: File format not recognized > > > file ./opera.core > > ./opera.core: ELF 32-bit LSB core file Intel 80386, version 1 (FreeBSD), > FreeBSD-style, from 'opera' From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 11:52:10 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E8D416A4CE for ; Wed, 27 Apr 2005 11:52:10 +0000 (GMT) Received: from internet.potentialtech.com (h-66-167-251-6.phlapafg.covad.net [66.167.251.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EFD343D55 for ; Wed, 27 Apr 2005 11:52:09 +0000 (GMT) (envelope-from wmoran@potentialtech.com) Received: from localhost (24-53-250-148.pittpa.adelphia.net [24.53.250.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by internet.potentialtech.com (Postfix) with ESMTP id 9C9A569A21; Wed, 27 Apr 2005 07:52:08 -0400 (EDT) Date: Wed, 27 Apr 2005 07:52:07 -0400 From: Bill Moran To: elsukov@rdu.kirov.ru Message-Id: <20050427075207.677a45fc.wmoran@potentialtech.com> In-Reply-To: <426F4F74.3030105@rdu.kirov.ru> References: <426F4F74.3030105@rdu.kirov.ru> Organization: Potential Technologies X-Mailer: Sylpheed version 1.0.4 (GTK+ 1.2.10; i386-portbld-freebsd5.3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: freebsd-ports@freebsd.org Subject: Re: Shell access to IA64 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 11:52:10 -0000 "Andrey V. Elsukov" wrote: > Hi, People, > > somebody known, where can get shell access to IA64 architecture? I want > to test build my port on IA64.. If you're not able to get shell access, you can use the bochs port to simulate ia64 on ia32. -- Bill Moran Potential Technologies http://www.potentialtech.com From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 12:05:22 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3209A16A4DB for ; Wed, 27 Apr 2005 12:05:22 +0000 (GMT) Received: from mail.rdu.kirov.ru (ns.rdu.kirov.ru [217.9.151.217]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F06B43D31 for ; Wed, 27 Apr 2005 12:05:21 +0000 (GMT) (envelope-from elsukov@rdu.kirov.ru) Received: from kirov.so-cdu.ru (unknown [172.21.81.1]) by mail.rdu.kirov.ru (Postfix) with ESMTP id 25D90FDAE; Wed, 27 Apr 2005 16:05:20 +0400 (MSD) Received: from kirov.so-cdu.ru (localhost [127.0.0.1]) by rdu.kirov.ru (Postfix) with SMTP id 1C9001560D; Wed, 27 Apr 2005 16:05:20 +0400 (MSD) Received: from [172.21.81.52] (elsukov.kirov.so-cdu.ru [172.21.81.52]) by rdu.kirov.ru (Postfix) with ESMTP id D478F1560C; Wed, 27 Apr 2005 16:05:19 +0400 (MSD) Message-ID: <426F7FDC.8@rdu.kirov.ru> Date: Wed, 27 Apr 2005 16:04:44 +0400 From: "Andrey V. Elsukov" Organization: The Kirov RDO User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Bill Moran References: <426F4F74.3030105@rdu.kirov.ru> <20050427075207.677a45fc.wmoran@potentialtech.com> In-Reply-To: <20050427075207.677a45fc.wmoran@potentialtech.com> X-Enigmail-Version: 0.91.0.0 Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 7bit cc: freebsd-ports@freebsd.org Subject: Re: Shell access to IA64 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: elsukov@rdu.kirov.ru List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 12:05:22 -0000 Bill Moran wrote: > If you're not able to get shell access, you can use the bochs port to > simulate ia64 on ia32. Hmm.. Bochs can simulate ia64? In the documentation: -- What is Bochs? Bochs is a program that simulates a complete *Intel x86* computer. It can be configured to act like a 386, 486, Pentium, Pentium Pro, or AMD64 CPU, including optional MMX, SSE, SSE2 and 3DNow! instructions.... -- WBR, Andrey V. Elsukov From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 12:21:39 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8610716A4CE for ; Wed, 27 Apr 2005 12:21:39 +0000 (GMT) Received: from internet.potentialtech.com (h-66-167-251-6.phlapafg.covad.net [66.167.251.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3AAFD43D68 for ; Wed, 27 Apr 2005 12:21:39 +0000 (GMT) (envelope-from wmoran@potentialtech.com) Received: from localhost (24-53-250-148.pittpa.adelphia.net [24.53.250.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by internet.potentialtech.com (Postfix) with ESMTP id 6E61D69A21; Wed, 27 Apr 2005 08:21:38 -0400 (EDT) Date: Wed, 27 Apr 2005 08:21:37 -0400 From: Bill Moran To: elsukov@rdu.kirov.ru Message-Id: <20050427082137.73940cb4.wmoran@potentialtech.com> In-Reply-To: <426F7FDC.8@rdu.kirov.ru> References: <426F4F74.3030105@rdu.kirov.ru> <20050427075207.677a45fc.wmoran@potentialtech.com> <426F7FDC.8@rdu.kirov.ru> Organization: Potential Technologies X-Mailer: Sylpheed version 1.0.4 (GTK+ 1.2.10; i386-portbld-freebsd5.3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: freebsd-ports@freebsd.org Subject: Re: Shell access to IA64 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 12:21:39 -0000 "Andrey V. Elsukov" wrote: > Bill Moran wrote: > > If you're not able to get shell access, you can use the bochs port to > > simulate ia64 on ia32. > > Hmm.. Bochs can simulate ia64? In the documentation: > -- > What is Bochs? > Bochs is a program that simulates a complete *Intel x86* computer. It > can be configured to act like a 386, 486, Pentium, Pentium Pro, or AMD64 > CPU, including optional MMX, SSE, SSE2 and 3DNow! instructions.... Oops ... got my ia64 and my AMD64 mixed up. Sorry for the noise. -- Bill Moran Potential Technologies http://www.potentialtech.com From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 12:25:23 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3CB9816A4CE for ; Wed, 27 Apr 2005 12:25:23 +0000 (GMT) Received: from relay.rdsnet.ro (gimli.rdsnet.ro [193.231.236.70]) by mx1.FreeBSD.org (Postfix) with SMTP id E06FA43D53 for ; Wed, 27 Apr 2005 12:25:21 +0000 (GMT) (envelope-from itetcu@people.tecnik93.com) Received: (qmail 15760 invoked from network); 27 Apr 2005 12:18:17 -0000 Received: from unknown (HELO smtp.rdsnet.ro) (62.231.74.130) by smtp1-133.rdsnet.ro with SMTP; 27 Apr 2005 12:18:17 -0000 Received: (qmail 3794 invoked by uid 89); 27 Apr 2005 12:36:57 -0000 Received: from unknown (HELO buh.cameradicommercio.ro) (82.76.1.117) by 0 with SMTP; 27 Apr 2005 12:36:57 -0000 Received: from buh.cameradicommercio.ro (localhost [127.0.0.1]) by buh.cameradicommercio.ro (Postfix) with ESMTP id 1CFF260BE; Wed, 27 Apr 2005 15:25:17 +0300 (EEST) Received: from it.buh.cameradicommercio.ro (it.buh.cameradicommercio.ro [192.168.0.10]) by buh.cameradicommercio.ro (Postfix) with ESMTP; Wed, 27 Apr 2005 15:25:16 +0300 (EEST) Received: from it.buh.cameradicommercio.ro (localhost.buh.tecnik93.com [127.0.0.1]) by it.buh.cameradicommercio.ro (Postfix) with ESMTP id 8D6F54C; Wed, 27 Apr 2005 15:25:57 +0300 (EEST) Date: Wed, 27 Apr 2005 15:25:57 +0300 From: Ion-Mihai Tetcu To: Arjan van Leeuwen Message-ID: <20050427152557.25e3e65d@it.buh.cameradicommercio.ro> In-Reply-To: <200504271331.56316.avleeuwen@piwebs.com> References: <20050427104203.044756ed@it.buh.cameradicommercio.ro> <200504271001.56373.avleeuwen@piwebs.com> <20050427125056.0e3f90d4@it.buh.cameradicommercio.ro> <200504271331.56316.avleeuwen@piwebs.com> X-Mailer: Sylpheed-Claws 1.0.4 (GTK+ 1.2.10; i386-portbld-freebsd5.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-AV-Checked: on buh by ClamAV using ClamSMTP cc: ports@freebsd.org cc: Jeremy Messenger Subject: Re: www/opera: Could not start plug-in executable 'operamotifwrapper' X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 12:25:23 -0000 On Wed, 27 Apr 2005 13:31:55 +0200 Arjan van Leeuwen wrote: > Op woensdag 27 april 2005 11:50, schreef Ion-Mihai Tetcu: > > On Wed, 27 Apr 2005 10:01:55 +0200 > > > > Arjan van Leeuwen wrote: > > > > I don't think you can use plugin when you have open-motif built in > > > > FreeBSD 5.x and www/opera binary was built in 4.x. Bug Opera developer > > > > for build a different version for FreeBSD 5.x. > > > > > > That's correct. Opera is working on a FreeBSD 5.x build. > > > > Any ETA on it ? > > Nope. They should have had a build already, but Opera didn't have enough > time/manpower to set it up. Very busy people :). Hmm .... I'll have to start testing an other browser; which is to bad since I use opera from 3.x or something and it has some unique and handy features. Or maybe downgrade .... :-( > > This new version is much more unstable (w/o plug-ins > > now) that the last one (which I was forced to restarted anyway after 1-3 > > days because of refusing to resolve addresses). > > Hmm... Do you have reproducible crashes? None what so ever. Could happen after 3 minutes from start with 3 pages or after 2 hours with a few windows full with pages. And given the thread experience which one of my ports during 5.3 life Cannot find thread 2: Thread ID=1, generic error gives me a bad feeling. The only exotic thing is that I'm building compat* with the base system not from misc/compat4; could this be the cause ? -- IOnut Unregistered ;) FreeBSD "user" From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 12:44:50 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C389416A4CE for ; Wed, 27 Apr 2005 12:44:50 +0000 (GMT) Received: from lri.lri.fr (lri.lri.fr [129.175.15.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DF8543D62 for ; Wed, 27 Apr 2005 12:44:50 +0000 (GMT) (envelope-from feanor@pc5-179.lri.fr) Received: from localhost (localhost [127.0.0.1]) by lri.lri.fr (Postfix) with ESMTP id 2FBE619E99F for ; Wed, 27 Apr 2005 14:44:49 +0200 (CEST) Received: from lri.lri.fr ([127.0.0.1]) by localhost (lri.lri.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18644-09 for ; Wed, 27 Apr 2005 14:44:49 +0200 (CEST) Received: from pc5-179.lri.fr (pc5-179 [129.175.5.179]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (No client certificate requested) by lri.lri.fr (Postfix) with ESMTP id 18DDE19E998 for ; Wed, 27 Apr 2005 14:44:49 +0200 (CEST) Received: from pc5-179.lri.fr (localhost.lri.fr [127.0.0.1]) by pc5-179.lri.fr (8.13.3/8.13.1) with ESMTP id j3RCimqS022625 for ; Wed, 27 Apr 2005 14:44:48 +0200 (CEST) (envelope-from feanor@pc5-179.lri.fr) Received: (from feanor@localhost) by pc5-179.lri.fr (8.13.3/8.13.1/Submit) id j3RCimqO022624 for freebsd-ports@FreeBSD.org; Wed, 27 Apr 2005 14:44:48 +0200 (CEST) (envelope-from feanor) Date: Wed, 27 Apr 2005 14:44:48 +0200 From: Marwan Burelle To: Mailing List FreeBSD Ports Message-ID: <20050427124448.GA4069@pc5-179.lri.fr> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="AhhlLboLdkugWU4S" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i X-Virus-Scanned: by amavisd-new at lri.fr Subject: OCaml updates may need some warning in UPDATING X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 12:44:50 -0000 --AhhlLboLdkugWU4S Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, I've just upgrade my port and notice the arrival of OCaml 3.08.3, since, for complex reasons, each OCaml release break the binary compatiblity, most OCaml ports acting like libs must be rebuild. This won't be a problem, but building a port depending on an OCaml lib, may fail if the lib hasn't been rebuild since last OCaml upgrade (with some obscure error messages.) Maybe could someone add a line or two in ports/UPDATING ? (most of the time portupgrade -ru ocaml won't do the job ... ) --=20 Burelle Marwan, Equipe Bases de Donnees - LRI http://www.cduce.org (burelle@lri.fr | Marwan.Burelle@ens.fr) --AhhlLboLdkugWU4S Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCb4lAI+2UvUKfgvgRAqBTAJ9h8xG+2MZvTimTVo/VefMAHe0xUQCePeNO sVy9N3+610G1FyO6IYQ7+RU= =9/lN -----END PGP SIGNATURE----- --AhhlLboLdkugWU4S-- From owner-freebsd-ports@FreeBSD.ORG Tue Apr 26 17:12:16 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92EA516A4CE; Tue, 26 Apr 2005 17:12:16 +0000 (GMT) Received: from neon.webfusion.co.uk (neon.webfusion.co.uk [212.67.202.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E8D543D58; Tue, 26 Apr 2005 17:12:16 +0000 (GMT) (envelope-from michael.hopkins@hopkins-research.com) Received: from 83-216-132-201.markch725.adsl.metronet.co.uk ([83.216.132.201] helo=[192.168.0.5]) by neon.webfusion.co.uk with asmtp (Exim 3.36 #1) id 1DQTba-0005kE-00; Tue, 26 Apr 2005 18:12:14 +0100 User-Agent: Microsoft-Entourage/10.1.1.2418 Date: Tue, 26 Apr 2005 18:12:12 +0100 From: Michael Hopkins To: <"freebsd-amd64@freebsd.org, freebsd-ports"@freebsd.org> Message-ID: In-Reply-To: <20050426170115.GB45067@dragon.NUXI.org> Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit X-Mailman-Approved-At: Wed, 27 Apr 2005 12:56:14 +0000 Subject: Re: Attempted install of an Obj-C Foundation library X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2005 17:12:16 -0000 On 26/4/05 6:01 pm, "David O'Brien" wrote: > On Mon, Apr 25, 2005 at 07:20:41PM +0100, Michael Hopkins wrote: >> >> >> Hi all >> >> I am trying to get a working Objective-C Foundation library on FreeBSD amd64 >> (5.3-RELEASE-p10 with ports cvsup'd today) so that I can port some >> Objective-C code from Mac OS X - and not having any success. > ... >> ===> gcc-objc-3.3.6_20050330 is marked as broken: Bus errors in stage2; >> system compiler may be broken.. >> *** Error code 1 > > I must be missing something -- why cant you use the base ObjC compiler? > Hi David I am not trying to avoid that. This just happens when you try to build gnustep-base from ports unless you specify GCC34 explicitly. I think I have now discovered the problem, though not the solution. This is a section of a mail I sent earlier: It looks like this earlier error might have something to do with the problem linking to libgnustepbase that causes the builds to die later on. --------------------------------------- /usr/bin/ld: /usr/local/lib/libcallback.a(misc.o): relocation R_X86_64_32 can not be used when making a shared object; recompile with -fPIC /usr/local/lib/libcallback.a: could not read symbols: Bad value collect2: ld returned 1 exit status --------------------------------------- Do you know anything about this? I believe it is something to do with shared libraries on amd64 but I'm not sure what I am able do about it. Michael _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ _/ _/ _/_/_/ Hopkins Research Ltd _/ _/ _/ _/ _/_/_/_/ _/_/_/ http://www.hopkins-research.com/ _/ _/ _/ _/ _/ _/ _/ _/ 'touch the future' _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 08:52:24 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C36EA16A4CE for ; Wed, 27 Apr 2005 08:52:24 +0000 (GMT) Received: from hakusan.kanazawa-gu.ac.jp (hakusan.kanazawa-gu.ac.jp [202.223.213.70]) by mx1.FreeBSD.org (Postfix) with SMTP id 0A5F043D5F for ; Wed, 27 Apr 2005 08:52:23 +0000 (GMT) (envelope-from okada@kanazawa-gu.ac.jp) Received: (qmail 45928 invoked from network); 27 Apr 2005 08:52:18 -0000 Received: from hakusan.kanazawa-gu.ac.jp (HELO localhost) (202.223.213.70) by hakusan.kanazawa-gu.ac.jp with SMTP; 27 Apr 2005 08:52:18 -0000 Date: Wed, 27 Apr 2005 17:52:18 +0900 (JST) Message-Id: <20050427.175218.69168493.okada@kanazawa-gu.ac.jp> To: hrs@FreeBSD.org From: Masanori =?iso-2022-jp?B?T2thZGEvGyRCMixFREAvQicbKEI=?= X-Mailer: Mew version 4.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=iso-2022-jp Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Wed, 27 Apr 2005 12:56:14 +0000 cc: ports@FreeBSD.org Subject: FreeBSD Port: ja-ptex-tetex-3.1.8_3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 08:52:24 -0000 $B:4F#$5$^$3$s$K$A$O(B $B6bBt3X1!Bg3X$N2,ED$H?=$7$^$9!#(B 5.3-S(freebsd-update$BEv$F$?$b$N(B)$B$G(B ja-ptex-tetex-3.1.8_3$B$r(Bmake$B$9$k$H(B pc1# cd /usr/ports/japanese/ptex-tetex/ pc1# make ===> Building for ja-ptex-tetex-3.1.8_3 TEXMFCNF=. TEXMF=\{/usr/local/share/texmf-local,/usr/local/share/texmf-dist,/usr/local/share/texmf,/usr/ports/japanese/ptex-tetex/work/texmf-tmp\} gmake progname=ptex files="ptex.tex min10.tfm" prereq-check gmake[1]: Entering directory `/usr/ports/japanese/ptex-tetex/work/tetex-src-3.0/texk/web2c/ptex-3.1.8' TEXMFCNF=. TEXMF=\{/usr/local/share/texmf-local,/usr/local/share/texmf-dist,/usr/local/share/texmf,/usr/ports/japanese/ptex-tetex/work/texmf-tmp\} ../../kpathsea/kpsewhich --progname=ptex ptex.tex min10.tfm >/dev/null || gmake prereq-lose >/dev/null gmake[1]: Leaving directory `/usr/ports/japanese/ptex-tetex/work/tetex-src-3.0/texk/web2c/ptex-3.1.8' TEXMFCNF=. TEXMF=\{/usr/local/share/texmf-local,/usr/local/share/texmf-dist,/usr/local/share/texmf,/usr/ports/japanese/ptex-tetex/work/texmf-tmp\} ./ptex --ini --kanji=euc --progname=ptex --jobname=ptex-euc \\input ptex.tex \\dump Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B64716A4CE for ; Wed, 27 Apr 2005 14:08:29 +0000 (GMT) Received: from bloodwood.hunterlink.net.au (smtp-local.hunterlink.net.au [203.12.144.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4011343D31 for ; Wed, 27 Apr 2005 14:08:28 +0000 (GMT) (envelope-from boris@brooknet.com.au) Received: from ppp209B.dyn.pacific.net.au (ppp209B.dyn.pacific.net.au [61.8.32.155])j3RE8Ixn027827 for ; Thu, 28 Apr 2005 00:08:22 +1000 From: Sam Lawrance To: ports@freebsd.org Content-Type: text/plain Date: Thu, 28 Apr 2005 00:08:41 +1000 Message-Id: <1114610923.45212.16.camel@dirk.no.domain> Mime-Version: 1.0 X-Mailer: Evolution 2.2.2 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Subject: Why can't pkg-plist list directories? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 14:08:29 -0000 Aside from the fact that the pkg_* tools don't currently support it, is there a reason why we use @dirrm in packing lists rather than just listing the directories? eg. share/blah/blah.h @dirrm share/blah as opposed to the hypothetical share/blah/blah.h share/blah I'm looking at a new port that creates a number of empty directories, and sets ownership on others. Currently we have to use @exec or pkg-install scripts to create empty dirs, and to set modes/permissions on any directory. To me, it makes sense to have them packaged similarly to files. I don't presume such a change wouldn't break stuff... just [pw]ondering :) From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 14:36:15 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 234E716A4CE for ; Wed, 27 Apr 2005 14:36:15 +0000 (GMT) Received: from sccrmhc12.comcast.net (sccrmhc12.comcast.net [204.127.202.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9300C43D4C for ; Wed, 27 Apr 2005 14:36:14 +0000 (GMT) (envelope-from e.schuele@computer.org) Received: from [208.206.151.59] (host59.gtisd.com[208.206.151.59]) by comcast.net (sccrmhc12) with ESMTP id <2005042714361301200clmr1e>; Wed, 27 Apr 2005 14:36:13 +0000 Message-ID: <426FA35C.8040504@computer.org> Date: Wed, 27 Apr 2005 09:36:12 -0500 From: Eric Schuele User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050325) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Jon Drews References: <426EA027.8060002@computer.org> <8cb27cbf05042615007ec0d27b@mail.gmail.com> In-Reply-To: <8cb27cbf05042615007ec0d27b@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: ports@freebsd.org Subject: Re: anyone working on the broken xfe? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 14:36:15 -0000 Jonathan, Jon Drews wrote: > Hi Eric: > > On 4/26/05, Eric Schuele wrote: > >>Hello, >> >>I was wondering if anyone used xfe (other than me)... and if anyone was >>working on 'fixing' the port which is marked broken? > > > I tried to update the port. The new version (0.80) is out: > http://roland65.free.fr/xfe/ I grabbed the source as well the other day but have not yet had a chance to mess with it. > > I get this error when I compile the new port: > DirPanel.cc:79: error: `ID_MOUNT' is not a member of `DirPanel' > DirPanel.cc:79: error: `ID_MOUNT' is not a member of `DirPanel' > DirPanel.cc:80: error: `ID_UMOUNT' is not a member of `DirPanel' > DirPanel.cc:80: error: `ID_UMOUNT' is not a member of `DirPanel' > DirPanel.cc: In member function `long int DirPanel::onUpdMount(FX::FXObject*, FX > ::FXSelector, void*)': > DirPanel.cc:814: error: `fsdevices' undeclared (first use this function) > DirPanel.cc:814: error: (Each undeclared identifier is reported only once for ea > ch function it appears in.) > DirPanel.cc:814: error: `mtdevices' undeclared (first use this function) > DirPanel.cc: In member function `long int DirPanel::onUpdUnmount(FX::FXObject*, > FX::FXSelector, void*)': > DirPanel.cc:834: error: `fsdevices' undeclared (first use this function) > DirPanel.cc:834: error: `mtdevices' undeclared (first use this function) > gmake[2]: *** [DirPanel.o] Error 1 > gmake[2]: Leaving directory `/usr/ports/x11-fm/xfe/work/xfe-0.80/src' > gmake[1]: *** [all-recursive] Error 1 > gmake[1]: Leaving directory `/usr/ports/x11-fm/xfe/work/xfe-0.80' > gmake: *** [all] Error 2 > *** Error code 2 > > > In the DirPanel.cc, I saw this: > #if defined(linux) > FXMAPFUNC(SEL_COMMAND,DirPanel::ID_MOUNT,DirPanel::onCmdMount), > FXMAPFUNC(SEL_COMMAND,DirPanel::ID_UMOUNT,DirPanel::onCmdMount), > #endif > Given your post and a cursory glance at the code it... I'm guessing the author did not #ifdef enough out. > > so since it's FreeBSD, it may not be used and hence the above error. > That is just a wild guess. I don't know how to diagnose this one. > If anyone else is on top of this, holler.... and I wont bother. -- Regards, Eric From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 14:49:31 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9BE9F16A4CE for ; Wed, 27 Apr 2005 14:49:31 +0000 (GMT) Received: from dock5523.com (dock5523.com [66.98.244.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4C8243D53 for ; Wed, 27 Apr 2005 14:49:30 +0000 (GMT) (envelope-from augusto@dock.com.br) Received: (qmail 54529 invoked by uid 80); 27 Apr 2005 14:50:31 -0000 Received: from 200.146.125.10.adsl.gvt.net.br (200.146.125.10.adsl.gvt.net.br [200.146.125.10]) by webmail.dock.com.br (IMP) with HTTP for ; Wed, 27 Apr 2005 11:50:30 -0300 Message-ID: <1114613430.426fa6b6f1e16@webmail.dock.com.br> Date: Wed, 27 Apr 2005 11:50:30 -0300 From: Augusto Cesar Castoldi To: ports@FreeBSD.org MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="-MOQ11146134306eaa337b0af876dc4f263f707de93f78" User-Agent: Internet Messaging Program (IMP) 3.2.4 / FreeBSD-4.10 X-Originating-IP: 200.146.125.10 Subject: samba3 error X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 14:49:31 -0000 This message is in MIME format. ---MOQ11146134306eaa337b0af876dc4f263f707de93f78 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit I just installed the freebsd system, update de ports database: #cvsup -L 2 /root/ports-supfile cd /usr/ports/net/samba3 make and receive the errors attached can you help? thanks. Atenciosamente, __________________________________ Augusto Cesar Castoldi Analista de Sistemas www.dock.com.br Florianópolis - SC - Brasil E-mail: augusto@dock.com.br ---------------------------------------------------------------- This message was sent using IMP, the Internet Messaging Program. ---MOQ11146134306eaa337b0af876dc4f263f707de93f78 Content-Type: text/plain; name="config.log" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="config.log" VGhpcyBmaWxlIGNvbnRhaW5zIGFueSBtZXNzYWdlcyBwcm9kdWNlZCBieSBjb21waWxlcnMgd2hp bGUKcnVubmluZyBjb25maWd1cmUsIHRvIGFpZCBkZWJ1Z2dpbmcgaWYgY29uZmlndXJlIG1ha2Vz IGEgbWlzdGFrZS4KCkl0IHdhcyBjcmVhdGVkIGJ5IGxpYnRvb2wgY29uZmlndXJlIDEuNS4xMCwg d2hpY2ggd2FzCmdlbmVyYXRlZCBieSBHTlUgQXV0b2NvbmYgMi41OS4gIEludm9jYXRpb24gY29t bWFuZCBsaW5lIHdhcwoKICAkIC4vY29uZmlndXJlIC0tZGlzYWJsZS1sdGRsLWluc3RhbGwgLS1w cm9ncmFtLXN1ZmZpeD0xNSAtLXByZWZpeD0vdXNyL2xvY2FsIC0tYnVpbGQ9aTM4Ni1wb3J0Ymxk LWZyZWVic2Q1LjMKCiMjIC0tLS0tLS0tLSAjIwojIyBQbGF0Zm9ybS4gIyMKIyMgLS0tLS0tLS0t ICMjCgpob3N0bmFtZSA9IGFycXVpdm9zLmRvY2tmb3VyLmNvbS5icgp1bmFtZSAtbSA9IGkzODYK dW5hbWUgLXIgPSA1LjMtUkVMRUFTRQp1bmFtZSAtcyA9IEZyZWVCU0QKdW5hbWUgLXYgPSBGcmVl QlNEIDUuMy1SRUxFQVNFICMwOiBGcmkgTm92ICA1IDA0OjE5OjE4IFVUQyAyMDA0ICAgICByb290 QGhhcmxvdy5jc2UuYnVmZmFsby5lZHU6L3Vzci9vYmovdXNyL3NyYy9zeXMvR0VORVJJQyAKCi91 c3IvYmluL3VuYW1lIC1wID0gaTM4NgovYmluL3VuYW1lIC1YICAgICA9IHVua25vd24KCi9iaW4v YXJjaCAgICAgICAgICAgICAgPSB1bmtub3duCi91c3IvYmluL2FyY2ggLWsgICAgICAgPSB1bmtu b3duCi91c3IvY29udmV4L2dldHN5c2luZm8gPSB1bmtub3duCmhvc3RpbmZvICAgICAgICAgICAg ICAgPSB1bmtub3duCi9iaW4vbWFjaGluZSAgICAgICAgICAgPSB1bmtub3duCi91c3IvYmluL29z bGV2ZWwgICAgICAgPSB1bmtub3duCi9iaW4vdW5pdmVyc2UgICAgICAgICAgPSB1bmtub3duCgpQ QVRIOiAvc2JpbgpQQVRIOiAvYmluClBBVEg6IC91c3Ivc2JpbgpQQVRIOiAvdXNyL2JpbgpQQVRI OiAvdXNyL2dhbWVzClBBVEg6IC91c3IvbG9jYWwvc2JpbgpQQVRIOiAvdXNyL2xvY2FsL2JpbgpQ QVRIOiAvdXNyL1gxMVI2L2JpbgpQQVRIOiAvcm9vdC9iaW4KCgojIyAtLS0tLS0tLS0tLSAjIwoj IyBDb3JlIHRlc3RzLiAjIwojIyAtLS0tLS0tLS0tLSAjIwoKY29uZmlndXJlOjE1ODM6IGNoZWNr aW5nIGZvciBhIEJTRC1jb21wYXRpYmxlIGluc3RhbGwKY29uZmlndXJlOjE2Mzg6IHJlc3VsdDog L3Vzci9iaW4vaW5zdGFsbCAtYyAtbyByb290IC1nIHdoZWVsCmNvbmZpZ3VyZToxNjQ5OiBjaGVj a2luZyB3aGV0aGVyIGJ1aWxkIGVudmlyb25tZW50IGlzIHNhbmUKY29uZmlndXJlOjE2OTI6IHJl c3VsdDogeWVzCmNvbmZpZ3VyZToxNzU3OiBjaGVja2luZyBmb3IgZ2F3awpjb25maWd1cmU6MTc4 NjogcmVzdWx0OiBubwpjb25maWd1cmU6MTc1NzogY2hlY2tpbmcgZm9yIG1hd2sKY29uZmlndXJl OjE3ODY6IHJlc3VsdDogbm8KY29uZmlndXJlOjE3NTc6IGNoZWNraW5nIGZvciBuYXdrCmNvbmZp Z3VyZToxNzczOiBmb3VuZCAvdXNyL2Jpbi9uYXdrCmNvbmZpZ3VyZToxNzgzOiByZXN1bHQ6IG5h d2sKY29uZmlndXJlOjE3OTM6IGNoZWNraW5nIHdoZXRoZXIgbWFrZSBzZXRzICQoTUFLRSkKY29u ZmlndXJlOjE4MTM6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToyMDczOiBjaGVja2luZyBmb3IgZ2Nj CmNvbmZpZ3VyZToyMDk5OiByZXN1bHQ6IGNjCmNvbmZpZ3VyZToyMzQzOiBjaGVja2luZyBmb3Ig QyBjb21waWxlciB2ZXJzaW9uCmNvbmZpZ3VyZToyMzQ2OiBjYyAtLXZlcnNpb24gPC9kZXYvbnVs bCA+JjUKY2MgKEdDQykgMy40LjIgW0ZyZWVCU0RdIDIwMDQwNzI4CkNvcHlyaWdodCAoQykgMjAw NCBGcmVlIFNvZnR3YXJlIEZvdW5kYXRpb24sIEluYy4KVGhpcyBpcyBmcmVlIHNvZnR3YXJlOyBz ZWUgdGhlIHNvdXJjZSBmb3IgY29weWluZyBjb25kaXRpb25zLiAgVGhlcmUgaXMgTk8Kd2FycmFu dHk7IG5vdCBldmVuIGZvciBNRVJDSEFOVEFCSUxJVFkgb3IgRklUTkVTUyBGT1IgQSBQQVJUSUNV TEFSIFBVUlBPU0UuCgpjb25maWd1cmU6MjM0OTogJD8gPSAwCmNvbmZpZ3VyZToyMzUxOiBjYyAt diA8L2Rldi9udWxsID4mNQpVc2luZyBidWlsdC1pbiBzcGVjcy4KQ29uZmlndXJlZCB3aXRoOiBG cmVlQlNEL2kzODYgc3lzdGVtIGNvbXBpbGVyClRocmVhZCBtb2RlbDogcG9zaXgKZ2NjIHZlcnNp b24gMy40LjIgW0ZyZWVCU0RdIDIwMDQwNzI4CmNvbmZpZ3VyZToyMzU0OiAkPyA9IDAKY29uZmln dXJlOjIzNTY6IGNjIC1WIDwvZGV2L251bGwgPiY1CmNjOiBgLVYnIG9wdGlvbiBtdXN0IGhhdmUg YXJndW1lbnQKY29uZmlndXJlOjIzNTk6ICQ/ID0gMQpjb25maWd1cmU6MjM4MjogY2hlY2tpbmcg Zm9yIEMgY29tcGlsZXIgZGVmYXVsdCBvdXRwdXQgZmlsZSBuYW1lCmNvbmZpZ3VyZToyMzg1OiBj YyAtTyAtcGlwZSAgICBjb25mdGVzdC5jICA+JjUKY29uZmlndXJlOjIzODg6ICQ/ID0gMApjb25m aWd1cmU6MjQzNDogcmVzdWx0OiBhLm91dApjb25maWd1cmU6MjQzOTogY2hlY2tpbmcgd2hldGhl ciB0aGUgQyBjb21waWxlciB3b3Jrcwpjb25maWd1cmU6MjQ0NTogLi9hLm91dApjb25maWd1cmU6 MjQ0ODogJD8gPSAwCmNvbmZpZ3VyZToyNDY1OiByZXN1bHQ6IHllcwpjb25maWd1cmU6MjQ3Mjog Y2hlY2tpbmcgd2hldGhlciB3ZSBhcmUgY3Jvc3MgY29tcGlsaW5nCmNvbmZpZ3VyZToyNDc0OiBy ZXN1bHQ6IG5vCmNvbmZpZ3VyZToyNDc3OiBjaGVja2luZyBmb3Igc3VmZml4IG9mIGV4ZWN1dGFi bGVzCmNvbmZpZ3VyZToyNDc5OiBjYyAtbyBjb25mdGVzdCAtTyAtcGlwZSAgICBjb25mdGVzdC5j ICA+JjUKY29uZmlndXJlOjI0ODI6ICQ/ID0gMApjb25maWd1cmU6MjUwNzogcmVzdWx0OiAKY29u ZmlndXJlOjI1MTM6IGNoZWNraW5nIGZvciBzdWZmaXggb2Ygb2JqZWN0IGZpbGVzCmNvbmZpZ3Vy ZToyNTM0OiBjYyAtYyAtTyAtcGlwZSAgIGNvbmZ0ZXN0LmMgPiY1CmNvbmZpZ3VyZToyNTM3OiAk PyA9IDAKY29uZmlndXJlOjI1NTk6IHJlc3VsdDogbwpjb25maWd1cmU6MjU2MzogY2hlY2tpbmcg d2hldGhlciB3ZSBhcmUgdXNpbmcgdGhlIEdOVSBDIGNvbXBpbGVyCmNvbmZpZ3VyZToyNTg3OiBj YyAtYyAtTyAtcGlwZSAgIGNvbmZ0ZXN0LmMgPiY1CmNvbmZpZ3VyZToyNTkzOiAkPyA9IDAKY29u ZmlndXJlOjI1OTc6IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZp Z3VyZToyNjAwOiAkPyA9IDAKY29uZmlndXJlOjI2MDM6IHRlc3QgLXMgY29uZnRlc3Qubwpjb25m aWd1cmU6MjYwNjogJD8gPSAwCmNvbmZpZ3VyZToyNjE5OiByZXN1bHQ6IHllcwpjb25maWd1cmU6 MjYyNTogY2hlY2tpbmcgd2hldGhlciBjYyBhY2NlcHRzIC1nCmNvbmZpZ3VyZToyNjQ2OiBjYyAt YyAtZyAgY29uZnRlc3QuYyA+JjUKY29uZmlndXJlOjI2NTI6ICQ/ID0gMApjb25maWd1cmU6MjY1 NjogdGVzdCAteiAKCQkJIHx8IHRlc3QgISAtcyBjb25mdGVzdC5lcnIKY29uZmlndXJlOjI2NTk6 ICQ/ID0gMApjb25maWd1cmU6MjY2MjogdGVzdCAtcyBjb25mdGVzdC5vCmNvbmZpZ3VyZToyNjY1 OiAkPyA9IDAKY29uZmlndXJlOjI2NzY6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToyNjkzOiBjaGVj a2luZyBmb3IgY2Mgb3B0aW9uIHRvIGFjY2VwdCBBTlNJIEMKY29uZmlndXJlOjI3NjM6IGNjICAt YyAtTyAtcGlwZSAgIGNvbmZ0ZXN0LmMgPiY1CmNvbmZpZ3VyZToyNzY5OiAkPyA9IDAKY29uZmln dXJlOjI3NzM6IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3Vy ZToyNzc2OiAkPyA9IDAKY29uZmlndXJlOjI3Nzk6IHRlc3QgLXMgY29uZnRlc3Qubwpjb25maWd1 cmU6Mjc4MjogJD8gPSAwCmNvbmZpZ3VyZToyODAwOiByZXN1bHQ6IG5vbmUgbmVlZGVkCmNvbmZp Z3VyZToyODE4OiBjYyAtYyAtTyAtcGlwZSAgIGNvbmZ0ZXN0LmMgPiY1CmNvbmZ0ZXN0LmM6Mjog ZXJyb3I6IHN5bnRheCBlcnJvciBiZWZvcmUgIm1lIgpjb25maWd1cmU6MjgyNDogJD8gPSAxCmNv bmZpZ3VyZTogZmFpbGVkIHByb2dyYW0gd2FzOgp8ICNpZm5kZWYgX19jcGx1c3BsdXMKfCAgIGNo b2tlIG1lCnwgI2VuZGlmCmNvbmZpZ3VyZToyOTY4OiBjaGVja2luZyBmb3Igc3R5bGUgb2YgaW5j bHVkZSB1c2VkIGJ5IG1ha2UKY29uZmlndXJlOjI5OTY6IHJlc3VsdDogR05VCmNvbmZpZ3VyZToz MDI0OiBjaGVja2luZyBkZXBlbmRlbmN5IHN0eWxlIG9mIGNjCmNvbmZpZ3VyZTozMTE0OiByZXN1 bHQ6IG5vbmUKY29uZmlndXJlOjMxMzI6IGNoZWNraW5nIGZvciBhIHNlZCB0aGF0IGRvZXMgbm90 IHRydW5jYXRlIG91dHB1dApjb25maWd1cmU6MzE4NjogcmVzdWx0OiAvdXNyL2Jpbi9zZWQKY29u ZmlndXJlOjMxOTU6IGNoZWNraW5nIGJ1aWxkIHN5c3RlbSB0eXBlCmNvbmZpZ3VyZTozMjEzOiBy ZXN1bHQ6IGkzODYtcG9ydGJsZC1mcmVlYnNkNS4zCmNvbmZpZ3VyZTozMjIxOiBjaGVja2luZyBo b3N0IHN5c3RlbSB0eXBlCmNvbmZpZ3VyZTozMjM1OiByZXN1bHQ6IGkzODYtcG9ydGJsZC1mcmVl YnNkNS4zCmNvbmZpZ3VyZTozMjQzOiBjaGVja2luZyBmb3IgZWdyZXAKY29uZmlndXJlOjMyNTM6 IHJlc3VsdDogZ3JlcCAtRQpjb25maWd1cmU6MzI2OTogY2hlY2tpbmcgZm9yIGxkIHVzZWQgYnkg Y2MKY29uZmlndXJlOjMzMzY6IHJlc3VsdDogL3Vzci9iaW4vbGQKY29uZmlndXJlOjMzNDU6IGNo ZWNraW5nIGlmIHRoZSBsaW5rZXIgKC91c3IvYmluL2xkKSBpcyBHTlUgbGQKY29uZmlndXJlOjMz NjA6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZTozMzY2OiBjaGVja2luZyBmb3IgQlNELWNvbXBhdGli bGUgbm0KY29uZmlndXJlOjM0MDg6IHJlc3VsdDogL3Vzci9iaW4vbm0gLUIKY29uZmlndXJlOjM0 MTM6IGNoZWNraW5nIHdoZXRoZXIgbG4gLXMgd29ya3MKY29uZmlndXJlOjM0MTc6IHJlc3VsdDog eWVzCmNvbmZpZ3VyZTozNTIwOiBjaGVja2luZyBmb3IgQysrIGNvbXBpbGVyIHZlcnNpb24KY29u ZmlndXJlOjM1MjM6IGMrKyAtLXZlcnNpb24gPC9kZXYvbnVsbCA+JjUKYysrIChHQ0MpIDMuNC4y IFtGcmVlQlNEXSAyMDA0MDcyOApDb3B5cmlnaHQgKEMpIDIwMDQgRnJlZSBTb2Z0d2FyZSBGb3Vu ZGF0aW9uLCBJbmMuClRoaXMgaXMgZnJlZSBzb2Z0d2FyZTsgc2VlIHRoZSBzb3VyY2UgZm9yIGNv cHlpbmcgY29uZGl0aW9ucy4gIFRoZXJlIGlzIE5PCndhcnJhbnR5OyBub3QgZXZlbiBmb3IgTUVS Q0hBTlRBQklMSVRZIG9yIEZJVE5FU1MgRk9SIEEgUEFSVElDVUxBUiBQVVJQT1NFLgoKY29uZmln dXJlOjM1MjY6ICQ/ID0gMApjb25maWd1cmU6MzUyODogYysrIC12IDwvZGV2L251bGwgPiY1ClVz aW5nIGJ1aWx0LWluIHNwZWNzLgpDb25maWd1cmVkIHdpdGg6IEZyZWVCU0QvaTM4NiBzeXN0ZW0g Y29tcGlsZXIKVGhyZWFkIG1vZGVsOiBwb3NpeApnY2MgdmVyc2lvbiAzLjQuMiBbRnJlZUJTRF0g MjAwNDA3MjgKY29uZmlndXJlOjM1MzE6ICQ/ID0gMApjb25maWd1cmU6MzUzMzogYysrIC1WIDwv ZGV2L251bGwgPiY1CmMrKzogYC1WJyBvcHRpb24gbXVzdCBoYXZlIGFyZ3VtZW50CmNvbmZpZ3Vy ZTozNTM2OiAkPyA9IDEKY29uZmlndXJlOjM1Mzk6IGNoZWNraW5nIHdoZXRoZXIgd2UgYXJlIHVz aW5nIHRoZSBHTlUgQysrIGNvbXBpbGVyCmNvbmZpZ3VyZTozNTYzOiBjKysgLWMgLU8gLXBpcGUg IGNvbmZ0ZXN0LmNjID4mNQpjb25maWd1cmU6MzU2OTogJD8gPSAwCmNvbmZpZ3VyZTozNTczOiB0 ZXN0IC16IAoJCQkgfHwgdGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1cmU6MzU3NjogJD8g PSAwCmNvbmZpZ3VyZTozNTc5OiB0ZXN0IC1zIGNvbmZ0ZXN0Lm8KY29uZmlndXJlOjM1ODI6ICQ/ ID0gMApjb25maWd1cmU6MzU5NTogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjM2MDE6IGNoZWNraW5n IHdoZXRoZXIgYysrIGFjY2VwdHMgLWcKY29uZmlndXJlOjM2MjI6IGMrKyAtYyAtZyAgY29uZnRl c3QuY2MgPiY1CmNvbmZpZ3VyZTozNjI4OiAkPyA9IDAKY29uZmlndXJlOjM2MzI6IHRlc3QgLXog CgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3VyZTozNjM1OiAkPyA9IDAKY29u ZmlndXJlOjM2Mzg6IHRlc3QgLXMgY29uZnRlc3Qubwpjb25maWd1cmU6MzY0MTogJD8gPSAwCmNv bmZpZ3VyZTozNjUyOiByZXN1bHQ6IHllcwpjb25maWd1cmU6MzY5NDogYysrIC1jIC1PIC1waXBl ICBjb25mdGVzdC5jYyA+JjUKY29uZmlndXJlOjM3MDA6ICQ/ID0gMApjb25maWd1cmU6MzcwNDog dGVzdCAteiAKCQkJIHx8IHRlc3QgISAtcyBjb25mdGVzdC5lcnIKY29uZmlndXJlOjM3MDc6ICQ/ ID0gMApjb25maWd1cmU6MzcxMDogdGVzdCAtcyBjb25mdGVzdC5vCmNvbmZpZ3VyZTozNzEzOiAk PyA9IDAKY29uZmlndXJlOjM3Mzk6IGMrKyAtYyAtTyAtcGlwZSAgY29uZnRlc3QuY2MgPiY1CmNv bmZ0ZXN0LmNjOiBJbiBmdW5jdGlvbiBgaW50IG1haW4oKSc6CmNvbmZ0ZXN0LmNjOjE1OiBlcnJv cjogYGV4aXQnIHVuZGVjbGFyZWQgKGZpcnN0IHVzZSB0aGlzIGZ1bmN0aW9uKQpjb25mdGVzdC5j YzoxNTogZXJyb3I6IChFYWNoIHVuZGVjbGFyZWQgaWRlbnRpZmllciBpcyByZXBvcnRlZCBvbmx5 IG9uY2UgZm9yIGVhY2ggZnVuY3Rpb24gaXQgYXBwZWFycyBpbi4pCmNvbmZpZ3VyZTozNzQ1OiAk PyA9IDEKY29uZmlndXJlOiBmYWlsZWQgcHJvZ3JhbSB3YXM6CnwgLyogY29uZmRlZnMuaC4gICov CnwgCnwgI2RlZmluZSBQQUNLQUdFX05BTUUgImxpYnRvb2wxNSIKfCAjZGVmaW5lIFBBQ0tBR0Vf VEFSTkFNRSAibGlidG9vbDE1Igp8ICNkZWZpbmUgUEFDS0FHRV9WRVJTSU9OICIxLjUuMTAiCnwg I2RlZmluZSBQQUNLQUdFX1NUUklORyAibGlidG9vbCAxLjUuMTAiCnwgI2RlZmluZSBQQUNLQUdF X0JVR1JFUE9SVCAiYnVnLWxpYnRvb2xAZ251Lm9yZyIKfCAjZGVmaW5lIFBBQ0tBR0UgImxpYnRv b2wxNSIKfCAjZGVmaW5lIFZFUlNJT04gIjEuNS4xMCIKfCAvKiBlbmQgY29uZmRlZnMuaC4gICov CnwgCnwgaW50CnwgbWFpbiAoKQp8IHsKfCBleGl0ICg0Mik7CnwgICA7CnwgICByZXR1cm4gMDsK fCB9CmNvbmZpZ3VyZTozNjk0OiBjKysgLWMgLU8gLXBpcGUgIGNvbmZ0ZXN0LmNjID4mNQpjb25m aWd1cmU6MzcwMDogJD8gPSAwCmNvbmZpZ3VyZTozNzA0OiB0ZXN0IC16IAoJCQkgfHwgdGVzdCAh IC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1cmU6MzcwNzogJD8gPSAwCmNvbmZpZ3VyZTozNzEwOiB0 ZXN0IC1zIGNvbmZ0ZXN0Lm8KY29uZmlndXJlOjM3MTM6ICQ/ID0gMApjb25maWd1cmU6MzczOTog YysrIC1jIC1PIC1waXBlICBjb25mdGVzdC5jYyA+JjUKY29uZmlndXJlOjM3NDU6ICQ/ID0gMApj b25maWd1cmU6Mzc0OTogdGVzdCAteiAKCQkJIHx8IHRlc3QgISAtcyBjb25mdGVzdC5lcnIKY29u ZmlndXJlOjM3NTI6ICQ/ID0gMApjb25maWd1cmU6Mzc1NTogdGVzdCAtcyBjb25mdGVzdC5vCmNv bmZpZ3VyZTozNzU4OiAkPyA9IDAKY29uZmlndXJlOjM3ODM6IGNoZWNraW5nIGRlcGVuZGVuY3kg c3R5bGUgb2YgYysrCmNvbmZpZ3VyZTozODczOiByZXN1bHQ6IG5vbmUKY29uZmlndXJlOjM5NTY6 IGNoZWNraW5nIGZvciBnNzcKY29uZmlndXJlOjM5ODU6IHJlc3VsdDogbm8KY29uZmlndXJlOjM5 NTY6IGNoZWNraW5nIGZvciBmNzcKY29uZmlndXJlOjM5NzI6IGZvdW5kIC91c3IvYmluL2Y3Nwpj b25maWd1cmU6Mzk4MjogcmVzdWx0OiBmNzcKY29uZmlndXJlOjM5OTc6IGNoZWNraW5nIGZvciBG b3J0cmFuIDc3IGNvbXBpbGVyIHZlcnNpb24KY29uZmlndXJlOjQwMDA6IGY3NyAtLXZlcnNpb24g PC9kZXYvbnVsbCA+JjUKR05VIEZvcnRyYW4gKEdDQykgMy40LjIgW0ZyZWVCU0RdIDIwMDQwNzI4 CkNvcHlyaWdodCAoQykgMjAwNCBGcmVlIFNvZnR3YXJlIEZvdW5kYXRpb24sIEluYy4KCkdOVSBG b3J0cmFuIGNvbWVzIHdpdGggTk8gV0FSUkFOVFksIHRvIHRoZSBleHRlbnQgcGVybWl0dGVkIGJ5 IGxhdy4KWW91IG1heSByZWRpc3RyaWJ1dGUgY29waWVzIG9mIEdOVSBGb3J0cmFuCnVuZGVyIHRo ZSB0ZXJtcyBvZiB0aGUgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UuCkZvciBtb3JlIGluZm9y bWF0aW9uIGFib3V0IHRoZXNlIG1hdHRlcnMsIHNlZSB0aGUgZmlsZSBuYW1lZCBDT1BZSU5HCm9y IHR5cGUgdGhlIGNvbW1hbmQgYGluZm8gLWYgZzc3IENvcHlpbmcnLgpjb25maWd1cmU6NDAwMzog JD8gPSAwCmNvbmZpZ3VyZTo0MDA1OiBmNzcgLXYgPC9kZXYvbnVsbCA+JjUKVXNpbmcgYnVpbHQt aW4gc3BlY3MuCkNvbmZpZ3VyZWQgd2l0aDogRnJlZUJTRC9pMzg2IHN5c3RlbSBjb21waWxlcgpU aHJlYWQgbW9kZWw6IHBvc2l4CmdjYyB2ZXJzaW9uIDMuNC4yIFtGcmVlQlNEXSAyMDA0MDcyOApj b25maWd1cmU6NDAwODogJD8gPSAwCmNvbmZpZ3VyZTo0MDEwOiBmNzcgLVYgPC9kZXYvbnVsbCA+ JjUKZjc3OiBgLVYnIG9wdGlvbiBtdXN0IGhhdmUgYXJndW1lbnQKY29uZmlndXJlOjQwMTM6ICQ/ ID0gMQpjb25maWd1cmU6NDAyMTogY2hlY2tpbmcgd2hldGhlciB3ZSBhcmUgdXNpbmcgdGhlIEdO VSBGb3J0cmFuIDc3IGNvbXBpbGVyCmNvbmZpZ3VyZTo0MDM1OiBmNzcgLWMgIGNvbmZ0ZXN0LkYg PiY1CmNvbmZpZ3VyZTo0MDQxOiAkPyA9IDAKY29uZmlndXJlOjQwNDU6IHRlc3QgLXogCgkJCSB8 fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3VyZTo0MDQ4OiAkPyA9IDAKY29uZmlndXJl OjQwNTE6IHRlc3QgLXMgY29uZnRlc3Qubwpjb25maWd1cmU6NDA1NDogJD8gPSAwCmNvbmZpZ3Vy ZTo0MDY3OiByZXN1bHQ6IHllcwpjb25maWd1cmU6NDA3MzogY2hlY2tpbmcgd2hldGhlciBmNzcg YWNjZXB0cyAtZwpjb25maWd1cmU6NDA4NTogZjc3IC1jIC1nIGNvbmZ0ZXN0LmYgPiY1CmNvbmZp Z3VyZTo0MDkxOiAkPyA9IDAKY29uZmlndXJlOjQwOTU6IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEg LXMgY29uZnRlc3QuZXJyCmNvbmZpZ3VyZTo0MDk4OiAkPyA9IDAKY29uZmlndXJlOjQxMDE6IHRl c3QgLXMgY29uZnRlc3Qubwpjb25maWd1cmU6NDEwNDogJD8gPSAwCmNvbmZpZ3VyZTo0MTE2OiBy ZXN1bHQ6IHllcwpjb25maWd1cmU6NDE5NzogY2hlY2tpbmcgZm9yIGdjagpjb25maWd1cmU6NDIy NDogcmVzdWx0OiBubwpjb25maWd1cmU6NDI5MTogY2hlY2tpbmcgZm9yIHdpbmRyZXMKY29uZmln dXJlOjQzMTg6IHJlc3VsdDogbm8KY29uZmlndXJlOjQ0MjM6IGNoZWNraW5nIGZvciAvdXNyL2Jp bi9sZCBvcHRpb24gdG8gcmVsb2FkIG9iamVjdCBmaWxlcwpjb25maWd1cmU6NDQzMDogcmVzdWx0 OiAtcgpjb25maWd1cmU6NDQ0ODogY2hlY2tpbmcgaG93IHRvIHJlY29nbmlzZSBkZXBlbmRlbnQg bGlicmFyaWVzCmNvbmZpZ3VyZTo0NjIwOiByZXN1bHQ6IHBhc3NfYWxsCmNvbmZpZ3VyZTo1MDc1 OiBjaGVja2luZyBob3cgdG8gcnVuIHRoZSBDIHByZXByb2Nlc3Nvcgpjb25maWd1cmU6NTExMDog Y2MgLUUgIGNvbmZ0ZXN0LmMKY29uZmlndXJlOjUxMTY6ICQ/ID0gMApjb25maWd1cmU6NTE0ODog Y2MgLUUgIGNvbmZ0ZXN0LmMKY29uZnRlc3QuYzoxNDoyODogYWNfbm9uZXhpc3RlbnQuaDogTm8g c3VjaCBmaWxlIG9yIGRpcmVjdG9yeQpjb25maWd1cmU6NTE1NDogJD8gPSAxCmNvbmZpZ3VyZTog ZmFpbGVkIHByb2dyYW0gd2FzOgp8IC8qIGNvbmZkZWZzLmguICAqLwp8IAp8ICNkZWZpbmUgUEFD S0FHRV9OQU1FICJsaWJ0b29sMTUiCnwgI2RlZmluZSBQQUNLQUdFX1RBUk5BTUUgImxpYnRvb2wx NSIKfCAjZGVmaW5lIFBBQ0tBR0VfVkVSU0lPTiAiMS41LjEwIgp8ICNkZWZpbmUgUEFDS0FHRV9T VFJJTkcgImxpYnRvb2wgMS41LjEwIgp8ICNkZWZpbmUgUEFDS0FHRV9CVUdSRVBPUlQgImJ1Zy1s aWJ0b29sQGdudS5vcmciCnwgI2RlZmluZSBQQUNLQUdFICJsaWJ0b29sMTUiCnwgI2RlZmluZSBW RVJTSU9OICIxLjUuMTAiCnwgI2lmZGVmIF9fY3BsdXNwbHVzCnwgZXh0ZXJuICJDIiB2b2lkIHN0 ZDo6ZXhpdCAoaW50KSB0aHJvdyAoKTsgdXNpbmcgc3RkOjpleGl0Owp8ICNlbmRpZgp8IC8qIGVu ZCBjb25mZGVmcy5oLiAgKi8KfCAjaW5jbHVkZSA8YWNfbm9uZXhpc3RlbnQuaD4KY29uZmlndXJl OjUxOTM6IHJlc3VsdDogY2MgLUUKY29uZmlndXJlOjUyMTc6IGNjIC1FICBjb25mdGVzdC5jCmNv bmZpZ3VyZTo1MjIzOiAkPyA9IDAKY29uZmlndXJlOjUyNTU6IGNjIC1FICBjb25mdGVzdC5jCmNv bmZ0ZXN0LmM6MTQ6Mjg6IGFjX25vbmV4aXN0ZW50Lmg6IE5vIHN1Y2ggZmlsZSBvciBkaXJlY3Rv cnkKY29uZmlndXJlOjUyNjE6ICQ/ID0gMQpjb25maWd1cmU6IGZhaWxlZCBwcm9ncmFtIHdhczoK fCAvKiBjb25mZGVmcy5oLiAgKi8KfCAKfCAjZGVmaW5lIFBBQ0tBR0VfTkFNRSAibGlidG9vbDE1 Igp8ICNkZWZpbmUgUEFDS0FHRV9UQVJOQU1FICJsaWJ0b29sMTUiCnwgI2RlZmluZSBQQUNLQUdF X1ZFUlNJT04gIjEuNS4xMCIKfCAjZGVmaW5lIFBBQ0tBR0VfU1RSSU5HICJsaWJ0b29sIDEuNS4x MCIKfCAjZGVmaW5lIFBBQ0tBR0VfQlVHUkVQT1JUICJidWctbGlidG9vbEBnbnUub3JnIgp8ICNk ZWZpbmUgUEFDS0FHRSAibGlidG9vbDE1Igp8ICNkZWZpbmUgVkVSU0lPTiAiMS41LjEwIgp8ICNp ZmRlZiBfX2NwbHVzcGx1cwp8IGV4dGVybiAiQyIgdm9pZCBzdGQ6OmV4aXQgKGludCkgdGhyb3cg KCk7IHVzaW5nIHN0ZDo6ZXhpdDsKfCAjZW5kaWYKfCAvKiBlbmQgY29uZmRlZnMuaC4gICovCnwg I2luY2x1ZGUgPGFjX25vbmV4aXN0ZW50Lmg+CmNvbmZpZ3VyZTo1MzA1OiBjaGVja2luZyBmb3Ig QU5TSSBDIGhlYWRlciBmaWxlcwpjb25maWd1cmU6NTMzMDogY2MgLWMgLU8gLXBpcGUgICBjb25m dGVzdC5jID4mNQpjb25maWd1cmU6NTMzNjogJD8gPSAwCmNvbmZpZ3VyZTo1MzQwOiB0ZXN0IC16 IAoJCQkgfHwgdGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1cmU6NTM0MzogJD8gPSAwCmNv bmZpZ3VyZTo1MzQ2OiB0ZXN0IC1zIGNvbmZ0ZXN0Lm8KY29uZmlndXJlOjUzNDk6ICQ/ID0gMApj b25maWd1cmU6NTQzODogY2MgLW8gY29uZnRlc3QgLU8gLXBpcGUgICAgY29uZnRlc3QuYyAgPiY1 CmNvbmZpZ3VyZTo1NDQxOiAkPyA9IDAKY29uZmlndXJlOjU0NDM6IC4vY29uZnRlc3QKY29uZmln dXJlOjU0NDY6ICQ/ID0gMApjb25maWd1cmU6NTQ2MTogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjU0 ODU6IGNoZWNraW5nIGZvciBzeXMvdHlwZXMuaApjb25maWd1cmU6NTUwMTogY2MgLWMgLU8gLXBp cGUgICBjb25mdGVzdC5jID4mNQpjb25maWd1cmU6NTUwNzogJD8gPSAwCmNvbmZpZ3VyZTo1NTEx OiB0ZXN0IC16IAoJCQkgfHwgdGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1cmU6NTUxNDog JD8gPSAwCmNvbmZpZ3VyZTo1NTE3OiB0ZXN0IC1zIGNvbmZ0ZXN0Lm8KY29uZmlndXJlOjU1MjA6 ICQ/ID0gMApjb25maWd1cmU6NTUzMTogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjU0ODU6IGNoZWNr aW5nIGZvciBzeXMvc3RhdC5oCmNvbmZpZ3VyZTo1NTAxOiBjYyAtYyAtTyAtcGlwZSAgIGNvbmZ0 ZXN0LmMgPiY1CmNvbmZpZ3VyZTo1NTA3OiAkPyA9IDAKY29uZmlndXJlOjU1MTE6IHRlc3QgLXog CgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3VyZTo1NTE0OiAkPyA9IDAKY29u ZmlndXJlOjU1MTc6IHRlc3QgLXMgY29uZnRlc3Qubwpjb25maWd1cmU6NTUyMDogJD8gPSAwCmNv bmZpZ3VyZTo1NTMxOiByZXN1bHQ6IHllcwpjb25maWd1cmU6NTQ4NTogY2hlY2tpbmcgZm9yIHN0 ZGxpYi5oCmNvbmZpZ3VyZTo1NTAxOiBjYyAtYyAtTyAtcGlwZSAgIGNvbmZ0ZXN0LmMgPiY1CmNv bmZpZ3VyZTo1NTA3OiAkPyA9IDAKY29uZmlndXJlOjU1MTE6IHRlc3QgLXogCgkJCSB8fCB0ZXN0 ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3VyZTo1NTE0OiAkPyA9IDAKY29uZmlndXJlOjU1MTc6 IHRlc3QgLXMgY29uZnRlc3Qubwpjb25maWd1cmU6NTUyMDogJD8gPSAwCmNvbmZpZ3VyZTo1NTMx OiByZXN1bHQ6IHllcwpjb25maWd1cmU6NTQ4NTogY2hlY2tpbmcgZm9yIHN0cmluZy5oCmNvbmZp Z3VyZTo1NTAxOiBjYyAtYyAtTyAtcGlwZSAgIGNvbmZ0ZXN0LmMgPiY1CmNvbmZpZ3VyZTo1NTA3 OiAkPyA9IDAKY29uZmlndXJlOjU1MTE6IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRl c3QuZXJyCmNvbmZpZ3VyZTo1NTE0OiAkPyA9IDAKY29uZmlndXJlOjU1MTc6IHRlc3QgLXMgY29u ZnRlc3Qubwpjb25maWd1cmU6NTUyMDogJD8gPSAwCmNvbmZpZ3VyZTo1NTMxOiByZXN1bHQ6IHll cwpjb25maWd1cmU6NTQ4NTogY2hlY2tpbmcgZm9yIG1lbW9yeS5oCmNvbmZpZ3VyZTo1NTAxOiBj YyAtYyAtTyAtcGlwZSAgIGNvbmZ0ZXN0LmMgPiY1CmNvbmZpZ3VyZTo1NTA3OiAkPyA9IDAKY29u ZmlndXJlOjU1MTE6IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZp Z3VyZTo1NTE0OiAkPyA9IDAKY29uZmlndXJlOjU1MTc6IHRlc3QgLXMgY29uZnRlc3Qubwpjb25m aWd1cmU6NTUyMDogJD8gPSAwCmNvbmZpZ3VyZTo1NTMxOiByZXN1bHQ6IHllcwpjb25maWd1cmU6 NTQ4NTogY2hlY2tpbmcgZm9yIHN0cmluZ3MuaApjb25maWd1cmU6NTUwMTogY2MgLWMgLU8gLXBp cGUgICBjb25mdGVzdC5jID4mNQpjb25maWd1cmU6NTUwNzogJD8gPSAwCmNvbmZpZ3VyZTo1NTEx OiB0ZXN0IC16IAoJCQkgfHwgdGVzdCAhIC1zIGNvbmZ0ZXN0LmVycgpjb25maWd1cmU6NTUxNDog JD8gPSAwCmNvbmZpZ3VyZTo1NTE3OiB0ZXN0IC1zIGNvbmZ0ZXN0Lm8KY29uZmlndXJlOjU1MjA6 ICQ/ID0gMApjb25maWd1cmU6NTUzMTogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjU0ODU6IGNoZWNr aW5nIGZvciBpbnR0eXBlcy5oCmNvbmZpZ3VyZTo1NTAxOiBjYyAtYyAtTyAtcGlwZSAgIGNvbmZ0 ZXN0LmMgPiY1CmNvbmZpZ3VyZTo1NTA3OiAkPyA9IDAKY29uZmlndXJlOjU1MTE6IHRlc3QgLXog CgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3VyZTo1NTE0OiAkPyA9IDAKY29u ZmlndXJlOjU1MTc6IHRlc3QgLXMgY29uZnRlc3Qubwpjb25maWd1cmU6NTUyMDogJD8gPSAwCmNv bmZpZ3VyZTo1NTMxOiByZXN1bHQ6IHllcwpjb25maWd1cmU6NTQ4NTogY2hlY2tpbmcgZm9yIHN0 ZGludC5oCmNvbmZpZ3VyZTo1NTAxOiBjYyAtYyAtTyAtcGlwZSAgIGNvbmZ0ZXN0LmMgPiY1CmNv bmZpZ3VyZTo1NTA3OiAkPyA9IDAKY29uZmlndXJlOjU1MTE6IHRlc3QgLXogCgkJCSB8fCB0ZXN0 ICEgLXMgY29uZnRlc3QuZXJyCmNvbmZpZ3VyZTo1NTE0OiAkPyA9IDAKY29uZmlndXJlOjU1MTc6 IHRlc3QgLXMgY29uZnRlc3Qubwpjb25maWd1cmU6NTUyMDogJD8gPSAwCmNvbmZpZ3VyZTo1NTMx OiByZXN1bHQ6IHllcwpjb25maWd1cmU6NTQ4NTogY2hlY2tpbmcgZm9yIHVuaXN0ZC5oCmNvbmZp Z3VyZTo1NTAxOiBjYyAtYyAtTyAtcGlwZSAgIGNvbmZ0ZXN0LmMgPiY1CmNvbmZpZ3VyZTo1NTA3 OiAkPyA9IDAKY29uZmlndXJlOjU1MTE6IHRlc3QgLXogCgkJCSB8fCB0ZXN0ICEgLXMgY29uZnRl c3QuZXJyCmNvbmZpZ3VyZTo1NTE0OiAkPyA9IDAKY29uZmlndXJlOjU1MTc6IHRlc3QgLXMgY29u ZnRlc3Qubwpjb25maWd1cmU6NTUyMDogJD8gPSAwCmNvbmZpZ3VyZTo1NTMxOiByZXN1bHQ6IHll cwpjb25maWd1cmU6NTU1NzogY2hlY2tpbmcgZGxmY24uaCB1c2FiaWxpdHkKY29uZmlndXJlOjU1 Njk6IGNjIC1jIC1PIC1waXBlICAgY29uZnRlc3QuYyA+JjUKY29uZmlndXJlOjU1NzU6ICQ/ID0g MApjb25maWd1cmU6NTU3OTogdGVzdCAteiAKCQkJIHx8IHRlc3QgISAtcyBjb25mdGVzdC5lcnIK Y29uZmlndXJlOjU1ODI6ICQ/ID0gMApjb25maWd1cmU6NTU4NTogdGVzdCAtcyBjb25mdGVzdC5v CmNvbmZpZ3VyZTo1NTg4OiAkPyA9IDAKY29uZmlndXJlOjU1OTg6IHJlc3VsdDogeWVzCmNvbmZp Z3VyZTo1NjAyOiBjaGVja2luZyBkbGZjbi5oIHByZXNlbmNlCmNvbmZpZ3VyZTo1NjEyOiBjYyAt RSAgY29uZnRlc3QuYwpjb25maWd1cmU6NTYxODogJD8gPSAwCmNvbmZpZ3VyZTo1NjM4OiByZXN1 bHQ6IHllcwpjb25maWd1cmU6NTY3MzogY2hlY2tpbmcgZm9yIGRsZmNuLmgKY29uZmlndXJlOjU2 ODA6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZTo1NzAzOiBjaGVja2luZyBob3cgdG8gcnVuIHRoZSBD KysgcHJlcHJvY2Vzc29yCmNvbmZpZ3VyZTo1NzM0OiBjKysgLUUgIGNvbmZ0ZXN0LmNjCmNvbmZp Z3VyZTo1NzQwOiAkPyA9IDAKY29uZmlndXJlOjU3NzI6IGMrKyAtRSAgY29uZnRlc3QuY2MKY29u ZnRlc3QuY2M6MjU6Mjg6IGFjX25vbmV4aXN0ZW50Lmg6IE5vIHN1Y2ggZmlsZSBvciBkaXJlY3Rv cnkKY29uZmlndXJlOjU3Nzg6ICQ/ID0gMQpjb25maWd1cmU6IGZhaWxlZCBwcm9ncmFtIHdhczoK fCAvKiBjb25mZGVmcy5oLiAgKi8KfCAKfCAjZGVmaW5lIFBBQ0tBR0VfTkFNRSAibGlidG9vbDE1 Igp8ICNkZWZpbmUgUEFDS0FHRV9UQVJOQU1FICJsaWJ0b29sMTUiCnwgI2RlZmluZSBQQUNLQUdF X1ZFUlNJT04gIjEuNS4xMCIKfCAjZGVmaW5lIFBBQ0tBR0VfU1RSSU5HICJsaWJ0b29sIDEuNS4x MCIKfCAjZGVmaW5lIFBBQ0tBR0VfQlVHUkVQT1JUICJidWctbGlidG9vbEBnbnUub3JnIgp8ICNk ZWZpbmUgUEFDS0FHRSAibGlidG9vbDE1Igp8ICNkZWZpbmUgVkVSU0lPTiAiMS41LjEwIgp8ICNp ZmRlZiBfX2NwbHVzcGx1cwp8IGV4dGVybiAiQyIgdm9pZCBzdGQ6OmV4aXQgKGludCkgdGhyb3cg KCk7IHVzaW5nIHN0ZDo6ZXhpdDsKfCAjZW5kaWYKfCAjZGVmaW5lIFNURENfSEVBREVSUyAxCnwg I2RlZmluZSBIQVZFX1NZU19UWVBFU19IIDEKfCAjZGVmaW5lIEhBVkVfU1lTX1NUQVRfSCAxCnwg I2RlZmluZSBIQVZFX1NURExJQl9IIDEKfCAjZGVmaW5lIEhBVkVfU1RSSU5HX0ggMQp8ICNkZWZp bmUgSEFWRV9NRU1PUllfSCAxCnwgI2RlZmluZSBIQVZFX1NUUklOR1NfSCAxCnwgI2RlZmluZSBI QVZFX0lOVFRZUEVTX0ggMQp8ICNkZWZpbmUgSEFWRV9TVERJTlRfSCAxCnwgI2RlZmluZSBIQVZF X1VOSVNURF9IIDEKfCAjZGVmaW5lIEhBVkVfRExGQ05fSCAxCnwgLyogZW5kIGNvbmZkZWZzLmgu ICAqLwp8ICNpbmNsdWRlIDxhY19ub25leGlzdGVudC5oPgpjb25maWd1cmU6NTgxNzogcmVzdWx0 OiBjKysgLUUKY29uZmlndXJlOjU4NDE6IGMrKyAtRSAgY29uZnRlc3QuY2MKY29uZmlndXJlOjU4 NDc6ICQ/ID0gMApjb25maWd1cmU6NTg3OTogYysrIC1FICBjb25mdGVzdC5jYwpjb25mdGVzdC5j YzoyNToyODogYWNfbm9uZXhpc3RlbnQuaDogTm8gc3VjaCBmaWxlIG9yIGRpcmVjdG9yeQpjb25m aWd1cmU6NTg4NTogJD8gPSAxCmNvbmZpZ3VyZTogZmFpbGVkIHByb2dyYW0gd2FzOgp8IC8qIGNv bmZkZWZzLmguICAqLwp8IAp8ICNkZWZpbmUgUEFDS0FHRV9OQU1FICJsaWJ0b29sMTUiCnwgI2Rl ZmluZSBQQUNLQUdFX1RBUk5BTUUgImxpYnRvb2wxNSIKfCAjZGVmaW5lIFBBQ0tBR0VfVkVSU0lP TiAiMS41LjEwIgp8ICNkZWZpbmUgUEFDS0FHRV9TVFJJTkcgImxpYnRvb2wgMS41LjEwIgp8ICNk ZWZpbmUgUEFDS0FHRV9CVUdSRVBPUlQgImJ1Zy1saWJ0b29sQGdudS5vcmciCnwgI2RlZmluZSBQ QUNLQUdFICJsaWJ0b29sMTUiCnwgI2RlZmluZSBWRVJTSU9OICIxLjUuMTAiCnwgI2lmZGVmIF9f Y3BsdXNwbHVzCnwgZXh0ZXJuICJDIiB2b2lkIHN0ZDo6ZXhpdCAoaW50KSB0aHJvdyAoKTsgdXNp bmcgc3RkOjpleGl0Owp8ICNlbmRpZgp8ICNkZWZpbmUgU1REQ19IRUFERVJTIDEKfCAjZGVmaW5l IEhBVkVfU1lTX1RZUEVTX0ggMQp8ICNkZWZpbmUgSEFWRV9TWVNfU1RBVF9IIDEKfCAjZGVmaW5l IEhBVkVfU1RETElCX0ggMQp8ICNkZWZpbmUgSEFWRV9TVFJJTkdfSCAxCnwgI2RlZmluZSBIQVZF X01FTU9SWV9IIDEKfCAjZGVmaW5lIEhBVkVfU1RSSU5HU19IIDEKfCAjZGVmaW5lIEhBVkVfSU5U VFlQRVNfSCAxCnwgI2RlZmluZSBIQVZFX1NURElOVF9IIDEKfCAjZGVmaW5lIEhBVkVfVU5JU1RE X0ggMQp8ICNkZWZpbmUgSEFWRV9ETEZDTl9IIDEKfCAvKiBlbmQgY29uZmRlZnMuaC4gICovCnwg I2luY2x1ZGUgPGFjX25vbmV4aXN0ZW50Lmg+CmNvbmZpZ3VyZTo1OTM2OiBjaGVja2luZyB0aGUg bWF4aW11bSBsZW5ndGggb2YgY29tbWFuZCBsaW5lIGFyZ3VtZW50cwpjb25maWd1cmU6NjAxNTog cmVzdWx0OiA2NTUzNgpjb25maWd1cmU6NjAyNjogY2hlY2tpbmcgY29tbWFuZCB0byBwYXJzZSAv dXNyL2Jpbi9ubSAtQiBvdXRwdXQgZnJvbSBjYyBvYmplY3QKY29uZmlndXJlOjYxMjI6IGMrKyAt YyAtTyAtcGlwZSAgY29uZnRlc3QuY2MgPiY1CmNvbmZpZ3VyZTo2MTI1OiAkPyA9IDAKY29uZmln dXJlOjYxMjk6IC91c3IvYmluL25tIC1CIGNvbmZ0ZXN0Lm8gXHwgc2VkIC1uIC1lICdzL14uKlsg CV1cKFtBQkNER0lSU1RXXVtBQkNER0lSU1RXXSpcKVsgCV1bIAldKlwoXClcKFtfQS1aYS16XVtf QS1aYS16MC05XSpcKSQvXDEgXDJcMyBcMy9wJyBcPiBjb25mdGVzdC5ubQpjb25maWd1cmU6NjEz MjogJD8gPSAwCmNvbmZpZ3VyZTo2MTg0OiBjKysgLW8gY29uZnRlc3QgLU8gLXBpcGUgICBjb25m dGVzdC5jYyBjb25mdHN0bS5vID4mNQpjb25maWd1cmU6NjE4NzogJD8gPSAwCmNvbmZpZ3VyZTo2 MjI1OiByZXN1bHQ6IG9rCmNvbmZpZ3VyZTo2MjI5OiBjaGVja2luZyBmb3Igb2JqZGlyCmNvbmZp Z3VyZTo2MjQ0OiByZXN1bHQ6IC5saWJzCmNvbmZpZ3VyZTo2MzM0OiBjaGVja2luZyBmb3IgYXIK Y29uZmlndXJlOjYzNTA6IGZvdW5kIC91c3IvYmluL2FyCmNvbmZpZ3VyZTo2MzYxOiByZXN1bHQ6 IGFyCmNvbmZpZ3VyZTo2NDE0OiBjaGVja2luZyBmb3IgcmFubGliCmNvbmZpZ3VyZTo2NDMwOiBm b3VuZCAvdXNyL2Jpbi9yYW5saWIKY29uZmlndXJlOjY0NDE6IHJlc3VsdDogcmFubGliCmNvbmZp Z3VyZTo2NDk0OiBjaGVja2luZyBmb3Igc3RyaXAKY29uZmlndXJlOjY1MTA6IGZvdW5kIC91c3Iv YmluL3N0cmlwCmNvbmZpZ3VyZTo2NTIxOiByZXN1bHQ6IHN0cmlwCmNvbmZpZ3VyZTo2Nzg1OiBj aGVja2luZyBpZiBjYyBzdGF0aWMgZmxhZyAgd29ya3MKY29uZmlndXJlOjY4MDg6IHJlc3VsdDog eWVzCmNvbmZpZ3VyZTo2ODMwOiBjaGVja2luZyBpZiBjYyBzdXBwb3J0cyAtZm5vLXJ0dGkgLWZu by1leGNlcHRpb25zCmNvbmZpZ3VyZTo2ODQ4OiBjYyAtYyAtTyAtcGlwZSAgIC1mbm8tcnR0aSAt Zm5vLWV4Y2VwdGlvbnMgY29uZnRlc3QuYyA+JjUKY2MxOiB3YXJuaW5nOiBjb21tYW5kIGxpbmUg b3B0aW9uICItZm5vLXJ0dGkiIGlzIHZhbGlkIGZvciBDKysvT2JqQysrIGJ1dCBub3QgZm9yIEMK Y29uZmlndXJlOjY4NTI6ICQ/ID0gMApjb25maWd1cmU6Njg2MzogcmVzdWx0OiBubwpjb25maWd1 cmU6Njg3ODogY2hlY2tpbmcgZm9yIGNjIG9wdGlvbiB0byBwcm9kdWNlIFBJQwpjb25maWd1cmU6 NzA2NTogcmVzdWx0OiAtZlBJQwpjb25maWd1cmU6NzA3MzogY2hlY2tpbmcgaWYgY2MgUElDIGZs YWcgLWZQSUMgd29ya3MKY29uZmlndXJlOjcwOTE6IGNjIC1jIC1PIC1waXBlICAgLWZQSUMgLURQ SUMgY29uZnRlc3QuYyA+JjUKY29uZmlndXJlOjcwOTU6ICQ/ID0gMApjb25maWd1cmU6NzEwNjog cmVzdWx0OiB5ZXMKY29uZmlndXJlOjcxMzA6IGNoZWNraW5nIGlmIGNjIHN1cHBvcnRzIC1jIC1v IGZpbGUubwpjb25maWd1cmU6NzE1MTogY2MgLWMgLU8gLXBpcGUgICAtbyBvdXQvY29uZnRlc3Qy Lm8gY29uZnRlc3QuYyA+JjUKY29uZmlndXJlOjcxNTU6ICQ/ID0gMApjb25maWd1cmU6NzE3NTog cmVzdWx0OiB5ZXMKY29uZmlndXJlOjcyMDE6IGNoZWNraW5nIHdoZXRoZXIgdGhlIGNjIGxpbmtl ciAoL3Vzci9iaW4vbGQpIHN1cHBvcnRzIHNoYXJlZCBsaWJyYXJpZXMKY29uZmlndXJlOjgwNTA6 IHJlc3VsdDogeWVzCmNvbmZpZ3VyZTo4MDc2OiBjaGVja2luZyB3aGV0aGVyIC1sYyBzaG91bGQg YmUgZXhwbGljaXRseSBsaW5rZWQgaW4KY29uZmlndXJlOjgwODE6IGNjIC1jIC1PIC1waXBlICAg Y29uZnRlc3QuYyA+JjUKY29uZmlndXJlOjgwODQ6ICQ/ID0gMApjb25maWd1cmU6ODA5ODogY2Mg LXNoYXJlZCBjb25mdGVzdC5vICAtdiAtV2wsLXNvbmFtZSAtV2wsY29uZnRlc3QgLW8gY29uZnRl c3QgMlw+XCYxIFx8IGdyZXAgIC1sYyAgXD4vZGV2L251bGwgMlw+XCYxCmNvbmZpZ3VyZTo4MTAx OiAkPyA9IDEKY29uZmlndXJlOjgxMTM6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZTo4MTIxOiBjaGVj a2luZyBkeW5hbWljIGxpbmtlciBjaGFyYWN0ZXJpc3RpY3MKY29uZmlndXJlOjg2NjE6IHJlc3Vs dDogZnJlZWJzZDUuMyBsZC5zbwpjb25maWd1cmU6ODY2NTogY2hlY2tpbmcgaG93IHRvIGhhcmRj b2RlIGxpYnJhcnkgcGF0aHMgaW50byBwcm9ncmFtcwpjb25maWd1cmU6ODY5MDogcmVzdWx0OiBp bW1lZGlhdGUKY29uZmlndXJlOjg3MDQ6IGNoZWNraW5nIHdoZXRoZXIgc3RyaXBwaW5nIGxpYnJh cmllcyBpcyBwb3NzaWJsZQpjb25maWd1cmU6ODcwOTogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjg4 MzU6IGNoZWNraW5nIGZvciBzaGxfbG9hZApjb25maWd1cmU6ODg5MjogY2MgLW8gY29uZnRlc3Qg LU8gLXBpcGUgICAgY29uZnRlc3QuYyAgPiY1Ci92YXIvdG1wLy9jYzgwT3NFRi5vKC50ZXh0KzB4 MTIpOiBJbiBmdW5jdGlvbiBgbWFpbic6CjogdW5kZWZpbmVkIHJlZmVyZW5jZSB0byBgc2hsX2xv YWQnCi92YXIvdG1wLy9jYzgwT3NFRi5vKC5kYXRhKzB4MCk6IHVuZGVmaW5lZCByZWZlcmVuY2Ug dG8gYHNobF9sb2FkJwpjb25maWd1cmU6ODg5ODogJD8gPSAxCmNvbmZpZ3VyZTogZmFpbGVkIHBy b2dyYW0gd2FzOgp8IC8qIGNvbmZkZWZzLmguICAqLwp8IAp8ICNkZWZpbmUgUEFDS0FHRV9OQU1F ICJsaWJ0b29sMTUiCnwgI2RlZmluZSBQQUNLQUdFX1RBUk5BTUUgImxpYnRvb2wxNSIKfCAjZGVm aW5lIFBBQ0tBR0VfVkVSU0lPTiAiMS41LjEwIgp8ICNkZWZpbmUgUEFDS0FHRV9TVFJJTkcgImxp YnRvb2wgMS41LjEwIgp8ICNkZWZpbmUgUEFDS0FHRV9CVUdSRVBPUlQgImJ1Zy1saWJ0b29sQGdu dS5vcmciCnwgI2RlZmluZSBQQUNLQUdFICJsaWJ0b29sMTUiCnwgI2RlZmluZSBWRVJTSU9OICIx LjUuMTAiCnwgI2lmZGVmIF9fY3BsdXNwbHVzCnwgZXh0ZXJuICJDIiB2b2lkIHN0ZDo6ZXhpdCAo aW50KSB0aHJvdyAoKTsgdXNpbmcgc3RkOjpleGl0Owp8ICNlbmRpZgp8ICNkZWZpbmUgU1REQ19I RUFERVJTIDEKfCAjZGVmaW5lIEhBVkVfU1lTX1RZUEVTX0ggMQp8ICNkZWZpbmUgSEFWRV9TWVNf U1RBVF9IIDEKfCAjZGVmaW5lIEhBVkVfU1RETElCX0ggMQp8ICNkZWZpbmUgSEFWRV9TVFJJTkdf SCAxCnwgI2RlZmluZSBIQVZFX01FTU9SWV9IIDEKfCAjZGVmaW5lIEhBVkVfU1RSSU5HU19IIDEK fCAjZGVmaW5lIEhBVkVfSU5UVFlQRVNfSCAxCnwgI2RlZmluZSBIQVZFX1NURElOVF9IIDEKfCAj ZGVmaW5lIEhBVkVfVU5JU1REX0ggMQp8ICNkZWZpbmUgSEFWRV9ETEZDTl9IIDEKfCAvKiBlbmQg Y29uZmRlZnMuaC4gICovCnwgLyogRGVmaW5lIHNobF9sb2FkIHRvIGFuIGlubm9jdW91cyB2YXJp YW50LCBpbiBjYXNlIDxsaW1pdHMuaD4gZGVjbGFyZXMgc2hsX2xvYWQuCnwgICAgRm9yIGV4YW1w bGUsIEhQLVVYIDExaSA8bGltaXRzLmg+IGRlY2xhcmVzIGdldHRpbWVvZmRheS4gICovCnwgI2Rl ZmluZSBzaGxfbG9hZCBpbm5vY3VvdXNfc2hsX2xvYWQKfCAKfCAvKiBTeXN0ZW0gaGVhZGVyIHRv IGRlZmluZSBfX3N0dWIgbWFjcm9zIGFuZCBob3BlZnVsbHkgZmV3IHByb3RvdHlwZXMsCnwgICAg IHdoaWNoIGNhbiBjb25mbGljdCB3aXRoIGNoYXIgc2hsX2xvYWQgKCk7IGJlbG93Lgp8ICAgICBQ cmVmZXIgPGxpbWl0cy5oPiB0byA8YXNzZXJ0Lmg+IGlmIF9fU1REQ19fIGlzIGRlZmluZWQsIHNp bmNlCnwgICAgIDxsaW1pdHMuaD4gZXhpc3RzIGV2ZW4gb24gZnJlZXN0YW5kaW5nIGNvbXBpbGVy cy4gICovCnwgCnwgI2lmZGVmIF9fU1REQ19fCnwgIyBpbmNsdWRlIDxsaW1pdHMuaD4KfCAjZWxz ZQp8ICMgaW5jbHVkZSA8YXNzZXJ0Lmg+CnwgI2VuZGlmCnwgCnwgI3VuZGVmIHNobF9sb2FkCnwg CnwgLyogT3ZlcnJpZGUgYW55IGdjYzIgaW50ZXJuYWwgcHJvdG90eXBlIHRvIGF2b2lkIGFuIGVy cm9yLiAgKi8KfCAjaWZkZWYgX19jcGx1c3BsdXMKfCBleHRlcm4gIkMiCnwgewp8ICNlbmRpZgp8 IC8qIFdlIHVzZSBjaGFyIGJlY2F1c2UgaW50IG1pZ2h0IG1hdGNoIHRoZSByZXR1cm4gdHlwZSBv ZiBhIGdjYzIKfCAgICBidWlsdGluIGFuZCB0aGVuIGl0cyBhcmd1bWVudCBwcm90b3R5cGUgd291 bGQgc3RpbGwgYXBwbHkuICAqLwp8IGNoYXIgc2hsX2xvYWQgKCk7CnwgLyogVGhlIEdOVSBDIGxp YnJhcnkgZGVmaW5lcyB0aGlzIGZvciBmdW5jdGlvbnMgd2hpY2ggaXQgaW1wbGVtZW50cwp8ICAg ICB0byBhbHdheXMgZmFpbCB3aXRoIEVOT1NZUy4gIFNvbWUgZnVuY3Rpb25zIGFyZSBhY3R1YWxs eSBuYW1lZAp8ICAgICBzb21ldGhpbmcgc3RhcnRpbmcgd2l0aCBfXyBhbmQgdGhlIG5vcm1hbCBu YW1lIGlzIGFuIGFsaWFzLiAgKi8KfCAjaWYgZGVmaW5lZCAoX19zdHViX3NobF9sb2FkKSB8fCBk ZWZpbmVkIChfX3N0dWJfX19zaGxfbG9hZCkKfCBjaG9rZSBtZQp8ICNlbHNlCnwgY2hhciAoKmYp ICgpID0gc2hsX2xvYWQ7CnwgI2VuZGlmCnwgI2lmZGVmIF9fY3BsdXNwbHVzCnwgfQp8ICNlbmRp Zgp8IAp8IGludAp8IG1haW4gKCkKfCB7CnwgcmV0dXJuIGYgIT0gc2hsX2xvYWQ7CnwgICA7Cnwg ICByZXR1cm4gMDsKfCB9CmNvbmZpZ3VyZTo4OTIzOiByZXN1bHQ6IG5vCmNvbmZpZ3VyZTo4OTI4 OiBjaGVja2luZyBmb3Igc2hsX2xvYWQgaW4gLWxkbGQKY29uZmlndXJlOjg5NTg6IGNjIC1vIGNv bmZ0ZXN0IC1PIC1waXBlICAgIGNvbmZ0ZXN0LmMgLWxkbGQgICA+JjUKL3Vzci9iaW4vbGQ6IGNh bm5vdCBmaW5kIC1sZGxkCmNvbmZpZ3VyZTo4OTY0OiAkPyA9IDEKY29uZmlndXJlOiBmYWlsZWQg cHJvZ3JhbSB3YXM6CnwgLyogY29uZmRlZnMuaC4gICovCnwgCnwgI2RlZmluZSBQQUNLQUdFX05B TUUgImxpYnRvb2wxNSIKfCAjZGVmaW5lIFBBQ0tBR0VfVEFSTkFNRSAibGlidG9vbDE1Igp8ICNk ZWZpbmUgUEFDS0FHRV9WRVJTSU9OICIxLjUuMTAiCnwgI2RlZmluZSBQQUNLQUdFX1NUUklORyAi bGlidG9vbCAxLjUuMTAiCnwgI2RlZmluZSBQQUNLQUdFX0JVR1JFUE9SVCAiYnVnLWxpYnRvb2xA Z251Lm9yZyIKfCAjZGVmaW5lIFBBQ0tBR0UgImxpYnRvb2wxNSIKfCAjZGVmaW5lIFZFUlNJT04g IjEuNS4xMCIKfCAjaWZkZWYgX19jcGx1c3BsdXMKfCBleHRlcm4gIkMiIHZvaWQgc3RkOjpleGl0 IChpbnQpIHRocm93ICgpOyB1c2luZyBzdGQ6OmV4aXQ7CnwgI2VuZGlmCnwgI2RlZmluZSBTVERD X0hFQURFUlMgMQp8ICNkZWZpbmUgSEFWRV9TWVNfVFlQRVNfSCAxCnwgI2RlZmluZSBIQVZFX1NZ U19TVEFUX0ggMQp8ICNkZWZpbmUgSEFWRV9TVERMSUJfSCAxCnwgI2RlZmluZSBIQVZFX1NUUklO R19IIDEKfCAjZGVmaW5lIEhBVkVfTUVNT1JZX0ggMQp8ICNkZWZpbmUgSEFWRV9TVFJJTkdTX0gg MQp8ICNkZWZpbmUgSEFWRV9JTlRUWVBFU19IIDEKfCAjZGVmaW5lIEhBVkVfU1RESU5UX0ggMQp8 ICNkZWZpbmUgSEFWRV9VTklTVERfSCAxCnwgI2RlZmluZSBIQVZFX0RMRkNOX0ggMQp8IC8qIGVu ZCBjb25mZGVmcy5oLiAgKi8KfCAKfCAvKiBPdmVycmlkZSBhbnkgZ2NjMiBpbnRlcm5hbCBwcm90 b3R5cGUgdG8gYXZvaWQgYW4gZXJyb3IuICAqLwp8ICNpZmRlZiBfX2NwbHVzcGx1cwp8IGV4dGVy biAiQyIKfCAjZW5kaWYKfCAvKiBXZSB1c2UgY2hhciBiZWNhdXNlIGludCBtaWdodCBtYXRjaCB0 aGUgcmV0dXJuIHR5cGUgb2YgYSBnY2MyCnwgICAgYnVpbHRpbiBhbmQgdGhlbiBpdHMgYXJndW1l bnQgcHJvdG90eXBlIHdvdWxkIHN0aWxsIGFwcGx5LiAgKi8KfCBjaGFyIHNobF9sb2FkICgpOwp8 IGludAp8IG1haW4gKCkKfCB7Cnwgc2hsX2xvYWQgKCk7CnwgICA7CnwgICByZXR1cm4gMDsKfCB9 CmNvbmZpZ3VyZTo4OTkwOiByZXN1bHQ6IG5vCmNvbmZpZ3VyZTo4OTk1OiBjaGVja2luZyBmb3Ig ZGxvcGVuCmNvbmZpZ3VyZTo5MDUyOiBjYyAtbyBjb25mdGVzdCAtTyAtcGlwZSAgICBjb25mdGVz dC5jICA+JjUKY29uZmlndXJlOjkwNTg6ICQ/ID0gMApjb25maWd1cmU6OTA2MjogdGVzdCAteiAK CQkJIHx8IHRlc3QgISAtcyBjb25mdGVzdC5lcnIKY29uZmlndXJlOjkwNjU6ICQ/ID0gMApjb25m aWd1cmU6OTA2ODogdGVzdCAtcyBjb25mdGVzdApjb25maWd1cmU6OTA3MTogJD8gPSAwCmNvbmZp Z3VyZTo5MDgzOiByZXN1bHQ6IHllcwpjb25maWd1cmU6OTMyNTogY2hlY2tpbmcgd2hldGhlciBh IHByb2dyYW0gY2FuIGRsb3BlbiBpdHNlbGYKY29uZmlndXJlOjkzOTc6IGNjIC1vIGNvbmZ0ZXN0 IC1PIC1waXBlICAgLURIQVZFX0RMRkNOX0ggIC1XbCwtLWV4cG9ydC1keW5hbWljIGNvbmZ0ZXN0 LmMgICA+JjUKY29uZmlndXJlOjk0MDA6ICQ/ID0gMApjb25maWd1cmU6OTQxODogcmVzdWx0OiB5 ZXMKY29uZmlndXJlOjk0MjM6IGNoZWNraW5nIHdoZXRoZXIgYSBzdGF0aWNhbGx5IGxpbmtlZCBw cm9ncmFtIGNhbiBkbG9wZW4gaXRzZWxmCmNvbmZpZ3VyZTo5NDk1OiBjYyAtbyBjb25mdGVzdCAt TyAtcGlwZSAgIC1ESEFWRV9ETEZDTl9IICAtV2wsLS1leHBvcnQtZHluYW1pYyAgY29uZnRlc3Qu YyAgID4mNQpjb25maWd1cmU6OTQ5ODogJD8gPSAwCmNvbmZpZ3VyZTo5NTE2OiByZXN1bHQ6IHll cwpjb25maWd1cmU6OTUzOTogY2hlY2tpbmcgaWYgbGlidG9vbCBzdXBwb3J0cyBzaGFyZWQgbGli cmFyaWVzCmNvbmZpZ3VyZTo5NTQxOiByZXN1bHQ6IHllcwpjb25maWd1cmU6OTU0NDogY2hlY2tp bmcgd2hldGhlciB0byBidWlsZCBzaGFyZWQgbGlicmFyaWVzCmNvbmZpZ3VyZTo5NTY1OiByZXN1 bHQ6IHllcwpjb25maWd1cmU6OTU2ODogY2hlY2tpbmcgd2hldGhlciB0byBidWlsZCBzdGF0aWMg bGlicmFyaWVzCmNvbmZpZ3VyZTo5NTcyOiByZXN1bHQ6IHllcwpjb25maWd1cmU6OTY2NDogY3Jl YXRpbmcgbGlidG9vbApjb25maWd1cmU6MTAyMTM6IGNoZWNraW5nIGZvciBsZCB1c2VkIGJ5IGMr Kwpjb25maWd1cmU6MTAyODA6IHJlc3VsdDogL3Vzci9iaW4vbGQKY29uZmlndXJlOjEwMjg5OiBj aGVja2luZyBpZiB0aGUgbGlua2VyICgvdXNyL2Jpbi9sZCkgaXMgR05VIGxkCmNvbmZpZ3VyZTox MDMwNDogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjEwMzU1OiBjaGVja2luZyB3aGV0aGVyIHRoZSBj KysgbGlua2VyICgvdXNyL2Jpbi9sZCkgc3VwcG9ydHMgc2hhcmVkIGxpYnJhcmllcwpjb25maWd1 cmU6MTEyMjI6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToxMTI0NDogYysrIC1jIC1PIC1waXBlICBj b25mdGVzdC5jYyA+JjUKY29uZmlndXJlOjExMjQ3OiAkPyA9IDAKY29uZmlndXJlOjExMzQzOiBj aGVja2luZyBmb3IgYysrIG9wdGlvbiB0byBwcm9kdWNlIFBJQwpjb25maWd1cmU6MTE2MDU6IHJl c3VsdDogLWZQSUMKY29uZmlndXJlOjExNjEzOiBjaGVja2luZyBpZiBjKysgUElDIGZsYWcgLWZQ SUMgd29ya3MKY29uZmlndXJlOjExNjMxOiBjKysgLWMgLU8gLXBpcGUgIC1mUElDIC1EUElDIGNv bmZ0ZXN0LmNjID4mNQpjb25maWd1cmU6MTE2MzU6ICQ/ID0gMApjb25maWd1cmU6MTE2NDY6IHJl c3VsdDogeWVzCmNvbmZpZ3VyZToxMTY3MDogY2hlY2tpbmcgaWYgYysrIHN1cHBvcnRzIC1jIC1v IGZpbGUubwpjb25maWd1cmU6MTE2OTE6IGMrKyAtYyAtTyAtcGlwZSAgLW8gb3V0L2NvbmZ0ZXN0 Mi5vIGNvbmZ0ZXN0LmNjID4mNQpjb25maWd1cmU6MTE2OTU6ICQ/ID0gMApjb25maWd1cmU6MTE3 MTU6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToxMTc0MTogY2hlY2tpbmcgd2hldGhlciB0aGUgYysr IGxpbmtlciAoL3Vzci9iaW4vbGQpIHN1cHBvcnRzIHNoYXJlZCBsaWJyYXJpZXMKY29uZmlndXJl OjExNzY2OiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTE4Mzc6IGNoZWNraW5nIGR5bmFtaWMgbGlu a2VyIGNoYXJhY3RlcmlzdGljcwpjb25maWd1cmU6MTIzNzc6IHJlc3VsdDogZnJlZWJzZDUuMyBs ZC5zbwpjb25maWd1cmU6MTIzODE6IGNoZWNraW5nIGhvdyB0byBoYXJkY29kZSBsaWJyYXJ5IHBh dGhzIGludG8gcHJvZ3JhbXMKY29uZmlndXJlOjEyNDA2OiByZXN1bHQ6IGltbWVkaWF0ZQpjb25m aWd1cmU6MTI0MjA6IGNoZWNraW5nIHdoZXRoZXIgc3RyaXBwaW5nIGxpYnJhcmllcyBpcyBwb3Nz aWJsZQpjb25maWd1cmU6MTI0MjU6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToxMjU1MTogY2hlY2tp bmcgZm9yIHNobF9sb2FkCmNvbmZpZ3VyZToxMjYzOTogcmVzdWx0OiBubwpjb25maWd1cmU6MTI2 NDQ6IGNoZWNraW5nIGZvciBzaGxfbG9hZCBpbiAtbGRsZApjb25maWd1cmU6MTI3MDY6IHJlc3Vs dDogbm8KY29uZmlndXJlOjEyNzExOiBjaGVja2luZyBmb3IgZGxvcGVuCmNvbmZpZ3VyZToxMjc5 OTogcmVzdWx0OiB5ZXMKY29uZmlndXJlOjEzMDQxOiBjaGVja2luZyB3aGV0aGVyIGEgcHJvZ3Jh bSBjYW4gZGxvcGVuIGl0c2VsZgpjb25maWd1cmU6MTMxMzQ6IHJlc3VsdDogeWVzCmNvbmZpZ3Vy ZToxMzEzOTogY2hlY2tpbmcgd2hldGhlciBhIHN0YXRpY2FsbHkgbGlua2VkIHByb2dyYW0gY2Fu IGRsb3BlbiBpdHNlbGYKY29uZmlndXJlOjEzMjMyOiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTM3 MzI6IGNoZWNraW5nIGlmIGxpYnRvb2wgc3VwcG9ydHMgc2hhcmVkIGxpYnJhcmllcwpjb25maWd1 cmU6MTM3MzQ6IHJlc3VsdDogeWVzCmNvbmZpZ3VyZToxMzczNzogY2hlY2tpbmcgd2hldGhlciB0 byBidWlsZCBzaGFyZWQgbGlicmFyaWVzCmNvbmZpZ3VyZToxMzc1NTogcmVzdWx0OiB5ZXMKY29u ZmlndXJlOjEzNzU4OiBjaGVja2luZyB3aGV0aGVyIHRvIGJ1aWxkIHN0YXRpYyBsaWJyYXJpZXMK Y29uZmlndXJlOjEzNzYyOiByZXN1bHQ6IHllcwpjb25maWd1cmU6MTM3NzQ6IGNoZWNraW5nIGZv ciBmNzcgb3B0aW9uIHRvIHByb2R1Y2UgUElDCmNvbmZpZ3VyZToxMzk2MTogcmVzdWx0OiAtZlBJ Qwpjb25maWd1cmU6MTM5Njk6IGNoZWNraW5nIGlmIGY3NyBQSUMgZmxhZyAtZlBJQyB3b3Jrcwpj b25maWd1cmU6MTM5ODc6IGY3NyAtYyAtZyAtTzIgLWZQSUMgY29uZnRlc3QuZiA+JjUKY29uZmln dXJlOjEzOTkxOiAkPyA9IDAKY29uZmlndXJlOjE0MDAyOiByZXN1bHQ6IHllcwpjb25maWd1cmU6 MTQwMjY6IGNoZWNraW5nIGlmIGY3NyBzdXBwb3J0cyAtYyAtbyBmaWxlLm8KY29uZmlndXJlOjE0 MDQ3OiBmNzcgLWMgLWcgLU8yIC1vIG91dC9jb25mdGVzdDIubyBjb25mdGVzdC5mID4mNQpjb25m aWd1cmU6MTQwNTE6ICQ/ID0gMApjb25maWd1cmU6MTQwNzE6IHJlc3VsdDogeWVzCmNvbmZpZ3Vy ZToxNDA5NzogY2hlY2tpbmcgd2hldGhlciB0aGUgZjc3IGxpbmtlciAoL3Vzci9iaW4vbGQpIHN1 cHBvcnRzIHNoYXJlZCBsaWJyYXJpZXMKY29uZmlndXJlOjE0OTI2OiByZXN1bHQ6IHllcwpjb25m aWd1cmU6MTQ5OTc6IGNoZWNraW5nIGR5bmFtaWMgbGlua2VyIGNoYXJhY3RlcmlzdGljcwpjb25m aWd1cmU6MTU1Mzc6IHJlc3VsdDogZnJlZWJzZDUuMyBsZC5zbwpjb25maWd1cmU6MTU1NDE6IGNo ZWNraW5nIGhvdyB0byBoYXJkY29kZSBsaWJyYXJ5IHBhdGhzIGludG8gcHJvZ3JhbXMKY29uZmln dXJlOjE1NTY2OiByZXN1bHQ6IGltbWVkaWF0ZQpjb25maWd1cmU6MTU1ODA6IGNoZWNraW5nIHdo ZXRoZXIgc3RyaXBwaW5nIGxpYnJhcmllcyBpcyBwb3NzaWJsZQpjb25maWd1cmU6MTU1ODU6IHJl c3VsdDogeWVzCmNvbmZpZ3VyZToxOTg3MjogY3JlYXRpbmcgLi9jb25maWcuc3RhdHVzCgojIyAt LS0tLS0tLS0tLS0tLS0tLS0tLS0tICMjCiMjIFJ1bm5pbmcgY29uZmlnLnN0YXR1cy4gIyMKIyMg LS0tLS0tLS0tLS0tLS0tLS0tLS0tLSAjIwoKVGhpcyBmaWxlIHdhcyBleHRlbmRlZCBieSBsaWJ0 b29sIGNvbmZpZy5zdGF0dXMgMS41LjEwLCB3aGljaCB3YXMKZ2VuZXJhdGVkIGJ5IEdOVSBBdXRv Y29uZiAyLjU5LiAgSW52b2NhdGlvbiBjb21tYW5kIGxpbmUgd2FzCgogIENPTkZJR19GSUxFUyAg ICA9IAogIENPTkZJR19IRUFERVJTICA9IAogIENPTkZJR19MSU5LUyAgICA9IAogIENPTkZJR19D T01NQU5EUyA9IAogICQgLi9jb25maWcuc3RhdHVzIAoKb24gYXJxdWl2b3MuZG9ja2ZvdXIuY29t LmJyCgpjb25maWcuc3RhdHVzOjIwNjU3OiBjcmVhdGluZyBNYWtlZmlsZQpjb25maWcuc3RhdHVz OjIwNjU3OiBjcmVhdGluZyBkb2MvTWFrZWZpbGUKY29uZmlnLnN0YXR1czoyMDY1NzogY3JlYXRp bmcgdGVzdHMvTWFrZWZpbGUKY29uZmlnLnN0YXR1czoyMDgzOTogZXhlY3V0aW5nIGRlcGZpbGVz IGNvbW1hbmRzCmNvbmZpZ3VyZToyMTAwNjogY29uZmlndXJpbmcgaW4gbGlibHRkbApjb25maWd1 cmU6MjExMjM6IHJ1bm5pbmcgL2Jpbi9zaCAnLi9jb25maWd1cmUnIC0tcHJlZml4PS91c3IvbG9j YWwgICctLWRpc2FibGUtbHRkbC1pbnN0YWxsJyAnLS1wcm9ncmFtLXN1ZmZpeD0xNScgJy0tcHJl Zml4PS91c3IvbG9jYWwnICctLWJ1aWxkPWkzODYtcG9ydGJsZC1mcmVlYnNkNS4zJyAnQ0ZMQUdT PS1PIC1waXBlICcgJ0NYWD1jKysnICdidWlsZF9hbGlhcz1pMzg2LXBvcnRibGQtZnJlZWJzZDUu MycgJ0NDPWNjJyAnQ1hYRkxBR1M9LU8gLXBpcGUnIC0tY2FjaGUtZmlsZT0vZGV2L251bGwgLS1z cmNkaXI9Lgpjb25maWd1cmU6MjExMjg6IGVycm9yOiAvYmluL3NoICcuL2NvbmZpZ3VyZScgZmFp bGVkIGZvciBsaWJsdGRsCgojIyAtLS0tLS0tLS0tLS0tLS0tICMjCiMjIENhY2hlIHZhcmlhYmxl cy4gIyMKIyMgLS0tLS0tLS0tLS0tLS0tLSAjIwoKbHRfbHRfY3Zfc3lzX2dsb2JhbF9zeW1ib2xf cGlwZT0nInNlZCAtbiAtZSAnXCcncy9eLipbIAldXFwoW0FCQ0RHSVJTVFddW0FCQ0RHSVJTVFdd KlxcKVsgCV1bIAldKlxcKFxcKVxcKFtfQS1aYS16XVtfQS1aYS16MC05XSpcXClcJC9cXDEgXFwy XFwzIFxcMy9wJ1wnJyInCmFjX2N2X3Byb2dfYWNfY3RfRjc3PWY3NwphbV9jdl9DQ19kZXBlbmRl bmNpZXNfY29tcGlsZXJfdHlwZT1ub25lCmFjX2N2X3Byb2dfQ1hYQ1BQPSdjKysgLUUnCmFjX2N2 X2Vudl9DWFhGTEFHU192YWx1ZT0nLU8gLXBpcGUnCmx0X2N2X3N5c19nbG9iYWxfc3ltYm9sX3Rv X2NkZWNsPSdzZWQgLW4gLWUgJ1wnJ3MvXi4gLiogXCguKlwpJC9leHRlcm4gaW50IFwxOy9wJ1wn JycKYWNfY3ZfZjc3X2NvbXBpbGVyX2dudT15ZXMKYWNfY3ZfZW52X0Y3N192YWx1ZT0KYWNfY3Zf aGVhZGVyX3N0ZGxpYl9oPXllcwpsdF9jdl9maWxlX21hZ2ljX2NtZD0nJE1BR0lDX0NNRCcKbHRf Y3ZfcHJvZ19nbnVfbGRjeHg9eWVzCmFjX2N2X2Z1bmNfZGxvcGVuPXllcwphY19jdl9wcm9nX2Nj X2c9eWVzCmFjX2N2X2Vudl9DWFhDUFBfc2V0PQphY19jdl9lbnZfTERGTEFHU19zZXQ9Cmx0X2N2 X3Byb2dfY29tcGlsZXJfY19vX0NYWD15ZXMKYWNfY3ZfZnVuY19zaGxfbG9hZD1ubwphY19jdl9w cm9nX2FjX2N0X0FSPWFyCmFjX2N2X2NfY29tcGlsZXJfZ251PXllcwphY19jdl9leGVleHQ9CmFj X2N2X2Vudl9DRkxBR1Nfc2V0PXNldApsdF9jdl9zeXNfZ2xvYmFsX3N5bWJvbF90b19jX25hbWVf YWRkcmVzcz0nc2VkIC1uIC1lICdcJydzL146IFwoW14gXSpcKSAkLyAge1wiXDFcIiwgKGx0X3B0 cikgMH0sL3AnXCcnIC1lICdcJydzL15bQkNERUdSU1RdIFwoW14gXSpcKSBcKFteIF0qXCkkLyAg eyJcMiIsIChsdF9wdHIpIFwmXDJ9LC9wJ1wnJycKYWNfY3ZfcHJvZ19hY19jdF9SQz1ubwpsdF9s dF9jdl9zeXNfZ2xvYmFsX3N5bWJvbF90b19jZGVjbD0nInNlZCAtbiAtZSAnXCcncy9eLiAuKiBc XCguKlxcKVwkL2V4dGVybiBpbnQgXFwxOy9wJ1wnJyInCmFjX2N2X2Vudl9GRkxBR1Nfc2V0PQps dF9jdl9zeXNfbWF4X2NtZF9sZW49NjU1MzYKYWNfY3ZfZW52X0NQUF92YWx1ZT0KYWNfY3ZfZW52 X0NQUEZMQUdTX3NldD0KbHRfY3ZfZGxvcGVuX3NlbGY9eWVzCmx0X2N2X2Rsb3Blbl9saWJzPQph Y19jdl9jeHhfY29tcGlsZXJfZ251PXllcwphY19jdl9lbnZfQ1hYX3NldD1zZXQKbHRfbHRfY3Zf cHJvZ19jb21waWxlcl9jX29fQ1hYPScieWVzIicKYWNfY3ZfZW52X2hvc3RfYWxpYXNfc2V0PQps dF9sdF9jdl9zeXNfZ2xvYmFsX3N5bWJvbF90b19jX25hbWVfYWRkcmVzcz0nInNlZCAtbiAtZSAn XCcncy9eOiBcXChbXiBdKlxcKSBcJC8gIHtcXFwiXFwxXFxcIiwgKGx0X3B0cikgMH0sL3AnXCcn IC1lICdcJydzL15bQkNERUdSU1RdIFxcKFteIF0qXFwpIFxcKFteIF0qXFwpXCQvICB7XCJcXDJc IiwgKGx0X3B0cikgXFwmXFwyfSwvcCdcJyciJwpsdF9jdl9kbG9wZW5fc2VsZl9zdGF0aWM9eWVz Cmx0X2N2X2xkX3JlbG9hZF9mbGFnPS1yCmx0X2N2X3Byb2dfZ251X2xkPXllcwphY19jdl9oZWFk ZXJfc3lzX3N0YXRfaD15ZXMKYWNfY3ZfZW52X2J1aWxkX2FsaWFzX3NldD1zZXQKYWNfY3ZfbGli X2RsZF9zaGxfbG9hZD1ubwpsdF9jdl9wcm9nX2NvbXBpbGVyX2Nfbz15ZXMKYWNfY3ZfcHJvZ19m NzdfZz15ZXMKYWNfY3ZfZW52X0NYWENQUF92YWx1ZT0KYWNfY3ZfZW52X0xERkxBR1NfdmFsdWU9 CmFjX2N2X2Vudl90YXJnZXRfYWxpYXNfc2V0PQphY19jdl9ob3N0X2FsaWFzPWkzODYtcG9ydGJs ZC1mcmVlYnNkNS4zCmFjX2N2X3Byb2dfY2Nfc3RkYz0KYWNfY3ZfZW52X0NGTEFHU192YWx1ZT0n LU8gLXBpcGUgJwphY19jdl9lbnZfQ0Nfc2V0PXNldApsdF9jdl9wcm9nX2NvbXBpbGVyX2Nfb19G Nzc9eWVzCmFjX2N2X2hlYWRlcl9zeXNfdHlwZXNfaD15ZXMKYWNfY3ZfaGVhZGVyX3N0ZGM9eWVz CmFjX2N2X2hlYWRlcl9zdHJpbmdzX2g9eWVzCmx0X2N2X3BhdGhfU0VEPS91c3IvYmluL3NlZAph Y19jdl9oZWFkZXJfc3RkaW50X2g9eWVzCmFjX2N2X2hlYWRlcl9pbnR0eXBlc19oPXllcwphY19j dl9wcm9nX2VncmVwPSdncmVwIC1FJwphY19jdl9wcm9nX21ha2VfbWFrZV9zZXQ9eWVzCmFjX2N2 X2Vudl9GRkxBR1NfdmFsdWU9Cmx0X2N2X3BhdGhfTEQ9L3Vzci9iaW4vbGQKbHRfY3ZfcHJvZ19j b21waWxlcl9ydHRpX2V4Y2VwdGlvbnM9bm8KYWNfY3ZfaGVhZGVyX3VuaXN0ZF9oPXllcwphY19j dl9oZWFkZXJfc3RyaW5nX2g9eWVzCmFjX2N2X2J1aWxkX2FsaWFzPWkzODYtcG9ydGJsZC1mcmVl YnNkNS4zCmFjX2N2X2Vudl9DUFBGTEFHU192YWx1ZT0KbHRfbHRfY3ZfcHJvZ19jb21waWxlcl9j X289JyJ5ZXMiJwphY19jdl9wcm9nX2FjX2N0X1JBTkxJQj1yYW5saWIKYWNfY3ZfaGVhZGVyX21l bW9yeV9oPXllcwphY19jdl9lbnZfQ1hYRkxBR1Nfc2V0PXNldAphY19jdl9lbnZfQ1hYX3ZhbHVl PWMrKwphY19jdl9wcm9nX2FjX2N0X1NUUklQPXN0cmlwCmFjX2N2X2hvc3Q9aTM4Ni1wb3J0Ymxk LWZyZWVic2Q1LjMKYWNfY3ZfZW52X0Y3N19zZXQ9CmFjX2N2X2Vudl9ob3N0X2FsaWFzX3ZhbHVl PQpsdF9sdF9jdl9wcm9nX2NvbXBpbGVyX2Nfb19GNzc9JyJ5ZXMiJwpsdF9jdl9vYmpkaXI9Lmxp YnMKYWNfY3ZfcHJvZ19jeHhfZz15ZXMKbHRfY3ZfZmlsZV9tYWdpY190ZXN0X2ZpbGU9CmFjX2N2 X3Byb2dfQ1BQPSdjYyAtRScKYW1fY3ZfQ1hYX2RlcGVuZGVuY2llc19jb21waWxlcl90eXBlPW5v bmUKYWNfY3ZfYnVpbGQ9aTM4Ni1wb3J0YmxkLWZyZWVic2Q1LjMKYWNfY3ZfcHJvZ19BV0s9bmF3 awphY19jdl9lbnZfYnVpbGRfYWxpYXNfdmFsdWU9aTM4Ni1wb3J0YmxkLWZyZWVic2Q1LjMKbHRf Y3Zfc3lzX2dsb2JhbF9zeW1ib2xfcGlwZT0nc2VkIC1uIC1lICdcJydzL14uKlsgCV1cKFtBQkNE R0lSU1RXXVtBQkNER0lSU1RXXSpcKVsgCV1bIAldKlwoXClcKFtfQS1aYS16XVtfQS1aYS16MC05 XSpcKSQvXDEgXDJcMyBcMy9wJ1wnJycKbHRfY3ZfZGVwbGlic19jaGVja19tZXRob2Q9cGFzc19h bGwKYWNfY3ZfcHJvZ19hY19jdF9HQ0o9bm8KYWNfY3ZfcHJvZ19hY19jdF9DQz1jYwpsdF9jdl9w YXRoX0xEQ1hYPS91c3IvYmluL2xkCmFjX2N2X2Vudl90YXJnZXRfYWxpYXNfdmFsdWU9CmFjX2N2 X2Vudl9DQ192YWx1ZT1jYwpsdF9jdl9wYXRoX05NPScvdXNyL2Jpbi9ubSAtQicKYWNfY3ZfZW52 X0NQUF9zZXQ9CmFjX2N2X2hlYWRlcl9kbGZjbl9oPXllcwpsdF9jdl9kbG9wZW49ZGxvcGVuCmFj X2N2X29iamV4dD1vCgojIyAtLS0tLS0tLS0tLS0tLS0tLSAjIwojIyBPdXRwdXQgdmFyaWFibGVz LiAjIwojIyAtLS0tLS0tLS0tLS0tLS0tLSAjIwoKQUNJTkNMVURFX000X0xJU1Q9Jy4vYWNpbmNs dWRlLm00IC4vY2RlbW8vYWNpbmNsdWRlLm00IC4vcGRlbW8vYWNpbmNsdWRlLm00IC4vZGVtby9h Y2luY2x1ZGUubTQgLi9kZXBkZW1vL2FjaW5jbHVkZS5tNCAuL21kZW1vL2FjaW5jbHVkZS5tNCAu L21kZW1vMi9hY2luY2x1ZGUubTQgLi90YWdkZW1vL2FjaW5jbHVkZS5tNCAuL2Y3N2RlbW8vYWNp bmNsdWRlLm00JwpBQ0xPQ0FMPScke1NIRUxMfSAvdXNyL3BvcnRzL2RldmVsL2xpYnRvb2wxNS93 b3JrL2xpYnRvb2wtMS41LjEwL21pc3NpbmcgLS1ydW4gYWNsb2NhbC0xLjknCkFNREVQQkFDS1NM QVNIPSdcJwpBTURFUF9GQUxTRT0nIycKQU1ERVBfVFJVRT0nJwpBTVRBUj0nJHtTSEVMTH0gL3Vz ci9wb3J0cy9kZXZlbC9saWJ0b29sMTUvd29yay9saWJ0b29sLTEuNS4xMC9taXNzaW5nIC0tcnVu IHRhcicKQVI9J2FyJwpBUz0nYXMnCkFVVE9DT05GPScke1NIRUxMfSAvdXNyL3BvcnRzL2RldmVs L2xpYnRvb2wxNS93b3JrL2xpYnRvb2wtMS41LjEwL21pc3NpbmcgLS1ydW4gYXV0b2NvbmYnCkFV VE9IRUFERVI9JyR7U0hFTEx9IC91c3IvcG9ydHMvZGV2ZWwvbGlidG9vbDE1L3dvcmsvbGlidG9v bC0xLjUuMTAvbWlzc2luZyAtLXJ1biBhdXRvaGVhZGVyJwpBVVRPTUFLRT0nJHtTSEVMTH0gL3Vz ci9wb3J0cy9kZXZlbC9saWJ0b29sMTUvd29yay9saWJ0b29sLTEuNS4xMC9taXNzaW5nIC0tcnVu IGF1dG9tYWtlLTEuOScKQVdLPSduYXdrJwpDQz0nY2MnCkNDREVQTU9ERT0nZGVwbW9kZT1ub25l JwpDRkxBR1M9Jy1PIC1waXBlICcKQ09ORl9TVUJESVJTPSdjZGVtbyBwZGVtbyBkZW1vIGRlcGRl bW8gbWRlbW8gbWRlbW8yIHRhZ2RlbW8gZjc3ZGVtbycKQ1BQPSdjYyAtRScKQ1BQRkxBR1M9JycK Q1hYPSdjKysnCkNYWENQUD0nYysrIC1FJwpDWFhERVBNT0RFPSdkZXBtb2RlPW5vbmUnCkNYWEZM QUdTPSctTyAtcGlwZScKQ1lHUEFUSF9XPSdlY2hvJwpERUZTPSctRFBBQ0tBR0VfTkFNRT1cImxp YnRvb2wxNVwiIC1EUEFDS0FHRV9UQVJOQU1FPVwibGlidG9vbDE1XCIgLURQQUNLQUdFX1ZFUlNJ T049XCIxLjUuMTBcIiAtRFBBQ0tBR0VfU1RSSU5HPVwibGlidG9vbFwgMS41LjEwXCIgLURQQUNL QUdFX0JVR1JFUE9SVD1cImJ1Zy1saWJ0b29sQGdudS5vcmdcIiAtRFBBQ0tBR0U9XCJsaWJ0b29s MTVcIiAtRFZFUlNJT049XCIxLjUuMTBcIiAtRFNURENfSEVBREVSUz0xIC1ESEFWRV9TWVNfVFlQ RVNfSD0xIC1ESEFWRV9TWVNfU1RBVF9IPTEgLURIQVZFX1NURExJQl9IPTEgLURIQVZFX1NUUklO R19IPTEgLURIQVZFX01FTU9SWV9IPTEgLURIQVZFX1NUUklOR1NfSD0xIC1ESEFWRV9JTlRUWVBF U19IPTEgLURIQVZFX1NURElOVF9IPTEgLURIQVZFX1VOSVNURF9IPTEgLURIQVZFX0RMRkNOX0g9 MSAnCkRFUERJUj0nLmRlcHMnCkRJU1RfTUFLRUZJTEVfTElTVD0nY2RlbW8vTWFrZWZpbGUgcGRl bW8vTWFrZWZpbGUgZGVtby9NYWtlZmlsZSBkZXBkZW1vL01ha2VmaWxlIG1kZW1vL01ha2VmaWxl IG1kZW1vMi9NYWtlZmlsZSB0YWdkZW1vL01ha2VmaWxlIGY3N2RlbW8vTWFrZWZpbGUgJwpETExU T09MPSdkbGx0b29sJwpFQ0hPPSdlY2hvJwpFQ0hPX0M9JycKRUNIT19OPSctbicKRUNIT19UPScn CkVHUkVQPSdncmVwIC1FJwpFWEVFWFQ9JycKRjc3PSdmNzcnCkZGTEFHUz0nLWcgLU8yJwpHQ0o9 J25vJwpHQ0pGTEFHUz0nLWcgLU8yJwpIQVZFX0NYWF9GQUxTRT0nIycKSEFWRV9DWFhfVFJVRT0n JwpIQVZFX0Y3N19GQUxTRT0nIycKSEFWRV9GNzdfVFJVRT0nJwpIQVZFX0dDSl9GQUxTRT0nJwpI QVZFX0dDSl9UUlVFPScjJwpIQVZFX1JDX0ZBTFNFPScnCkhBVkVfUkNfVFJVRT0nIycKSU5TVEFM TF9EQVRBPSdpbnN0YWxsICAtbyByb290IC1nIHdoZWVsIC1tIDQ0NCcKSU5TVEFMTF9QUk9HUkFN PSdpbnN0YWxsICAtcyAtbyByb290IC1nIHdoZWVsIC1tIDU1NScKSU5TVEFMTF9TQ1JJUFQ9J2lu c3RhbGwgIC1vIHJvb3QgLWcgd2hlZWwgLW0gNTU1JwpJTlNUQUxMX1NUUklQX1BST0dSQU09JyR7 U0hFTEx9ICQoaW5zdGFsbF9zaCkgLWMgLXMnCkxEPScvdXNyL2Jpbi9sZCcKTERGTEFHUz0nJwpM SUJPQkpTPScnCkxJQlM9JycKTElCVE9PTD0nJChTSEVMTCkgJCh0b3BfYnVpbGRkaXIpL2xpYnRv b2wnCkxOX1M9J2xuIC1zJwpMVExJQk9CSlM9JycKTUFLRUlORk89JyR7U0hFTEx9IC91c3IvcG9y dHMvZGV2ZWwvbGlidG9vbDE1L3dvcmsvbGlidG9vbC0xLjUuMTAvbWlzc2luZyAtLXJ1biBtYWtl aW5mbycKTk09Jy91c3IvYmluL25tIC1CJwpPQkpEVU1QPSdvYmpkdW1wJwpPQkpFWFQ9J28nClBB Q0tBR0U9J2xpYnRvb2wxNScKUEFDS0FHRV9CVUdSRVBPUlQ9J2J1Zy1saWJ0b29sQGdudS5vcmcn ClBBQ0tBR0VfTkFNRT0nbGlidG9vbDE1JwpQQUNLQUdFX1NUUklORz0nbGlidG9vbCAxLjUuMTAn ClBBQ0tBR0VfVEFSTkFNRT0nbGlidG9vbDE1JwpQQUNLQUdFX1ZFUlNJT049JzEuNS4xMCcKUEFU SF9TRVBBUkFUT1I9JzonClJBTkxJQj0ncmFubGliJwpSQz0nbm8nClNFVF9NQUtFPScnClNIRUxM PScvYmluL3NoJwpTVFJJUD0nc3RyaXAnClRJTUVTVEFNUD0nJwpWRVJTSU9OPScxLjUuMTAnCmFj X2N0X0FSPSdhcicKYWNfY3RfQVM9JycKYWNfY3RfQ0M9J2NjJwphY19jdF9DWFg9JycKYWNfY3Rf RExMVE9PTD0nJwphY19jdF9GNzc9J2Y3NycKYWNfY3RfR0NKPSdubycKYWNfY3RfT0JKRFVNUD0n JwphY19jdF9SQU5MSUI9J3JhbmxpYicKYWNfY3RfUkM9J25vJwphY19jdF9TVFJJUD0nc3RyaXAn CmFjbG9jYWxkaXI9JyR7ZGF0YWRpcn0vYWNsb2NhbCcKYW1fX2Zhc3RkZXBDQ19GQUxTRT0nJwph bV9fZmFzdGRlcENDX1RSVUU9JyMnCmFtX19mYXN0ZGVwQ1hYX0ZBTFNFPScnCmFtX19mYXN0ZGVw Q1hYX1RSVUU9JyMnCmFtX19pbmNsdWRlPSdpbmNsdWRlJwphbV9fbGVhZGluZ19kb3Q9Jy4nCmFt X19xdW90ZT0nJwphbV9fdGFyPScke0FNVEFSfSBjaG9mIC0gIiQkdGFyZGlyIicKYW1fX3VudGFy PScke0FNVEFSfSB4ZiAtJwpiaW5kaXI9JyR7ZXhlY19wcmVmaXh9L2JpbicKYnVpbGQ9J2kzODYt cG9ydGJsZC1mcmVlYnNkNS4zJwpidWlsZF9hbGlhcz0naTM4Ni1wb3J0YmxkLWZyZWVic2Q1LjMn CmJ1aWxkX2NwdT0naTM4NicKYnVpbGRfb3M9J2ZyZWVic2Q1LjMnCmJ1aWxkX3ZlbmRvcj0ncG9y dGJsZCcKZGF0YWRpcj0nJHtwcmVmaXh9L3NoYXJlJwpleGVjX3ByZWZpeD0nJHtwcmVmaXh9Jwpo b3N0PSdpMzg2LXBvcnRibGQtZnJlZWJzZDUuMycKaG9zdF9hbGlhcz0nJwpob3N0X2NwdT0naTM4 NicKaG9zdF9vcz0nZnJlZWJzZDUuMycKaG9zdF92ZW5kb3I9J3BvcnRibGQnCmluY2x1ZGVkaXI9 JyR7cHJlZml4fS9pbmNsdWRlJwppbmZvZGlyPScke3ByZWZpeH0vaW5mbycKaW5zdGFsbF9zaD0n L3Vzci9wb3J0cy9kZXZlbC9saWJ0b29sMTUvd29yay9saWJ0b29sLTEuNS4xMC9pbnN0YWxsLXNo JwpsaWJkaXI9JyR7ZXhlY19wcmVmaXh9L2xpYicKbGliZXhlY2Rpcj0nJHtleGVjX3ByZWZpeH0v bGliZXhlYycKbG9jYWxzdGF0ZWRpcj0nJHtwcmVmaXh9L3ZhcicKbWFuZGlyPScke3ByZWZpeH0v bWFuJwpta2Rpcl9wPSckKGluc3RhbGxfc2gpIC1kJwpvbGRpbmNsdWRlZGlyPScvdXNyL2luY2x1 ZGUnCnBrZ2RhdGFkaXI9JyR7ZGF0YWRpcn0vbGlidG9vbDE1JwpwcmVmaXg9Jy91c3IvbG9jYWwn CnByb2dyYW1fdHJhbnNmb3JtX25hbWU9J3MsJCQsMTUsJwpzYmluZGlyPScke2V4ZWNfcHJlZml4 fS9zYmluJwpzaGFyZWRzdGF0ZWRpcj0nJHtwcmVmaXh9L2NvbScKc3ViZGlycz0nIGxpYmx0ZGwn CnN5c2NvbmZkaXI9JyR7cHJlZml4fS9ldGMnCnRhcmdldF9hbGlhcz0nJwoKY29uZmlndXJlOiBl eGl0IDEK ---MOQ11146134306eaa337b0af876dc4f263f707de93f78 Content-Type: text/plain; name="make-samba3.txt" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="make-samba3.txt" Y2hlY2tpbmcgd2hldGhlciBzdHJpcHBpbmcgbGlicmFyaWVzIGlzIHBvc3NpYmxlLi4uIHllcw0K Y2hlY2tpbmcgZm9yIHNobF9sb2FkLi4uIChjYWNoZWQpIG5vDQpjaGVja2luZyBmb3Igc2hsX2xv YWQgaW4gLWxkbGQuLi4gKGNhY2hlZCkgbm8NCmNoZWNraW5nIGZvciBkbG9wZW4uLi4gKGNhY2hl ZCkgeWVzDQpjaGVja2luZyB3aGV0aGVyIGEgcHJvZ3JhbSBjYW4gZGxvcGVuIGl0c2VsZi4uLiAo Y2FjaGVkKSB5ZXMNCmNoZWNraW5nIHdoZXRoZXIgYSBzdGF0aWNhbGx5IGxpbmtlZCBwcm9ncmFt IGNhbiBkbG9wZW4gaXRzZWxmLi4uIChjYWNoZWQpIHllcw0KYXBwZW5kaW5nIGNvbmZpZ3VyYXRp b24gdGFnICJGNzciIHRvIGxpYnRvb2wNCmNoZWNraW5nIGlmIGxpYnRvb2wgc3VwcG9ydHMgc2hh cmVkIGxpYnJhcmllcy4uLiB5ZXMNCmNoZWNraW5nIHdoZXRoZXIgdG8gYnVpbGQgc2hhcmVkIGxp YnJhcmllcy4uLiB5ZXMNCmNoZWNraW5nIHdoZXRoZXIgdG8gYnVpbGQgc3RhdGljIGxpYnJhcmll cy4uLiB5ZXMNCmNoZWNraW5nIGZvciBmNzcgb3B0aW9uIHRvIHByb2R1Y2UgUElDLi4uIC1mUElD DQpjaGVja2luZyBpZiBmNzcgUElDIGZsYWcgLWZQSUMgd29ya3MuLi4geWVzDQpjaGVja2luZyBp ZiBmNzcgc3VwcG9ydHMgLWMgLW8gZmlsZS5vLi4uIHllcw0KY2hlY2tpbmcgd2hldGhlciB0aGUg Zjc3IGxpbmtlciAoL3Vzci9iaW4vbGQpIHN1cHBvcnRzIHNoYXJlZCBsaWJyYXJpZXMuLi4geWVz DQpjaGVja2luZyBkeW5hbWljIGxpbmtlciBjaGFyYWN0ZXJpc3RpY3MuLi4gZnJlZWJzZDUuMyBs ZC5zbw0KY2hlY2tpbmcgaG93IHRvIGhhcmRjb2RlIGxpYnJhcnkgcGF0aHMgaW50byBwcm9ncmFt cy4uLiBpbW1lZGlhdGUNCmNoZWNraW5nIHdoZXRoZXIgc3RyaXBwaW5nIGxpYnJhcmllcyBpcyBw b3NzaWJsZS4uLiB5ZXMNCmFwcGVuZGluZyBjb25maWd1cmF0aW9uIHRhZyAiR0NKIiB0byBsaWJ0 b29sDQpjb25maWd1cmU6IGNyZWF0aW5nIC4vY29uZmlnLnN0YXR1cw0KY29uZmlnLnN0YXR1czog Y3JlYXRpbmcgTWFrZWZpbGUNCmNvbmZpZy5zdGF0dXM6IGNyZWF0aW5nIGRvYy9NYWtlZmlsZQ0K Y29uZmlnLnN0YXR1czogY3JlYXRpbmcgdGVzdHMvTWFrZWZpbGUNCmNvbmZpZy5zdGF0dXM6IGV4 ZWN1dGluZyBkZXBmaWxlcyBjb21tYW5kcw0KY29uZmlndXJlOiBjb25maWd1cmluZyBpbiBsaWJs dGRsDQpjb25maWd1cmU6IHJ1bm5pbmcgL2Jpbi9zaCAnLi9jb25maWd1cmUnIC0tcHJlZml4PS91 c3IvbG9jYWwgICctLWRpc2FibGUtbHRkbC1pbnN0YWxsJyAnLS1wcm9ncmFtLXN1ZmZpeD0xNScg Jy0tcHJlZml4PS91c3IvbG9jYWwnICctLWJ1aWxkPWkzODYtcG9ydGJsZC1mcmVlYnNkNS4zJyAn Q0ZMQUdTPS1PIC1waXBlICcgJ0NYWD1jKysnICdidWlsZF9hbGlhcz1pMzg2LXBvcnRibGQtZnJl ZWJzZDUuMycgJ0NDPWNjJyAnQ1hYRkxBR1M9LU8gLXBpcGUnIC0tY2FjaGUtZmlsZT0vZGV2L251 bGwgLS1zcmNkaXI9Lg0KY2hlY2tpbmcgZm9yIGEgQlNELWNvbXBhdGlibGUgaW5zdGFsbC4uLiAv dXNyL2Jpbi9pbnN0YWxsIC1jIC1vIHJvb3QgLWcgd2hlZWwNCmNoZWNraW5nIHdoZXRoZXIgYnVp bGQgZW52aXJvbm1lbnQgaXMgc2FuZS4uLiBjb25maWd1cmU6IGVycm9yOiBuZXdseSBjcmVhdGVk IGZpbGUgaXMgb2xkZXIgdGhhbiBkaXN0cmlidXRlZCBmaWxlcyENCkNoZWNrIHlvdXIgc3lzdGVt IGNsb2NrDQpjb25maWd1cmU6IGVycm9yOiAvYmluL3NoICcuL2NvbmZpZ3VyZScgZmFpbGVkIGZv ciBsaWJsdGRsDQo9PT0+ICBTY3JpcHQgImNvbmZpZ3VyZSIgZmFpbGVkIHVuZXhwZWN0ZWRseS4N ClBsZWFzZSByZXBvcnQgdGhlIHByb2JsZW0gdG8gcG9ydHNARnJlZUJTRC5vcmcgW21haW50YWlu ZXJdIGFuZCBhdHRhY2ggdGhlDQoiL3Vzci9wb3J0cy9kZXZlbC9saWJ0b29sMTUvd29yay9saWJ0 b29sLTEuNS4xMC9jb25maWcubG9nIiBpbmNsdWRpbmcgdGhlDQpvdXRwdXQgb2YgdGhlIGZhaWx1 cmUgb2YgeW91ciBtYWtlIGNvbW1hbmQuIEFsc28sIGl0IG1pZ2h0IGJlIGEgZ29vZCBpZGVhIHRv DQpwcm92aWRlIGFuIG92ZXJ2aWV3IG9mIGFsbCBwYWNrYWdlcyBpbnN0YWxsZWQgb24geW91ciBz eXN0ZW0gKGUuZy4gYW4gYGxzDQovdmFyL2RiL3BrZ2ApLg0KKioqIEVycm9yIGNvZGUgMQ0KDQpT dG9wIGluIC91c3IvcG9ydHMvZGV2ZWwvbGlidG9vbDE1Lg0KKioqIEVycm9yIGNvZGUgMQ0KDQpT dG9wIGluIC91c3IvcG9ydHMvZGV2ZWwvZ2V0dGV4dC4NCioqKiBFcnJvciBjb2RlIDENCg0KU3Rv cCBpbiAvdXNyL3BvcnRzL2RldmVsL3A1LUxvY2FsZS1nZXR0ZXh0Lg0KKioqIEVycm9yIGNvZGUg MQ0KDQpTdG9wIGluIC91c3IvcG9ydHMvbWlzYy9oZWxwMm1hbi4NCioqKiBFcnJvciBjb2RlIDEN Cg0KU3RvcCBpbiAvdXNyL3BvcnRzL2RldmVsL2F1dG9jb25mMjU5Lg0KKioqIEVycm9yIGNvZGUg MQ0KDQpTdG9wIGluIC91c3IvcG9ydHMvbmV0L3NhbWJhMy4NCg== ---MOQ11146134306eaa337b0af876dc4f263f707de93f78-- From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 14:53:32 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10EF916A4CF for ; Wed, 27 Apr 2005 14:53:32 +0000 (GMT) Received: from mail.aaq.bolignet.dk (cpe.atm2-0-1021060.0x50a5f3f2.boanxx12.customer.tele.dk [80.165.243.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45B3643D5E for ; Wed, 27 Apr 2005 14:53:31 +0000 (GMT) (envelope-from freebsd.nospam@mekanix.dk) Received: from desktop.home (unknown [10.10.3.10]) by mail.aaq.bolignet.dk (Postfix) with ESMTP id B5F8D205F9F for ; Wed, 27 Apr 2005 16:34:04 +0200 (CEST) From: Bjarne Wichmann Petersen To: freebsd-ports@freebsd.org Date: Wed, 27 Apr 2005 16:53:35 +0200 User-Agent: KMail/1.7.2 MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200504271653.35873.freebsd.nospam@mekanix.dk> Subject: Upgrading packages using binaries X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 14:53:32 -0000 Hi I'm having some trouble upgrading my packages; haven't done so since february. I know the "correct" way to update packages using binaries is to cvsup your portstree and run portupgrade -RPP, but I don't get far with this. The problem as far as I can tell is, that the portstree and ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-5-stable/All/ aren't in sync. portupgrade does have a fallback and will install the latest version vailable from ../Latest/ and this is most often enough. This should in theory just give me the latest binaries available at the FreeBSD mirrors. But it isn't "foolproof". An example is pkgconf, the latest version on the mirrors is 0.15 while many ports *requires* 0.17.2. So portupgrade quits. My question: is there any way to upgrade packages to the latest available version on the mirrors and/or a way to cvsup the portstree to the version the binary packages have been built from? From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 15:55:48 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9793516A4CE for ; Wed, 27 Apr 2005 15:55:48 +0000 (GMT) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id 375F643D39 for ; Wed, 27 Apr 2005 15:55:48 +0000 (GMT) (envelope-from swhetzel@gmail.com) Received: by wproxy.gmail.com with SMTP id 69so308498wri for ; Wed, 27 Apr 2005 08:55:47 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=kSVXZcnf9QGMZ207pDFwbx16iuq7E4a38il8o9yRHqKTpjSOgvZQw4RurXksFvaHfhHtby8KpXAhSlCSOawLQ/JnYO0YeJ4KFENlqlZqov4i0bAgt7P9Z/LbMI9pB6E3O5wTfZXsSd8WjUPDbImwtwYx9l3F6AvLhQxS4FOQHXs= Received: by 10.54.125.14 with SMTP id x14mr229162wrc; Wed, 27 Apr 2005 08:55:47 -0700 (PDT) Received: by 10.54.29.77 with HTTP; Wed, 27 Apr 2005 08:55:46 -0700 (PDT) Message-ID: <790a9fff05042708553df29617@mail.gmail.com> Date: Wed, 27 Apr 2005 10:55:46 -0500 From: Scot Hetzel To: Augusto Cesar Castoldi In-Reply-To: <1114613430.426fa6b6f1e16@webmail.dock.com.br> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <1114613430.426fa6b6f1e16@webmail.dock.com.br> cc: ports@freebsd.org Subject: Re: samba3 error X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Scot Hetzel List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 15:55:48 -0000 On 4/27/05, Augusto Cesar Castoldi wrote: > I just installed the freebsd system, update de ports database: >=20 > #cvsup -L 2 /root/ports-supfile >=20 > cd /usr/ports/net/samba3 > make >=20 > and receive the errors attached >=20 > can you help? >=20 from your make-samba3.txt file: checking whether build environment is sane... configure: error: newly created file is older than distributed files! Check your system clock I would suggest that you check your system clock. ;-) Scot From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 15:59:14 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B0AA16A4D0 for ; Wed, 27 Apr 2005 15:59:14 +0000 (GMT) Received: from one.valcatohosting.com (one.valcatohosting.com [67.19.219.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0ABD43D39 for ; Wed, 27 Apr 2005 15:59:13 +0000 (GMT) (envelope-from adam@moosoft.net) Received: from cpc3-nthc1-4-0-cust42.nrth.cable.ntl.com ([213.107.150.42] helo=[192.168.1.202]) by one.valcatohosting.com with esmtpa (Exim 4.43) id 1DQowI-0005tJ-F9; Wed, 27 Apr 2005 16:59:02 +0100 Mime-Version: 1.0 (Apple Message framework v622) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <726299f3b6dc17bfbf59218b0e2ad5e7@moosoft.net> Content-Transfer-Encoding: 7bit From: Adam McMaster Date: Wed, 27 Apr 2005 16:59:22 +0100 To: tux@pinguru.net X-Mailer: Apple Mail (2.622) X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - one.valcatohosting.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - moosoft.net X-Source: X-Source-Args: X-Source-Dir: cc: ports@FreeBSD.org Subject: FreeBSD Port: mediawiki-1.3.11_1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 15:59:14 -0000 Hello, After installing mediawiki, the installation script complained that php-xml was not installed. Everything worked after I installed php5-xml myself, but it would have been useful for it to be installed automatically. Thanks. -- Adam McMaster From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 17:30:23 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBD8116A51F; Wed, 27 Apr 2005 17:30:16 +0000 (GMT) Received: from ppsw-7.csi.cam.ac.uk (ppsw-7.csi.cam.ac.uk [131.111.8.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id B194743D60; Wed, 27 Apr 2005 17:30:15 +0000 (GMT) (envelope-from rtb27@cam.ac.uk) X-Cam-SpamDetails: Not scanned X-Cam-AntiVirus: No virus found X-Cam-ScannerInfo: http://www.cam.ac.uk/cs/email/scanner/ Received: from rtb27.robinson.cam.ac.uk ([131.111.236.214]:52542) by ppsw-7.csi.cam.ac.uk (smtp.hermes.cam.ac.uk [131.111.8.157]:25) with esmtps (TLSv1:RC4-MD5:128) id 1DQqMX-0006I5-PJ (Exim 4.51) (return-path ); Wed, 27 Apr 2005 18:30:13 +0100 From: Richard Bradley To: gerald@freebsd.org Date: Wed, 27 Apr 2005 18:29:10 +0100 User-Agent: KMail/1.7 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200504271829.11390.rtb27@cam.ac.uk> cc: ports@freebsd.org Subject: wine ignoring "Windows", "Profile" values in config X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 17:30:24 -0000 Hi, I have wine-20050419 running on 5.3-RELEASE, but I'm having trouble getting it to use my Windows2000 NTFS partition mounted as read only. Specifically it seems to be completely ignoring paths in the "[wine]" section of the config file. I can write things like: [wine] "Windows"="asdfasdfc:\\WINNT" and it runs without complaint. This is a problem for me because it also ignores the "Profile" value, and gives the following error: err:shell:SHGetFolderPathW Failed to create directory 'L"c:\\windows\\profiles\\rich\\Desktop"'. It should be looking in "Profile"="c:\\Documents and Settings\\rich" Please could you give me some pointers on what can I do to fix this? Many thanks, Rich From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 20:09:18 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 220E616A4CE for ; Wed, 27 Apr 2005 20:09:18 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6BED43D6A for ; Wed, 27 Apr 2005 20:09:17 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id A10105133E; Wed, 27 Apr 2005 13:09:16 -0700 (PDT) Date: Wed, 27 Apr 2005 13:09:16 -0700 From: Kris Kennaway To: Bjarne Wichmann Petersen Message-ID: <20050427200916.GA38219@xor.obsecurity.org> References: <200504271653.35873.freebsd.nospam@mekanix.dk> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="liOOAslEiF7prFVr" Content-Disposition: inline In-Reply-To: <200504271653.35873.freebsd.nospam@mekanix.dk> User-Agent: Mutt/1.4.2.1i cc: freebsd-ports@freebsd.org Subject: Re: Upgrading packages using binaries X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 20:09:18 -0000 --liOOAslEiF7prFVr Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Apr 27, 2005 at 04:53:35PM +0200, Bjarne Wichmann Petersen wrote: > Hi >=20 > I'm having some trouble upgrading my packages; haven't done so since febr= uary.=20 > I know the "correct" way to update packages using binaries is to cvsup yo= ur=20 > portstree and run portupgrade -RPP, but I don't get far with this. >=20 > The problem as far as I can tell is, that the portstree and=20 > ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-5-stable/All/ aren't in s= ync. They're never perfectly in sync and never can be, because computers aren't infinitely fast. > portupgrade does have a fallback and will install the latest version vail= able=20 > from ../Latest/ and this is most often enough. This should in theory just= =20 > give me the latest binaries available at the FreeBSD mirrors. >=20 > But it isn't "foolproof". An example is pkgconf, the latest version on th= e=20 > mirrors is 0.15 while many ports *requires* 0.17.2. So portupgrade quits. >=20 > My question: is there any way to upgrade packages to the latest available= =20 > version on the mirrors Yes, you're using it. > and/or a way to cvsup the portstree to the version the=20 > binary packages have been built from? No, sorry. Usually the -stable packages don't get so far behind, except around release time when all the build activity goes there. I just finished a build and updated them though, so you should be able to retry once your favourite mirror has updated. Kris --liOOAslEiF7prFVr Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCb/FsWry0BWjoQKURAtMhAKCqbSTVwBBPkC7XLu4WrDoHvtqCgwCdFi2R 2VPaUhHxhm4a6DUtAnfeG28= =PNc8 -----END PGP SIGNATURE----- --liOOAslEiF7prFVr-- From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 20:26:29 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6202E16A4CE for ; Wed, 27 Apr 2005 20:26:29 +0000 (GMT) Received: from linion.ion.lu (linion.ion.lu [80.90.47.168]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE1B443D45 for ; Wed, 27 Apr 2005 20:26:26 +0000 (GMT) (envelope-from steve@ion.lu) Received: (qmail 73731 invoked by uid 0); 27 Apr 2005 22:26:23 +0200 Received: from 80.90.37.60 by linion.ion.lu (envelope-from , uid 89) with qmail-scanner-1.24-st-qms (clamdscan: 0.81/685. spamassassin: 3.0.2. perlscan: 1.24-st-qms. Clear:RC:0(80.90.37.60):SA:0(-5.7/5.0):. Processed in 6.659894 secs); 27 Apr 2005 20:26:23 -0000 X-Spam-Status: No, hits=-5.7 required=5.0 X-Antivirus-ION.LU-Mail-From: steve@ion.lu via linion.ion.lu X-Antivirus-ION.LU: 1.24-st-qms (Clear:RC:0(80.90.37.60):SA:0(-5.7/5.0):. Processed in 6.659894 secs Process 73714) Received: from vodsl-1340.vo.lu (HELO ?192.168.0.21?) (steve@ion.lu@80.90.37.60) by linion.ion.lu with SMTP; 27 Apr 2005 22:26:17 +0200 Message-ID: <426FF563.6020508@ion.lu> Date: Wed, 27 Apr 2005 22:26:11 +0200 From: Steve Clement Organization: ION Network Solutions User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050405) X-Accept-Language: en-us, en MIME-Version: 1.0 To: elsukov@rdu.kirov.ru References: <426F4F74.3030105@rdu.kirov.ru> In-Reply-To: <426F4F74.3030105@rdu.kirov.ru> X-Enigmail-Version: 0.91.0.0 Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 7bit cc: freebsd-ports@freebsd.org Subject: Re: Shell access to IA64 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 20:26:29 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Andrey V. Elsukov wrote: > Hi, People, > > somebody known, where can get shell access to IA64 architecture? I > want to test build my port on IA64.. > What port is it? I could help you with testing it, just tar-it up and place it on the web-somewhere. Well, that is, if its not k3b or so :) which sucks in quite a few deps... Steve C - -- ION Network Solutions Steve Clement Unix System Administrator 209, rue des Romains L-8041 Bertrange Tel: +352 261 276-2 Fax: +352 261 276-9 mailto:steve@ion.lu http://www.ion.lu -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCb/ViMH8DIBsiCrgRAvdUAKCp2C1GbYS2lHZqTeb7dhVMLfSpkgCfcuGV zMzteqXbFBoIvsnMXXRTqmw= =TC7z -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Wed Apr 27 20:41:01 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3464016A4CE; Wed, 27 Apr 2005 20:41:01 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id D74C243D49; Wed, 27 Apr 2005 20:41:00 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 8556E516F2; Wed, 27 Apr 2005 13:40:59 -0700 (PDT) Date: Wed, 27 Apr 2005 13:40:59 -0700 From: Kris Kennaway To: amd64@FreeBSD.org Message-ID: <20050427204059.GB52508@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ZoaI/ZTpAVc4A5k6" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i cc: ports@FreeBSD.org Subject: Small milestone X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2005 20:41:01 -0000 --ZoaI/ZTpAVc4A5k6 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On the latest 6.x amd64 package build the total passed 10000 packages for the first time: amd64: 10030 By comparison, here's the last 5.x i386 build: =20 i386: 11169 Thanks to everyone who's worked on fixing broken amd64 ports! Kris --ZoaI/ZTpAVc4A5k6 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCb/jaWry0BWjoQKURAv7xAKDHOmcxh/7kxkunki/MzMonDjTlIACg5H7A snWpoIZa9bwQe5O9/I8WKlI= =+fj0 -----END PGP SIGNATURE----- --ZoaI/ZTpAVc4A5k6-- From owner-freebsd-ports@FreeBSD.ORG Thu Apr 28 07:56:24 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 486DE16A4CE for ; Thu, 28 Apr 2005 07:56:24 +0000 (GMT) Received: from mail.lovett.com (foo.lovett.com [67.134.38.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1E0543D45 for ; Thu, 28 Apr 2005 07:56:23 +0000 (GMT) (envelope-from ade@FreeBSD.org) Received: from hellfire.lovett.com ([67.134.38.149]) by mail.lovett.com with esmtpa (Exim 4.50 (FreeBSD)) id 1DR3sk-000OEp-SW for ports@freebsd.org; Thu, 28 Apr 2005 00:56:22 -0700 Message-ID: <42709726.9020206@FreeBSD.org> Date: Thu, 28 Apr 2005 00:56:22 -0700 From: Ade Lovett User-Agent: Mozilla Thunderbird 1.0.2 (Macintosh/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: ports@freebsd.org References: <1114613430.426fa6b6f1e16@webmail.dock.com.br> <790a9fff05042708553df29617@mail.gmail.com> In-Reply-To: <790a9fff05042708553df29617@mail.gmail.com> X-Enigmail-Version: 0.91.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: samba3 error X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Apr 2005 07:56:24 -0000 Hijacking a thread for a moment, this is a plea to all of those automated build error log analyzers out there. Please please please grep through the configure.log (if any) for the "obvious" part of the following snippet: [...] > checking whether build environment is sane... configure: error: newly > created file is older than distributed files! > Check your system clock [...] and act accordingly. Bonus points for somehow convincing the controlling terminal (including serial consoles) to show an animation of someone breaking a grandfather clock with a REALLY LARGE sledgehammer with an (internationalized, of course) rendering of "YOUR CLOCK NEEDS YOU!" below it, and then refusing to send the email/PR/whatever. Extra style points for completely taking over the terminal and refusing to do anything until the contents of the ntpdate man page have been read and recited back. Maintainers of configure-afflicted ports would love you all to pieces as grindingly similar emails turn up on a monotonously regular basis... Hrm. Maybe we(tm) need(tm) a "Common Ports Building Issues" chapter.... -aDe From owner-freebsd-ports@FreeBSD.ORG Thu Apr 28 08:03:48 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B537116A4CE for ; Thu, 28 Apr 2005 08:03:48 +0000 (GMT) Received: from mail2out.barnet.com.au (mail2out.barnet.com.au [202.83.176.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id C587F43D2D for ; Thu, 28 Apr 2005 08:03:47 +0000 (GMT) (envelope-from edwin@mavetju.org) Received: by mail2out.barnet.com.au (Postfix, from userid 27) id 2C02E70740D; Thu, 28 Apr 2005 18:03:46 +1000 (EST) X-Viruscan-Id: <427098E200004D57DF4B65@BarNet> Received: from mail2-auth.barnet.com.au (mail2.barnet.com.au [202.83.176.13]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Authority" (verified OK)) by mail2.barnet.com.au (Postfix) with ESMTP id ABB8B707415; Thu, 28 Apr 2005 18:03:45 +1000 (EST) Received: from k7.mavetju (edwin-3.int.barnet.com.au [10.10.12.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Certificate Authority" (not verified)) by mail2-auth.barnet.com.au (Postfix) with ESMTP id E6CEF70740D; Thu, 28 Apr 2005 18:03:44 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 77DAB61AD; Thu, 28 Apr 2005 18:03:41 +1000 (EST) Date: Thu, 28 Apr 2005 18:03:41 +1000 From: Edwin Groothuis To: Sam Lawrance Message-ID: <20050428080341.GM1175@k7.mavetju> References: <1114610923.45212.16.camel@dirk.no.domain> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1114610923.45212.16.camel@dirk.no.domain> User-Agent: Mutt/1.5.6i cc: ports@freebsd.org Subject: Re: Why can't pkg-plist list directories? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Apr 2005 08:03:48 -0000 On Thu, Apr 28, 2005 at 12:08:41AM +1000, Sam Lawrance wrote: > Aside from the fact that the pkg_* tools don't currently support it, is > there a reason why we use @dirrm in packing lists rather than just > listing the directories? Foolproofing. If I copy a file to etc/foo where foo is a directory, but I forgot to create the directory first I end up with the file foo in etc/. Having the pkg-plist explicitely stating it as a directory, it will throw an error and the maintainer (and eeeeeeverybody else) will know he made a mistake. Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://weblog.barnet.com.au/edwin/ From owner-freebsd-ports@FreeBSD.ORG Thu Apr 28 08:25:03 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 46EA016A4CE for ; Thu, 28 Apr 2005 08:25:03 +0000 (GMT) Received: from integratos.net (mail.integratos.net [80.243.45.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id F128C43D49 for ; Thu, 28 Apr 2005 08:25:01 +0000 (GMT) (envelope-from tux@pinguru.net) Received: from [80.243.46.153] (account gerrit.beine@pitcom.de HELO [80.243.46.153]) by integratos.net (CommuniGate Pro SMTP 4.1.8) with ESMTP id 13081467; Thu, 28 Apr 2005 10:24:59 +0200 Message-ID: <42709DCF.70207@pinguru.net> Date: Thu, 28 Apr 2005 10:24:47 +0200 From: Gerrit Beine User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050423) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Adam McMaster References: <726299f3b6dc17bfbf59218b0e2ad5e7@moosoft.net> In-Reply-To: <726299f3b6dc17bfbf59218b0e2ad5e7@moosoft.net> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: mediawiki-1.3.11_1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Apr 2005 08:25:03 -0000 Adam McMaster wrote: > Hello, > After installing mediawiki, the installation script complained that > php-xml was not installed. Everything worked after I installed php5-xml > myself, but it would have been useful for it to be installed automatically. > I'll fix this within the next days... So long... Gerrit -- mail tux@pinguru.net icq 123851585 web http://arme-und-beine.de From owner-freebsd-ports@FreeBSD.ORG Thu Apr 28 10:00:29 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 207A516A4CE for ; Thu, 28 Apr 2005 10:00:29 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA1F143D49 for ; Thu, 28 Apr 2005 10:00:28 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from freefall.freebsd.org (fenner@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j3SA0Sl7077437 for ; Thu, 28 Apr 2005 10:00:28 GMT (envelope-from fenner@freefall.freebsd.org) Received: (from fenner@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j3SA0SpT077433 for ports@freebsd.org; Thu, 28 Apr 2005 10:00:28 GMT (envelope-from fenner) Date: Thu, 28 Apr 2005 10:00:28 GMT From: Bill Fenner Message-Id: <200504281000.j3SA0SpT077433@freefall.freebsd.org> To: ports@freebsd.org Subject: Possibly unbuildable ports reminder X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Apr 2005 10:00:29 -0000 Dear porters, This is just a reminder to please periodically check the list of unbuildable ports at http://pointyhat.freebsd.org/errorlogs/ . A list by MAINTAINER is http://people.freebsd.org/~fenner/errorlogs/ so you can easily check the status of ports that you maintain. In addition, the list of ports with no MAINTAINER with build problems is http://people.freebsd.org/~fenner/errorlogs/ports@freebsd.org.html Since no one is responsible for these ports, the problem won't get fixed unless someone on this list takes the initiative. Thanks for your help! Bill "annoying port email" Fenner From owner-freebsd-ports@FreeBSD.ORG Thu Apr 28 10:01:46 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34CBC16A4CE for ; Thu, 28 Apr 2005 10:01:46 +0000 (GMT) Received: from bloodwood.hunterlink.net.au (smtp-local.hunterlink.net.au [203.12.144.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id E62C543D31 for ; Thu, 28 Apr 2005 10:01:44 +0000 (GMT) (envelope-from boris@brooknet.com.au) Received: from ppp27B8.dyn.pacific.net.au (ppp27B8.dyn.pacific.net.au [61.8.39.184])j3SA1Whw023003; Thu, 28 Apr 2005 20:01:42 +1000 From: Sam Lawrance To: Edwin Groothuis In-Reply-To: <20050428080341.GM1175@k7.mavetju> References: <1114610923.45212.16.camel@dirk.no.domain> <20050428080341.GM1175@k7.mavetju> Content-Type: text/plain Date: Thu, 28 Apr 2005 20:02:05 +1000 Message-Id: <1114682525.17690.28.camel@dirk.no.domain> Mime-Version: 1.0 X-Mailer: Evolution 2.2.2 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit cc: ports@freebsd.org Subject: Re: Why can't pkg-plist list directories? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Apr 2005 10:01:46 -0000 On Thu, 2005-04-28 at 18:03 +1000, Edwin Groothuis wrote: > On Thu, Apr 28, 2005 at 12:08:41AM +1000, Sam Lawrance wrote: > > Aside from the fact that the pkg_* tools don't currently support it, is > > there a reason why we use @dirrm in packing lists rather than just > > listing the directories? > > Foolproofing. > > If I copy a file to etc/foo where foo is a directory, but I forgot > to create the directory first I end up with the file foo in etc/. > Having the pkg-plist explicitely stating it as a directory, it will > throw an error and the maintainer (and eeeeeeverybody else) will > know he made a mistake. But if the packing list contained, for example etc/foo/somefile and either @dirrm etc/foo or just etc/foo Then etc/foo/somefile would not be found and the error would be known in either case. Although, I do in part see your point... there's less ambiguity with @dirrm. In which case, perhaps pkg_create could be modified to add directories listed with @dirrm to the tarball so empty dirs, permissions and modes are preserved. From owner-freebsd-ports@FreeBSD.ORG Thu Apr 28 15:21:53 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC30716A4CE; Thu, 28 Apr 2005 15:21:53 +0000 (GMT) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id E435943D53; Thu, 28 Apr 2005 15:21:51 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.3/8.13.3) with ESMTP id j3SFLinE054029; Thu, 28 Apr 2005 08:21:44 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.3/8.13.1/Submit) id j3SFLeOV054028; Thu, 28 Apr 2005 08:21:40 -0700 (PDT) (envelope-from obrien) Date: Thu, 28 Apr 2005 08:21:40 -0700 From: "David O'Brien" To: Miguel Mendez Message-ID: <20050428152140.GB53068@dragon.NUXI.org> References: <20050426170115.GB45067@dragon.NUXI.org> <20050426195809.1fb28305.flynn@energyhq.es.eu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050426195809.1fb28305.flynn@energyhq.es.eu.org> X-Operating-System: FreeBSD 6.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i cc: michael.hopkins@hopkins-research.com cc: freebsd-ports@freebsd.org cc: freebsd-amd64@freebsd.org Subject: Re: Attempted install of an Obj-C Foundation library X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 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: Thu, 28 Apr 2005 15:21:53 -0000 On Tue, Apr 26, 2005 at 07:58:09PM +0200, Miguel Mendez wrote: > On Tue, 26 Apr 2005 10:01:15 -0700 > "David O'Brien" wrote: > > > > I am trying to get a working Objective-C Foundation library on FreeBSD amd64 > > > (5.3-RELEASE-p10 with ports cvsup'd today) so that I can port some > > > Objective-C code from Mac OS X - and not having any success. > > ... > > > ===> gcc-objc-3.3.6_20050330 is marked as broken: Bus errors in stage2; > > > system compiler may be broken.. > > > *** Error code 1 > > > > I must be missing something -- why cant you use the base ObjC compiler? > > Seems gnustep-base needs "libgcc_s.so.1" which isn't anywhere in /usr/lib That is the shared version of libgcc.a. Why can't you use the static version? -- -- David (obrien@FreeBSD.org) From owner-freebsd-ports@FreeBSD.ORG Thu Apr 28 15:25:16 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A9D616A4CE for ; Thu, 28 Apr 2005 15:25:16 +0000 (GMT) Received: from sccrmhc14.comcast.net (sccrmhc14.comcast.net [204.127.202.59]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D7B943D1D for ; Thu, 28 Apr 2005 15:25:16 +0000 (GMT) (envelope-from e.schuele@computer.org) Received: from [208.206.151.59] (host59.gtisd.com[208.206.151.59]) by comcast.net (sccrmhc14) with ESMTP id <200504281525150140091flke>; Thu, 28 Apr 2005 15:25:15 +0000 Message-ID: <4271005A.5040600@computer.org> Date: Thu, 28 Apr 2005 10:25:14 -0500 From: Eric Schuele User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050325) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Johan van Selst References: <426EA027.8060002@computer.org> <8cb27cbf05042615007ec0d27b@mail.gmail.com> <426FA35C.8040504@computer.org> <20050428081054.GA11959@taz.gletsjer.net> In-Reply-To: <20050428081054.GA11959@taz.gletsjer.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: ports@freebsd.org Subject: Re: anyone working on the broken xfe? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Apr 2005 15:25:16 -0000 Johan van Selst wrote: > Eric Schuele wrote: > >>>so since it's FreeBSD, it may not be used and hence the above error. >>>That is just a wild guess. I don't know how to diagnose this one. >> >>If anyone else is on top of this, holler.... and I wont bother. > > > (delayed holler) > > I missed this discussion until somebody pointed it out to me: > An update to xfe 0.80 with the missing #if defined(linux) went > into the ports tree this morning. I have also submitted this patch > to the xfe developers. > Great! Thanks. > > Greetings, > Johan -- Regards, Eric From owner-freebsd-ports@FreeBSD.ORG Thu Apr 28 16:02:07 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0376516A4CE for ; Thu, 28 Apr 2005 16:02:07 +0000 (GMT) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.176]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5849143D5C for ; Thu, 28 Apr 2005 16:02:06 +0000 (GMT) (envelope-from swinter@kde.org) Received: from [212.227.126.161] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1DRBSo-0004UQ-00 for freebsd-ports@freebsd.org; Thu, 28 Apr 2005 18:02:06 +0200 Received: from [217.235.120.8] (helo=stefan.stefan-winter.de) by mrelayng.kundenserver.de with asmtp (TLSv1:RC4-MD5:128) (Exim 3.35 #1) id 1DRBSn-0007WB-00 for freebsd-ports@freebsd.org; Thu, 28 Apr 2005 18:02:05 +0200 Received: from [212.227.126.171] (helo=moutng.kundenserver.de) by mx13.web.de with esmtp (WEB.DE 4.103 #192) id 1D2qmk-0007mG-00 for kickdown@web.de; Sun, 20 Feb 2005 14:06:06 +0100 Received: from [129.137.4.132] (helo=gauss.ececs.uc.edu) by mxeu7.kundenserver.de with ESMTP (Nemesis), id 0MKsxo-1D2qmf2hVS-0005Wi; Sun, 20 Feb 2005 14:06:01 +0100 Received: from gauss.ececs.uc.edu (localhost.ececs.uc.edu [127.0.0.1]) by gauss.ececs.uc.edu (8.12.10/8.12.10) with ESMTP id j1KD5u4w003212 for ; Sun, 20 Feb 2005 08:05:56 -0500 (EST) (envelope-from franco@gauss.ececs.uc.edu) Received: (from franco@localhost) by gauss.ececs.uc.edu (8.12.10/8.12.10/Submit) id j1KD5t8a003211 for mail@stefan-winter.de; Sun, 20 Feb 2005 08:05:55 -0500 (EST) (envelope-from franco) Date: Thu, 28 Apr 2005 11:01:51 -0500 From: Stefan Winter To: freebsd-ports@freebsd.org Message-Id: <200504281801.51499.swinter@kde.org> References: <20050219154437.GA99749@gauss.ececs.uc.edu> <200502200357.18241.mail@stefan-winter.de> Mime-Version: 1.0 Content-Disposition: inline In-Reply-To: <200502200357.18241.mail@stefan-winter.de> User-Agent: KMail/1.8 X-UID: 117009628 X-Length: 34990 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit X-Provags-ID: kundenserver.de abuse@kundenserver.de auth:25bb3f014c5650f0f8bfea1e8c11d0ef Subject: [kde-freebsd] Fwd: Re: Kwifimanager X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Apr 2005 16:02:07 -0000 Hello, lately a FreeBSD user asked about Wireless LAN support under FreeBSD. I told him that it would be fairly easy to implement. He was enthusiastic at first, but didn't continue later. Personally, I don't and probably won't use FreeBSD in the near future. I wonder if someone would be interested in implementing this. There seems to be an utility wicontrol that contains the necessary code, and integration into the current KWiFiManager is simply instantiating one new class, see forwarded conversation. If anyone is interested, please mail me at my shiny new kde address: swinter@kde.org. Greetings, Stefan Winter ---------- Weitergeleitete Nachricht ---------- > > I have enjoyed using kwifimanager under linux for some time. I have now > > Nice to hear that :-) > > > switched to FreeBSD 5.3, running KDE3, on a laptop with an amd64/NVidia > > architecture. I was dismayed to find that kwifimanager is not available > > for my configuration. Do you have plans to adapt your software to > > freebsd/amd64 in the future. I am sure a lot of people would be happy if > > you do. > > Well, porting it to FreeBSD would sure be a good idea. Unfortunately I > don't have *any* experience with this platform, and I am quite sure that I > cannot do such a port myself. Of course, a volunteer who is currently > running FreeBSD would come in handy ;-) > Honestly, I'd need some help with that. You know, it will only be a single > class to write, a subclass of interface_wireless.{h|cpp}. But within that > class, some in-depth knowledge of the wireless workings of FreeBSD is > necessary, and I just plain don't have that. > > Greetings, > > Stefan Winter -- KDE Developer Stefan Winter, swinter@kde.org * Module kde-i18n/de - German translation team * Module kdenetwork/wifi - Wireless networking tools From owner-freebsd-ports@FreeBSD.ORG Thu Apr 28 16:34:52 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2AB9C16A4CE; Thu, 28 Apr 2005 16:34:52 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE23543D55; Thu, 28 Apr 2005 16:34:51 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id DC4FD5133E; Thu, 28 Apr 2005 09:34:50 -0700 (PDT) Date: Thu, 28 Apr 2005 09:34:50 -0700 From: Kris Kennaway To: David O'Brien Message-ID: <20050428163450.GA79570@xor.obsecurity.org> References: <20050426170115.GB45067@dragon.NUXI.org> <20050426195809.1fb28305.flynn@energyhq.es.eu.org> <20050428152140.GB53068@dragon.NUXI.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="huq684BweRXVnRxX" Content-Disposition: inline In-Reply-To: <20050428152140.GB53068@dragon.NUXI.org> User-Agent: Mutt/1.4.2.1i cc: michael.hopkins@hopkins-research.com cc: freebsd-amd64@freebsd.org cc: freebsd-ports@freebsd.org Subject: Re: Attempted install of an Obj-C Foundation library X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Apr 2005 16:34:52 -0000 --huq684BweRXVnRxX Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 28, 2005 at 08:21:40AM -0700, David O'Brien wrote: > On Tue, Apr 26, 2005 at 07:58:09PM +0200, Miguel Mendez wrote: > > On Tue, 26 Apr 2005 10:01:15 -0700 > > "David O'Brien" wrote: > >=20 > > > > I am trying to get a working Objective-C Foundation library on Free= BSD amd64 > > > > (5.3-RELEASE-p10 with ports cvsup'd today) so that I can port some > > > > Objective-C code from Mac OS X - and not having any success. > > > ... > > > > =3D=3D=3D> gcc-objc-3.3.6_20050330 is marked as broken: Bus errors= in stage2; > > > > system compiler may be broken.. > > > > *** Error code 1 > > >=20 > > > I must be missing something -- why cant you use the base ObjC compile= r? > >=20 > > Seems gnustep-base needs "libgcc_s.so.1" which isn't anywhere in /usr/l= ib >=20 > That is the shared version of libgcc.a. Why can't you use the static > version? Presumably because it wants to link it to relocatable object files. In general amd64 (and ia64 and sparc64) needs a PIC version of every system library, which FreeBSD doesn't currently do. This causes some ports to break. Kris --huq684BweRXVnRxX Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCcRCqWry0BWjoQKURAg53AJ9FGTHUjRAy/+/El3Z08SRbxJuSWACg2yvl VTjN84mWRl5RoHlX34teALY= =aUX7 -----END PGP SIGNATURE----- --huq684BweRXVnRxX-- From owner-freebsd-ports@FreeBSD.ORG Thu Apr 28 16:36:23 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8E3016A4CE; Thu, 28 Apr 2005 16:36:23 +0000 (GMT) Received: from customer-relay.songnetworks.se (customer-relay.songnetworks.se [195.42.210.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD72A43D41; Thu, 28 Apr 2005 16:36:20 +0000 (GMT) (envelope-from jnbg@blomberg.tk) Received: from manicken.blomberg (unknown [62.95.95.240]) by customer-relay.songnetworks.se (Postfix) with ESMTP id E5F1D9ACEA; Thu, 28 Apr 2005 18:36:16 +0200 (CEST) Received: from [192.168.1.6] (gulliver.blomberg [192.168.1.6]) by manicken.blomberg (Postfix) with ESMTP id 0014B6D41B; Thu, 28 Apr 2005 18:35:59 +0200 (CEST) Message-ID: <427110EC.40404@blomberg.tk> Date: Thu, 28 Apr 2005 18:35:56 +0200 From: =?ISO-8859-1?Q?J=F6rgen_Blomberg?= User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: sv, en-us, en MIME-Version: 1.0 To: Ion-Mihai Tetcu References: <426E9BCB.6030006@san.rr.com> <20050426195839.GB42269@xor.obsecurity.org> <20050426230958.6045156d@it.buh.cameradicommercio.ro> <20050426201451.GA45206@xor.obsecurity.org> <20050426231951.0daba01f@it.buh.cameradicommercio.ro> <20050426202317.GA58236@xor.obsecurity.org> <20050426232916.0c8f186e@it.buh.cameradicommercio.ro> In-Reply-To: <20050426232916.0c8f186e@it.buh.cameradicommercio.ro> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: ports@freebsd.org cc: lev@freebsd.org cc: "Raymundo M. Vega" Subject: Re: Make index fail X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Apr 2005 16:36:24 -0000 Ion-Mihai Tetcu wrote: >>>>>I'm getting this as a warning when building index with >>>>>p5-FreeBSD-portindex with up-to-date ports tree. >>>> >>>>Yeah, but the warning isn't an error. >>> >>>AFAIK portindex treats some things considered errors by *.mk as warnings >>>and I haven't have time to track it down. >> >>I don't think so. >> >>The warning comes from another port anyway. > > > Do you happen to know what port ? I'm curious. > > > Thanks, > I have seen this warning since april 11. [jbadm@compaq /]% cd /usr/ports/devel/mingw32-binutils/ [jbadm@compaq /<2>devel/mingw32-binutils]% make describe "/usr/ports/Mk/bsd.port.mk", line 4847: warning: duplicate script for target "add-plist-post" ignored mingw32-binutils-2.15.94.20050118.1,1|/usr/ports/devel/mingw32- binutils|/usr/local|FSF binutils-2.15 for Windows cross-development |/usr/ports/devel/mingw32-binutils/pkg-descr|lev@FreeBSD.org| devel||||/usr/ports/devel/gmake /usr/ports/devel/libtool13 ||http://www.mingw.org/ [jbadm@compaq /<2>devel/mingw32-binutils]% cat /etc/make.conf CPUTYPE=i686 CFLAGS= -O -pipe WITH_OPENSSL_BASE=yes # -- use.perl generated deltas -- # # Created: Sat Nov 6 15:51:38 2004 # Setting to use base perl from ports: PERL_VER=5.6.1 PERL_VERSION=5.6.1 PERL_ARCH=mach NOPERL=yo NO_PERL=yo NO_PERL_WRAPPER=yo [jbadm@compaq /<2>devel/mingw32-binutils]% uname -vm FreeBSD 5.2.1-RELEASE #0: Mon Feb 23 20:45:55 GMT 2004 root@wv1u.btc.adaptec.com:/usr/obj/usr/src/sys/GENERIC i386 /JB From owner-freebsd-ports@FreeBSD.ORG Thu Apr 28 17:22:50 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AAC2016A4CE; Thu, 28 Apr 2005 17:22:50 +0000 (GMT) Received: from connectmail.carleton.ca (connectmail.carleton.ca [134.117.2.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CBA243D49; Thu, 28 Apr 2005 17:22:50 +0000 (GMT) (envelope-from adamw@FreeBSD.org) Received: from [192.168.1.105] ([134.117.145.25]) by connectmail.carleton.ca (iPlanet Messaging Server 5.2 HotFix 2.02 (built Oct 21 2004)) with ESMTPSA id <0IFN00L9HD95DX@connectmail.carleton.ca>; Thu, 28 Apr 2005 04:07:53 -0400 (EDT) Date: Thu, 28 Apr 2005 04:09:10 -0400 From: Adam Weinberger In-reply-to: <42709726.9020206@FreeBSD.org> To: Ade Lovett Message-id: <42709A26.2050008@FreeBSD.org> MIME-version: 1.0 Content-type: text/plain; charset=ISO-8859-1; format=flowed Content-transfer-encoding: 7BIT X-Accept-Language: en-ca, en-gb, en-us, en User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-CA; rv:1.7.5) Gecko/20050105 Thunderbird/1.0 OMFG PANTS References: <1114613430.426fa6b6f1e16@webmail.dock.com.br> <790a9fff05042708553df29617@mail.gmail.com> <42709726.9020206@FreeBSD.org> cc: ports@freebsd.org Subject: Re: samba3 error X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Apr 2005 17:22:50 -0000 Ade Lovett wrote: > Hijacking a thread for a moment, this is a plea to all of those > automated build error log analyzers out there. > > Please please please grep through the configure.log (if any) for the > "obvious" part of the following snippet: > > [...] > >>checking whether build environment is sane... configure: error: newly >>created file is older than distributed files! >>Check your system clock > > [...] > > and act accordingly. > > Bonus points for somehow convincing the controlling terminal (including > serial consoles) to show an animation of someone breaking a grandfather > clock with a REALLY LARGE sledgehammer with an (internationalized, of > course) rendering of "YOUR CLOCK NEEDS YOU!" below it, and then refusing > to send the email/PR/whatever. > > Extra style points for completely taking over the terminal and refusing > to do anything until the contents of the ntpdate man page have been read > and recited back. > > Maintainers of configure-afflicted ports would love you all to pieces as > grindingly similar emails turn up on a monotonously regular basis... > > Hrm. Maybe we(tm) need(tm) a "Common Ports Building Issues" chapter.... > > -aDe A lot of GNOME's FAQs ceased when we introduced the gnomelogalyzer. It runs make(1) and grep(1)s the output for heuristics of common build failures. It wouldn't take much to teach it to analyse non-GNOME stuff too. # Adam -- Adam Weinberger adamw@magnesium.net || adamw@FreeBSD.org adamw@vectors.cx || adamw@gnome.org http://www.vectors.cx From owner-freebsd-ports@FreeBSD.ORG Thu Apr 28 18:35:35 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9950216A4CE for ; Thu, 28 Apr 2005 18:35:35 +0000 (GMT) Received: from wbm1.pair.net (wbm1.pair.net [209.68.3.41]) by mx1.FreeBSD.org (Postfix) with SMTP id 11AD543D54 for ; Thu, 28 Apr 2005 18:35:35 +0000 (GMT) (envelope-from alejandro@varnet.biz) Received: (qmail 8189 invoked by uid 65534); 28 Apr 2005 18:35:34 -0000 Received: from 200.115.214.28 ([200.115.214.28]) (SquirrelMail authenticated user alex@varnet.biz) by webmail1.pair.com with HTTP; Thu, 28 Apr 2005 15:35:34 -0300 (ART) Message-ID: <2109.200.115.214.28.1114713334.squirrel@webmail1.pair.com> Date: Thu, 28 Apr 2005 15:35:34 -0300 (ART) From: "Alejandro Pulver" To: freebsd-ports@freebsd.org User-Agent: SquirrelMail/1.4.4 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Subject: OPTIONS problem X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: alejandro@varnet.biz List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Apr 2005 18:35:35 -0000 Hello, I am making a meta-port that has options to choose which components to install. Each component also has its own options, but when they are built as dependencies, they do not prompt for their own options (neither use the defaults), but they inherite the options from the meta-port. Is this supposed to work like this? How can I make dependencies prompt for their own options? I found some ports use a script for the configuration (in "scripts/config", and create a "Makefile.inc"). Does it have adventages over the OPTIONS variable? Thanks and Best Regards, Ale From owner-freebsd-ports@FreeBSD.ORG Thu Apr 28 19:20:30 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F68316A4CE; Thu, 28 Apr 2005 19:20:30 +0000 (GMT) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1DA243D53; Thu, 28 Apr 2005 19:20:29 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.3/8.13.3) with ESMTP id j3SJKAI5087589; Thu, 28 Apr 2005 12:20:10 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.3/8.13.1/Submit) id j3SJK5hc087584; Thu, 28 Apr 2005 12:20:05 -0700 (PDT) (envelope-from obrien) Date: Thu, 28 Apr 2005 12:20:05 -0700 From: "David O'Brien" To: Kris Kennaway Message-ID: <20050428192005.GA87545@dragon.NUXI.org> References: <20050426170115.GB45067@dragon.NUXI.org> <20050426195809.1fb28305.flynn@energyhq.es.eu.org> <20050428152140.GB53068@dragon.NUXI.org> <20050428163450.GA79570@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050428163450.GA79570@xor.obsecurity.org> X-Operating-System: FreeBSD 6.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i cc: michael.hopkins@hopkins-research.com cc: freebsd-amd64@freebsd.org cc: freebsd-ports@freebsd.org Subject: Re: Attempted install of an Obj-C Foundation library X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 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: Thu, 28 Apr 2005 19:20:30 -0000 On Thu, Apr 28, 2005 at 09:34:50AM -0700, Kris Kennaway wrote: > On Thu, Apr 28, 2005 at 08:21:40AM -0700, David O'Brien wrote: > > On Tue, Apr 26, 2005 at 07:58:09PM +0200, Miguel Mendez wrote: > > > On Tue, 26 Apr 2005 10:01:15 -0700 > > > "David O'Brien" wrote: > > > > > > > > I am trying to get a working Objective-C Foundation library on FreeBSD amd64 > > > > > (5.3-RELEASE-p10 with ports cvsup'd today) so that I can port some > > > > > Objective-C code from Mac OS X - and not having any success. > > > > ... > > > > > ===> gcc-objc-3.3.6_20050330 is marked as broken: Bus errors in stage2; > > > > > system compiler may be broken.. > > > > > *** Error code 1 > > > > > > > > I must be missing something -- why cant you use the base ObjC compiler? > > > > > > Seems gnustep-base needs "libgcc_s.so.1" which isn't anywhere in /usr/lib > > > > That is the shared version of libgcc.a. Why can't you use the static > > version? > > Presumably because it wants to link it to relocatable object files. > In general amd64 (and ia64 and sparc64) needs a PIC version of every > system library, which FreeBSD doesn't currently do. Though we do have /usr/lib/libgcc_pic.a just for this case. -- -- David (obrien@FreeBSD.org) From owner-freebsd-ports@FreeBSD.ORG Thu Apr 28 19:24:17 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE67E16A4CE; Thu, 28 Apr 2005 19:24:17 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6819943D58; Thu, 28 Apr 2005 19:24:17 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 3E4495283B; Thu, 28 Apr 2005 12:24:16 -0700 (PDT) Date: Thu, 28 Apr 2005 12:24:16 -0700 From: Kris Kennaway To: David O'Brien Message-ID: <20050428192416.GA29332@xor.obsecurity.org> References: <20050426170115.GB45067@dragon.NUXI.org> <20050426195809.1fb28305.flynn@energyhq.es.eu.org> <20050428152140.GB53068@dragon.NUXI.org> <20050428163450.GA79570@xor.obsecurity.org> <20050428192005.GA87545@dragon.NUXI.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="NzB8fVQJ5HfG6fxh" Content-Disposition: inline In-Reply-To: <20050428192005.GA87545@dragon.NUXI.org> User-Agent: Mutt/1.4.2.1i cc: michael.hopkins@hopkins-research.com cc: freebsd-ports@freebsd.org cc: freebsd-amd64@freebsd.org cc: Kris Kennaway Subject: Re: Attempted install of an Obj-C Foundation library X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Apr 2005 19:24:17 -0000 --NzB8fVQJ5HfG6fxh Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 28, 2005 at 12:20:05PM -0700, David O'Brien wrote: > On Thu, Apr 28, 2005 at 09:34:50AM -0700, Kris Kennaway wrote: > > On Thu, Apr 28, 2005 at 08:21:40AM -0700, David O'Brien wrote: > > > On Tue, Apr 26, 2005 at 07:58:09PM +0200, Miguel Mendez wrote: > > > > On Tue, 26 Apr 2005 10:01:15 -0700 > > > > "David O'Brien" wrote: > > > >=20 > > > > > > I am trying to get a working Objective-C Foundation library on = FreeBSD amd64 > > > > > > (5.3-RELEASE-p10 with ports cvsup'd today) so that I can port s= ome > > > > > > Objective-C code from Mac OS X - and not having any success. > > > > > ... > > > > > > =3D=3D=3D> gcc-objc-3.3.6_20050330 is marked as broken: Bus er= rors in stage2; > > > > > > system compiler may be broken.. > > > > > > *** Error code 1 > > > > >=20 > > > > > I must be missing something -- why cant you use the base ObjC com= piler? > > > >=20 > > > > Seems gnustep-base needs "libgcc_s.so.1" which isn't anywhere in /u= sr/lib > > >=20 > > > That is the shared version of libgcc.a. Why can't you use the static > > > version? > >=20 > > Presumably because it wants to link it to relocatable object files. > > In general amd64 (and ia64 and sparc64) needs a PIC version of every > > system library, which FreeBSD doesn't currently do. >=20 > Though we do have /usr/lib/libgcc_pic.a just for this case. OK, that would probably solve this particular case. Kris --NzB8fVQJ5HfG6fxh Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCcThfWry0BWjoQKURAqm1AKDXkIO+VW+6YDc5kZFTLCnXirUKZQCfcAeS 8sxRh4sUeu2SB6FdPGH6PMw= =P1bv -----END PGP SIGNATURE----- --NzB8fVQJ5HfG6fxh-- From owner-freebsd-ports@FreeBSD.ORG Thu Apr 28 19:26:46 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BA1016A4CE for ; Thu, 28 Apr 2005 19:26:46 +0000 (GMT) Received: from defang9.net.ohio-state.edu (defang9.net.ohio-state.edu [128.146.216.78]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D0C743D54 for ; Thu, 28 Apr 2005 19:26:45 +0000 (GMT) (envelope-from stein.175@osu.edu) Received: from RADIMRES14 (radimres14.med.ohio-state.edu [140.254.8.83]) j3SJQi2q010726 for ; Thu, 28 Apr 2005 15:26:44 -0400 Message-Id: <200504281926.j3SJQi2q010726@defang9.net.ohio-state.edu> From: "Olaf Stein" To: Date: Thu, 28 Apr 2005 15:26:43 -0400 MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook, Build 11.0.6353 Thread-Index: AcVMKDPP9xBulazFQXSg+94IlzCK/w== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 X-CanItPRO-Stream: outbound X-Spam-Score: undef - spam-scanning disabled X-Scanned-By: CanIt (www . canit . ca) Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: sendmail relay host problem X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Apr 2005 19:26:46 -0000 hi everybody I am running FBSD 5.3 with sendmail 8.12 on a custom installed system (just base and man) The only thing this machine is supposed to do is send notification emails on certain events on an ftp server the ftp notifications work, as other mail servers I have tried deliver them my old machine doing this (FBSD 4.9) crashed and I unfortunately do not remember exactly how I configured it What I remember and what I did on this installation is the following: - add alias for existing user in /etc/mail/aliases - run newaliases - add relay-domains file in /etc/mail with the domains to deliver mail to - restart sendmail I am under the impression that with my old installation that was enough but I am not sure Fact is that it does not send any emails Am I missing something I still have to do or do you know locations of howtos for setting up sendmail for my purposes please cc me as I am not on the list thanks /Olaf -------------------------------------------- Olaf Stein Research Scholar OSU Medical Center Department of Radiology Division of Imaging Research phone: 614-293-9983 cell: 614-589-9229 From owner-freebsd-ports@FreeBSD.ORG Thu Apr 28 19:40:26 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A71A416A4CE; Thu, 28 Apr 2005 19:40:26 +0000 (GMT) Received: from mail.telix.ru (net.telix.ru [81.222.232.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id D943043D46; Thu, 28 Apr 2005 19:40:25 +0000 (GMT) (envelope-from lev@FreeBSD.org) Received: from localhost (mail [81.222.232.5]) by mail.telix.ru (Postfix) with ESMTP id 4258C51644; Thu, 28 Apr 2005 23:40:24 +0400 (MSD) Received: from mail.telix.ru ([81.222.232.5]) by localhost (mail.telix.ru [81.222.232.5]) (amavisd-new, port 10024) with ESMTP id 14029-02; Thu, 28 Apr 2005 23:40:24 +0400 (MSD) Received: from desktop.home.serebryakov.spb.ru (user-172.pool-2.telix.ru [81.222.218.172]) by mail.telix.ru (Postfix) with ESMTP id EF5C551642; Thu, 28 Apr 2005 23:40:23 +0400 (MSD) Date: Thu, 28 Apr 2005 23:40:39 +0400 From: Lev Serebryakov X-Mailer: The Bat! (v2.11.02) Organization: FreeBSD Project X-Priority: 3 (Normal) Message-ID: <1586139784.20050428234039@serebryakov.spb.ru> To: =?ISO-8859-1?B?SvZyZ2VuIEJsb21iZXJn?= In-Reply-To: <427110EC.40404@blomberg.tk> References: <426E9BCB.6030006@san.rr.com> <20050426195839.GB42269@xor.obsecurity.org> <20050426230958.6045156d@it.buh.cameradicommercio.ro> <20050426201451.GA45206@xor.obsecurity.org> <20050426231951.0daba01f@it.buh.cameradicommercio.ro> <20050426202317.GA58236@xor.obsecurity.org> <20050426232916.0c8f186e@it.buh.cameradicommercio.ro> <427110EC.40404@blomberg.tk> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at telix.ru cc: Ion-Mihai Tetcu cc: ports@freebsd.org cc: lev@freebsd.org cc: "Raymundo M. Vega" Subject: Re[2]: Make index fail X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Lev Serebryakov List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Apr 2005 19:40:26 -0000 Hello Jorgen, Thursday, April 28, 2005, 8:35:56 PM, you wrote: JB> I have seen this warning since april 11. JB> [jbadm@compaq /]% cd /usr/ports/devel/mingw32-binutils/ JB> [jbadm@compaq /<2>devel/mingw32-binutils]% make describe JB> "/usr/ports/Mk/bsd.port.mk", line 4847: warning: duplicate script JB> for target "add-plist-post" ignored JB> mingw32-binutils-2.15.94.20050118.1,1|/usr/ports/devel/mingw32- JB> binutils|/usr/local|FSF binutils-2.15 for Windows cross-development JB> |/usr/ports/devel/mingw32-binutils/pkg-descr|lev@FreeBSD.org| JB> devel||||/usr/ports/devel/gmake /usr/ports/devel/libtool13 JB> ||http://www.mingw.org/ JB> [jbadm@compaq /<2>devel/mingw32-binutils]% cat /etc/make.conf JB> CPUTYPE=i686 JB> CFLAGS= -O -pipe JB> WITH_OPENSSL_BASE=yes JB> # -- use.perl generated deltas -- # JB> # Created: Sat Nov 6 15:51:38 2004 JB> # Setting to use base perl from ports: JB> PERL_VER=5.6.1 JB> PERL_VERSION=5.6.1 JB> PERL_ARCH=mach JB> NOPERL=yo JB> NO_PERL=yo JB> NO_PERL_WRAPPER=yo JB> I have seen this warning since april 11. JB> [jbadm@compaq /]% cd /usr/ports/devel/mingw32-binutils/ JB> [jbadm@compaq /<2>devel/mingw32-binutils]% make describe JB> "/usr/ports/Mk/bsd.port.mk", line 4847: warning: duplicate script JB> for target "add-plist-post" ignored JB> mingw32-binutils-2.15.94.20050118.1,1|/usr/ports/devel/mingw32- JB> binutils|/usr/local|FSF binutils-2.15 for Windows cross-development JB> |/usr/ports/devel/mingw32-binutils/pkg-descr|lev@FreeBSD.org| JB> devel||||/usr/ports/devel/gmake /usr/ports/devel/libtool13 JB> ||http://www.mingw.org/ JB> [jbadm@compaq /<2>devel/mingw32-binutils]% cat /etc/make.conf JB> CPUTYPE=i686 JB> CFLAGS= -O -pipe JB> WITH_OPENSSL_BASE=yes JB> # -- use.perl generated deltas -- # JB> # Created: Sat Nov 6 15:51:38 2004 JB> # Setting to use base perl from ports: JB> PERL_VER=5.6.1 JB> PERL_VERSION=5.6.1 JB> PERL_ARCH=mach JB> NOPERL=yo JB> NO_PERL=yo JB> NO_PERL_WRAPPER=yo Yes, this port overload `add-plist-post' because it is only way to ggenerate proper `pkg-plist' (we need to delete directory AFTER deletion of info files, which are added in this target!). It was discussed with portmrg@... -- Best regards, Lev mailto:lev@FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Thu Apr 28 20:08:25 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24EBC16A4CE for ; Thu, 28 Apr 2005 20:08:25 +0000 (GMT) Received: from smtp103.rog.mail.re2.yahoo.com (smtp103.rog.mail.re2.yahoo.com [206.190.36.81]) by mx1.FreeBSD.org (Postfix) with SMTP id 7465643D2F for ; Thu, 28 Apr 2005 20:08:24 +0000 (GMT) (envelope-from mikej@rogers.com) Received: from unknown (HELO 172.16.0.1) (mikej@69.193.222.195 with login) by smtp103.rog.mail.re2.yahoo.com with SMTP; 28 Apr 2005 20:08:23 -0000 Received: from 172.16.0.199 (SquirrelMail authenticated user mikej) by 172.16.0.1 with HTTP; Thu, 28 Apr 2005 16:08:15 -0400 (EDT) Message-ID: <3418.172.16.0.199.1114718895.squirrel@172.16.0.1> In-Reply-To: <200504281926.j3SJQi2q010726@defang9.net.ohio-state.edu> References: <200504281926.j3SJQi2q010726@defang9.net.ohio-state.edu> Date: Thu, 28 Apr 2005 16:08:15 -0400 (EDT) From: "Mike Jakubik" To: "Olaf Stein" User-Agent: SquirrelMail/1.5.1 [CVS] MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit cc: freebsd-ports@freebsd.org Subject: Re: sendmail relay host problem X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Apr 2005 20:08:25 -0000 On Thu, April 28, 2005 3:26 pm, Olaf Stein said: > hi everybody > > I am running FBSD 5.3 with sendmail 8.12 on a custom installed system > (just > base and man) The only thing this machine is supposed to do is send > notification emails on certain events on an ftp server the ftp > notifications work, as other mail servers I have tried deliver them my old > machine doing this (FBSD 4.9) crashed and I unfortunately do not remember > exactly how I configured it And this belongs on the freebsd ports mailing list because? Try freebsd-questions or sendmail lists instead. From owner-freebsd-ports@FreeBSD.ORG Thu Apr 28 21:27:11 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFE5B16A4CE; Thu, 28 Apr 2005 21:27:11 +0000 (GMT) Received: from pi.codefab.com (pi.codefab.com [199.103.21.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 958EC43D58; Thu, 28 Apr 2005 21:27:11 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from localhost (localhost [127.0.0.1]) by pi.codefab.com (Postfix) with ESMTP id E68E75E86; Thu, 28 Apr 2005 17:27:10 -0400 (EDT) Received: from pi.codefab.com ([127.0.0.1]) by localhost (pi.codefab.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 64129-06; Thu, 28 Apr 2005 17:27:10 -0400 (EDT) Received: from [192.168.1.3] (pool-68-161-53-96.ny325.east.verizon.net [68.161.53.96]) by pi.codefab.com (Postfix) with ESMTP id ACE355EB7; Thu, 28 Apr 2005 17:27:09 -0400 (EDT) Message-ID: <4271550C.8080308@mac.com> Date: Thu, 28 Apr 2005 17:26:36 -0400 From: Chuck Swiger Organization: The Courts of Chaos User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.7) Gecko/20050414 X-Accept-Language: en-us, en MIME-Version: 1.0 To: obrien@freebsd.org References: <20050426170115.GB45067@dragon.NUXI.org> <20050426195809.1fb28305.flynn@energyhq.es.eu.org> <20050428152140.GB53068@dragon.NUXI.org> <20050428163450.GA79570@xor.obsecurity.org> <20050428192005.GA87545@dragon.NUXI.org> In-Reply-To: <20050428192005.GA87545@dragon.NUXI.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: amavisd-new at codefab.com cc: michael.hopkins@hopkins-research.com cc: freebsd-ports@freebsd.org cc: freebsd-amd64@freebsd.org Subject: Re: Attempted install of an Obj-C Foundation library X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Apr 2005 21:27:12 -0000 David O'Brien wrote: > On Thu, Apr 28, 2005 at 09:34:50AM -0700, Kris Kennaway wrote: [ ... ] >>> That is the shared version of libgcc.a. Why can't you use the static >>> version? >> >> Presumably because it wants to link it to relocatable object files. >> In general amd64 (and ia64 and sparc64) needs a PIC version of every >> system library, which FreeBSD doesn't currently do. > > Though we do have /usr/lib/libgcc_pic.a just for this case. At least at one point, Obj-C and the OPENSTEP frameworks supported static linking. [1] Also, the shared libraries evolved from being compiled against a fixed VM address: #define MH_FVMLIB 0x3 /* fixed VM shared library file */ ...to the current default of being PIC, since there were some very ugly collisions when libraries grew too big and started running over each other: #define MH_DYLIB 0x6 /* dynamically bound shared library */ Of course, the GNUSTEP project is using the native object format (presumably ELF), rather than MachO, but how it handles frameworks-- shared libraries in the local parlance-- is likely to closely resemble how OPENSTEP worked. I don't know whether saying that this stuff used to work on other platforms is useful or not to Michael, but it did. :-) -- -Chuck [1]: At least, there was a static version of the System framework, which includes what FreeBSD puts into libc.a, and I think the basic Foundation classes were also available as a static lib, too. Some of the fancier stuff like EOF or database adaptors, were only available as shared libraries, because those things used Mach's equivalent to dlopen() for dynamicly loading stuff when needed as a matter of course. From owner-freebsd-ports@FreeBSD.ORG Thu Apr 28 21:31:46 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D07916A4CE; Thu, 28 Apr 2005 21:31:46 +0000 (GMT) Received: from customer-relay.songnetworks.se (customer-relay.songnetworks.se [195.42.210.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28C5E43D1D; Thu, 28 Apr 2005 21:31:43 +0000 (GMT) (envelope-from jnbg@blomberg.tk) Received: from manicken.blomberg (unknown [62.95.95.240]) by customer-relay.songnetworks.se (Postfix) with ESMTP id 418509AD85; Thu, 28 Apr 2005 23:31:39 +0200 (CEST) Received: from [192.168.1.6] (gulliver.blomberg [192.168.1.6]) by manicken.blomberg (Postfix) with ESMTP id 93D786D41B; Thu, 28 Apr 2005 23:31:22 +0200 (CEST) Message-ID: <42715627.7070706@blomberg.tk> Date: Thu, 28 Apr 2005 23:31:19 +0200 From: =?ISO-8859-1?Q?J=F6rgen_Blomberg?= User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: sv, en-us, en MIME-Version: 1.0 To: Lev Serebryakov References: <426E9BCB.6030006@san.rr.com> <20050426195839.GB42269@xor.obsecurity.org> <20050426230958.6045156d@it.buh.cameradicommercio.ro> <20050426201451.GA45206@xor.obsecurity.org> <20050426231951.0daba01f@it.buh.cameradicommercio.ro> <20050426202317.GA58236@xor.obsecurity.org> <20050426232916.0c8f186e@it.buh.cameradicommercio.ro> <427110EC.40404@blomberg.tk> <1586139784.20050428234039@serebryakov.spb.ru> In-Reply-To: <1586139784.20050428234039@serebryakov.spb.ru> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: Ion-Mihai Tetcu cc: ports@freebsd.org cc: "Raymundo M. Vega" Subject: Re: Make index fail X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Apr 2005 21:31:46 -0000 Lev Serebryakov wrote: > Hello Jorgen, > > Thursday, April 28, 2005, 8:35:56 PM, you wrote: > > JB> I have seen this warning since april 11. > JB> [jbadm@compaq /]% cd /usr/ports/devel/mingw32-binutils/ > JB> [jbadm@compaq /<2>devel/mingw32-binutils]% make describe > JB> "/usr/ports/Mk/bsd.port.mk", line 4847: warning: duplicate script > JB> for target "add-plist-post" ignored > JB> mingw32-binutils-2.15.94.20050118.1,1|/usr/ports/devel/mingw32- > JB> binutils|/usr/local|FSF binutils-2.15 for Windows cross-development > JB> |/usr/ports/devel/mingw32-binutils/pkg-descr|lev@FreeBSD.org| > JB> devel||||/usr/ports/devel/gmake /usr/ports/devel/libtool13 > JB> ||http://www.mingw.org/ > JB> [jbadm@compaq /<2>devel/mingw32-binutils]% cat /etc/make.conf > JB> CPUTYPE=i686 > JB> CFLAGS= -O -pipe > JB> WITH_OPENSSL_BASE=yes > JB> # -- use.perl generated deltas -- # > JB> # Created: Sat Nov 6 15:51:38 2004 > JB> # Setting to use base perl from ports: > JB> PERL_VER=5.6.1 > JB> PERL_VERSION=5.6.1 > JB> PERL_ARCH=mach > JB> NOPERL=yo > JB> NO_PERL=yo > JB> NO_PERL_WRAPPER=yo > Yes, this port overload `add-plist-post' because it is only way to > generate proper `pkg-plist' (we need to delete directory AFTER > deletion of info files, which are added in this target!). > It was discussed with portmrg@... > OK. I am glad to have learned the reason for this. /JB From owner-freebsd-ports@FreeBSD.ORG Thu Apr 28 22:57:20 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9221916A4CE for ; Thu, 28 Apr 2005 22:57:20 +0000 (GMT) Received: from relay.pair.com (relay00.pair.com [209.68.1.20]) by mx1.FreeBSD.org (Postfix) with SMTP id B637D43D4C for ; Thu, 28 Apr 2005 22:57:19 +0000 (GMT) (envelope-from alejandro@varnet.biz) Received: (qmail 42745 invoked from network); 28 Apr 2005 22:57:18 -0000 Received: from unknown (HELO ale.varnet.bsd) (unknown) by unknown with SMTP; 28 Apr 2005 22:57:18 -0000 X-pair-Authenticated: 200.115.214.28 Date: Thu, 28 Apr 2005 19:58:24 -0300 From: Alejandro Pulver To: alejandro@varnet.biz Message-ID: <20050428195824.1e46e96a@ale.varnet.bsd> In-Reply-To: <2109.200.115.214.28.1114713334.squirrel@webmail1.pair.com> References: <2109.200.115.214.28.1114713334.squirrel@webmail1.pair.com> X-Mailer: Sylpheed-Claws 0.9.12b (GTK+ 1.2.10; i386-portbld-freebsd5.3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: freebsd-ports@freebsd.org Subject: [SOLVED] Re: OPTIONS problem X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Apr 2005 22:57:20 -0000 On Thu, 28 Apr 2005 15:35:34 -0300 (ART) "Alejandro Pulver" wrote: > Hello, > > I am making a meta-port that has options to choose which components to > install. > > Each component also has its own options, but when they are built as > dependencies, they do not prompt for their own options (neither use > the defaults), but they inherite the options from the meta-port. > > Is this supposed to work like this? > > How can I make dependencies prompt for their own options? > > I found some ports use a script for the configuration (in > "scripts/config", and create a "Makefile.inc"). Does it have > adventages over the OPTIONS variable? > > Thanks and Best Regards, > Ale Sorry, I was using many ports with the same PORTNAME but different PKGNAMESUFFIX (and OPTIONS uses ${PKGNAMEPREFIX}${PORTNAME}). Best Regards, Ale From owner-freebsd-ports@FreeBSD.ORG Thu Apr 28 23:20:48 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ECF3416A4CE for ; Thu, 28 Apr 2005 23:20:48 +0000 (GMT) Received: from relay.pair.com (relay00.pair.com [209.68.1.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 7906443D49 for ; Thu, 28 Apr 2005 23:20:48 +0000 (GMT) (envelope-from alejandro@varnet.biz) Received: (qmail 50933 invoked from network); 28 Apr 2005 23:20:47 -0000 Received: from unknown (HELO ale.varnet.bsd) (unknown) by unknown with SMTP; 28 Apr 2005 23:20:47 -0000 X-pair-Authenticated: 200.115.214.28 Date: Thu, 28 Apr 2005 20:21:54 -0300 From: Alejandro Pulver To: freebsd-ports@freebsd.org Message-ID: <20050428202154.7ba2429d@ale.varnet.bsd> X-Mailer: Sylpheed-Claws 0.9.12b (GTK+ 1.2.10; i386-portbld-freebsd5.3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: make install + OPTIONS + RUN_DEPENDS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Apr 2005 23:20:49 -0000 Hello, I have a meta-port that depends on ports that have options. If I do a "make", then the meta-port prompts me to choose the ports I want to install. Then it does nothing (just touches the files in "work/"). After that I type "make install" and it installs all the ports it RUN_DEPENDS on (each of them prompts for their own options). But if I do a "make install" the first time then the dependencies do not prompt for options. Is this supposed to work like this? How can I make dependencies prompt for their options when the user types "make install" (without a previous "make")? Thanks and Best Regards, Ale From owner-freebsd-ports@FreeBSD.ORG Thu Apr 28 23:26:55 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9575C16A4CE for ; Thu, 28 Apr 2005 23:26:55 +0000 (GMT) Received: from connectmail.carleton.ca (connectmail.carleton.ca [134.117.2.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B25643D46 for ; Thu, 28 Apr 2005 23:26:55 +0000 (GMT) (envelope-from adamw@FreeBSD.org) Received: from [192.168.1.105] ([134.117.145.25]) by connectmail.carleton.ca (iPlanet Messaging Server 5.2 HotFix 2.02 (built Oct 21 2004)) with ESMTPSA id <0IFO00LFJJSUDX@connectmail.carleton.ca> for freebsd-ports@freebsd.org; Thu, 28 Apr 2005 19:26:54 -0400 (EDT) Date: Thu, 28 Apr 2005 19:28:12 -0400 From: Adam Weinberger In-reply-to: <20050428202154.7ba2429d@ale.varnet.bsd> To: Alejandro Pulver Message-id: <4271718C.4070302@FreeBSD.org> MIME-version: 1.0 Content-type: text/plain; charset=ISO-8859-1; format=flowed Content-transfer-encoding: 7BIT X-Accept-Language: en-ca, en-gb, en-us, en User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-CA; rv:1.7.5) Gecko/20050105 Thunderbird/1.0 OMFG PANTS References: <20050428202154.7ba2429d@ale.varnet.bsd> cc: freebsd-ports@freebsd.org Subject: Re: make install + OPTIONS + RUN_DEPENDS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Apr 2005 23:26:55 -0000 Alejandro Pulver wrote: > Hello, > > I have a meta-port that depends on ports that have options. > > If I do a "make", then the meta-port prompts me to choose the ports I > want to install. Then it does nothing (just touches the files in > "work/"). > > After that I type "make install" and it installs all the ports it > RUN_DEPENDS on (each of them prompts for their own options). > > But if I do a "make install" the first time then the dependencies do not > prompt for options. > > Is this supposed to work like this? How can I make dependencies prompt > for their options when the user types "make install" (without a > previous "make")? > > Thanks and Best Regards, > Ale It only prompts for configuration options the first time. You can see this for yourself by first running "make rmconfig" for each of the dependency ports. # Adam -- Adam Weinberger adamw@magnesium.net || adamw@FreeBSD.org adamw@vectors.cx || adamw@gnome.org http://www.vectors.cx From owner-freebsd-ports@FreeBSD.ORG Thu Apr 28 23:57:32 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 603F916A4CE for ; Thu, 28 Apr 2005 23:57:32 +0000 (GMT) Received: from relay03.pair.com (relay03.pair.com [209.68.5.17]) by mx1.FreeBSD.org (Postfix) with SMTP id B50F543D48 for ; Thu, 28 Apr 2005 23:57:31 +0000 (GMT) (envelope-from alejandro@varnet.biz) Received: (qmail 58904 invoked from network); 28 Apr 2005 23:57:30 -0000 Received: from unknown (HELO ale.varnet.bsd) (unknown) by unknown with SMTP; 28 Apr 2005 23:57:30 -0000 X-pair-Authenticated: 200.115.214.28 Date: Thu, 28 Apr 2005 20:58:39 -0300 From: Alejandro Pulver To: Adam Weinberger Message-ID: <20050428205839.3cb79e2b@ale.varnet.bsd> In-Reply-To: <4271718C.4070302@FreeBSD.org> References: <20050428202154.7ba2429d@ale.varnet.bsd> <4271718C.4070302@FreeBSD.org> X-Mailer: Sylpheed-Claws 0.9.12b (GTK+ 1.2.10; i386-portbld-freebsd5.3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: freebsd-ports@freebsd.org Subject: Re: make install + OPTIONS + RUN_DEPENDS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Apr 2005 23:57:32 -0000 On Thu, 28 Apr 2005 19:28:12 -0400 Adam Weinberger wrote: > Alejandro Pulver wrote: > > Hello, > > > > I have a meta-port that depends on ports that have options. > > > > If I do a "make", then the meta-port prompts me to choose the ports > > I want to install. Then it does nothing (just touches the files in > > "work/"). > > > > After that I type "make install" and it installs all the ports it > > RUN_DEPENDS on (each of them prompts for their own options). > > > > But if I do a "make install" the first time then the dependencies do > > not prompt for options. > > > > Is this supposed to work like this? How can I make dependencies > > prompt for their options when the user types "make install" (without > > a previous "make")? > > > > Thanks and Best Regards, > > Ale > > It only prompts for configuration options the first time. You can see > this for yourself by first running "make rmconfig" for each of the > dependency ports. > > # Adam > Hello, Thank you for your reply. I tried that, but it did not worked. Thanks and Best Regads, Ale From owner-freebsd-ports@FreeBSD.ORG Fri Apr 29 02:50:47 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62A0B16A4CE; Fri, 29 Apr 2005 02:50:47 +0000 (GMT) Received: from sccrmhc13.comcast.net (sccrmhc13.comcast.net [204.127.202.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id B972343D4C; Fri, 29 Apr 2005 02:50:44 +0000 (GMT) (envelope-from dantavious@comcast.net) Received: from [192.168.1.109] (pcp0011735444pcs.owngsm01.md.comcast.net[69.251.5.3]) by comcast.net (sccrmhc13) with ESMTP id <20050429025042016002ujcve>; Fri, 29 Apr 2005 02:50:42 +0000 From: Derrick Edwards To: freebsd-ports@freebsd.org Date: Thu, 28 Apr 2005 23:11:36 -0400 User-Agent: KMail/1.8 References: <4266B75D.3020206@science.uva.nl> <20050420204038.GD22300@goofy.cultdeadsheep.org> In-Reply-To: <20050420204038.GD22300@goofy.cultdeadsheep.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200504282311.37499.dantavious@comcast.net> cc: Clement Laforet cc: ports@FreeBSD.org cc: Jeroen van der Ham Subject: Re: FreeBSD Port: apache-2.0.54 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Apr 2005 02:50:47 -0000 I guess this is off the subject a bit but.... I can not seem to start apache. I have attempted to use the startup script and also by trying to run the dameon(httpd).... root@focus# /usr/local/etc/rc.d/apache2.sh restart Performing sanity check on apache2 configuration: Syntax OK apache2 not running? (check /var/run/httpd.pid). Starting apache2. root@focus# /usr/local/etc/rc.d/apache2.sh status apache2 is not running. I even reinstalled the port. Anyone having the same problem? I am using 5.4-STABLE FreeBSD Thanks for your assistance Dantavious > On Wed, Apr 20, 2005 at 10:11:09PM +0200, Jeroen van der Ham wrote: > > Hi, > > > I was reinstalling apache2 today and my eye fell on the last bit of the > > process: > > > > => Installing /usr/local/etc/rc.d/apache2.sh startup script. > > > > To run apache www server from startup, add apache2_enable="YES" > > in your /etc/rc.conf. Extra options can be found in startup script. > > [: /usr/local/share/doc/apache2/LICENSE: unexpected operator > > ===> Compressing manual pages for apache-2.0.54 > > ===> Running ldconfig > > > > Note the line about the license. > > > > Is this the right place to send a bug report like this? Or should I send > > it somewhere else? > > It's a bug in bsd.port.mk, already reported (look for problem reports > assigned to portmgr from Sam Lawrance). And don't worry, it's > harmless. > > BTW, thanks for the report. > > Cheers, > clem From owner-freebsd-ports@FreeBSD.ORG Fri Apr 29 02:50:47 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62A0B16A4CE; Fri, 29 Apr 2005 02:50:47 +0000 (GMT) Received: from sccrmhc13.comcast.net (sccrmhc13.comcast.net [204.127.202.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id B972343D4C; Fri, 29 Apr 2005 02:50:44 +0000 (GMT) (envelope-from dantavious@comcast.net) Received: from [192.168.1.109] (pcp0011735444pcs.owngsm01.md.comcast.net[69.251.5.3]) by comcast.net (sccrmhc13) with ESMTP id <20050429025042016002ujcve>; Fri, 29 Apr 2005 02:50:42 +0000 From: Derrick Edwards To: freebsd-ports@freebsd.org Date: Thu, 28 Apr 2005 23:11:36 -0400 User-Agent: KMail/1.8 References: <4266B75D.3020206@science.uva.nl> <20050420204038.GD22300@goofy.cultdeadsheep.org> In-Reply-To: <20050420204038.GD22300@goofy.cultdeadsheep.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200504282311.37499.dantavious@comcast.net> cc: Clement Laforet cc: ports@FreeBSD.org cc: Jeroen van der Ham Subject: Re: FreeBSD Port: apache-2.0.54 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Apr 2005 02:50:47 -0000 I guess this is off the subject a bit but.... I can not seem to start apache. I have attempted to use the startup script and also by trying to run the dameon(httpd).... root@focus# /usr/local/etc/rc.d/apache2.sh restart Performing sanity check on apache2 configuration: Syntax OK apache2 not running? (check /var/run/httpd.pid). Starting apache2. root@focus# /usr/local/etc/rc.d/apache2.sh status apache2 is not running. I even reinstalled the port. Anyone having the same problem? I am using 5.4-STABLE FreeBSD Thanks for your assistance Dantavious > On Wed, Apr 20, 2005 at 10:11:09PM +0200, Jeroen van der Ham wrote: > > Hi, > > > I was reinstalling apache2 today and my eye fell on the last bit of the > > process: > > > > => Installing /usr/local/etc/rc.d/apache2.sh startup script. > > > > To run apache www server from startup, add apache2_enable="YES" > > in your /etc/rc.conf. Extra options can be found in startup script. > > [: /usr/local/share/doc/apache2/LICENSE: unexpected operator > > ===> Compressing manual pages for apache-2.0.54 > > ===> Running ldconfig > > > > Note the line about the license. > > > > Is this the right place to send a bug report like this? Or should I send > > it somewhere else? > > It's a bug in bsd.port.mk, already reported (look for problem reports > assigned to portmgr from Sam Lawrance). And don't worry, it's > harmless. > > BTW, thanks for the report. > > Cheers, > clem From owner-freebsd-ports@FreeBSD.ORG Fri Apr 29 03:11:40 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 28F1816A4CE for ; Fri, 29 Apr 2005 03:11:40 +0000 (GMT) Received: from forrie.com (forrie.hsd1.ma.comcast.net [24.147.45.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6EF0B43D41 for ; Fri, 29 Apr 2005 03:11:39 +0000 (GMT) (envelope-from forrie@forrie.com) Received: from [192.168.1.99] (i-99.forrie.net. [192.168.1.99]) (authenticated bits=0) by forrie.com with ESMTP id j3T3BZbn015141 for ; Thu, 28 Apr 2005 23:11:35 -0400 (EDT) (envelope-from forrie@forrie.com) Message-ID: <4271A578.60003@forrie.com> Date: Thu, 28 Apr 2005 23:09:44 -0400 From: Forrest Aldrich User-Agent: Mozilla Thunderbird 1.0.4 (Windows/20050427) X-Accept-Language: en-us, en MIME-Version: 1.0 To: ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-RAVMilter-Version: 8.3.0(snapshot 20010925) (forrie.hsd1.ma.comcast.net) X-MailScanner-LocalNet: Found to be clean Subject: Saved configuration in ports, saved where? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Apr 2005 03:11:40 -0000 ===> Found saved configuration for php5-extensions-1.0 Where is this being saved? I feel silly, but I can't seem to figure it out... it's not in the directory, not under distfiles... is there a switch, at least, to force an override. Thanks... _F From owner-freebsd-ports@FreeBSD.ORG Fri Apr 29 03:24:13 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2618416A4CE for ; Fri, 29 Apr 2005 03:24:13 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id D6BC243D39 for ; Fri, 29 Apr 2005 03:24:12 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 7A09451F7B; Thu, 28 Apr 2005 20:24:11 -0700 (PDT) Date: Thu, 28 Apr 2005 20:24:09 -0700 From: Kris Kennaway To: Forrest Aldrich Message-ID: <20050429032409.GA60029@xor.obsecurity.org> References: <4271A578.60003@forrie.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="EVF5PPMfhYS0aIcm" Content-Disposition: inline In-Reply-To: <4271A578.60003@forrie.com> User-Agent: Mutt/1.4.2.1i cc: ports@freebsd.org Subject: Re: Saved configuration in ports, saved where? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Apr 2005 03:24:13 -0000 --EVF5PPMfhYS0aIcm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 28, 2005 at 11:09:44PM -0400, Forrest Aldrich wrote: > =3D=3D=3D> Found saved configuration for php5-extensions-1.0 >=20 > Where is this being saved? I feel silly, but I can't seem to figure it > out... it's not in the directory, not under distfiles... >=20 > is there a switch, at least, to force an override. man ports Kris --EVF5PPMfhYS0aIcm Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCcajWWry0BWjoQKURAs6DAKC0Z+QZ8UPiQTBdBFvYRNIht7RjEACgnyPZ HbBmEjjCC54mCD2xloCEF2Y= =8XqV -----END PGP SIGNATURE----- --EVF5PPMfhYS0aIcm-- From owner-freebsd-ports@FreeBSD.ORG Fri Apr 29 03:25:17 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9178316A4CE for ; Fri, 29 Apr 2005 03:25:17 +0000 (GMT) Received: from internet.potentialtech.com (h-66-167-251-6.phlapafg.covad.net [66.167.251.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13DBB43D2D for ; Fri, 29 Apr 2005 03:25:17 +0000 (GMT) (envelope-from wmoran@potentialtech.com) Received: from localhost (24-53-250-148.pittpa.adelphia.net [24.53.250.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by internet.potentialtech.com (Postfix) with ESMTP id 4037569A21; Thu, 28 Apr 2005 23:25:16 -0400 (EDT) Date: Thu, 28 Apr 2005 23:25:28 -0400 From: Bill Moran To: Forrest Aldrich Message-Id: <20050428232528.4a8ec101.wmoran@potentialtech.com> In-Reply-To: <4271A578.60003@forrie.com> References: <4271A578.60003@forrie.com> Organization: Potential Technologies X-Mailer: Sylpheed version 1.0.4 (GTK+ 1.2.10; i386-portbld-freebsd5.3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: ports@freebsd.org Subject: Re: Saved configuration in ports, saved where? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Apr 2005 03:25:17 -0000 On Thu, 28 Apr 2005 23:09:44 -0400 Forrest Aldrich wrote: > ===> Found saved configuration for php5-extensions-1.0 > > Where is this being saved? I feel silly, but I can't seem to figure it > out... it's not in the directory, not under distfiles... > > is there a switch, at least, to force an override. It's saved in /var/db/ports. I don't know if there's an override, but you can delete the applicable config from /var/db/ports, or manually adjust it. -- Bill Moran Potential Technologies http://www.potentialtech.com From owner-freebsd-ports@FreeBSD.ORG Fri Apr 29 03:29:46 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9FBFA16A4CE for ; Fri, 29 Apr 2005 03:29:46 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A41643D3F for ; Fri, 29 Apr 2005 03:29:46 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 8A46D514C9; Thu, 28 Apr 2005 20:29:45 -0700 (PDT) Date: Thu, 28 Apr 2005 20:29:45 -0700 From: Kris Kennaway To: Bill Moran Message-ID: <20050429032945.GA60169@xor.obsecurity.org> References: <4271A578.60003@forrie.com> <20050428232528.4a8ec101.wmoran@potentialtech.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="dDRMvlgZJXvWKvBx" Content-Disposition: inline In-Reply-To: <20050428232528.4a8ec101.wmoran@potentialtech.com> User-Agent: Mutt/1.4.2.1i cc: ports@freebsd.org cc: Forrest Aldrich Subject: Re: Saved configuration in ports, saved where? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Apr 2005 03:29:46 -0000 --dDRMvlgZJXvWKvBx Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 28, 2005 at 11:25:28PM -0400, Bill Moran wrote: > On Thu, 28 Apr 2005 23:09:44 -0400 > Forrest Aldrich wrote: >=20 > > =3D=3D=3D> Found saved configuration for php5-extensions-1.0 > >=20 > > Where is this being saved? I feel silly, but I can't seem to figure it > > out... it's not in the directory, not under distfiles... > >=20 > > is there a switch, at least, to force an override. >=20 > It's saved in /var/db/ports. >=20 > I don't know if there's an override, but you can delete the applicable > config from /var/db/ports, or manually adjust it. man ports :) Kris --dDRMvlgZJXvWKvBx Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCcaopWry0BWjoQKURAiguAKCXi/3TvMbYJUc1qA8j8YZtMs0xDwCg9+eP 9mxuwijNAtz81j+OzzQnOtY= =I7vu -----END PGP SIGNATURE----- --dDRMvlgZJXvWKvBx-- From owner-freebsd-ports@FreeBSD.ORG Fri Apr 29 03:34:03 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16B9316A4CE for ; Fri, 29 Apr 2005 03:34:03 +0000 (GMT) Received: from internet.potentialtech.com (h-66-167-251-6.phlapafg.covad.net [66.167.251.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2DD543D53 for ; Fri, 29 Apr 2005 03:34:02 +0000 (GMT) (envelope-from wmoran@potentialtech.com) Received: from localhost (24-53-250-148.pittpa.adelphia.net [24.53.250.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by internet.potentialtech.com (Postfix) with ESMTP id 0B7EF69A22; Thu, 28 Apr 2005 23:34:02 -0400 (EDT) Date: Thu, 28 Apr 2005 23:34:12 -0400 From: Bill Moran To: Kris Kennaway Message-Id: <20050428233412.78bf7d5d.wmoran@potentialtech.com> In-Reply-To: <20050429032945.GA60169@xor.obsecurity.org> References: <4271A578.60003@forrie.com> <20050428232528.4a8ec101.wmoran@potentialtech.com> <20050429032945.GA60169@xor.obsecurity.org> Organization: Potential Technologies X-Mailer: Sylpheed version 1.0.4 (GTK+ 1.2.10; i386-portbld-freebsd5.3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: ports@freebsd.org cc: forrie@forrie.com Subject: Re: Saved configuration in ports, saved where? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Apr 2005 03:34:03 -0000 On Thu, 28 Apr 2005 20:29:45 -0700 Kris Kennaway wrote: > On Thu, Apr 28, 2005 at 11:25:28PM -0400, Bill Moran wrote: > > On Thu, 28 Apr 2005 23:09:44 -0400 > > Forrest Aldrich wrote: > > > > > ===> Found saved configuration for php5-extensions-1.0 > > > > > > Where is this being saved? I feel silly, but I can't seem to figure it > > > out... it's not in the directory, not under distfiles... > > > > > > is there a switch, at least, to force an override. > > > > It's saved in /var/db/ports. > > > > I don't know if there's an override, but you can delete the applicable > > config from /var/db/ports, or manually adjust it. > > man ports :) >From the Bugs section: This man page is too long. ;) But you're right ... the make config option does the trick. -- Bill Moran Potential Technologies http://www.potentialtech.com From owner-freebsd-ports@FreeBSD.ORG Fri Apr 29 03:43:24 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51C5A16A4CE for ; Fri, 29 Apr 2005 03:43:24 +0000 (GMT) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B65C43D3F for ; Fri, 29 Apr 2005 03:43:23 +0000 (GMT) (envelope-from freebsd-ports@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1DRMJs-0007ys-VP for freebsd-ports@freebsd.org; Fri, 29 Apr 2005 05:37:37 +0200 Received: from pcp08490587pcs.levtwn01.pa.comcast.net ([68.83.169.224]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 29 Apr 2005 05:37:36 +0200 Received: from apeiron+usenet by pcp08490587pcs.levtwn01.pa.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 29 Apr 2005 05:37:36 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: Christopher Nehren Date: Fri, 29 Apr 2005 03:37:31 +0000 (UTC) Organization: /usr/bin/false Lines: 27 Message-ID: References: <4266B75D.3020206@science.uva.nl> <20050420204038.GD22300@goofy.cultdeadsheep.org> <200504282311.37499.dantavious@comcast.net> X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: pcp08490587pcs.levtwn01.pa.comcast.net User-Agent: slrn/0.9.8.1 (FreeBSD) Sender: news Subject: Re: FreeBSD Port: apache-2.0.54 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Apr 2005 03:43:24 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 2005-04-29, Derrick Edwards scribbled these curious markings: > I guess this is off the subject a bit but.... > I can not seem to start apache. I have attempted to use the startup script and > also by trying to run the dameon(httpd).... You forgot to post the output of the error log which you've read and which has thus given you an idea about what might be wrong. Best Regards, Christopher Nehren -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCca1Pk/lo7zvzJioRAq3/AKC271GlW5kM1hyxBOCR3B0AaN22xACgkiDX /Z1Ak2vhsU4XDMfgguQYVOA= =DmAJ -----END PGP SIGNATURE----- -- I abhor a system designed for the "user", if that word is a coded pejorative meaning "stupid and unsophisticated". -- Ken Thompson If you ask the wrong questions, you get answers like "42" and "God". Unix is user friendly. However, it isn't idiot friendly. From owner-freebsd-ports@FreeBSD.ORG Fri Apr 29 09:10:46 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2043C16A4CE for ; Fri, 29 Apr 2005 09:10:46 +0000 (GMT) Received: from eddie.nitro.dk (port324.ds1-khk.adsl.cybercity.dk [212.242.113.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id 527AC43D49 for ; Fri, 29 Apr 2005 09:10:45 +0000 (GMT) (envelope-from simon@eddie.nitro.dk) Received: by eddie.nitro.dk (Postfix, from userid 1000) id 2388B119C4C; Fri, 29 Apr 2005 11:10:44 +0200 (CEST) Date: Fri, 29 Apr 2005 11:10:43 +0200 From: "Simon L. Nielsen" To: Jon Noack Message-ID: <20050429091043.GD16549@eddie.nitro.dk> References: <42689D49.4050908@alumni.rice.edu> <20050422140619.GA785@zaphod.nitro.dk> <42694383.7090500@alumni.rice.edu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Qbvjkv9qwOGw/5Fx" Content-Disposition: inline In-Reply-To: <42694383.7090500@alumni.rice.edu> User-Agent: Mutt/1.5.9i cc: ports@freebsd.org Subject: Re: portupgrade regression? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Apr 2005 09:10:46 -0000 --Qbvjkv9qwOGw/5Fx Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2005.04.22 13:33:39 -0500, Jon Noack wrote: > On 4/22/2005 9:06 AM, Simon L. Nielsen wrote: > >On 2005.04.22 01:44:25 -0500, Jon Noack wrote: > >>Ever since the security fix for CAN-2005-0610, portupgrade and company= =20 > >>have been behaving oddly for me. The root cause of this seems to be=20 > >>that the pkgdb is being updated needlessly with every operation: > > > >After the patch pkgdb.fixme is created in /var/db/pkg, which causes > >the portupgrade package database update check to always fail. >=20 > I get it now: portupgrade compares the /var/db/pkg timestamp to the=20 > pkgdb.db timestamp to figure out when to update. Creating pkgdb.fixme=20 > in /var/db/pkg will bump the /var/db/pkg timestamp and make it always=20 > seem like pkgdb.db is old and needs to be updating. Correct. > >>Am I trying to do something that I shouldn't? What is the correct > >>behavior here? > > > >It is definitely a bug that the package database is rebuild every > >time, and portversion fails due to that problem. The solution is > >probably to create pkgdb.fixme in another directory, but I haven't yet > >found a secure and reliable fix. I am looking into it (and if anybody > >has good ideas, or patches, please contact me). >=20 > The following change (relative to the original source) leaves the=20 > default as the @db_dir but allows one to override it with PKG_TMPDIR or= =20 > TMPDIR: > > ********************************************************************** > --- pkgdb.rb.orig Mon Oct 18 09:59:09 2004 > +++ pkgdb.rb Fri Apr 22 13:25:20 2005 > @@ -96,7 +96,7 @@ > @db_dir =3D File.expand_path(new_db_dir || ENV['PKG_DBDIR'] ||=20 > '/var/db/pkg') >=20 > @db_file =3D File.join(@db_dir, 'pkgdb.db') > - @tmp_dir =3D ENV['PKG_TMPDIR'] || ENV['TMPDIR'] || '/var/tmp' > + @tmp_dir =3D ENV['PKG_TMPDIR'] || ENV['TMPDIR'] || @db_dir > @fixme_file =3D File.join(@tmp_dir, 'pkgdb.fixme') > @db_filebase =3D @db_file.sub(/\.db$/, '') > close_db > ********************************************************************** >=20 > One would need to apply the same change to pkgsqldb.rb. That change=20 > resolves the issue for me but preserves a secure default. Is that an=20 > acceptable compromise? The problem with that solution leaves people with legitimate setups (where PKG_TMPDIR or TMPDIR is set to a world write able dir) are then vulnerable to symlink attacks. I think I have found the way to fix this both so it works for non-root, make pkgdb.db not be updated all the time, and so it does not cause new security problems, but I need to work out a few quirks (my first version did not work correctly). Hopefully I will get it working this weekend, if not I will add a bandaid so you can make it work by setting an environment variable. Sorry about the delay in fixing this. --=20 Simon L. Nielsen --Qbvjkv9qwOGw/5Fx Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCcfoTh9pcDSc1mlERAufTAKCibxUuraDtdxnC2Qaxqco3gR2HpgCeJd4o lAQ3YSO/bwMUT1aZeaA9GMI= =crGv -----END PGP SIGNATURE----- --Qbvjkv9qwOGw/5Fx-- From owner-freebsd-ports@FreeBSD.ORG Fri Apr 29 12:19:08 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 407DE16A4CE for ; Fri, 29 Apr 2005 12:19:08 +0000 (GMT) Received: from linion.ion.lu (linion.ion.lu [80.90.47.168]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F17D43D55 for ; Fri, 29 Apr 2005 12:19:06 +0000 (GMT) (envelope-from steve@ion.lu) Received: (qmail 89283 invoked by uid 0); 29 Apr 2005 14:19:03 +0200 Received: from 80.90.39.213 by linion.ion.lu (envelope-from , uid 89) with qmail-scanner-1.24-st-qms (clamdscan: 0.81/685. spamassassin: 3.0.2. perlscan: 1.24-st-qms. Clear:RC:0(80.90.39.213):SA:0(-2.8/5.0):. Processed in 6.821045 secs); 29 Apr 2005 12:19:03 -0000 X-Spam-Status: No, hits=-2.8 required=5.0 X-Antivirus-ION.LU-Mail-From: steve@ion.lu via linion.ion.lu X-Antivirus-ION.LU: 1.24-st-qms (Clear:RC:0(80.90.39.213):SA:0(-2.8/5.0):. Processed in 6.821045 secs Process 89259) Received: from vodsl-2005.vo.lu (HELO ?192.168.0.21?) (steve@ion.lu@80.90.39.213) by linion.ion.lu with SMTP; 29 Apr 2005 14:18:56 +0200 Message-ID: <4272262D.7010407@ion.lu> Date: Fri, 29 Apr 2005 14:18:53 +0200 From: Steve Clement Organization: ION Network Solutions User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050405) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-ports@freebsd.org X-Enigmail-Version: 0.91.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: [freebsd-sha256] compile problem X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Apr 2005 12:19:08 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, I encounter the following on: uname -a FreeBSD zinc.ion.lu 5.0-RELEASE-p19 FreeBSD 5.0-RELEASE-p19 #3: Tue Jan 27 10:21:43 GMT 2004 root@zinc.ion.lu:/usr/obj/usr/src/sys/ZINC i386 zinc freebsd-sha256 # make ===> Building for freebsd-sha256-20050310 Warning: Object directory not changed from original /usr/ports/sysutils/freebsd-sha256/work/freebsd-sha256-20050310 cc -O -pipe -mcpu=pentiumpro -mcpu=pentiumpro -Werror -Wall - -Wno-format-y2k -W -Wstrict-prototypes -Wmissing-prototypes - -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch - -Wshadow -Wcast-align -Wuninitialized -ansi -pedantic - -Wbad-function-cast -Wchar-subscripts -Winline -Wnested-externs - -Wredundant-decls -c md5.c cc1: warnings being treated as errors In file included from md5.c:24: /usr/include/sys/time.h: In function `timespec2bintime': /usr/include/sys/time.h:133: warning: ISO C89 forbids long long integer constants /usr/include/sys/time.h: In function `timeval2bintime': /usr/include/sys/time.h:150: warning: ISO C89 forbids long long integer constants md5.c: In function `MDString': md5.c:176: warning: pointer targets in passing arg 1 of pointer to function differ in signedness md5.c:178: warning: pointer targets in passing arg 1 of pointer to function differ in signedness md5.c:180: warning: pointer targets in passing arg 1 of pointer to function differ in signedness md5.c: In function `MDTestSuite': md5.c:261: warning: pointer targets in passing arg 1 of pointer to function differ in signedness *** Error code 1 Stop in /usr/ports/sysutils/freebsd-sha256/work/freebsd-sha256-20050310. *** Error code 1 Stop in /usr/ports/sysutils/freebsd-sha256. cheers, Steve C - -- ION Network Solutions Steve Clement Unix System Administrator 209, rue des Romains L-8041 Bertrange Tel: +352 261 276-2 Fax: +352 261 276-9 mailto:steve@ion.lu http://www.ion.lu -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCciYsMH8DIBsiCrgRArOeAJ4nVHwt/jOKu9NoEvZVER/q3yZJBQCdFAyx 15TK/DMoCCa7sxcy2dpWHU8= =rJW/ -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Fri Apr 29 13:56:34 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DDFE16A4CE for ; Fri, 29 Apr 2005 13:56:34 +0000 (GMT) Received: from postfix4-2.free.fr (postfix4-2.free.fr [213.228.0.176]) by mx1.FreeBSD.org (Postfix) with ESMTP id D6FCE43D31 for ; Fri, 29 Apr 2005 13:56:33 +0000 (GMT) (envelope-from hb4j@free.fr) Received: from imp2-q.free.fr (imp2-q.free.fr [212.27.42.2]) by postfix4-2.free.fr (Postfix) with ESMTP id 204A2319312 for ; Fri, 29 Apr 2005 15:56:31 +0200 (CEST) Received: by imp2-q.free.fr (Postfix, from userid 33) id E62B164DED; Fri, 29 Apr 2005 15:56:30 +0200 (MEST) Received: from 195.124.114.37 ([195.124.114.37]) by imp2-q.free.fr (IMP) with HTTP for ; Fri, 29 Apr 2005 15:56:30 +0200 Message-ID: <1114782990.42723d0eccf1f@imp2-q.free.fr> Date: Fri, 29 Apr 2005 15:56:30 +0200 From: hb4j@free.fr To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 3.2.5 X-Originating-IP: 195.124.114.37 Subject: successful installation of VMWare on FreeBSD ? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Apr 2005 13:56:34 -0000 hi everyone, has anyone been able to successfully install VMWare on FreeBSD ? (of course with the linux compat) if yes, which version was it ? (I assume the tar.gz) thanks in advance :o) hb4j From owner-freebsd-ports@FreeBSD.ORG Fri Apr 29 16:12:00 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C9EBD16A4CE for ; Fri, 29 Apr 2005 16:12:00 +0000 (GMT) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01E1543D55 for ; Fri, 29 Apr 2005 16:12:00 +0000 (GMT) (envelope-from freebsd-ports@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1DRXzN-0007TN-3E for freebsd-ports@freebsd.org; Fri, 29 Apr 2005 18:05:13 +0200 Received: from pcp08490587pcs.levtwn01.pa.comcast.net ([68.83.169.224]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 29 Apr 2005 18:05:13 +0200 Received: from apeiron+usenet by pcp08490587pcs.levtwn01.pa.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 29 Apr 2005 18:05:13 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: Christopher Nehren Date: Fri, 29 Apr 2005 16:04:13 +0000 (UTC) Organization: /usr/bin/false Lines: 28 Message-ID: References: <1114782990.42723d0eccf1f@imp2-q.free.fr> X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: pcp08490587pcs.levtwn01.pa.comcast.net User-Agent: slrn/0.9.8.1 (FreeBSD) Sender: news Subject: Re: successful installation of VMWare on FreeBSD ? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Apr 2005 16:12:00 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 2005-04-29, hb4j@free.fr scribbled these curious markings: > hi everyone, > > has anyone been able to successfully install VMWare on FreeBSD ? (of course with > the linux compat) cd /usr/ports/emulators/vmware3 make install Best Regards, Christopher Nehren -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCclxuk/lo7zvzJioRAgVoAKC6hdSYGvXPLNvkIj42KBqGlApXWQCgvEFM RDp+n3CEXe0WRT8idRe/bco= =XxJs -----END PGP SIGNATURE----- -- I abhor a system designed for the "user", if that word is a coded pejorative meaning "stupid and unsophisticated". -- Ken Thompson If you ask the wrong questions, you get answers like "42" and "God". Unix is user friendly. However, it isn't idiot friendly. From owner-freebsd-ports@FreeBSD.ORG Fri Apr 29 16:44:58 2005 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2AA6716A4CE; Fri, 29 Apr 2005 16:44:58 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01B6443D41; Fri, 29 Apr 2005 16:44:58 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from freefall.freebsd.org (thierry@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j3TGivpV041763; Fri, 29 Apr 2005 16:44:57 GMT (envelope-from thierry@freefall.freebsd.org) Received: (from thierry@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j3TGiv2U041759; Fri, 29 Apr 2005 16:44:57 GMT (envelope-from thierry) Date: Fri, 29 Apr 2005 16:44:57 GMT From: Thierry Thomas Message-Id: <200504291644.j3TGiv2U041759@freefall.freebsd.org> To: thierry@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/80454: UML-Tool poseidon doesn't work with linux-sun-jdk X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Apr 2005 16:44:58 -0000 Synopsis: UML-Tool poseidon doesn't work with linux-sun-jdk Responsible-Changed-From-To: freebsd-bugs->freebsd-ports Responsible-Changed-By: thierry Responsible-Changed-When: Fri Apr 29 16:43:58 GMT 2005 Responsible-Changed-Why: Set category to ports. http://www.freebsd.org/cgi/query-pr.cgi?pr=80454 From owner-freebsd-ports@FreeBSD.ORG Fri Apr 29 18:07:59 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A83DC16A4CE for ; Fri, 29 Apr 2005 18:07:59 +0000 (GMT) Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.131.111.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4852943D53 for ; Fri, 29 Apr 2005 18:07:59 +0000 (GMT) (envelope-from gerald@pfeifer.com) Received: from [128.131.111.60] (acrux [128.131.111.60]) by vexpert.dbai.tuwien.ac.at (Postfix) with ESMTP id CF0B613790; Fri, 29 Apr 2005 20:07:57 +0200 (CEST) Date: Fri, 29 Apr 2005 20:08:02 +0200 (CEST) From: Gerald Pfeifer To: Richard Bradley In-Reply-To: <200504271829.11390.rtb27@cam.ac.uk> Message-ID: References: <200504271829.11390.rtb27@cam.ac.uk> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: ports@freebsd.org Subject: Re: wine ignoring "Windows", "Profile" values in config X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Apr 2005 18:07:59 -0000 On Wed, 27 Apr 2005, Richard Bradley wrote: > I have wine-20050419 running on 5.3-RELEASE, but I'm having trouble > getting it to use my Windows2000 NTFS partition mounted as read only. > > Specifically it seems to be completely ignoring paths in the "[wine]" > section of the config file. > > I can write things like: > > [wine] > "Windows"="asdfasdfc:\\WINNT" > > and it runs without complaint. > > This is a problem for me because it also ignores the "Profile" value, and > gives the following error: > > err:shell:SHGetFolderPathW Failed to create directory 'L"c:\\windows\\profiles\\rich\\Desktop"'. > > It should be looking in > "Profile"="c:\\Documents and Settings\\rich" I tried this on a 5.3-RELEASE machine with the current CVS sources of Wine and could not reproduce this. Note that I used current sources as opposed to the 20050419 snapshot and I'd be surprised for this to make a difference, but I'll try. However, I do not have access to NTFS volumes, just native ones, so perhaps that makes a difference? > Please could you give me some pointers on what can I do to fix this? I'll try to reproduce with the "old" snapshot, but if I cannot, I recommend to contact the upstream developers (see http://www.winehq.com for details). Gerald -- Gerald (Jerry) Pfeifer gerald@pfeifer.com http://www.pfeifer.com/gerald/ From owner-freebsd-ports@FreeBSD.ORG Fri Apr 29 18:58:49 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2567816A4CE for ; Fri, 29 Apr 2005 18:58:49 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id E838B43D31 for ; Fri, 29 Apr 2005 18:58:48 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 5D795514C9; Fri, 29 Apr 2005 11:58:48 -0700 (PDT) Date: Fri, 29 Apr 2005 11:58:48 -0700 From: Kris Kennaway To: Steve Clement Message-ID: <20050429185848.GA8088@xor.obsecurity.org> References: <4272262D.7010407@ion.lu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="opJtzjQTFsWo+cga" Content-Disposition: inline In-Reply-To: <4272262D.7010407@ion.lu> User-Agent: Mutt/1.4.2.1i cc: freebsd-ports@freebsd.org Subject: Re: [freebsd-sha256] compile problem X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Apr 2005 18:58:49 -0000 --opJtzjQTFsWo+cga Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Apr 29, 2005 at 02:18:53PM +0200, Steve Clement wrote: > Hi, >=20 > I encounter the following on: uname -a > FreeBSD zinc.ion.lu 5.0-RELEASE-p19 FreeBSD 5.0-RELEASE-p19 #3: Tue > Jan 27 10:21:43 GMT 2004 =20 > root@zinc.ion.lu:/usr/obj/usr/src/sys/ZINC i386 FYI, that version is long out of support, so the maintainer isn't obliged to fix this (you forgot to CC him anyway) Kris --opJtzjQTFsWo+cga Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCcoPoWry0BWjoQKURAqQYAJ4rf8ki5778zudhrRDU6INKSJnh6gCgheij P/RnnAjz5v6mHnKWGThStzs= =ilr7 -----END PGP SIGNATURE----- --opJtzjQTFsWo+cga-- From owner-freebsd-ports@FreeBSD.ORG Fri Apr 29 19:02:47 2005 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6658116A4CE; Fri, 29 Apr 2005 19:02:47 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36BDF43D39; Fri, 29 Apr 2005 19:02:47 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j3TJ2ltJ056150; Fri, 29 Apr 2005 19:02:47 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j3TJ2lXK056146; Fri, 29 Apr 2005 19:02:47 GMT (envelope-from linimon) Date: Fri, 29 Apr 2005 19:02:47 GMT From: Mark Linimon Message-Id: <200504291902.j3TJ2lXK056146@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/80454: java/poseidon doesn't work with java/linux-sun-jdk14 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Apr 2005 19:02:47 -0000 Old Synopsis: UML-Tool poseidon doesn't work with linux-sun-jdk New Synopsis: java/poseidon doesn't work with java/linux-sun-jdk14 Responsible-Changed-From-To: freebsd-ports->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Fri Apr 29 19:01:22 GMT 2005 Responsible-Changed-Why: Canonicalize assignment and clarify Synopsis. http://www.freebsd.org/cgi/query-pr.cgi?pr=80454 From owner-freebsd-ports@FreeBSD.ORG Fri Apr 29 19:34:12 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 20CF116A4CE; Fri, 29 Apr 2005 19:34:12 +0000 (GMT) Received: from smtp.unsam.edu.ar (smtp.unsam.edu.ar [170.210.48.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5D1F43D49; Fri, 29 Apr 2005 19:34:00 +0000 (GMT) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (pi.iib.unsam.edu.ar [192.168.10.11]) by smtp.unsam.edu.ar (8.12.6/8.12.6) with ESMTP id j3TJkGjp043009; Fri, 29 Apr 2005 16:46:16 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (localhost [127.0.0.1]) by pi.iib.unsam.edu.ar (8.13.1/8.13.1) with ESMTP id j3TJXcnv067074; Fri, 29 Apr 2005 16:33:43 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: (from fernan@localhost) by pi.iib.unsam.edu.ar (8.13.1/8.13.1/Submit) id j3TJXcbd067073; Fri, 29 Apr 2005 16:33:38 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) X-Authentication-Warning: pi.iib.unsam.edu.ar: fernan set sender to fernan@iib.unsam.edu.ar using -f Date: Fri, 29 Apr 2005 16:33:38 -0300 From: Fernan Aguero To: thierry@freebsd.org Message-ID: <20050429193337.GA76534@iib.unsam.edu.ar> Mail-Followup-To: thierry@freebsd.org, FreeBSD Ports Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="LQksG6bCIzRHxTLp" Content-Disposition: inline User-Agent: Mutt/1.5.9i cc: FreeBSD Ports Subject: build of textproc/aspell fails on fresh 5.4RC3 box X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Apr 2005 19:34:12 -0000 --LQksG6bCIzRHxTLp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, I've just installed FreeBSD afresh (used a minimal 5.3-RELEASE that I then updated to 5.4-RC3 after cvsupping and rebuilding world and kernel). This box has some ports already installed (perl, screen, portupgrade, fetchmail, procmail, mutt-devel, vim, xorg, fluxbox-devel, cdrtools, dvd+rw-tools; and of course all their dependencies, see attached list). I'm trying to install gnome and aspell is being built as a dependency of gtkspell. Attached is the output. I have not found anything in the archives or another PR, has this been seen before? Thanks, Fernan --LQksG6bCIzRHxTLp Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="aspell.out" ===> gtkspell2-2.0.10_1 depends on shared library: pspell.16 - not found ===> Verifying reinstall for pspell.16 in /usr/ports/textproc/aspell ********************************************************* * You can add further dictionaries: * * Use make-flag: * * - Afrikaans ASPELL_AF=yes * * - Amharic ASPELL_AM=yes * * - Azerbaijani ASPELL_AZ=yes * * - Belarusian ASPELL_BE=yes * * - Bengali ASPELL_BN=yes * * - Bulgarian ASPELL_BG=yes * * - Breton ASPELL_BR=yes * * - Catalan / Valencian ASPELL_CA=yes * * - Croatian ASPELL_HR=yes * * - Czech ASPELL_CS=yes * * - Danish ASPELL_DA=yes * * - Dutch ASPELL_NL=yes * * - English ASPELL_EN=yes * * - Esperanto ASPELL_EO=yes * * - Estonian ASPELL_ET=yes * * - Faroese ASPELL_FO=yes * * - Finnish ASPELL_FI=yes * * - French ASPELL_FR=yes * * - Galician ASPELL_GL=yes * * - German ASPELL_DE=yes * * - German (orig spelling rules) ASPELL_DE-ALT=yes * * - Greek ASPELL_EL=yes * * - Hebrew ASPELL_HE=yes * * - Hungarian ASPELL_HU=yes * * - Icelandic ASPELL_IS=yes * * - Indonesian ASPELL_ID=yes * * - Interlingua ASPELL_IA=yes * * - Irish (Gaelic) ASPELL_GA=yes * * - Italian ASPELL_IT=yes * * - Kinyarwanda ASPELL_RW=yes * * - Latin ASPELL_LA=yes * * - Latvian ASPELL_LV=yes * * - Lithuanian ASPELL_LT=yes * * - Low Saxon ASPELL_NDS=yes * * - Macedonian ASPELL_MK=yes * * - Maori ASPELL_MI=yes * * - Malay ASPELL_MS=yes * * - Maltese ASPELL_MT=yes * * - Manx Gaelic ASPELL_GV=yes * * - Mongolian ASPELL_MN=yes * * - Norwegian Bokmal ASPELL_NB=yes * * - Norwegian Nynorsk ASPELL_NN=yes * * - Nyanja (Chichewa) ASPELL_NY=yes * * - Oriya ASPELL_OR=yes * * - Persian (Farsi) ASPELL_FA=yes * * - Polish ASPELL_PL=yes * * - Portuguese ASPELL_PT=yes * * - Quechua ASPELL_QU=yes * * - Romanian ASPELL_RO=yes * * - Russian ASPELL_RU=yes * * - Sardinian ASPELL_SC=yes * * - Scottish Gaelic ASPELL_GD=yes * * - Slovak ASPELL_SK=yes * * - Slovenian ASPELL_SL=yes * * - Swahili ASPELL_SW=yes * * - Spanish ASPELL_ES=yes * * - Swedish ASPELL_SV=yes * * - Tagalog ASPELL_TL=yes * * - Tamil ASPELL_TA=yes * * - Tetum ASPELL_TET=yes * * - Tswana ASPELL_TN=yes * * - Turkish ASPELL_TR=yes * * - Ukrainian ASPELL_UK=yes * * - Upper Sorbian ASPELL_HSB=yes * * - Uzbek ASPELL_UZ=yes * * - Vietnamese ASPELL_VI=yes * * - Walloon ASPELL_WA=yes * * - Welsh ASPELL_CY=yes * * - Yiddish ASPELL_YI=yes * * - Zulu ASPELL_ZU=yes * * * * Example: "make ASPELL_FR=yes ASPELL_EN=yes install" * ********************************************************* ===> Vulnerability check disabled, database not found ===> Extracting for aspell-0.60.2 => Checksum OK for aspell-0.60.2.tar.gz. => Checksum OK for aspell6-en-6.0-0.tar.bz2. ===> aspell-0.60.2 depends on file: /usr/local/bin/perl5.8.6 - found ===> Patching for aspell-0.60.2 ===> aspell-0.60.2 depends on file: /usr/local/bin/perl5.8.6 - found ===> Applying FreeBSD patches for aspell-0.60.2 ===> aspell-0.60.2 depends on executable: gmake - found ===> aspell-0.60.2 depends on file: /usr/local/bin/perl5.8.6 - found ===> aspell-0.60.2 depends on file: /usr/local/bin/libtool15 - found ===> aspell-0.60.2 depends on shared library: iconv.3 - found ===> aspell-0.60.2 depends on shared library: intl - found ===> Configuring for aspell-0.60.2 checking build system type... i386-portbld-freebsd5.4 checking host system type... i386-portbld-freebsd5.4 checking target system type... i386-portbld-freebsd5.4 checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for gawk... no checking for mawk... no checking for nawk... nawk checking whether gmake sets $(MAKE)... yes checking whether to enable maintainer-specific portions of Makefiles... no checking for C++ compiler default output file name... a.out checking whether the C++ compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C++ compiler... yes checking whether c++ accepts -g... yes checking for style of include used by gmake... GNU checking dependency style of c++... gcc3 checking for gcc... cc checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ANSI C... none needed checking dependency style of cc... gcc3 checking whether cc understands -c and -o together... yes checking for a sed that does not truncate output... /usr/bin/sed checking for egrep... grep -E checking for ld used by cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognise dependent libraries... pass_all checking how to run the C preprocessor... cc -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking how to run the C++ preprocessor... c++ -E checking for g77... no checking for f77... f77 checking whether we are using the GNU Fortran 77 compiler... yes checking whether f77 accepts -g... yes checking the maximum length of command line arguments... (cached) 65536 checking command to parse /usr/bin/nm -B output from cc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking if cc static flag works... yes checking if cc supports -fno-rtti -fno-exceptions... no checking for cc option to produce PIC... -fPIC checking if cc PIC flag -fPIC works... yes checking if cc supports -c -o file.o... yes checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... yes checking dynamic linker characteristics... freebsd5.4 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... no checking for shl_load in -ldld... no checking for dlopen... yes checking whether a program can dlopen itself... yes checking whether a statically linked program can dlopen itself... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by c++... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking whether the c++ linker (/usr/bin/ld) supports shared libraries... yes checking for c++ option to produce PIC... -fPIC checking if c++ PIC flag -fPIC works... yes checking if c++ supports -c -o file.o... yes checking whether the c++ linker (/usr/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... freebsd5.4 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) yes appending configuration tag "F77" to libtool checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for f77 option to produce PIC... -fPIC checking if f77 PIC flag -fPIC works... yes checking if f77 supports -c -o file.o... yes checking whether the f77 linker (/usr/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... freebsd5.4 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for dlfcn.h... (cached) yes checking for dlopen in -ldl... no checking for sed... /usr/bin/sed checking for perl... /usr/bin/perl checking whether NLS is requested... yes checking for msgfmt... /usr/local/bin/msgfmt checking for gmsgfmt... /usr/local/bin/msgfmt checking for xgettext... /usr/local/bin/xgettext checking for msgmerge... /usr/local/bin/msgmerge checking for ld used by GCC... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for shared library run path origin... done checking whether NLS is requested... yes checking for GNU gettext in libc... no checking for iconv... yes checking how to link with libiconv... /usr/local/lib/libiconv.so -Wl,-rpath -Wl,/usr/local/lib checking for GNU gettext in libintl... yes checking whether to use NLS... yes checking where the gettext function comes from... external libintl checking how to link with libintl... /usr/local/lib/libintl.so -Wl,-rpath -Wl,/usr/local/lib checking for dlfcn.h... (cached) yes checking for dlopen in -ldl... (cached) no checking if file locking and truncating is supported... yes checking if mmap and friends is supported... yes checking if file ino is supported... yes checking if posix locals are supported... yes checking if posix regex are supported... yes checking for nl_langinfo and CODESET... yes checking if posix mutexes are supported... yes checking if mblen is supported... yes checking for working curses library... found in -lncurses checking for wide character support in curses libraray... no configure: WARNING: Aspell will not be able to Display UTF-8 characters correctly. checking if standard curses include sequence will work... yes checking for STL rel_ops pollution... no configure: creating ./config.status config.status: creating Makefile config.status: creating gen/Makefile config.status: creating common/Makefile config.status: creating lib/Makefile config.status: creating data/Makefile config.status: creating m4/Makefile config.status: creating auto/Makefile config.status: creating modules/Makefile config.status: creating modules/tokenizer/Makefile config.status: creating modules/speller/Makefile config.status: creating modules/speller/default/Makefile config.status: creating interfaces/Makefile config.status: creating interfaces/cc/Makefile config.status: creating scripts/Makefile config.status: creating examples/Makefile config.status: creating prog/Makefile config.status: creating manual/Makefile config.status: creating po/Makefile.in config.status: creating modules/filter/Makefile config.status: creating myspell/Makefile config.status: creating lib5/Makefile config.status: creating gen/settings.h config.status: executing depfiles commands config.status: executing default-1 commands config.status: creating po/POTFILES config.status: creating po/Makefile ===> Building for aspell-0.60.2 Making all in . gmake[1]: Entering directory `/usr/ports/textproc/aspell/work/aspell-0.60.2' if /bin/sh /usr/local/bin/libtool15 --mode=compile c++ -DHAVE_CONFIG_H -I. -I. -I./gen -I./gen -I./common -I./interfaces/cc/ -I./modules/speller/default/ -DLOCALEDIR=\"/usr/local/share/locale\" -I/usr/local/include -O -pipe -fno-exceptions -MT common/cache.lo -MD -MP -MF "common/.deps/cache.Tpo" -c -o common/cache.lo `test -f 'common/cache.cpp' || echo './'`common/cache.cpp; \ then mv -f "common/.deps/cache.Tpo" "common/.deps/cache.Plo"; else rm -f "common/.deps/cache.Tpo"; exit 1; fi mkdir common/.libs c++ -DHAVE_CONFIG_H -I. -I. -I./gen -I./gen -I./common -I./interfaces/cc/ -I./modules/speller/default/ -DLOCALEDIR=\"/usr/local/share/locale\" -I/usr/local/include -O -pipe -fno-exceptions -MT common/cache.lo -MD -MP -MF common/.deps/cache.Tpo -c common/cache.cpp -fPIC -DPIC -o common/.libs/cache.o c++ -DHAVE_CONFIG_H -I. -I. -I./gen -I./gen -I./common -I./interfaces/cc/ -I./modules/speller/default/ -DLOCALEDIR=\"/usr/local/share/locale\" -I/usr/local/include -O -pipe -fno-exceptions -MT common/cache.lo -MD -MP -MF common/.deps/cache.Tpo -c common/cache.cpp -o common/cache.o >/dev/null 2>&1 if /bin/sh /usr/local/bin/libtool15 --mode=compile c++ -DHAVE_CONFIG_H -I. -I. -I./gen -I./gen -I./common -I./interfaces/cc/ -I./modules/speller/default/ -DLOCALEDIR=\"/usr/local/share/locale\" -I/usr/local/include -O -pipe -fno-exceptions -MT common/string.lo -MD -MP -MF "common/.deps/string.Tpo" -c -o common/string.lo `test -f 'common/string.cpp' || echo './'`common/string.cpp; \ then mv -f "common/.deps/string.Tpo" "common/.deps/string.Plo"; else rm -f "common/.deps/string.Tpo"; exit 1; fi c++ -DHAVE_CONFIG_H -I. -I. -I./gen -I./gen -I./common -I./interfaces/cc/ -I./modules/speller/default/ -DLOCALEDIR=\"/usr/local/share/locale\" -I/usr/local/include -O -pipe -fno-exceptions -MT common/string.lo -MD -MP -MF common/.deps/string.Tpo -c common/string.cpp -fPIC -DPIC -o common/.libs/string.o c++ -DHAVE_CONFIG_H -I. -I. -I./gen -I./gen -I./common -I./interfaces/cc/ -I./modules/speller/default/ -DLOCALEDIR=\"/usr/local/share/locale\" -I/usr/local/include -O -pipe -fno-exceptions -MT common/string.lo -MD -MP -MF common/.deps/string.Tpo -c common/string.cpp -o common/string.o >/dev/null 2>&1 if /bin/sh /usr/local/bin/libtool15 --mode=compile c++ -DHAVE_CONFIG_H -I. -I. -I./gen -I./gen -I./common -I./interfaces/cc/ -I./modules/speller/default/ -DLOCALEDIR=\"/usr/local/share/locale\" -I/usr/local/include -O -pipe -fno-exceptions -MT common/getdata.lo -MD -MP -MF "common/.deps/getdata.Tpo" -c -o common/getdata.lo `test -f 'common/getdata.cpp' || echo './'`common/getdata.cpp; \ then mv -f "common/.deps/getdata.Tpo" "common/.deps/getdata.Plo"; else rm -f "common/.deps/getdata.Tpo"; exit 1; fi c++ -DHAVE_CONFIG_H -I. -I. -I./gen -I./gen -I./common -I./interfaces/cc/ -I./modules/speller/default/ -DLOCALEDIR=\"/usr/local/share/locale\" -I/usr/local/include -O -pipe -fno-exceptions -MT common/getdata.lo -MD -MP -MF common/.deps/getdata.Tpo -c common/getdata.cpp -fPIC -DPIC -o common/.libs/getdata.o c++ -DHAVE_CONFIG_H -I. -I. -I./gen -I./gen -I./common -I./interfaces/cc/ -I./modules/speller/default/ -DLOCALEDIR=\"/usr/local/share/locale\" -I/usr/local/include -O -pipe -fno-exceptions -MT common/getdata.lo -MD -MP -MF common/.deps/getdata.Tpo -c common/getdata.cpp -o common/getdata.o >/dev/null 2>&1 if /bin/sh /usr/local/bin/libtool15 --mode=compile c++ -DHAVE_CONFIG_H -I. -I. -I./gen -I./gen -I./common -I./interfaces/cc/ -I./modules/speller/default/ -DLOCALEDIR=\"/usr/local/share/locale\" -I/usr/local/include -O -pipe -fno-exceptions -MT common/itemize.lo -MD -MP -MF "common/.deps/itemize.Tpo" -c -o common/itemize.lo `test -f 'common/itemize.cpp' || echo './'`common/itemize.cpp; \ then mv -f "common/.deps/itemize.Tpo" "common/.deps/itemize.Plo"; else rm -f "common/.deps/itemize.Tpo"; exit 1; fi c++ -DHAVE_CONFIG_H -I. -I. -I./gen -I./gen -I./common -I./interfaces/cc/ -I./modules/speller/default/ -DLOCALEDIR=\"/usr/local/share/locale\" -I/usr/local/include -O -pipe -fno-exceptions -MT common/itemize.lo -MD -MP -MF common/.deps/itemize.Tpo -c common/itemize.cpp -fPIC -DPIC -o common/.libs/itemize.o c++ -DHAVE_CONFIG_H -I. -I. -I./gen -I./gen -I./common -I./interfaces/cc/ -I./modules/speller/default/ -DLOCALEDIR=\"/usr/local/share/locale\" -I/usr/local/include -O -pipe -fno-exceptions -MT common/itemize.lo -MD -MP -MF common/.deps/itemize.Tpo -c common/itemize.cpp -o common/itemize.o >/dev/null 2>&1 gmake[1]: *** [common/itemize.lo] Error 1 gmake[1]: Leaving directory `/usr/ports/textproc/aspell/work/aspell-0.60.2' gmake: *** [all-recursive] Error 1 *** Error code 2 Stop in /usr/ports/textproc/aspell. *** Error code 1 --LQksG6bCIzRHxTLp Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="installed_pkgs.out" artwiz-aleczapka-en-1.3 artwiz-fonts-1.0_1 autoconf-2.59_2 automake-1.9.5 bitstream-vera-1.10_1 boxtools-0.70.0 cabextract-1.1 cdrtools-2.01 cvsup-without-gui-16.1h docbook-1.3 docbook-241_2 docbook-3.0_2 docbook-3.1_2 docbook-4.0_2 docbook-4.1_2 docbook-xml-4.2_1 dri-6.2.1,2 dvd+rw-tools-5.21.4.10.8 expat-1.95.8 ezm3-1.2 fetchmail-6.2.5_2 fluxbox-devel-0.9.12_1 fontconfig-2.2.3,1 freetype2-2.1.9 gettext-0.13.1_1 glib-1.2.10_11 glib-2.6.4 gmake-3.80_2 gnet2-2.0.5_2 gtk-1.2.10_13 help2man-1.35.1 imake-6.8.2 intltool-0.33 iso8879-1986_2 jade-1.2.1_9 libXft-2.1.6_1 libiconv-1.9.2_1 libtool-1.3.5_2 libtool-1.5.8 linuxdoc-1.1_1 lynx-ssl-2.8.5 m4-1.4.3 mutt-devel-1.5.9 p5-XML-Parser-2.34_1 p5-gettext-1.03 pcre-5.0 perl-5.8.6_2 pkgconfig-0.17.2 pkgdb.db png-1.2.8_1 portupgrade-20041226_2 procmail-3.22_5 ruby-1.8.2_3 ruby18-bdb1-0.2.2 screen-4.0.2_1 sgmlformat-1.7_2 ttmkfdir-20021109_1 unzip-5.52_1 vim-6.3.62 webfonts-0.21_1 xmlcatmgr-2.2 xorg-6.8.2 xorg-clients-6.8.2 xorg-documents-6.8.2 xorg-fonts-100dpi-6.8.2 xorg-fonts-75dpi-6.8.2 xorg-fonts-cyrillic-6.8.2 xorg-fonts-encodings-6.8.2 xorg-fonts-miscbitmaps-6.8.2 xorg-fonts-truetype-6.8.2 xorg-fonts-type1-6.8.2 xorg-fontserver-6.8.2 xorg-libraries-6.8.2 xorg-manpages-6.8.2 xorg-nestserver-6.8.2 xorg-printserver-6.8.2 xorg-server-6.8.2 xorg-vfbserver-6.8.2 xterm-201 --LQksG6bCIzRHxTLp-- From owner-freebsd-ports@FreeBSD.ORG Fri Apr 29 20:13:33 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A81C116A4CE for ; Fri, 29 Apr 2005 20:13:33 +0000 (GMT) Received: from postfix3-2.free.fr (postfix3-2.free.fr [213.228.0.169]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6185743D67 for ; Fri, 29 Apr 2005 20:13:33 +0000 (GMT) (envelope-from hb4j@free.fr) Received: from imp2-q.free.fr (imp2-q.free.fr [212.27.42.2]) by postfix3-2.free.fr (Postfix) with ESMTP id 216C2C04A; Fri, 29 Apr 2005 22:13:30 +0200 (CEST) Received: by imp2-q.free.fr (Postfix, from userid 33) id E550565187; Fri, 29 Apr 2005 22:13:30 +0200 (MEST) Received: from lns-vlq-8-tou-82-251-230-250.adsl.proxad.net (lns-vlq-8-tou-82-251-230-250.adsl.proxad.net [82.251.230.250]) by imp2-q.free.fr (IMP) with HTTP for ; Fri, 29 Apr 2005 22:13:30 +0200 Message-ID: <1114805610.4272956acfd83@imp2-q.free.fr> Date: Fri, 29 Apr 2005 22:13:30 +0200 From: hb4j@free.fr To: Christopher Nehren References: <1114782990.42723d0eccf1f@imp2-q.free.fr> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 3.2.5 X-Originating-IP: 82.251.230.250 cc: freebsd-ports@freebsd.org Subject: Re: successful installation of VMWare on FreeBSD ? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Apr 2005 20:13:33 -0000 thanks a lot Christopher :o) is there any newer version of it though ? (at least the vmware 4 since the latest commercial release is vmware 5) hb4j > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > On 2005-04-29, hb4j@free.fr scribbled these > curious markings: > > hi everyone, > > > > has anyone been able to successfully install VMWare on FreeBSD ? (of course > with > > the linux compat) > > cd /usr/ports/emulators/vmware3 > make install > > Best Regards, > Christopher Nehren > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.1 (FreeBSD) > > iD8DBQFCclxuk/lo7zvzJioRAgVoAKC6hdSYGvXPLNvkIj42KBqGlApXWQCgvEFM > RDp+n3CEXe0WRT8idRe/bco= > =XxJs > -----END PGP SIGNATURE----- > > -- > I abhor a system designed for the "user", if that word is a coded > pejorative meaning "stupid and unsophisticated". -- Ken Thompson > If you ask the wrong questions, you get answers like "42" and "God". > Unix is user friendly. However, it isn't idiot friendly. > > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" > From owner-freebsd-ports@FreeBSD.ORG Fri Apr 29 21:43:45 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 48C3E16A4CE for ; Fri, 29 Apr 2005 21:43:45 +0000 (GMT) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 650B943D39 for ; Fri, 29 Apr 2005 21:43:44 +0000 (GMT) (envelope-from freebsd-ports@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1DRdB2-0006v9-IG for freebsd-ports@freebsd.org; Fri, 29 Apr 2005 23:37:36 +0200 Received: from pcp08490587pcs.levtwn01.pa.comcast.net ([68.83.169.224]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 29 Apr 2005 23:37:36 +0200 Received: from apeiron+usenet by pcp08490587pcs.levtwn01.pa.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 29 Apr 2005 23:37:36 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: Christopher Nehren Date: Fri, 29 Apr 2005 21:36:30 +0000 (UTC) Organization: /usr/bin/false Lines: 39 Message-ID: References: <20050429193337.GA76534@iib.unsam.edu.ar> X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: pcp08490587pcs.levtwn01.pa.comcast.net User-Agent: slrn/0.9.8.1 (FreeBSD) Sender: news Subject: Re: build of textproc/aspell fails on fresh 5.4RC3 box X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Apr 2005 21:43:45 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 2005-04-29, Fernan Aguero scribbled these curious markings: > Hi, > > I've just installed FreeBSD afresh (used a minimal > 5.3-RELEASE that I then updated to 5.4-RC3 after cvsupping > and rebuilding world and kernel). > > This box has some ports already installed (perl, screen, > portupgrade, fetchmail, procmail, mutt-devel, vim, xorg, > fluxbox-devel, cdrtools, dvd+rw-tools; and of course all > their dependencies, see attached list). > > I'm trying to install gnome and aspell is being built as a > dependency of gtkspell. Attached is the output. > > I have not found anything in the archives or another PR, has > this been seen before? Just a wild guess: is the partition housing /usr/ports full? Best Regards, Christopher Nehren -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCcqo5k/lo7zvzJioRAqTwAKClLSZrge+Ep1QFDzVztNSbzvuDdwCdHDwd Eij3ba/LL4w4UtJIshve5K0= =pRhg -----END PGP SIGNATURE----- -- I abhor a system designed for the "user", if that word is a coded pejorative meaning "stupid and unsophisticated". -- Ken Thompson If you ask the wrong questions, you get answers like "42" and "God". Unix is user friendly. However, it isn't idiot friendly. From owner-freebsd-ports@FreeBSD.ORG Fri Apr 29 21:46:31 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1097016A4CE for ; Fri, 29 Apr 2005 21:46:31 +0000 (GMT) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BF5343D5C for ; Fri, 29 Apr 2005 21:46:30 +0000 (GMT) (envelope-from freebsd-ports@m.gmane.org) Received: from root by ciao.gmane.org with local (Exim 4.43) id 1DRdDR-00078X-Dc for freebsd-ports@freebsd.org; Fri, 29 Apr 2005 23:40:05 +0200 Received: from pcp08490587pcs.levtwn01.pa.comcast.net ([68.83.169.224]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 29 Apr 2005 23:40:05 +0200 Received: from apeiron+usenet by pcp08490587pcs.levtwn01.pa.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 29 Apr 2005 23:40:05 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: Christopher Nehren Date: Fri, 29 Apr 2005 21:37:37 +0000 (UTC) Organization: /usr/bin/false Lines: 25 Message-ID: References: <1114782990.42723d0eccf1f@imp2-q.free.fr> <1114805610.4272956acfd83@imp2-q.free.fr> X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: pcp08490587pcs.levtwn01.pa.comcast.net User-Agent: slrn/0.9.8.1 (FreeBSD) Sender: news Subject: Re: successful installation of VMWare on FreeBSD ? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Apr 2005 21:46:31 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 2005-04-29, hb4j@free.fr scribbled these curious markings: > is there any newer version of it though ? (at least the vmware 4 since the > latest commercial release is vmware 5) Check the list archives. Someone posted a port for 4. Best Regards, Christopher Nehren -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCcqp8k/lo7zvzJioRAocrAKClLjmi+KLU3CfWkH9aZuGQZ3jI3wCcDiWl Hw3xUkUMaE0frFfWP+r4C5Q= =Oq0V -----END PGP SIGNATURE----- -- I abhor a system designed for the "user", if that word is a coded pejorative meaning "stupid and unsophisticated". -- Ken Thompson If you ask the wrong questions, you get answers like "42" and "God". Unix is user friendly. However, it isn't idiot friendly. From owner-freebsd-ports@FreeBSD.ORG Fri Apr 29 21:56:02 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9129316A4CE for ; Fri, 29 Apr 2005 21:56:02 +0000 (GMT) Received: from graf.pompo.net (graf.pompo.net [81.56.186.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1DF643D1D for ; Fri, 29 Apr 2005 21:56:01 +0000 (GMT) (envelope-from thierry@pompo.net) Received: by graf.pompo.net (Postfix, from userid 1001) id C016E7513; Fri, 29 Apr 2005 23:53:19 +0200 (CEST) Date: Fri, 29 Apr 2005 23:53:19 +0200 From: Thierry Thomas To: FreeBSD Ports Message-ID: <20050429215319.GB69211@graf.pompo.net> Mail-Followup-To: FreeBSD Ports , Fernan Aguero References: <20050429193337.GA76534@iib.unsam.edu.ar> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="vtzGhvizbBRQ85DL" Content-Disposition: inline In-Reply-To: <20050429193337.GA76534@iib.unsam.edu.ar> X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc; y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 4.11-STABLE i386 Organization: Kabbale Eros X-PGP: 0xC71405A2 Subject: Re: build of textproc/aspell fails on fresh 5.4RC3 box X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Apr 2005 21:56:02 -0000 --vtzGhvizbBRQ85DL Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Le Ven 29 avr 05 =E0 21:33:38 +0200, Fernan Aguero =E9crivait=A0: > Hi, Hello, > I've just installed FreeBSD afresh (used a minimal > 5.3-RELEASE that I then updated to 5.4-RC3 after cvsupping > and rebuilding world and kernel). >=20 > This box has some ports already installed (perl, screen, > portupgrade, fetchmail, procmail, mutt-devel, vim, xorg, > fluxbox-devel, cdrtools, dvd+rw-tools; and of course all > their dependencies, see attached list). >=20 > I'm trying to install gnome and aspell is being built as a > dependency of gtkspell. Attached is the output. >=20 > I have not found anything in the archives or another PR, has > this been seen before? Such failures have been reported, due to unclean /usr/include/g++ but you should not face it after a fresh install. --=20 Th. Thomas. --vtzGhvizbBRQ85DL Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCcqzPc95pjMcUBaIRAtReAJ429RUjrKB0ADdCYStVYpGPax3qGwCg8VG0 AilLAWtIrFNGilrxmH26PIU= =I92B -----END PGP SIGNATURE----- --vtzGhvizbBRQ85DL-- From owner-freebsd-ports@FreeBSD.ORG Fri Apr 29 22:49:35 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB5FE16A4CE for ; Fri, 29 Apr 2005 22:49:35 +0000 (GMT) Received: from web50908.mail.yahoo.com (web50908.mail.yahoo.com [206.190.38.128]) by mx1.FreeBSD.org (Postfix) with SMTP id 7610743D3F for ; Fri, 29 Apr 2005 22:49:34 +0000 (GMT) (envelope-from sunyuxi@yahoo.com) Received: (qmail 12655 invoked by uid 60001); 29 Apr 2005 22:49:33 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=dqRhEbd62ylzqYz8Qp5R+gKWSQS8m3ZTJY0wuolYFml8sWbtqgQoy5qFHvYqz2op+KL737UVAChTNNq5QR1Q/5TLArVIkm6hDOIoxq9iSTbBTpSI0jir+/1x2qm+4TSiAlbNhGgoAlOoauCWUFOwO8CPog6yNqttVEt0gVnfntY= ; Message-ID: <20050429224933.12653.qmail@web50908.mail.yahoo.com> Received: from [63.165.233.142] by web50908.mail.yahoo.com via HTTP; Fri, 29 Apr 2005 15:49:33 PDT Date: Fri, 29 Apr 2005 15:49:33 -0700 (PDT) From: "Sun, Yuxi(Ricky)" To: ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: FreeBSD Port: tk84-8.4.7,2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Apr 2005 22:49:35 -0000 Hi, Folks: I tried to install tk84 on FreeBSD 5.3 (patch#9 with customized kernel that stripped out most unused NIC/RAID/SCSI device modules) under VMWare4.5.2(build 8848). It failed as below... Just wondering what's being wrong here? thanks Ricky ===> Verifying install for tk84.1 in /usr/ports/x11-toolkits/tk84 ===> Building for tk-8.4.7,2 cc -pipe -c -O -pipe -Wall -Wno-implicit-int -fno-strict-aliasing -fPIC -I/usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix -I/usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic -I/usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../bitmaps -I/tmp/a/ports/lang/tcl84/work/tcl8.4.6/generic -I/usr/X11R6/include -DHAVE_UNISTD_H=1 -DHAVE_LIMITS_H=1 -DTCL_WIDE_INT_TYPE=long\ long -DSTDC_HEADERS=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_PW_GECOS=1 -DTCL_NO_DEPRECATED -DUSE_TCL_STUBS /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c In file included from /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:21, from /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.h:18, from /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:16: /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:70:20: tcl.h: No such file or directory /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:72:3: #error Tk 8.4 must be compiled with tcl.h from Tcl 8.4 In file included from /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:21, from /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.h:18, from /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:16: /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:140: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:204: error: syntax error before "ClientData" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:231: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:234: error: syntax error before '*' token /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:234: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:236: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:238: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:243: error: syntax error before "Tk_CustomOptionSetProc" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:283: error: syntax error before "Tcl_Obj" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:337: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:340: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:345: error: syntax error before "Tk_OptionParseProc" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:369: error: syntax error before "Tk_Uid" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:572: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:574: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:575: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:580: error: syntax error before "Tk_ClassWorldChangedProc" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:618: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:620: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:627: error: syntax error before "Tk_GeomRequestProc" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:687: error: syntax error before "Tk_Uid" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:783: error: syntax error before "Tk_Uid" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:794: error: syntax error before "ClientData" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:799: error: syntax error before "ClientData" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:804: error: syntax error before "ClientData" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:921: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:924: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:946: error: syntax error before "Tk_Uid" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1012: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1015: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1018: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1022: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1024: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1027: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1029: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1031: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1033: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1036: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1038: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1041: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1043: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1046: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1048: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1058: error: syntax error before "Tk_ItemCreateProc" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1063: error: syntax error before "Tk_ItemConfigureProc" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1074: error: syntax error before "Tk_ItemPointProc" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1193: error: syntax error before "VOID" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1220: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1224: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1226: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1229: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1231: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1232: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1235: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1250: error: syntax error before "Tk_ImageCreateProc" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1342: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1345: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1348: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1352: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1355: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1357: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1370: error: syntax error before "Tk_ImageFileMatchProc" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1395: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1397: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1425: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1428: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1432: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1434: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1455: error: syntax error before "Tk_GetElementSizeProc" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1525: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1525: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1534: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1551: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1553: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1555: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1557: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1559: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1561: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1562: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1564: error: syntax error before "_ANSI_ARGS_" In file included from /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk.h:1576, from /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:21, from /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.h:18, from /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:16: /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:35: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:37: error: syntax error before "XColor" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:37: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:39: error: syntax error before "GC" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:42: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:47: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:52: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:56: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:61: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:65: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:69: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:73: error: syntax error before "Tk_CanvasTextInfo" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:73: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:76: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:80: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:83: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:86: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:90: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:93: error: syntax error before "double" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:95: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:98: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:103: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:103: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:108: error: syntax error before "Tk_Window" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:110: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:114: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:118: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:122: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:125: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:129: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:132: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:137: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:142: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:147: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:151: error: syntax error before "Tk_TextLayout" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:156: error: syntax error before "Tk_Window" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:159: error: syntax error before "unsigned" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:159: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:164: error: syntax error before "Tk_BindingTable" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:167: error: syntax error before "Tk_ErrorHandler" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:172: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:176: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:179: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:182: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:184: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:187: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:192: error: syntax error before "Tk_Window" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:196: error: syntax error before "Tk_Window" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:201: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:205: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:208: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:212: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:216: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:219: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:222: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:226: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:229: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:232: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:235: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:237: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:237: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:239: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:242: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:247: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:252: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:257: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:260: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:265: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:270: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:275: error: syntax error before "Tk_PhotoHandle" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:278: error: syntax error before "Font" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:280: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:282: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:285: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:287: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:290: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:293: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:295: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:297: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:299: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:303: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:306: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:309: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:311: error: syntax error before "GC" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:314: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:317: error: syntax error before "Tk_3DBorder" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:320: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:324: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:327: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:327: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:330: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:330: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:334: error: syntax error before "Pixmap" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:337: error: syntax error before "Pixmap" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:341: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:344: error: syntax error before "XColor" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:344: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:347: error: syntax error before "XColor" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:347: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:350: error: syntax error before "Colormap" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:353: error: syntax error before "Tk_Cursor" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:356: error: syntax error before "Tk_Cursor" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:362: error: syntax error before "Tk_Font" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:365: error: syntax error before "Tk_Font" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:368: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:371: error: syntax error before "GC" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:375: error: syntax error before "Tk_Image" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:384: error: syntax error before "Tk_ItemType" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:384: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:386: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:389: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:392: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:397: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:401: error: syntax error before "Pixmap" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:404: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:407: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:410: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:414: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:418: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:424: error: syntax error before "Visual" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:424: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:428: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:432: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:435: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:437: error: syntax error before "Tk_Window" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:440: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:444: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:446: error: syntax error before "Atom" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:449: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:453: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:457: error: syntax error before "Tk_Window" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:459: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:461: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:464: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:466: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:470: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:473: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:476: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:479: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:479: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:482: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:482: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:484: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:484: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:487: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:487: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:489: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:489: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:491: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:491: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:494: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:494: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:496: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:496: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:499: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:499: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:501: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:501: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:504: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:504: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:506: error: syntax error before "Tk_Window" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:509: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:513: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:518: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:523: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:529: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:532: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:534: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:537: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:540: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:543: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:546: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:549: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:552: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:555: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:560: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:563: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:570: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:572: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:572: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:575: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:578: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:581: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:585: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:588: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:591: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:594: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:597: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:600: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:603: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:606: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:610: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:614: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:617: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:619: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:622: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:625: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:627: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:632: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:637: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:639: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:642: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:644: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:646: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:649: error: syntax error before "Pixmap" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:653: error: syntax error before "Tk_3DBorder" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:657: error: syntax error before "XColor" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:657: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:661: error: syntax error before "Tk_Cursor" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:665: error: syntax error before "Tk_Font" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:668: error: syntax error before "Tk_OptionTable" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:672: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:675: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:678: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:681: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:684: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:687: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:690: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:693: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:696: error: syntax error before "Tk_3DBorder" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:699: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:702: error: syntax error before "Pixmap" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:705: error: syntax error before "XColor" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:705: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:708: error: syntax error before "Tk_Cursor" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:719: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:723: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:727: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:731: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:734: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:738: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:742: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:746: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:749: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:755: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:758: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:761: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:767: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:770: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:772: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:775: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:779: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:782: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:785: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:788: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:791: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:795: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:798: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:801: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:806: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:809: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:812: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:817: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:821: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:825: error: syntax error before "double" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:828: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:833: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:836: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:839: error: syntax error before "Tk_Window" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:843: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:847: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:850: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:853: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:856: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:860: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:866: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:869: error: syntax error before "Tk_StyleEngine" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:872: error: syntax error before "Tk_StyleEngine" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:874: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:878: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:880: error: syntax error before "Tk_Style" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:883: error: syntax error before "Tk_Style" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:886: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:888: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:888: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:890: error: syntax error before "Tk_Style" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:893: error: syntax error before "Tk_Style" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:895: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:897: error: syntax error before "Tk_StyledElement" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:900: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:905: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:911: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:915: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:931: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:932: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:933: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:934: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:935: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:936: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:937: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:938: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:939: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:940: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:941: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:942: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:943: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:944: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:945: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:946: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:947: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:948: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:949: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:950: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:951: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:952: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:953: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:954: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:955: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:956: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:957: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:958: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:959: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:960: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:961: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:962: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:963: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:964: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:965: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:966: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:967: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:968: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:969: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:970: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:971: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:972: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:973: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:974: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:975: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:976: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:977: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:978: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:979: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:980: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:981: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:982: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:983: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:984: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:985: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:987: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:988: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:989: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:990: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:991: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:992: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:993: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:994: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:995: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:996: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:997: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:998: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:999: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1000: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1001: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1002: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1003: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1004: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1005: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1006: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1007: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1008: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1009: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1010: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1011: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1012: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1013: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1016: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1017: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1018: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1019: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1020: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1021: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1022: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1023: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1024: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1025: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1026: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1027: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1028: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1030: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1031: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1032: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1033: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1035: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1036: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1037: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1038: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1039: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1040: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1041: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1043: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1044: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1045: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1046: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1047: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1048: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1049: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1050: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1051: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1052: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1053: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1054: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1055: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1056: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1057: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1058: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1059: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1060: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1072: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1073: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1074: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1075: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1076: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1077: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1078: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1079: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1080: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1081: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1082: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1083: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1084: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1085: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1086: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1087: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1088: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1090: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1092: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1093: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1094: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1095: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1096: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1097: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1098: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1099: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1100: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1101: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1102: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1103: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1104: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1105: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1106: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1107: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1108: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1109: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1110: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1111: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1112: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1113: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1114: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1115: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1116: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1117: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1118: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1119: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1120: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1121: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1122: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1123: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1124: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1125: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1126: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1127: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1128: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1129: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1130: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1131: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1132: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1133: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1134: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1137: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1138: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1139: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1140: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1141: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1142: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1143: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1144: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1145: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1146: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1147: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1148: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1151: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1152: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1153: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1154: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1155: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1156: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1157: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1158: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1159: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1160: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1161: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1162: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1163: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1164: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1165: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1166: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1167: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1168: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1169: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1170: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1171: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1172: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1173: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1174: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1175: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1176: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1177: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1178: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1179: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1180: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1181: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1182: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1183: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1184: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1185: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1186: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1188: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1189: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1190: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1191: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1192: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1193: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1194: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkDecls.h:1195: error: syntax error before "_ANSI_ARGS_" In file included from /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkPort.h:34, from /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:27, from /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.h:18, from /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:16: /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/../unix/tkUnixPort.h:224:20: tclInt.h: No such file or directory In file included from /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.h:18, from /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:16: /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:45: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:48: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:72: error: syntax error before "Tcl_HashTable" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:129: error: syntax error before "Tcl_HashTable" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:138: error: syntax error before "Tcl_HashTable" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:172: error: syntax error before "Tcl_HashTable" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:198: error: syntax error before "Tcl_HashTable" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:210: error: syntax error before "Tcl_HashTable" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:274: error: syntax error before "Tcl_HashTable" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:284: error: syntax error before "Tcl_HashTable" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:294: error: syntax error before "Tcl_HashTable" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:337: error: syntax error before "Tcl_HashTable" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:363: error: syntax error before "Tcl_HashTable" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:373: error: syntax error before "Tcl_HashTable" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:435: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:441: error: syntax error before "Tcl_TimerToken" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:484: error: syntax error before "Tcl_HashTable" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:555: error: syntax error before "Tk_ErrorProc" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:576: error: syntax error before "Tk_EventProc" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:601: error: syntax error before "Tcl_Interp" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:633: error: syntax error before "Tcl_HashTable" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:648: error: syntax error before "CONST" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:716: error: syntax error before "Tk_Uid" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:757: error: syntax error before "ClientData" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:787: error: syntax error before "ClientData" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:814: error: syntax error before "ClientData" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:907: error: syntax error before "tkBorderObjType" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:907: warning: data definition has no type or storage class /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:908: error: syntax error before "tkBitmapObjType" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:908: warning: data definition has no type or storage class /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:909: error: syntax error before "tkColorObjType" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:909: warning: data definition has no type or storage class /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:910: error: syntax error before "tkCursorObjType" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:910: warning: data definition has no type or storage class /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:911: error: syntax error before "tkFontObjType" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:911: warning: data definition has no type or storage class /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:912: error: syntax error before "tkOptionObjType" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:912: warning: data definition has no type or storage class /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:913: error: syntax error before "tkStateKeyObjType" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:913: warning: data definition has no type or storage class /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:923: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:928: error: syntax error before "tkPredefBitmapTable" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:928: warning: data definition has no type or storage class In file included from /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:931, from /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.h:18, from /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:16: /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:38: error: syntax error before "TkWindow" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:38: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:41: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:44: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:48: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:50: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:53: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:55: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:57: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:60: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:63: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:68: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:71: error: syntax error before "unsigned" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:71: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:79: error: syntax error before "TkCursor" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:79: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:84: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:88: error: syntax error before "Tk_Window" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:91: error: syntax error before "Time" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:93: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:95: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:97: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:101: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:103: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:108: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:113: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:113: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:116: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:118: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:121: error: syntax error before "TkWindow" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:121: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:124: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:126: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:128: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:130: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:132: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:132: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:137: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:141: error: syntax error before "TkCursor" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:141: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:144: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:144: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:147: error: syntax error before "TkDisplay" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:147: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:149: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:153: error: syntax error before "TkWindow" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:153: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:155: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:158: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:162: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:165: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:168: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:170: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:172: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:175: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:180: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:182: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:182: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:184: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:187: error: syntax error before "double" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:190: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:195: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:199: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:201: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:203: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:206: error: syntax error before "double" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:209: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:212: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:214: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:217: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:220: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:223: error: syntax error before "TkWindow" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:223: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:225: error: syntax error before "TkWindow" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:225: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:227: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:229: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:233: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:235: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:238: error: syntax error before "Window" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:241: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:244: error: syntax error before "TkDisplay" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:244: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:247: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:250: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:253: error: syntax error before "double" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:256: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:259: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:262: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:265: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:268: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:271: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:274: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:281: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:285: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:287: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:290: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:292: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:295: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:299: error: syntax error before "KeySym" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:301: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:305: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:308: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:310: error: syntax error before "TkWindow" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:310: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:312: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:314: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:316: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:319: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:322: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:325: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:327: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:347: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:353: error: syntax error before "TkDisplay" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:353: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:355: error: syntax error before "TkMainInfo" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:355: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:357: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:361: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:361: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:364: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:370: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:514: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:518: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:521: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:524: error: syntax error before "KeySym" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:527: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:529: error: syntax error before "TkRegion" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:532: error: syntax error before "TkWindow" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:532: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:535: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:537: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:539: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:556: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:558: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:560: error: syntax error before "Tk_Window" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:563: error: syntax error before "Tk_OptionSpec" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:563: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:570: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:571: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:572: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:573: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:574: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:575: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:576: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:577: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:578: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:579: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:580: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:581: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:582: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:583: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:584: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:585: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:586: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:587: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:588: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:589: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:590: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:591: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:592: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:593: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:594: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:595: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:596: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:597: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:598: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:599: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:600: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:601: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:602: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:604: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:605: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:606: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:607: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:608: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:609: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:610: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:611: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:612: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:613: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:614: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:615: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:616: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:617: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:618: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:619: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:620: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:621: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:622: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:623: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:624: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:625: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:626: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:627: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:628: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:629: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:630: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:631: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:632: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:633: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:634: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:635: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:636: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:637: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:638: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:639: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:640: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:641: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:642: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:643: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:644: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:645: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:646: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:647: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:648: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:649: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:650: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:651: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:652: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:653: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:655: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:656: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:657: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:658: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:659: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:660: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:661: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:662: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:663: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:664: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:665: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:666: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:667: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:674: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:676: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:677: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:678: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:679: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:680: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:682: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:815: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:816: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:817: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:818: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:819: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:820: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:821: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:822: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:823: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:824: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:837: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:838: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkIntDecls.h:839: error: syntax error before "_ANSI_ARGS_" In file included from /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.h:18, from /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:16: /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:943: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:946: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:949: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:952: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:955: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:958: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:962: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:965: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:968: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:971: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:974: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:977: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:980: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:983: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:985: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:988: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:991: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:994: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:998: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1002: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1005: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1008: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1011: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1014: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1017: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1020: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1023: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1026: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1029: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1032: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1036: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1039: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1042: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1045: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1049: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1052: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1055: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1057: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1060: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1062: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1065: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1068: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1070: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1073: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1076: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1079: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1082: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1085: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1089: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1092: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1094: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1096: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1097: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1100: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1102: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1105: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1109: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1109: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1113: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1116: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1120: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1120: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1124: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1128: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1128: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1132: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1136: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1136: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1140: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1144: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1147: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1147: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1150: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1154: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1154: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1158: error: syntax error before "int" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1162: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1162: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tkInt.h:1170: error: syntax error before "int" In file included from /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:16: /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.h:74: error: syntax error before "Tcl_HashEntry" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.h:94: error: syntax error before "TkBorder" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.h:94: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.h:95: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.h:97: error: syntax error before "void" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:23: error: syntax error before "char" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:31: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:32: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:34: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:35: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:37: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:38: error: syntax error before "_ANSI_ARGS_" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:50: warning: initialization makes integer from pointer without a cast /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:51: error: `FreeBorderObjProc' undeclared here (not in a function) /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:51: warning: excess elements in scalar initializer /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:51: warning: (near initialization for `tkBorderObjType') /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:52: error: `DupBorderObjProc' undeclared here (not in a function) /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:52: warning: excess elements in scalar initializer /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:52: warning: (near initialization for `tkBorderObjType') /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:53: warning: excess elements in scalar initializer /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:53: warning: (near initialization for `tkBorderObjType') /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:55: warning: excess elements in scalar initializer /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:55: warning: (near initialization for `tkBorderObjType') /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:55: warning: data definition has no type or storage class /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:83: error: syntax error before "Tcl_Interp" /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:85: error: syntax error before '*' token /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:85: warning: data definition has no type or storage class /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix/../generic/tk3d.c:87: error: syntax error before '{' token *** Error code 1 Stop in /usr/ports/x11-toolkits/tk84/work/tk8.4.7/unix. *** Error code 1 Stop in /usr/ports/x11-toolkits/tk84. *** Error code 1 From owner-freebsd-ports@FreeBSD.ORG Fri Apr 29 23:19:13 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B9A6D16A4CE for ; Fri, 29 Apr 2005 23:19:13 +0000 (GMT) Received: from mail.efacilitas.de (efacilitas.de [213.133.110.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D3C343D4C for ; Fri, 29 Apr 2005 23:19:13 +0000 (GMT) (envelope-from bkoenig@cs.tu-berlin.de) Received: from eurystheus.local (port-212-202-39-77.dynamic.qsc.de [212.202.39.77]) by mail.efacilitas.de (Postfix) with ESMTP id 1A2FE123A1B; Sat, 30 Apr 2005 01:18:03 +0200 (CEST) Received: from localhost (eurystheus.local [192.168.1.67]) by eurystheus.local (Postfix) with ESMTP id 1A3D812B0E4; Sat, 30 Apr 2005 01:19:06 +0200 (CEST) Received: from eurystheus.local ([192.168.1.67]) by localhost (eurystheus.locaL [192.168.1.67]) (amavisd-new, port 10024) with ESMTP id 54902-09; Sat, 30 Apr 2005 01:19:01 +0200 (CEST) Received: from [192.168.1.67] (eurystheus.local [192.168.1.67]) by eurystheus.local (Postfix) with ESMTP id 4020612B02A; Sat, 30 Apr 2005 01:19:01 +0200 (CEST) Message-ID: <4272C0E4.1090605@cs.tu-berlin.de> Date: Sat, 30 Apr 2005 01:19:00 +0200 From: =?ISO-8859-1?Q?Bj=F6rn_K=F6nig?= User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.7) Gecko/20050425 X-Accept-Language: en-us, en MIME-Version: 1.0 To: "Sun, Yuxi(Ricky)" References: <20050429224933.12653.qmail@web50908.mail.yahoo.com> In-Reply-To: <20050429224933.12653.qmail@web50908.mail.yahoo.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Scanned: amavisd-new at example.com cc: ports@freebsd.org Subject: Re: FreeBSD Port: tk84-8.4.7,2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Apr 2005 23:19:13 -0000 Try the following: cd /usr/ports/lang/tcl84 make deinstall clean cd ../../x11-toolkits/tk84 make clean install clean Björn From owner-freebsd-ports@FreeBSD.ORG Sat Apr 30 01:14:38 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25F0A16A4D6 for ; Sat, 30 Apr 2005 01:14:38 +0000 (GMT) Received: from smtp.unsam.edu.ar (smtp.unsam.edu.ar [170.210.48.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FA3743D5E for ; Sat, 30 Apr 2005 01:14:30 +0000 (GMT) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (pi.iib.unsam.edu.ar [192.168.10.11]) by smtp.unsam.edu.ar (8.12.6/8.12.6) with ESMTP id j3U1Qojp049715 for ; Fri, 29 Apr 2005 22:26:50 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (localhost [127.0.0.1]) by pi.iib.unsam.edu.ar (8.13.1/8.13.1) with ESMTP id j3U1EJ3f048071 for ; Fri, 29 Apr 2005 22:14:19 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: (from fernan@localhost) by pi.iib.unsam.edu.ar (8.13.1/8.13.1/Submit) id j3U1EIBT048068 for ports@FreeBSD.org; Fri, 29 Apr 2005 22:14:18 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) X-Authentication-Warning: pi.iib.unsam.edu.ar: fernan set sender to fernan@iib.unsam.edu.ar using -f Date: Fri, 29 Apr 2005 22:14:18 -0300 From: Fernan Aguero To: FreeBSD Ports Message-ID: <20050430011418.GA45252@iib.unsam.edu.ar> Mail-Followup-To: FreeBSD Ports References: <20050429193337.GA76534@iib.unsam.edu.ar> <20050429215319.GB69211@graf.pompo.net> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20050429215319.GB69211@graf.pompo.net> User-Agent: Mutt/1.5.9i Subject: Re: build of textproc/aspell fails on fresh 5.4RC3 box X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Apr 2005 01:14:38 -0000 +----[ Thierry Thomas (29.Apr.2005 18:59): | | Le Ven 29 avr 05 à 21:33:38 +0200, Fernan Aguero | écrivait : | > Hi, | | Hello, | | > I've just installed FreeBSD afresh (used a minimal | > 5.3-RELEASE that I then updated to 5.4-RC3 after cvsupping | > and rebuilding world and kernel). | > | > This box has some ports already installed (perl, screen, | > portupgrade, fetchmail, procmail, mutt-devel, vim, xorg, | > fluxbox-devel, cdrtools, dvd+rw-tools; and of course all | > their dependencies, see attached list). | > | > I'm trying to install gnome and aspell is being built as a | > dependency of gtkspell. Attached is the output. | > | > I have not found anything in the archives or another PR, has | > this been seen before? | | Such failures have been reported, due to unclean /usr/include/g++ | but you should not face it after a fresh install. Actually I don't see any directory named 'g++' under /usr/include. I believe this can mean that the directory is perfectly clean , but it could also mean trouble :| Where does this dir come from? AS I said I installed a minimal 5.3 (no man pages, just base and sources, no binary packages) and just used ports to build cvsup. Then I rebuilt and installed world (now I got the man pages) and kernel, and then started adding more ports. Fernan | -- | Th. Thomas. | +----] From owner-freebsd-ports@FreeBSD.ORG Sat Apr 30 01:17:22 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 647D516A4CE for ; Sat, 30 Apr 2005 01:17:22 +0000 (GMT) Received: from smtp.unsam.edu.ar (smtp.unsam.edu.ar [170.210.48.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id D41E543D55 for ; Sat, 30 Apr 2005 01:17:20 +0000 (GMT) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (pi.iib.unsam.edu.ar [192.168.10.11]) by smtp.unsam.edu.ar (8.12.6/8.12.6) with ESMTP id j3U1Tajp049751; Fri, 29 Apr 2005 22:29:36 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (localhost [127.0.0.1]) by pi.iib.unsam.edu.ar (8.13.1/8.13.1) with ESMTP id j3U1H4Zq048729; Fri, 29 Apr 2005 22:17:04 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: (from fernan@localhost) by pi.iib.unsam.edu.ar (8.13.1/8.13.1/Submit) id j3U1H49a048724; Fri, 29 Apr 2005 22:17:04 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) X-Authentication-Warning: pi.iib.unsam.edu.ar: fernan set sender to fernan@iib.unsam.edu.ar using -f Date: Fri, 29 Apr 2005 22:17:04 -0300 From: Fernan Aguero To: Christopher Nehren Message-ID: <20050430011704.GB45252@iib.unsam.edu.ar> Mail-Followup-To: Christopher Nehren , freebsd-ports@freebsd.org References: <20050429193337.GA76534@iib.unsam.edu.ar> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.9i cc: freebsd-ports@freebsd.org Subject: Re: build of textproc/aspell fails on fresh 5.4RC3 box X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Apr 2005 01:17:22 -0000 +----[ Christopher Nehren (29.Apr.2005 18:54): | | On 2005-04-29, Fernan Aguero scribbled these | curious markings: | > Hi, | > | > I've just installed FreeBSD afresh (used a minimal | > 5.3-RELEASE that I then updated to 5.4-RC3 after cvsupping | > and rebuilding world and kernel). | > | > This box has some ports already installed (perl, screen, | > portupgrade, fetchmail, procmail, mutt-devel, vim, xorg, | > fluxbox-devel, cdrtools, dvd+rw-tools; and of course all | > their dependencies, see attached list). | > | > I'm trying to install gnome and aspell is being built as a | > dependency of gtkspell. Attached is the output. | > | > I have not found anything in the archives or another PR, has | > this been seen before? | | Just a wild guess: is the partition housing /usr/ports full? No. It has > 8Gb left. /usr/ports/distfiles is nfs-mounted from another box and has > 400Mb free. Thanks, Fernan | | Best Regards, | Christopher Nehren | | -- | I abhor a system designed for the "user", if that word is a coded | pejorative meaning "stupid and unsophisticated". -- Ken Thompson | If you ask the wrong questions, you get answers like "42" and "God". | Unix is user friendly. However, it isn't idiot friendly. | | _______________________________________________ | 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 Sat Apr 30 03:45:41 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6850C16A4CE for ; Sat, 30 Apr 2005 03:45:41 +0000 (GMT) Received: from mail.ncsa.uiuc.edu (mail.ncsa.uiuc.edu [141.142.2.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAE5F43D2D for ; Sat, 30 Apr 2005 03:45:40 +0000 (GMT) (envelope-from koziol@ncsa.uiuc.edu) X-Envelope-From: koziol@ncsa.uiuc.edu X-Envelope-To: Received: from sleipnir.ncsa.uiuc.edu (sleipnir.ncsa.uiuc.edu [141.142.96.70]) by mail.ncsa.uiuc.edu (8.11.7/8.11.7) with ESMTP id j3U3jd021447 for ; Fri, 29 Apr 2005 22:45:40 -0500 Received: from sleipnir.ncsa.uiuc.edu (localhost [127.0.0.1]) by sleipnir.ncsa.uiuc.edu (8.13.3/8.13.3) with ESMTP id j3U3jeqc020292 for ; Fri, 29 Apr 2005 22:45:40 -0500 (CDT) (envelope-from koziol@sleipnir.ncsa.uiuc.edu) Received: (from koziol@localhost) by sleipnir.ncsa.uiuc.edu (8.13.3/8.13.1/Submit) id j3U3jedX020291 for ports@freebsd.org; Fri, 29 Apr 2005 22:45:40 -0500 (CDT) (envelope-from koziol) From: Quincey Koziol Message-Id: <200504300345.j3U3jedX020291@sleipnir.ncsa.uiuc.edu> To: ports@freebsd.org Date: Fri, 29 Apr 2005 22:45:40 -0500 (CDT) X-Mailer: ELM [version 2.4ME+ PL119 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII X-NCSA-MailScanner-Information: Please contact the help@ncsa.uiuc.edu for more information X-NCSA-MailScanner: Found to be clean Subject: gcc 4.1 build issues w/portupgrade X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Apr 2005 03:45:41 -0000 Hi all, I'm seeing some odd behavior when attempting to build the new gcc 4.1 port with fortran. I've got the following line defined in the MAKE_ARGS section of my pkgtools.conf file: 'lang/gcc4*' => '-D WANT_SHAREDLIBS -D WITH_FORTRAN', When I run "portupgrade -fv gcc-4.0.1_20050423", I get the following output: [Updating the pkgdb in /var/db/pkg ... - 244 packages found (-0 +0) done] ---> Reading default options: -u ---> Session started at: Fri, 29 Apr 2005 22:36:11 -0500 ---> Reinstallation of lang/gcc40 started at: Fri, 29 Apr 2005 22:36:16 -0500 ---> Reinstalling 'gcc-4.0.1_20050423' (lang/gcc40) ---> Build of lang/gcc40 started at: Fri, 29 Apr 2005 22:36:16 -0500 ---> Building '/usr/ports/lang/gcc40' with make flags: -D WANT_SHAREDLIBS -D WI TH_FORTRAN ===> Cleaning for libiconv-1.9.2_1 ===> Cleaning for bison-1.75_2 ===> Cleaning for gettext-0.14.1 ===> Cleaning for gmake-3.80_2 ===> Cleaning for libtool-1.5.10_1 ===> Cleaning for m4-1.4.3 ===> Cleaning for perl-5.8.6_2 ===> Cleaning for libgmp-4.1.4 ===> Cleaning for expat-1.95.8_1 ===> Cleaning for gcc-4.0.1_20050423 Making GCC 4.0.1 for FreeBSD 4.11 target=i386-portbld-freebsd4.11 (without libgcj) ===> Vulnerability check disabled, database not found ===> Extracting for gcc-4.0.1_20050423 . . . Note that the make flags are indeed passed down correctly. However, when I run "portupgrade -fv gcc-4.1.0_20050424" I get this output: [Updating the pkgdb in /var/db/pkg ... - 244 packages found (-0 +0) done] ---> Reading default options: -u ---> Session started at: Fri, 29 Apr 2005 22:37:03 -0500 ---> Reinstallation of lang/gcc41 started at: Fri, 29 Apr 2005 22:37:09 -0500 ---> Reinstalling 'gcc-4.1.0_20050424' (lang/gcc41) ---> Build of lang/gcc41 started at: Fri, 29 Apr 2005 22:37:09 -0500 ---> Building '/usr/ports/lang/gcc41' ===> Cleaning for libiconv-1.9.2_1 ===> Cleaning for bison-1.75_2 ===> Cleaning for gettext-0.14.1 ===> Cleaning for gmake-3.80_2 ===> Cleaning for libtool-1.5.10_1 ===> Cleaning for m4-1.4.3 ===> Cleaning for perl-5.8.6_2 ===> Cleaning for expat-1.95.8_1 ===> Cleaning for gcc-4.1.0_20050424 Making GCC 4.1.0 for FreeBSD 4.11 target=i386-portbld-freebsd4.11 (without libgcj) ===> Vulnerability check disabled, database not found ===> Extracting for gcc-4.1.0_20050424 . . . Note that the make flags are _not_ passed down. Am I doing something wrong here, or is the problem somewhere else? (I'm running 4-STABLE, if that makes a difference) Thanks, Quincey From owner-freebsd-ports@FreeBSD.ORG Sat Apr 30 05:26:24 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F93A16A4CE for ; Sat, 30 Apr 2005 05:26:24 +0000 (GMT) Received: from outbound0.sv.meer.net (outbound0.sv.meer.net [205.217.152.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19AFB43D53 for ; Sat, 30 Apr 2005 05:26:24 +0000 (GMT) (envelope-from jrhett@mail.meer.net) Received: from mail.meer.net (mail.meer.net [209.157.152.14]) j3U5QHqL010016; Fri, 29 Apr 2005 22:26:17 -0700 (PDT) (envelope-from jrhett@mail.meer.net) Received: from mail.meer.net (localhost [127.0.0.1]) by mail.meer.net (8.12.1/8.12.10/meer) with ESMTP id j3U5QG7s011325; Fri, 29 Apr 2005 22:26:16 -0700 (PDT) (envelope-from jrhett@mail.meer.net) Received: (from jrhett@localhost) by mail.meer.net (8.12.1/8.12.10) id j3U5QFUD011324; Fri, 29 Apr 2005 22:26:15 -0700 (PDT) (envelope-from jrhett) Date: Fri, 29 Apr 2005 22:26:15 -0700 From: Joe Rhett To: Scot Hetzel Message-ID: <20050430052615.GA8066@meer.net> References: <892CC2C451D0414B90159D10B5BDAA65AB2234@EXCHANGE.astate.edu> <20050207202417.GB37923@meer.net> <20050208004233.GA84236@xor.obsecurity.org> <790a9fff050208142045266974@mail.gmail.com> <20050224203342.GH49530@meer.net> <790a9fff05022414531dd27600@mail.gmail.com> <20050422183816.GB45992@meer.net> <790a9fff05042213306b502f1b@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <790a9fff05042213306b502f1b@mail.gmail.com> User-Agent: Mutt/1.4i Organization: Meer.net LLC cc: ports@freebsd.org cc: Todd Reed Subject: Re: FreeBSD Port: frontpage-5.0.2.2623_1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Apr 2005 05:26:24 -0000 On Fri, Apr 22, 2005 at 03:30:06PM -0500, Scot Hetzel wrote: > The one difference that I know of between these two mod_frontpage > ports, is that Improved mod_frontpage checks to see if we have been > authenticated for the ADMIN and ADMINCGI urls. When I added these > checks to the RTR version (change FrontPageAlias to FrontPageNeedAuth > for the ADMIN and ADMINCGI checks in the mod_frontpage.c patches), the > mod_frontpage module was checking for authentication before the Apache > 2.0 server requested authentication. Actually, it's asking for authentication for things that apache doesn't ask for authentication on. This was broken by pathname changes in the rtr-compiled versions of frontpage. See my patches regarding this. > What other significant security enhancements does Improved mod_frontpage have? improved mod_frontpage has all of the security checks that are applied to CGIs. Last time I saw the rtr frontpage module, it was fairly easy to make it run things it shouldn't have if someone left directory permissions too loose. I haven't compared them side by side in a while, and perhaps I should do that before speaking further. -- Joe Rhett senior geek meer.net From owner-freebsd-ports@FreeBSD.ORG Sat Apr 30 05:29:15 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A7AB416A4CE; Sat, 30 Apr 2005 05:29:15 +0000 (GMT) Received: from sccimhc92.asp.att.net (sccimhc92.asp.att.net [63.240.76.166]) by mx1.FreeBSD.org (Postfix) with ESMTP id 376B743D46; Sat, 30 Apr 2005 05:29:15 +0000 (GMT) (envelope-from darkstalker@insightbb.com) Received: from koopa.insightbb.com (12-202-176-192.client.insightbb.com[12.202.176.192]) by sccimhc92.asp.att.net (sccimhc92) with ESMTP id <20050430052914i92005b3vae>; Sat, 30 Apr 2005 05:29:14 +0000 From: Jason Carter To: arved@FreeBSD.org Date: Sat, 30 Apr 2005 01:21:00 -0400 User-Agent: KMail/1.8 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200504300121.01459.darkstalker@insightbb.com> cc: ports@FreeBSD.org Subject: FreeBSD Port: kaffeine-0.6_1 - Possible Crash Fix X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: darkstalker@insightbb.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Apr 2005 05:29:15 -0000 Dear maintainer, For the last year, I've been having problems with kaffeine on many different distributions, both compiled from scratch and binaries, on both GNU/Linux and BSD where kaffeine would crash upon closing the program down and would also cause problems with Konqueror crashing while using the program as well as crashing upon exiting Konqueror. It wasn't something that happened everytime and it seemed to happen almost at random. It was to the point where I was just going to completely stop using Kaffeine until a fix was found. I believe I have stumbled across the proper fix for the problem. Checking through Gentoo's bug tracker, I came across this bug report for the same problem I've been having with the program. It appears to be a problem with xorg. After reading through the proposed solutions, I decided to try it myself by modifying kaffeine's Port Makefile like so: CONFIGURE_ARGS+= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} ...changed to... CONFIGURE_ARGS+= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} --with-xorg All stability problems I've had with Kaffeine as well as Konqueror have since disappeared after installing kaffeine with this slightly modified Makefile. For the record, I am using FreeBSD 5.4 RC3 with version 6.8.2 of xorg. If you need any further information, feel free to contact me. I'm unsure if you've experienced or heard of these crashes happening before, but I wanted to bring it to your attention just in case. Thank you for your time and your efforts in making FreeBSD a great operating system. Jason Carter darkstalker@insightbb.com From owner-freebsd-ports@FreeBSD.ORG Sat Apr 30 06:39:29 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D954116A4CE for ; Sat, 30 Apr 2005 06:39:29 +0000 (GMT) Received: from graf.pompo.net (graf.pompo.net [81.56.186.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4771743D31 for ; Sat, 30 Apr 2005 06:39:29 +0000 (GMT) (envelope-from thierry@pompo.net) Received: by graf.pompo.net (Postfix, from userid 1001) id DE2957512; Sat, 30 Apr 2005 08:36:42 +0200 (CEST) Date: Sat, 30 Apr 2005 08:36:42 +0200 From: Thierry Thomas To: FreeBSD Ports Message-ID: <20050430063642.GA95709@graf.pompo.net> Mail-Followup-To: FreeBSD Ports , Fernan Aguero References: <20050429193337.GA76534@iib.unsam.edu.ar> <20050429215319.GB69211@graf.pompo.net> <20050430011418.GA45252@iib.unsam.edu.ar> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="YZ5djTAD1cGYuMQK" Content-Disposition: inline In-Reply-To: <20050430011418.GA45252@iib.unsam.edu.ar> X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc; y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 4.11-STABLE i386 Organization: Kabbale Eros X-PGP: 0xC71405A2 Subject: Re: build of textproc/aspell fails on fresh 5.4RC3 box X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Apr 2005 06:39:30 -0000 --YZ5djTAD1cGYuMQK Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Le Sam 30 avr 05 =E0 3:14:18 +0200, Fernan Aguero =E9crivait=A0: > | Such failures have been reported, due to unclean /usr/include/g++ > | but you should not face it after a fresh install. >=20 > Actually I don't see any directory named 'g++' under > /usr/include. I believe this can mean that the directory is > perfectly clean , but it could also mean trouble :| >=20 > Where does this dir come from? AS I said I installed a > minimal 5.3 (no man pages, just base and sources, no binary > packages) and just used ports to build cvsup. Then I > rebuilt and installed world (now I got the man pages) and > kernel, and then started adding more ports. Then this is normal: this directory does not exists on 5.x. Is your ${WRKDIRPREFIX} nfs-mounted? Regards, --=20 Th. Thomas. --YZ5djTAD1cGYuMQK Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCcyd6c95pjMcUBaIRAnjjAKD6tWqHJcw29cM/81wUf5DTokG37gCeKab6 kwoXIXZ6ZY8amw2M8B9qlNE= =CNA4 -----END PGP SIGNATURE----- --YZ5djTAD1cGYuMQK-- From owner-freebsd-ports@FreeBSD.ORG Sat Apr 30 07:36:43 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8FB316A4CE for ; Sat, 30 Apr 2005 07:36:43 +0000 (GMT) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1583543D31 for ; Sat, 30 Apr 2005 07:36:43 +0000 (GMT) (envelope-from freebsd-ports@m.gmane.org) Received: from root by ciao.gmane.org with local (Exim 4.43) id 1DRmR1-0004Pv-Vb for freebsd-ports@freebsd.org; Sat, 30 Apr 2005 09:30:43 +0200 Received: from pd9ecc7d6.dip0.t-ipconnect.de ([217.236.199.214]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 30 Apr 2005 09:30:43 +0200 Received: from tps by pd9ecc7d6.dip0.t-ipconnect.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 30 Apr 2005 09:30:43 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: Thomas Schweikle Date: Fri, 29 Apr 2005 16:27:06 +0200 Lines: 13 Message-ID: References: <1114782990.42723d0eccf1f@imp2-q.free.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: pd9ecc7d6.dip0.t-ipconnect.de User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; de-AT; rv:1.7.6) Gecko/20050319 Hamster-Pg/1.23 X-Accept-Language: de, en In-Reply-To: <1114782990.42723d0eccf1f@imp2-q.free.fr> X-Enigmail-Version: 0.91.0.0 Sender: news Subject: Re: successful installation of VMWare on FreeBSD ? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Apr 2005 07:36:44 -0000 hb4j@free.fr schrieb: > hi everyone, > > has anyone been able to successfully install VMWare on FreeBSD ? (of course with > the linux compat) > > if yes, which version was it ? (I assume the tar.gz) I could make it run. But: what version? -- Thomas From owner-freebsd-ports@FreeBSD.ORG Sat Apr 30 08:00:26 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A58916A4D0 for ; Sat, 30 Apr 2005 08:00:26 +0000 (GMT) Received: from postfix3-1.free.fr (postfix3-1.free.fr [213.228.0.44]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1D2043D39 for ; Sat, 30 Apr 2005 08:00:25 +0000 (GMT) (envelope-from hb4j@free.fr) Received: from imp2-q.free.fr (imp2-q.free.fr [212.27.42.2]) by postfix3-1.free.fr (Postfix) with ESMTP id B190D17347F; Sat, 30 Apr 2005 10:00:19 +0200 (CEST) Received: by imp2-q.free.fr (Postfix, from userid 33) id 8040E6456B; Sat, 30 Apr 2005 10:00:19 +0200 (MEST) Received: from lns-vlq-8-tou-82-251-230-250.adsl.proxad.net (lns-vlq-8-tou-82-251-230-250.adsl.proxad.net [82.251.230.250]) by imp2-q.free.fr (IMP) with HTTP for ; Sat, 30 Apr 2005 10:00:19 +0200 Message-ID: <1114848019.42733b136f73a@imp2-q.free.fr> Date: Sat, 30 Apr 2005 10:00:19 +0200 From: hb4j@free.fr To: Christopher Nehren References: <1114782990.42723d0eccf1f@imp2-q.free.fr> <1114805610.4272956acfd83@imp2-q.free.fr> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 3.2.5 X-Originating-IP: 82.251.230.250 cc: freebsd-ports@freebsd.org Subject: equivalent to partimage (ghost / drive image) under FreeBSD ? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Apr 2005 08:00:26 -0000 thanks mate for your understanding, I am a very enthusiastic FreeBSD newbie but newbie anyway ... by the way, what is the equivalent to partimage under FreeBSD ? I would love to be able to make complete backups of my installed/configured system, so that if ever it crashes, I don´t have to re-install everything from scratch ... thanks again in advance :o) hb4j From owner-freebsd-ports@FreeBSD.ORG Sat Apr 30 12:25:54 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F8A016A4CE for ; Sat, 30 Apr 2005 12:25:54 +0000 (GMT) Received: from mta09-winn.mailhost.ntl.com (smtpout17.mailhost.ntl.com [212.250.162.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7E5C43D45 for ; Sat, 30 Apr 2005 12:25:52 +0000 (GMT) (envelope-from sfromley@ntlworld.com) Received: from aamta03-winn.mailhost.ntl.com ([212.250.162.8]) by mta09-winn.mailhost.ntl.com with ESMTP <20050430122551.TYFP28254.mta09-winn.mailhost.ntl.com@aamta03-winn.mailhost.ntl.com> for ; Sat, 30 Apr 2005 13:25:51 +0100 Received: from [192.168.124.185] (really [82.5.120.109]) by aamta03-winn.mailhost.ntl.com with ESMTP <20050430122551.FOYS1279.aamta03-winn.mailhost.ntl.com@[192.168.124.185]> for ; Sat, 30 Apr 2005 13:25:51 +0100 Message-ID: <42737959.1000105@ntlworld.com> Date: Sat, 30 Apr 2005 13:26:01 +0100 From: Eliot Earle User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <1114782990.42723d0eccf1f@imp2-q.free.fr> <1114805610.4272956acfd83@imp2-q.free.fr> <1114848019.42733b136f73a@imp2-q.free.fr> In-Reply-To: <1114848019.42733b136f73a@imp2-q.free.fr> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Subject: Re: equivalent to partimage (ghost / drive image) under FreeBSD ? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Apr 2005 12:25:54 -0000 hb4j@free.fr wrote: > thanks mate for your understanding, I am a very enthusiastic FreeBSD newbie but > newbie anyway ... > > by the way, what is the equivalent to partimage under FreeBSD ? > > I would love to be able to make complete backups of my installed/configured > system, so that if ever it crashes, I don´t have to re-install everything from > scratch ... > > thanks again in advance :o) > > hb4j Look at rsync and dump. For info on rsync, read http://www.freshports.org/net/rsync/ For info on dump, read `man dump`. Personally, I use dump to backup the whole system to tape. But I have used rsync to move the entire system from one drive to another, to update the filesystem. You just need to know that it will handle everything just fine except the ability to boot off the disk. Or you could just try running the linux binary under the linux compatibility layer in freebsd. It may or may not work, though. It's handy to know that "kern.fallback_elf_brand=3" in "/etc/sysctl.conf" enables linux compatibility by default. But don't take my word for it. I could be anyone. -- Eliot 'intocabile' www.fromley.com From owner-freebsd-ports@FreeBSD.ORG Sat Apr 30 13:35:46 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 896CF16A4CE for ; Sat, 30 Apr 2005 13:35:46 +0000 (GMT) Received: from ramiel.secspace.de (ramiel.secspace.de [213.61.4.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A4DC43D49 for ; Sat, 30 Apr 2005 13:35:46 +0000 (GMT) (envelope-from ml@ps102.de) Received: from [192.168.17.11] (p54A7DAB3.dip.t-dialin.net [84.167.218.179]) by ramiel.secspace.de (Postfix) with ESMTP id 904B711300 for ; Sat, 30 Apr 2005 15:35:41 +0200 (CEST) Message-ID: <427389E7.3020009@ps102.de> Date: Sat, 30 Apr 2005 15:36:39 +0200 From: Volker Kindermann User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050325) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <1114782990.42723d0eccf1f@imp2-q.free.fr> <1114805610.4272956acfd83@imp2-q.free.fr> <1114848019.42733b136f73a@imp2-q.free.fr> In-Reply-To: <1114848019.42733b136f73a@imp2-q.free.fr> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Subject: Re: equivalent to partimage (ghost / drive image) under FreeBSD ? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Apr 2005 13:35:46 -0000 > by the way, what is the equivalent to partimage under FreeBSD ? > > I would love to be able to make complete backups of my installed/configured > system, so that if ever it crashes, I don´t have to re-install everything from > scratch ... you should also have a look at g4u: http://www.feyrer.de/g4u/ -volker From owner-freebsd-ports@FreeBSD.ORG Sat Apr 30 16:44:44 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5336216A4CE; Sat, 30 Apr 2005 16:44:44 +0000 (GMT) Received: from absamail.co.za (mail3.absamail.co.za [196.35.40.69]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C65F43D2F; Sat, 30 Apr 2005 16:44:43 +0000 (GMT) (envelope-from d.wagner@absamail.co.za) Received: from absamail.co.za not authenticated [196.35.40.67] Novell NetWare; Sat, 30 Apr 2005 18:57:28 +0200 Received: from [10.0.0.3] d.wagner@absamail.co.za [155.239.117.212] Novell NetWare; Sat, 30 Apr 2005 18:57:28 +0200 From: "Dameon Wagner" To: cy@FreeBSD.org Date: Sat, 30 Apr 2005 18:44:45 +0200 MIME-Version: 1.0 Message-ID: <4273D21D.2189.352DF748@d.wagner.absamail.co.za> Priority: normal X-mailer: Pegasus Mail for Windows (4.30 beta 23) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body cc: ports@FreeBSD.org Subject: FreeBSD Port: screen-4.0.2_1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: d.wagner@absamail.co.za List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Apr 2005 16:44:44 -0000 Howzit, I'm trying to get hold of the 5.3-RELEASE package for screen. On the FreeBSD website ports search pages, I get a listing for screen- 4.0.2_1 (and the email link for this message ;-), but the links to the package and the port files seems to lead to a dead end. Is there anywhere else that I can get a screen package for 5.3? Cheers. Dameon. -- ><> ><> ><> ><> ><> ><> ooOoo <>< <>< <>< <>< <>< <>< Dr. Dameon Wagner, Post-doctoral Fellow in Zoology, University of Durban-Westville, South Africa. __ Beta tester for Pegasus Mail & Mercury/32 (www.pmail.com) ><> ><> ><> ><> ><> ><> ooOoo <>< <>< <>< <>< <>< <>< From owner-freebsd-ports@FreeBSD.ORG Sat Apr 30 16:54:21 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B7CB516A4CE; Sat, 30 Apr 2005 16:54:21 +0000 (GMT) Received: from multiplay.co.uk (www1.multiplay.co.uk [212.42.16.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB2EE43D45; Sat, 30 Apr 2005 16:54:20 +0000 (GMT) (envelope-from killing@multiplay.co.uk) Received: from vader ([212.135.219.179]) by multiplay.co.uk (multiplay.co.uk [212.42.16.7]) (MDaemon.PRO.v8.0.1.R) with ESMTP id md50001371562.msg; Sat, 30 Apr 2005 17:49:40 +0100 Message-ID: <008201c54da5$16630d60$b3db87d4@multiplay.co.uk> From: "Steven Hartland" To: , References: <4273D21D.2189.352DF748@d.wagner.absamail.co.za> Date: Sat, 30 Apr 2005 17:53:04 +0100 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2527 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2527 X-Spam-Processed: multiplay.co.uk, Sat, 30 Apr 2005 17:49:40 +0100 (not processed: message from valid local sender) X-MDRemoteIP: 212.135.219.179 X-Return-Path: killing@multiplay.co.uk X-MDAV-Processed: multiplay.co.uk, Sat, 30 Apr 2005 17:49:42 +0100 cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: screen-4.0.2_1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Apr 2005 16:54:21 -0000 Hmm does seem to have gone walk about just build it from ports: cd /usr/ports/misc/screen && make && make install Should do u Steve ----- Original Message ----- From: "Dameon Wagner" > I'm trying to get hold of the 5.3-RELEASE package for screen. On the > FreeBSD website ports search pages, I get a listing for screen- > 4.0.2_1 (and the email link for this message ;-), but the links to > the package and the port files seems to lead to a dead end. Is there > anywhere else that I can get a screen package for 5.3? ================================================ This e.mail is private and confidential between Multiplay (UK) Ltd. and the person or entity to whom it is addressed. In the event of misdirection, the recipient is prohibited from using, copying, printing or otherwise disseminating it or any information contained in it. In the event of misdirection, illegible or incomplete transmission please telephone (023) 8024 3137 or return the E.mail to postmaster@multiplay.co.uk. From owner-freebsd-ports@FreeBSD.ORG Sat Apr 30 17:23:37 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5724116A4CE; Sat, 30 Apr 2005 17:23:37 +0000 (GMT) Received: from multiplay.co.uk (www1.multiplay.co.uk [212.42.16.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D0BC43D1F; Sat, 30 Apr 2005 17:23:36 +0000 (GMT) (envelope-from killing@multiplay.co.uk) Received: from vader ([212.135.219.179]) by multiplay.co.uk (multiplay.co.uk [212.42.16.7]) (MDaemon.PRO.v8.0.1.R) with ESMTP id md50001371607.msg; Sat, 30 Apr 2005 18:19:12 +0100 Message-ID: <009101c54da9$375f9570$b3db87d4@multiplay.co.uk> From: "Steven Hartland" To: "Steven Hartland" , , References: <4273D21D.2189.352DF748@d.wagner.absamail.co.za> <008201c54da5$16630d60$b3db87d4@multiplay.co.uk> Date: Sat, 30 Apr 2005 18:22:38 +0100 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=response Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2527 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2527 X-Spam-Processed: multiplay.co.uk, Sat, 30 Apr 2005 18:19:12 +0100 (not processed: message from valid local sender) X-MDRemoteIP: 212.135.219.179 X-Return-Path: killing@multiplay.co.uk X-MDAV-Processed: multiplay.co.uk, Sat, 30 Apr 2005 18:19:14 +0100 cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: screen-4.0.2_1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Apr 2005 17:23:37 -0000 Doing make package I get: ===> screen-4.0.2_1 may not be packaged: Tends to loop using 100% CPU when used from package - perhaps it hard-codes information about the build host. So I assume that's why it was removed but tbh I haven't had this happen since 5.1 days and removing the package is therefore a pain and should be put back IMO. Steve ----- Original Message ----- From: "Steven Hartland" > Hmm does seem to have gone walk about just build it from ports: > cd /usr/ports/misc/screen && make && make install > Should do u ================================================ This e.mail is private and confidential between Multiplay (UK) Ltd. and the person or entity to whom it is addressed. In the event of misdirection, the recipient is prohibited from using, copying, printing or otherwise disseminating it or any information contained in it. In the event of misdirection, illegible or incomplete transmission please telephone (023) 8024 3137 or return the E.mail to postmaster@multiplay.co.uk. From owner-freebsd-ports@FreeBSD.ORG Sat Apr 30 18:18:02 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1499D16A4CE for ; Sat, 30 Apr 2005 18:18:02 +0000 (GMT) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FC1E43D5C for ; Sat, 30 Apr 2005 18:18:01 +0000 (GMT) (envelope-from freebsd-ports@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1DRwRJ-0000IW-1R for freebsd-ports@freebsd.org; Sat, 30 Apr 2005 20:11:41 +0200 Received: from pcp08490587pcs.levtwn01.pa.comcast.net ([68.83.169.224]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 30 Apr 2005 20:11:41 +0200 Received: from apeiron+usenet by pcp08490587pcs.levtwn01.pa.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 30 Apr 2005 20:11:41 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: Christopher Nehren Date: Sat, 30 Apr 2005 18:11:36 +0000 (UTC) Organization: /usr/bin/false Lines: 36 Message-ID: References: <200504300121.01459.darkstalker@insightbb.com> X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: pcp08490587pcs.levtwn01.pa.comcast.net User-Agent: slrn/0.9.8.1 (FreeBSD) Sender: news Subject: Re: FreeBSD Port: kaffeine-0.6_1 - Possible Crash Fix X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Apr 2005 18:18:02 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 2005-04-30, Jason Carter scribbled these curious markings: > I believe I have stumbled across the proper fix for the problem. Checking > through Gentoo's bug tracker, I came across href="http://bugs.gentoo.org/show_bug.cgi?id=86797">this bug report for ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Your initiative is splendid, and greatly appreciated. But since the newsgroups are mostly a text medium, hyperlinks formatted for HTML don't show up properly. > Thank you for your time and your efforts in making FreeBSD a great operating > system. Thank you for thoroughly investigating the issue. You really should use the send-pr utility to submit a bug report, so that your hard work isn't lost in the mail archives. Best Regards, Christopher Nehren -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCc8u8k/lo7zvzJioRAuOhAJ9AhKfaNXINPZxHditdm3iJV4Gj4ACdFhUZ YCoDJxZgpcssKNklYWX2bYg= =Zds0 -----END PGP SIGNATURE----- -- I abhor a system designed for the "user", if that word is a coded pejorative meaning "stupid and unsophisticated". -- Ken Thompson If you ask the wrong questions, you get answers like "42" and "God". Unix is user friendly. However, it isn't idiot friendly. From owner-freebsd-ports@FreeBSD.ORG Sat Apr 30 21:13:32 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A084016A4CE for ; Sat, 30 Apr 2005 21:13:32 +0000 (GMT) Received: from relay.pair.com (relay00.pair.com [209.68.1.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 0318B43D1D for ; Sat, 30 Apr 2005 21:13:32 +0000 (GMT) (envelope-from alejandro@varnet.biz) Received: (qmail 79355 invoked from network); 30 Apr 2005 21:13:30 -0000 Received: from unknown (HELO ale.varnet.bsd) (unknown) by unknown with SMTP; 30 Apr 2005 21:13:30 -0000 X-pair-Authenticated: 200.115.214.28 Date: Sat, 30 Apr 2005 18:14:39 -0300 From: Alejandro Pulver To: freebsd-ports@freebsd.org Message-ID: <20050430181439.678b4f85@ale.varnet.bsd> X-Mailer: Sylpheed-Claws 0.9.12b (GTK+ 1.2.10; i386-portbld-freebsd5.3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Naming questions X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Apr 2005 21:13:32 -0000 Hello, I understand the variable PKGNAMESUFFIX should be compilation-specific, not port-specific. So if there is a port called "foo", and a modified version called "foo-better", the PORTNAME of the second should be "foo-better", not splitted in PORTNAME and PKGNAMESUFFIX? I am making a port that only has a GTK interface, should it be suffixed by "-gtk"? If not, the executable it installs has the suffix "-gtk", should it be removed to match the port name? If there is a port that is splitted in components (like "foo-doc", "foo-gtk", etc.). Should they use PKGNAMESUFFIX? If the components use OPTIONS, it does not correctly determine the options directory; is LATEST_LINK=${PORTNAME}${PKGNAMESUFFIX} appropiate? Thanks and Best Regards, Ale From owner-freebsd-ports@FreeBSD.ORG Sat Apr 30 21:35:56 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B9F5A16A4CE for ; Sat, 30 Apr 2005 21:35:56 +0000 (GMT) Received: from outgoing.redshift.com (outgoing.redshift.com [207.177.231.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98FBF43D45 for ; Sat, 30 Apr 2005 21:35:56 +0000 (GMT) (envelope-from ray@redshift.com) Received: from workstation (216-228-19-21.dsl.redshift.com [216.228.19.21]) by outgoing.redshift.com (Postfix) with SMTP id 2E76697060; Sat, 30 Apr 2005 14:35:55 -0700 (PDT) Message-Id: <3.0.1.32.20050430143604.00ae9a60@pop.redshift.com> X-Mailer: na X-Sender: redshift.com Date: Sat, 30 Apr 2005 14:36:04 -0700 To: marcus@corp.grupos.com.br From: ray@redshift.com Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" cc: ports@FreeBSD.org Subject: FreeBSD Port: pecl-APC-2.0.4_1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Apr 2005 21:35:56 -0000 [root@www pecl-APC]# make ===> Vulnerability check disabled, database not found ===> Found saved configuration for pecl-APC-2.0.4_1 ===> Extracting for pecl-APC-2.0.4_1 => Checksum OK for PECL/APC-2.0.4.tgz. ===> Patching for pecl-APC-2.0.4_1 ===> pecl-APC-2.0.4_1 depends on executable: phpize - found ===> pecl-APC-2.0.4_1 depends on file: /usr/local/bin/automake15 - found ===> pecl-APC-2.0.4_1 depends on file: /usr/local/bin/autoconf253 - found ===> PHPizing for pecl-APC-2.0.4_1 autoheader: `config.h.in' is created I believe this build worked a couple months ago when I did it. Just wanted to report it. This is under FreeBSD 5.3/i386 Ray From owner-freebsd-ports@FreeBSD.ORG Sat Apr 30 21:35:57 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8536816A4CE; Sat, 30 Apr 2005 21:35:57 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id 327D543D48; Sat, 30 Apr 2005 21:35:57 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 77A56533E6; Sat, 30 Apr 2005 14:35:56 -0700 (PDT) Date: Sat, 30 Apr 2005 14:35:56 -0700 From: Kris Kennaway To: Steven Hartland Message-ID: <20050430213556.GA51804@xor.obsecurity.org> References: <4273D21D.2189.352DF748@d.wagner.absamail.co.za> <008201c54da5$16630d60$b3db87d4@multiplay.co.uk> <009101c54da9$375f9570$b3db87d4@multiplay.co.uk> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="y0ulUmNC+osPPQO6" Content-Disposition: inline In-Reply-To: <009101c54da9$375f9570$b3db87d4@multiplay.co.uk> User-Agent: Mutt/1.4.2.1i cc: ports@FreeBSD.org cc: d.wagner@absamail.co.za cc: cy@FreeBSD.org Subject: Re: FreeBSD Port: screen-4.0.2_1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Apr 2005 21:35:57 -0000 --y0ulUmNC+osPPQO6 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Apr 30, 2005 at 06:22:38PM +0100, Steven Hartland wrote: > Doing make package I get: > =3D=3D=3D> screen-4.0.2_1 may not be packaged: Tends to loop using 100% = CPU > when used from package - perhaps it hard-codes information about the buil= d=20 > host. >=20 > So I assume that's why it was removed but tbh I haven't had this happen= =20 > since > 5.1 days and removing the package is therefore a pain and should be put > back IMO. The bug still exists as far as anyone knows. The reason you haven't seen it happen is because you're no longer using the package. Kris --y0ulUmNC+osPPQO6 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCc/o8Wry0BWjoQKURArF7AJ44d8mo4g7wRcDwEvI42AyNVUlyVgCg8ubN Kb8bIU6nOIyvmANK+eb5GCI= =UOcf -----END PGP SIGNATURE----- --y0ulUmNC+osPPQO6-- From owner-freebsd-ports@FreeBSD.ORG Sat Apr 30 21:47:03 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4272016A4CE; Sat, 30 Apr 2005 21:47:03 +0000 (GMT) Received: from multiplay.co.uk (www1.multiplay.co.uk [212.42.16.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5230A43D46; Sat, 30 Apr 2005 21:47:02 +0000 (GMT) (envelope-from killing@multiplay.co.uk) Received: from vader ([212.135.219.179]) by multiplay.co.uk (multiplay.co.uk [212.42.16.7]) (MDaemon.PRO.v8.0.1.R) with ESMTP id md50001371910.msg; Sat, 30 Apr 2005 22:43:06 +0100 Message-ID: <005301c54dce$14ee2400$b3db87d4@multiplay.co.uk> From: "Steven Hartland" To: "Kris Kennaway" References: <4273D21D.2189.352DF748@d.wagner.absamail.co.za><008201c54da5$16630d60$b3db87d4@multiplay.co.uk><009101c54da9$375f9570$b3db87d4@multiplay.co.uk> <20050430213556.GA51804@xor.obsecurity.org> Date: Sat, 30 Apr 2005 22:46:32 +0100 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2527 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2527 X-Spam-Processed: multiplay.co.uk, Sat, 30 Apr 2005 22:43:06 +0100 (not processed: message from valid local sender) X-MDRemoteIP: 212.135.219.179 X-Return-Path: killing@multiplay.co.uk X-MDAV-Processed: multiplay.co.uk, Sat, 30 Apr 2005 22:43:08 +0100 cc: ports@FreeBSD.org cc: d.wagner@absamail.co.za cc: cy@FreeBSD.org Subject: Re: FreeBSD Port: screen-4.0.2_1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Apr 2005 21:47:03 -0000 On Sat, Apr 30, 2005 at 06:22:38PM +0100, Steven Hartland wrote: >> So I assume that's why it was removed but tbh I haven't had this happen >> since >> 5.1 days and removing the package is therefore a pain and should be put >> back IMO. >From: "Kris Kennaway" > > The bug still exists as far as anyone knows. The reason you haven't >seen it happen is because you're no longer using the package. All our installs are done via pxe using a custom install.cfg which just has a sudo package with dependencies to all the base packages we require including screen and not as single machine has had an issue since 5.1 but maybe thats just me. Steve ================================================ This e.mail is private and confidential between Multiplay (UK) Ltd. and the person or entity to whom it is addressed. In the event of misdirection, the recipient is prohibited from using, copying, printing or otherwise disseminating it or any information contained in it. In the event of misdirection, illegible or incomplete transmission please telephone (023) 8024 3137 or return the E.mail to postmaster@multiplay.co.uk. From owner-freebsd-ports@FreeBSD.ORG Sat Apr 30 22:05:23 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2747516A4CE; Sat, 30 Apr 2005 22:05:23 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id CEA8943D1F; Sat, 30 Apr 2005 22:05:22 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 98D505148A; Sat, 30 Apr 2005 15:05:21 -0700 (PDT) Date: Sat, 30 Apr 2005 15:05:21 -0700 From: Kris Kennaway To: Steven Hartland Message-ID: <20050430220520.GC52286@xor.obsecurity.org> References: <20050430213556.GA51804@xor.obsecurity.org> <005301c54dce$14ee2400$b3db87d4@multiplay.co.uk> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Qbvjkv9qwOGw/5Fx" Content-Disposition: inline In-Reply-To: <005301c54dce$14ee2400$b3db87d4@multiplay.co.uk> User-Agent: Mutt/1.4.2.1i cc: ports@FreeBSD.org cc: d.wagner@absamail.co.za cc: cy@FreeBSD.org cc: Kris Kennaway Subject: Re: FreeBSD Port: screen-4.0.2_1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Apr 2005 22:05:23 -0000 --Qbvjkv9qwOGw/5Fx Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Apr 30, 2005 at 10:46:32PM +0100, Steven Hartland wrote: > On Sat, Apr 30, 2005 at 06:22:38PM +0100, Steven Hartland wrote: >=20 > >>So I assume that's why it was removed but tbh I haven't had this happen= =20 > >>since > >>5.1 days and removing the package is therefore a pain and should be put > >>back IMO. > >From: "Kris Kennaway" > > > >The bug still exists as far as anyone knows. The reason you haven't > >seen it happen is because you're no longer using the package. >=20 > All our installs are done via pxe using a custom install.cfg which just > has a sudo package with dependencies to all the base packages we require > including screen and not as single machine has had an issue since 5.1 > but maybe thats just me. I know for certain that the problem existed after 5.1 (I only added the NO_PACKAGE tag less than a year ago), so I guess you're just lucky. No-one ever tracked down the circumstances that caused the package to go into a spin anyway. Kris --Qbvjkv9qwOGw/5Fx Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCdAEgWry0BWjoQKURAq4eAJ9GT1BjWfJhZ5t47Pr/HDzTXM5TqgCaAoRX yeIyH5C2wwMbRIfd79UQCm8= =zUK1 -----END PGP SIGNATURE----- --Qbvjkv9qwOGw/5Fx-- From owner-freebsd-ports@FreeBSD.ORG Sat Apr 30 23:00:56 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C98B16A4CE for ; Sat, 30 Apr 2005 23:00:56 +0000 (GMT) Received: from mail.efacilitas.de (efacilitas.de [213.133.110.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DC8E43D2F for ; Sat, 30 Apr 2005 23:00:56 +0000 (GMT) (envelope-from bkoenig@cs.tu-berlin.de) Received: from eurystheus.local (port-212-202-39-77.dynamic.qsc.de [212.202.39.77]) by mail.efacilitas.de (Postfix) with ESMTP id 033CD123A42; Sun, 1 May 2005 00:59:44 +0200 (CEST) Received: from localhost (eurystheus.local [192.168.1.67]) by eurystheus.local (Postfix) with ESMTP id 0B91912B34F; Sun, 1 May 2005 01:00:48 +0200 (CEST) Received: from eurystheus.local ([192.168.1.67]) by localhost (eurystheus.locaL [192.168.1.67]) (amavisd-new, port 10024) with ESMTP id 74263-06; Sun, 1 May 2005 01:00:42 +0200 (CEST) Received: from [192.168.1.67] (eurystheus.local [192.168.1.67]) by eurystheus.local (Postfix) with ESMTP id 1A61212B34E; Sun, 1 May 2005 01:00:42 +0200 (CEST) Message-ID: <42740E19.6050804@cs.tu-berlin.de> Date: Sun, 01 May 2005 01:00:41 +0200 From: =?ISO-8859-1?Q?Bj=F6rn_K=F6nig?= User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.7) Gecko/20050425 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Alejandro Pulver References: <20050430181439.678b4f85@ale.varnet.bsd> In-Reply-To: <20050430181439.678b4f85@ale.varnet.bsd> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Scanned: amavisd-new at example.com cc: freebsd-ports@freebsd.org Subject: Re: Naming questions X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Apr 2005 23:00:56 -0000 Alejandro Pulver wrote: >I am making a port that only has a GTK interface, should it be suffixed >by "-gtk"? > If the program works only with gtk and not without, not even as an option, then don't use PKGNAMESUFFIX. If you want to give the user the chance to choose between a GUI or just a command line tool, then it depends on your default how you may want to use PKGNAMESUFFIX. Take the port 'editors/vim' as an example; the user has the opportunity to make a decision between the default and with GTK+2 support; and the final package is named just 'vim' or 'vim-gtk2'. Another example is 'net/cvsup'; if you compile it with WITHOUT_X11 you'll get 'cvsup-without-gui', otherwise just 'cvsup'. You can stick to other ports which might give some inspirations. >If not, the executable it installs has the suffix "-gtk", >should it be removed to match the port name? > > This is not necessary. >If there is a port that is splitted in components (like "foo-doc", >"foo-gtk", etc.). Should they use PKGNAMESUFFIX? > The suffix is primarily intended for compilation specific things, but 'databases/postgresql' shows that it is possible to use it for -server, -client, -doc, -odbc, i.e. components. See also http://www.freebsd.org/doc/en/books/porters-handbook/makefile-naming.html#AEN582 Björn From owner-freebsd-ports@FreeBSD.ORG Sat Apr 30 23:51:01 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43CA316A4CE for ; Sat, 30 Apr 2005 23:51:01 +0000 (GMT) Received: from sccmmhc91.asp.att.net (sccmmhc91.asp.att.net [204.127.203.211]) by mx1.FreeBSD.org (Postfix) with ESMTP id E0DA843D31 for ; Sat, 30 Apr 2005 23:51:00 +0000 (GMT) (envelope-from stephen@math.missouri.edu) Received: from [10.0.0.4] (12-216-244-56.client.mchsi.com[12.216.244.56]) by sccmmhc91.asp.att.net (sccmmhc91) with ESMTP id <20050430235059m9100pvgc1e>; Sat, 30 Apr 2005 23:51:00 +0000 Message-ID: <427419E3.5090303@math.missouri.edu> Date: Sat, 30 Apr 2005 18:50:59 -0500 From: Stephen Montgomery-Smith User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.7) Gecko/20050426 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Overcoming "NO_PACKAGE" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Apr 2005 23:51:01 -0000 I use packages for local use (i.e. make ports on one computer, and use the packages on another computer on the same network). Is there some command that I can put in /etc/make.conf that would invalidate the "NO_PACKAGE" line that appear in some of the ports Makefile's? Thanks, Stephen