From owner-freebsd-ports@FreeBSD.ORG Sun Aug 29 08:37:48 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E893D1065698 for ; Sun, 29 Aug 2010 08:37:48 +0000 (UTC) (envelope-from naylor.b.david@gmail.com) Received: from mail-ww0-f50.google.com (mail-ww0-f50.google.com [74.125.82.50]) by mx1.freebsd.org (Postfix) with ESMTP id 74EA08FC0C for ; Sun, 29 Aug 2010 08:37:48 +0000 (UTC) Received: by wwb34 with SMTP id 34so3982415wwb.31 for ; Sun, 29 Aug 2010 01:37:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:organization:to:subject :date:user-agent:cc:references:in-reply-to:mime-version:content-type :content-transfer-encoding:message-id; bh=oOUkjDI8zSXBCLh82U/XUJgCb3gA0zwvb4ciQwh1j9Q=; b=PUDeP4EzhjaQWrLaiTYjobEyaSd33mZspOHRhlB3CL6wT1JRSguLxBNxarc4WSJpBI 0kgtkrJKRXs+lTQBq3hZNJhcYQTxenk5LMyX4EdDsgEp/cTCQOY/xNDPKaZv3aUc21FA g87wn8Sa7wsv7ZbJ3oIewfaIYMEFcMrsUCbUk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:organization:to:subject:date:user-agent:cc:references :in-reply-to:mime-version:content-type:content-transfer-encoding :message-id; b=EnQe8Mqrt3lBDgzv3kNfTXT56DJwgKBxRY5vkCwsQDNW4tFzNi/aRwZMsL7YvTcaMQ /q89gofAA3bGTJ98QfgHiSNjhz72629IUG/yw7BwVElWcrNBxM1K7HAs8ifD9qGj5deq L0tx7Yrx8WiiqK8eMiSWLYxC+LpkYyoHVVBMo= Received: by 10.227.142.84 with SMTP id p20mr3137136wbu.182.1283071067306; Sun, 29 Aug 2010 01:37:47 -0700 (PDT) Received: from dragon.dg (41-132-25-181.dsl.mweb.co.za [41.132.25.181]) by mx.google.com with ESMTPS id k7sm3631012wej.26.2010.08.29.01.37.33 (version=SSLv3 cipher=RC4-MD5); Sun, 29 Aug 2010 01:37:46 -0700 (PDT) From: David Naylor Organization: Private To: Greg Lewis , freebsd-ports@freebsd.org Date: Sun, 29 Aug 2010 10:37:37 +0200 User-Agent: KMail/1.13.5 (FreeBSD/9.0-CURRENT; KDE/4.4.5; amd64; ; ) References: <201006251808.29467.naylor.b.david@gmail.com> <86lj7q31s8.fsf@gmail.com> <20100828213022.GA78573@misty.eyesbeyond.com> In-Reply-To: <20100828213022.GA78573@misty.eyesbeyond.com> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart3343707.kzPFGT3LFV"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <201008291037.40908.naylor.b.david@gmail.com> Cc: Anonymous Subject: Re: MAKE_JOBS and openjdk6 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2010 08:37:49 -0000 --nextPart3343707.kzPFGT3LFV Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable On Saturday 28 August 2010 23:30:22 Greg Lewis wrote: > On Sun, Aug 29, 2010 at 12:44:39AM +0400, Anonymous wrote: > > Greg Lewis writes: > > > I would argue that overriding a private variable is a hack (other por= ts > > > doing it doesn't make it not a hack). > >=20 > > You could've spoke up in ports/148754 about your concern in order for > > portmgr@ to notice. The PR strived to be less intrusive than divorcing > > build jobs from make jobs. Besides, I think adding more clutter to > > Makefiles defeats purpose of having stuff in bsd.port.mk. >=20 > In that case, whichever way you cut it, we're deliberately trying to > circumvent what is in bsd.port.mk. The circumvention is required because bsd.port.mk assumes a certain interfa= ce=20 that may not be applicable for all ports. =20 > > > Alternative patch attached which seems to achieve the same result from > > > my perspective without overriding _MAKE_JOBS. > >=20 > > Hardcoding kern.smp.cpus and ignoring MAKE_JOBS_SAFE/UNSAFE doesn't seem > > like a less hacky solution. I'd argue that it's more confusing because > > MAKE_JOBS_UNSAFE is not equal to DISABLE_MAKE_JOBS. >=20 > The patch I attached (a) does not ignore MAKE_JOBS_{SAFE,UNSAFE} and (b) > the first patch similarly uses DISABLE_MAKE_JOBS. >=20 > The first patch does the following: >=20 > 1. Sets MAKE_JOBS_SAFE _erroneously_ (the port is _not_ MAKE_JOBS_SAFE) > purely so it can force the setting of MAKE_JOBS_NUMBER. Yes and no. The port is partially MAKE_JOBS_SAFE and is able to build some= of=20 the code using make jobs. This is similar to python26: it is _SAFE but onl= y a=20 small portion of the build actually uses more than one job which in effect= =20 makes it the same as _UNSAFE (from a performance perspective). =20 > 2. Overrides passing of -j to the make invocation by fiddling the private > variable _MAKE_JOBS, which it has to do because of (1). >=20 > The one I just provided >=20 > 1. Leaves the port correctly marked as MAKE_JOBS_UNSAFE and doesn't mess > with any private variables. Your attached patch does not explicitly define either MAKE_JOBS_(UN)SAFE. = I=20 would by happy with it being defined as _UNSAFE. If there are no other=20 problems with your patch (see my comment at the bottom) then I'm happy for= =20 this patch to be committed. =20 There will still be issues with scripts that try some form of load balancin= g=20 when building ports but either way it will not be doing what was advertised= =2E =20 Similar to python. =20 > 2. Respects MAKE_JOB_NUMBER if it is set and otherwise uses the sysctl > kern.smp.cpus, the latter being what the port _already_ does. >=20 > > > Index: Makefile > > > =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: /var/fcvs/ports/java/openjdk6/Makefile,v > > > retrieving revision 1.28 > > > diff -u -r1.28 Makefile > > > --- Makefile 15 Aug 2010 05:23:06 -0000 1.28 > > > +++ Makefile 28 Aug 2010 18:27:44 -0000 > > > @@ -147,8 +147,14 @@ > > >=20 > > > USE_DISPLAY=3D yes > > > .endif > > >=20 > > > -BUILD_JOBS_NUMBER!=3D ${SYSCTL} -n kern.smp.cpus > > > +.if !defined(DISABLE_MAKE_JOBS) > > > +.if defined(MAKE_JOBS_NUMBER) > > > +BUILD_JOBS_NUMBER=3D ${MAKE_JOBS_NUMBER} > > > +.else > > > +BUILD_JOBS_NUMBER=3D `${SYSCTL} -n kern.smp.cpus` > > > +.endif > > >=20 > > > MAKE_ENV+=3D HOTSPOT_BUILD_JOBS=3D${BUILD_JOBS_NUMBER} Is it safe to pass an empty HOTSPOT_BUILD_JOBS to MAKE_ENV? (i.e. when=20 DISABLE_MAKE_JOBS is defined.) =20 > > > +.endif > > >=20 > > > COPYDIRS=3D \ > > > =20 > > > hotspot/src/os/linux/launcher \ --nextPart3343707.kzPFGT3LFV Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part. -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.15 (FreeBSD) iEYEABECAAYFAkx6HFQACgkQUaaFgP9pFrLR3QCePKUmMqX/Z3LYdk1ztJeG6m0F 1hwAnRdKJKoVR61uoByfiIKdVIOLe4hm =FYvI -----END PGP SIGNATURE----- --nextPart3343707.kzPFGT3LFV-- From owner-freebsd-ports@FreeBSD.ORG Sun Aug 29 12:17:25 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 497DF106578D for ; Sun, 29 Aug 2010 12:17:24 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 4FAAB8FC16 for ; Sun, 29 Aug 2010 12:17:23 +0000 (UTC) Received: by iwn36 with SMTP id 36so4629236iwn.13 for ; Sun, 29 Aug 2010 05:17:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:date:from :user-agent:mime-version:to:cc:subject:x-enigmail-version :content-type:content-transfer-encoding; bh=Tfzs5BptVp+m2kqtYeyXwJU8TNBFstLeG9Qm+fd4o1o=; b=L2vZkPLGV+dbQxSjNjqUvdLwHJc0xKV3xt5WM53mlALdGpW8w6zlxKloQ9XV8oGSor IOUgn8sPSfX2TpQe7pYi8LTs5rwsZZbuNy0xP7UPRIyNuhwWwxQpywnHMv0vFVVIPg6S 17cabkdaeoIAW1rujm8hf/dFo72JORQrzkufw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :x-enigmail-version:content-type:content-transfer-encoding; b=aoWo3Ar41pKWaM5l5BCFY7nJIKivI9jOQonLlGlnUwToU+FyVugJ9zF8ScgD/52L8R wh+6OamGPVivojoP7oRPrMOaFxFVgewInvNJO3K75P0KaWJv4MrlwFMFjpXXRELVFo+i t01DRQbQ4zE6QArfRYZKFFXF/h6A4G06PHTWM= Received: by 10.231.145.16 with SMTP id b16mr3703248ibv.198.1283084243405; Sun, 29 Aug 2010 05:17:23 -0700 (PDT) Received: from centel.dataix.local (adsl-99-181-137-20.dsl.klmzmi.sbcglobal.net [99.181.137.20]) by mx.google.com with ESMTPS id z6sm4349656ibc.12.2010.08.29.05.17.21 (version=SSLv3 cipher=RC4-MD5); Sun, 29 Aug 2010 05:17:22 -0700 (PDT) Sender: "J. Hellenthal" Message-ID: <4C7A4FD0.1050304@DataIX.net> Date: Sun, 29 Aug 2010 08:17:20 -0400 From: jhell User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.2.8) Gecko/20100806 Lightning/1.0b1 Thunderbird MIME-Version: 1.0 To: gordon@freebsd.org X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: FreeBSD Ports Subject: devel/p4d patch X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2010 12:17:25 -0000 Hi Gordon, I just upgraded devel/p4d port and you might find this patch interesting. This port would previously bail out trying to display the pkg-message file that it can't find without a path. On a second note. Where it displays this message ``post-install'' does not seem like the right place to display this message as it is not really noticeable during that stage. But to solve this file not being found I patched it up with the following. --- Makefile.orig 2010-08-29 08:08:25.801295898 -0400 +++ Makefile 2010-08-29 08:10:49.149776482 -0400 @@ -49,7 +49,7 @@ ${INSTALL_PROGRAM} ${_DISTDIR}/p4d ${PREFIX}/sbin/ post-install: - @${CAT} pkg-message + @${CAT} ${PORTSDIR}/devel/${PORTNAME}/pkg-message ${MKDIR} ${DESTDIR}${P4ROOT} ${CHOWN} p4admin:p4admin ${DESTDIR}${P4ROOT} ${CHMOD} 750 ${DESTDIR}${P4ROOT} Regards, -- jhell,v From owner-freebsd-ports@FreeBSD.ORG Sun Aug 29 14:03:29 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AA43410656A8 for ; Sun, 29 Aug 2010 14:03:29 +0000 (UTC) (envelope-from ports.friedemann.becker@googlemail.com) Received: from mail-ww0-f50.google.com (mail-ww0-f50.google.com [74.125.82.50]) by mx1.freebsd.org (Postfix) with ESMTP id 430788FC17 for ; Sun, 29 Aug 2010 14:03:28 +0000 (UTC) Received: by wwb34 with SMTP id 34so4220673wwb.31 for ; Sun, 29 Aug 2010 07:03:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=2DHJFKmvbvRs8JKSk4LqU4ZGU5boa8+oqQ0J9TqLdWM=; b=ebnguRV/uUQLZvLoa00G9Ysc4czglxWuvP2lL4Vc0SB1bM2plt7WAKC7hSUzXqHSBO Rx9lhUoF0xcSIW6FLLuEYGnhhLztFlqEAjDabDYdgqUmHxiM8ixRi2w6E3+n84Q9lc7E xxeof5lbgqmeeUt/kfInqV2OT8dJB46lFLnCA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=VYaueMpAPIGg9euEe46Fe/gNXHJ0Gwjo5mR4QFL9nC9T+Ljah2MWYWOPFoF1IoWUPg MAsteAtaogCHUDCTlbOIafmPM33s0QlOMiYoFeDLI1/K2RZBWGIDC6LhuJ2i7LN8KPN9 nXgohjH0OnygJlRwOc6GYofKchCoOfInkmUqY= MIME-Version: 1.0 Received: by 10.227.127.193 with SMTP id h1mr3501744wbs.139.1283088971139; Sun, 29 Aug 2010 06:36:11 -0700 (PDT) Received: by 10.216.1.147 with HTTP; Sun, 29 Aug 2010 06:36:11 -0700 (PDT) Date: Sun, 29 Aug 2010 15:36:11 +0200 Message-ID: From: Friedemann Becker To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: MuseScore port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2010 14:03:29 -0000 Hi, I'm trying to port MuseScore to FreeBSD. I managed to build it, so I have made some patches for the sources, that compile on FreeBSD (I hope so). The port has no dependencies yet and MASTER_SITE is missing, but I would be very happy if someone with a faster computer (and or net connection) than mine could test it. You can find it on http://friebsd.blogspot.com/2010/08/musescore-port-alpha.html. It is not a real port yet, but I'll update it as often as I can From owner-freebsd-ports@FreeBSD.ORG Sun Aug 29 14:10:44 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0C7C71065675; Sun, 29 Aug 2010 14:10:44 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id B4EF78FC26; Sun, 29 Aug 2010 14:10:43 +0000 (UTC) Received: by iwn36 with SMTP id 36so4702414iwn.13 for ; Sun, 29 Aug 2010 07:10:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :x-enigmail-version:content-type:content-transfer-encoding; bh=MjYkygN4m9+Bim6caVKdQaMLgRIT3km65v36i6Z3kkY=; b=JqacahhHtG63ViR38QEHGHaQyKBs7PIQYsSxeJGN+f38VwkvMt7xPJR4l3myTtXbw8 HM4lfRfhKYdFx2P6G5D5U9CGWC4Vsvu1oxhYiL7NZLG4ino6+4t6aMx4JU1lYvVxSS5X CQDWn9eWKVIb3FDhZpmAzm4P8AX7iiadwVTt0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; b=Pxesq4QOMz6mhTJYB4dosRKDbiEbJnqtYK0BuPh3simBqmtuykylNfUpc8ZPhAKr8G SMq/OIiBxJte/BE/XtNfSMtjMQZk5zsXp76QbCztnY49qPquGF1Lb90X/l7mdbDFDK9Y k2DR6XUA9kXdvcxVKkV7mFM6Gfdli4zcMQ/QQ= Received: by 10.231.187.194 with SMTP id cx2mr3708007ibb.165.1283091043273; Sun, 29 Aug 2010 07:10:43 -0700 (PDT) Received: from centel.dataix.local (adsl-99-181-137-20.dsl.klmzmi.sbcglobal.net [99.181.137.20]) by mx.google.com with ESMTPS id z6sm4456756ibc.18.2010.08.29.07.10.41 (version=SSLv3 cipher=RC4-MD5); Sun, 29 Aug 2010 07:10:42 -0700 (PDT) Sender: "J. Hellenthal" Message-ID: <4C7A6A60.3090309@DataIX.net> Date: Sun, 29 Aug 2010 10:10:40 -0400 From: jhell User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.2.8) Gecko/20100806 Lightning/1.0b1 Thunderbird MIME-Version: 1.0 To: olli hauer References: <4C7A4FD0.1050304@DataIX.net> <4C7A5E20.4060302@gmx.de> In-Reply-To: <4C7A5E20.4060302@gmx.de> X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: FreeBSD Ports , gordon@freebsd.org Subject: Re: devel/p4d patch X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2010 14:10:44 -0000 On 08/29/2010 09:18, olli hauer wrote: > On 2010-08-29 14:17, jhell wrote: >> Hi Gordon, >> >> I just upgraded devel/p4d port and you might find this patch >> interesting. This port would previously bail out trying to display the >> pkg-message file that it can't find without a path. >> >> On a second note. Where it displays this message ``post-install'' does >> not seem like the right place to display this message as it is not >> really noticeable during that stage. But to solve this file not being >> found I patched it up with the following. >> >> --- Makefile.orig 2010-08-29 08:08:25.801295898 -0400 >> +++ Makefile 2010-08-29 08:10:49.149776482 -0400 >> @@ -49,7 +49,7 @@ >> ${INSTALL_PROGRAM} ${_DISTDIR}/p4d ${PREFIX}/sbin/ >> >> post-install: >> - @${CAT} pkg-message >> + @${CAT} ${PORTSDIR}/devel/${PORTNAME}/pkg-message >> ${MKDIR} ${DESTDIR}${P4ROOT} >> ${CHOWN} p4admin:p4admin ${DESTDIR}${P4ROOT} >> ${CHMOD} 750 ${DESTDIR}${P4ROOT} >> >> > > Hi J, > > this will only work if you install via ports but not via package. > > Try '@${CAT} ${PKGMESSAGE}' instead, the port system will find > the file and it will be displayed during (package) install. > > post-install is the right section, but I agree the message can be > overlooked easily, this is one of the reason some pkg-messages > start and end with a line of '=' signs and have some blanks > between the '====..' line and the message self. > Hi Olli, Thank you for the feedback. I knew there was something more to it!. Good to know that is the right place for this. Maybe adding a @${ECHO} to the bottom and top of that statement to echo a separation line would make it more clear. Leaving it up to Gordon as I just wanted to inform him about the error so it can be fixed. Thank you again & Regards, -- jhell,v From owner-freebsd-ports@FreeBSD.ORG Sun Aug 29 18:40:12 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4DB1910656AE for ; Sun, 29 Aug 2010 18:40:12 +0000 (UTC) (envelope-from cvs-src@yandex.ru) Received: from forward15.mail.yandex.net (forward15.mail.yandex.net [95.108.130.119]) by mx1.freebsd.org (Postfix) with ESMTP id F3AE48FC16 for ; Sun, 29 Aug 2010 18:40:11 +0000 (UTC) Received: from smtp12.mail.yandex.net (smtp12.mail.yandex.net [95.108.131.191]) by forward15.mail.yandex.net (Yandex) with ESMTP id F065F4458436 for ; Sun, 29 Aug 2010 22:40:10 +0400 (MSD) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1283107210; bh=g7on2MJ51vuJ2wonTwp48IFk+cCi/pV2AIi3j8mAt4Y=; h=Message-ID:Date:From:MIME-Version:To:Subject:Content-Type: Content-Transfer-Encoding; b=ZCJG7d3L/dQmORKMBvNgVOi6XBQmF29HjUAvBAoFZQaNMv3EnHPR4BrX1v1fe0NF/ Bkbiv4zOp+W0Fmz+Y9X1iryOnQBYa3iGnF4XsrN+vVzGQzpbaC32B1/ipjdz/y2CmY 8TxuRHJm8rzgfMUJZAkcR2i7oYfxwSWIOCwPGFk8= Received: from smeshariki2.local (unknown [77.66.145.223]) by smtp12.mail.yandex.net (Yandex) with ESMTPSA id C239013E8091 for ; Sun, 29 Aug 2010 22:40:10 +0400 (MSD) Message-ID: <4C7AA925.3070505@yandex.ru> Date: Sun, 29 Aug 2010 22:38:29 +0400 From: Ruslan Mahmatkhanov User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; ru-RU; rv:1.9.2.8) Gecko/20100814 Thunderbird/3.1.2 MIME-Version: 1.0 To: FreeBSD Ports Mailing List Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Yandex-TimeMark: 1283107210 X-Yandex-Spam: 1 X-Yandex-Front: smtp12.mail.yandex.net Cc: Subject: ports/148691: [NEW PORT] multimedia/gtk-recordmydesktop X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2010 18:40:12 -0000 Hi! Can please anybody with spare time pick this PR: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/148691 It is hanging around more than one month. It's small and simple, but useful - it's gtk frontend to multimedia/recordmydesktop - a tool for creating screencasts. Thanks in advance. -- Regards, Ruslan From owner-freebsd-ports@FreeBSD.ORG Sun Aug 29 18:48:28 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 14F0D106566B for ; Sun, 29 Aug 2010 18:48:28 +0000 (UTC) (envelope-from rhurlin@gwdg.de) Received: from amailer.gwdg.de (amailer.gwdg.de [134.76.10.18]) by mx1.freebsd.org (Postfix) with ESMTP id 421FB8FC18 for ; Sun, 29 Aug 2010 18:48:27 +0000 (UTC) Received: from p578b68b8.dip0.t-ipconnect.de ([87.139.104.184] helo=krabat.raven.hur) by mailer.gwdg.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1OpmvY-0000gu-PR for freebsd-ports@freebsd.org; Sun, 29 Aug 2010 20:48:25 +0200 Message-ID: <4C7AAB74.7040103@gwdg.de> Date: Sun, 29 Aug 2010 20:48:20 +0200 From: Rainer Hurling User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; de-DE; rv:1.9.2.8) Gecko/20100806 Thunderbird/3.1.2 MIME-Version: 1.0 To: "freebsd-ports@freebsd.org" References: <4C769F2A.7020003@gwdg.de> In-Reply-To: <4C769F2A.7020003@gwdg.de> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Authenticated: Id:rhurlin X-Spam-Level: - X-Virus-Scanned: (clean) by exiscan+sophie Subject: Re: [SOLVED] Work on update for math/saga X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2010 18:48:28 -0000 On 26.08.2010 19:06 (UTC+1), Rainer Hurling wrote: > Now it is time to update math/saga from version 2.0.4 to 2.0.5. > > In the actual state the port is able to fetch the source, to patch and > then to start make. > > The build process stops with the following error messages. Obviously > there is a problem with converting 'wxString' to 'const wchar_t*'. The described error depends on a small inaccuracy with unicode handling in the original linux sources. It is identified and will be corrected. In the meantime I am working with a small extra patch. The updated port is basically ready and running now ;-) > I have no clue what to do next. Some help is greatly appreciated. > > Thanks in advance, > Rainer Hurling > > > -------------------------------------- > Making all in saga_cmd > Making all in man > c++ -DPACKAGE_NAME=\"saga\" -DPACKAGE_TARNAME=\"saga\" > -DPACKAGE_VERSION=\"2.0.5\" -DPACKAGE_STRING=\"saga\ 2.0.5\" > -DPACKAGE_BUGREPORT=\"BUG-REPORT-ADDRESS\" -DPACKAGE=\"saga\" > -DVERSION=\"2.0.5\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 > -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 > -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 > -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 > -DLT_OBJDIR=\".libs/\" -DSTDC_HEADERS=1 -DHAVE_FLOAT_H=1 > -DHAVE_STDLIB_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 > -DHAVE_UNISTD_H=1 -DHAVE__BOOL=1 -DHAVE_STDBOOL_H=1 -DHAVE_STDLIB_H=1 > -DHAVE_MALLOC=1 -DHAVE_STDLIB_H=1 -DHAVE_REALLOC=1 > -DLSTAT_FOLLOWS_SLASHED_SYMLINK=1 -DHAVE_VPRINTF=1 -DHAVE_MEMMOVE=1 > -DHAVE_MEMSET=1 -DHAVE_MODF=1 -DHAVE_STRCHR=1 -DHAVE_STRDUP=1 > -DHAVE_STRERROR=1 -DHAVE_STRRCHR=1 -DHAVE_STRSTR=1 -DHAVE_STRTOL=1 -I. > -fPIC `/usr/local/bin/wxgtk2-2.8-config --unicode=no --cxxflags` > -D_SAGA_LINUX -D_SAGA_UNICODE -D_TYPEDEF_BYTE -D_TYPEDEF_WORD -I.. > -D"MODULE_LIBRARY_PATH=\"/usr/local/lib/saga\"" -O2 -pipe > -I/usr/local/include -fno-strict-aliasing -MT callback.o -MD -MP -MF > .deps/callback.Tpo -c -o callback.o callback.cpp > mv -f .deps/callback.Tpo .deps/callback.Po > c++ -DPACKAGE_NAME=\"saga\" -DPACKAGE_TARNAME=\"saga\" > -DPACKAGE_VERSION=\"2.0.5\" -DPACKAGE_STRING=\"saga\ 2.0.5\" > -DPACKAGE_BUGREPORT=\"BUG-REPORT-ADDRESS\" -DPACKAGE=\"saga\" > -DVERSION=\"2.0.5\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 > -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 > -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 > -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 > -DLT_OBJDIR=\".libs/\" -DSTDC_HEADERS=1 -DHAVE_FLOAT_H=1 > -DHAVE_STDLIB_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 > -DHAVE_UNISTD_H=1 -DHAVE__BOOL=1 -DHAVE_STDBOOL_H=1 -DHAVE_STDLIB_H=1 > -DHAVE_MALLOC=1 -DHAVE_STDLIB_H=1 -DHAVE_REALLOC=1 > -DLSTAT_FOLLOWS_SLASHED_SYMLINK=1 -DHAVE_VPRINTF=1 -DHAVE_MEMMOVE=1 > -DHAVE_MEMSET=1 -DHAVE_MODF=1 -DHAVE_STRCHR=1 -DHAVE_STRDUP=1 > -DHAVE_STRERROR=1 -DHAVE_STRRCHR=1 -DHAVE_STRSTR=1 -DHAVE_STRTOL=1 -I. > -fPIC `/usr/local/bin/wxgtk2-2.8-config --unicode=no --cxxflags` > -D_SAGA_LINUX -D_SAGA_UNICODE -D_TYPEDEF_BYTE -D_TYPEDEF_WORD -I.. > -D"MODULE_LIBRARY_PATH=\"/usr/local/lib/saga\"" -O2 -pipe > -I/usr/local/include -fno-strict-aliasing -MT module_library.o -MD -MP > -MF .deps/module_library.Tpo -c -o module_library.o module_library.cpp > module_library.cpp: In member function 'bool > CModule_Library::Create(const wchar_t*, const wchar_t*)': > module_library.cpp:139: error: cannot convert 'wxString' to 'const > wchar_t*' in argument passing > module_library.cpp: In member function 'void > CModule_Library::_Set_CMD(CSG_Parameters*, bool)': > module_library.cpp:320: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp:333: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp:337: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp:342: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp:347: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp:351: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp:352: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp:358: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp:362: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp:368: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp:369: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp:370: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp:371: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp:372: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp: In member function 'bool > CModule_Library::_Get_CMD(CSG_Parameters*)': > module_library.cpp:420: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp:424: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp:432: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp:440: error: call of overloaded 'Set_Value(const > wxChar*)' is ambiguous > ../saga_api/parameters.h:1018: note: candidates are: bool > CSG_Parameter::Set_Value(int) > ../saga_api/parameters.h:1020: note: bool > CSG_Parameter::Set_Value(void*) > module_library.cpp:447: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp:454: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp:459: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp:466: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp:468: error: call of overloaded 'Set_Value(const > wxChar*)' is ambiguous > ../saga_api/parameters.h:1018: note: candidates are: bool > CSG_Parameter::Set_Value(int) > ../saga_api/parameters.h:1020: note: bool > CSG_Parameter::Set_Value(void*) > module_library.cpp:473: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp:487: error: call of overloaded 'Set_Value(const > wxChar*)' is ambiguous > ../saga_api/parameters.h:1018: note: candidates are: bool > CSG_Parameter::Set_Value(int) > ../saga_api/parameters.h:1020: note: bool > CSG_Parameter::Set_Value(void*) > module_library.cpp:493: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp:502: error: call of overloaded 'Set_Value(const > wxChar*)' is ambiguous > ../saga_api/parameters.h:1018: note: candidates are: bool > CSG_Parameter::Set_Value(int) > ../saga_api/parameters.h:1020: note: bool > CSG_Parameter::Set_Value(void*) > module_library.cpp:507: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp:520: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp:521: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp:522: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp:523: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp:524: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp: In member function 'bool > CModule_Library::_Create_DataObjects(CSG_Parameters*)': > module_library.cpp:575: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp:583: error: no matching function for call to > 'Print_Error(const wchar_t*, wxString&)' > callback.h:92: note: candidates are: void Print_Error(const wchar_t*) > callback.h:93: note: void Print_Error(const wchar_t*, const wchar_t*) > module_library.cpp:594: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > module_library.cpp: In member function 'bool > CModule_Library::_Create_DataObject(CSG_Parameter*, const wxChar*)': > module_library.cpp:625: error: cannot convert 'const wxChar*' to 'const > wchar_t*' for argument '1' to 'bool SG_File_Exists(const wchar_t*)' > module_library.cpp: In member function 'bool > CModule_Library::_Create_DataObject_List(CSG_Parameter*, wxString)': > module_library.cpp:717: error: no matching function for call to > 'Print_Error(const wchar_t*, wxString&)' > callback.h:92: note: candidates are: void Print_Error(const wchar_t*) > callback.h:93: note: void Print_Error(const wchar_t*, const wchar_t*) > module_library.cpp: In member function 'bool > CModule_Library::_Destroy_DataObjects(bool, CSG_Parameters*)': > module_library.cpp:775: error: no matching function for call to > 'wxString::Format(const wchar_t*)' > /usr/local/include/wx-2.8/wx/string.h:1208: note: candidates are: static > wxString wxString::Format(const wxChar*, ...) > *** Error code 1 > Stop in /usr/ports/math/saga/work/saga-2.0.5/src/saga_core/saga_cmd. From owner-freebsd-ports@FreeBSD.ORG Sun Aug 29 20:02:16 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A60D1106566C for ; Sun, 29 Aug 2010 20:02:16 +0000 (UTC) (envelope-from rodrigo@bebik.net) Received: from smtpfb2-g21.free.fr (smtpfb2-g21.free.fr [212.27.42.10]) by mx1.freebsd.org (Postfix) with ESMTP id E79DB8FC19 for ; Sun, 29 Aug 2010 20:02:13 +0000 (UTC) Received: from smtp2-g21.free.fr (smtp2-g21.free.fr [212.27.42.2]) by smtpfb2-g21.free.fr (Postfix) with ESMTP id C158AD1A43E for ; Sun, 29 Aug 2010 21:45:25 +0200 (CEST) Received: from [192.168.0.84] (unknown [82.235.223.127]) by smtp2-g21.free.fr (Postfix) with ESMTP id 238144B010B; Sun, 29 Aug 2010 21:45:17 +0200 (CEST) Message-ID: <4C7AB8D0.5040302@bebik.net> Date: Sun, 29 Aug 2010 21:45:20 +0200 From: "Rodrigo OSORIO (ros)" User-Agent: Thunderbird 2.0.0.24 (X11/20100630) MIME-Version: 1.0 To: Ruslan Mahmatkhanov References: <4C7AA925.3070505@yandex.ru> In-Reply-To: <4C7AA925.3070505@yandex.ru> Content-Type: multipart/mixed; boundary="------------080605000802070808090705" Cc: FreeBSD Ports Mailing List Subject: Re: ports/148691: [NEW PORT] multimedia/gtk-recordmydesktop X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2010 20:02:16 -0000 This is a multi-part message in MIME format. --------------080605000802070808090705 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Ruslan Mahmatkhanov wrote: > > Hi! > > Can please anybody with spare time pick this PR: > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/148691 > > It is hanging around more than one month. It's small and simple, but > useful - it's gtk frontend to multimedia/recordmydesktop - a tool for > creating screencasts. > > Thanks in advance. > Hi, I quickly test your port and it seems some missing dependences. At this point I just notice py-gtk. And of course portlint seems not really happy with some lines in your makefile. Here is a patch with suggested 'fixes'. - regards Rodrigo OSORIO --------------080605000802070808090705 Content-Type: text/plain; name="Makefile.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="Makefile.patch" --- Makefile 2010-08-29 21:34:42.000000000 +0200 +++ Makefile.new 2010-08-29 21:37:11.000000000 +0200 @@ -2,6 +2,7 @@ # Date created: 16 July 2010 # Whom: Ruslan Mahmatkhanov # +# $FreeBSD$ # PORTNAME= gtk-recordmydesktop @@ -14,6 +15,7 @@ COMMENT= GTK+ frontend to recordMyDesktop RUN_DEPENDS= ${LOCALBASE}/bin/recordmydesktop:${PORTSDIR}/multimedia/recordmydesktop +BUILD_DEPENDS= py-gtk2>=2.4:${PORTSDIR}/x11-toolkits/py-gtk2 GNU_CONFIGURE= yes USE_GMAKE= yes --------------080605000802070808090705-- From owner-freebsd-ports@FreeBSD.ORG Sun Aug 29 20:44:14 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 35EEE1065695 for ; Sun, 29 Aug 2010 20:44:14 +0000 (UTC) (envelope-from cvs-src@yandex.ru) Received: from forward14.mail.yandex.net (forward14.mail.yandex.net [95.108.130.92]) by mx1.freebsd.org (Postfix) with ESMTP id D81668FC1B for ; Sun, 29 Aug 2010 20:44:13 +0000 (UTC) Received: from smtp11.mail.yandex.net (smtp11.mail.yandex.net [95.108.130.67]) by forward14.mail.yandex.net (Yandex) with ESMTP id 114AF4E5076F; Mon, 30 Aug 2010 00:44:12 +0400 (MSD) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1283114652; bh=rTGO0PVyBAV3GOl+MNBWkeJPdjLsrhMGT5H8wsIuwBQ=; h=Message-ID:Date:From:MIME-Version:To:CC:Subject:References: In-Reply-To:Content-Type:Content-Transfer-Encoding; b=h1+G6pTvexnXjrHebXdhrRdk8QNVIjrXZOMzUXzD7p0Xyps5iFpWYysd4aiZrOdU6 Z0LMtkeY0UM9TuvLVUlhsKJk/LCV6TgHs3Ye7c9nHj8NwY7HY7T7GhaWcXU0ke4UdC 9JBkdXbzRtoaLzNs/N577m8G0BFDuL/0UVk+IMlk= Received: from smeshariki2.local (unknown [77.66.145.223]) by smtp11.mail.yandex.net (Yandex) with ESMTPSA id D178C44D8066; Mon, 30 Aug 2010 00:44:11 +0400 (MSD) Message-ID: <4C7AC636.7040402@yandex.ru> Date: Mon, 30 Aug 2010 00:42:30 +0400 From: Ruslan Mahmatkhanov User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; ru-RU; rv:1.9.2.8) Gecko/20100814 Thunderbird/3.1.2 MIME-Version: 1.0 To: "Rodrigo OSORIO (ros)" References: <4C7AA925.3070505@yandex.ru> <4C7AB8D0.5040302@bebik.net> In-Reply-To: <4C7AB8D0.5040302@bebik.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Yandex-TimeMark: 1283114652 X-Yandex-Spam: 1 X-Yandex-Front: smtp11.mail.yandex.net Cc: FreeBSD Ports Mailing List Subject: Re: ports/148691: [NEW PORT] multimedia/gtk-recordmydesktop X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2010 20:44:14 -0000 On 29.08.2010 23:45, Rodrigo OSORIO (ros) wrote: > Ruslan Mahmatkhanov wrote: >> >> Hi! >> >> Can please anybody with spare time pick this PR: >> http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/148691 >> >> It is hanging around more than one month. It's small and simple, but >> useful - it's gtk frontend to multimedia/recordmydesktop - a tool for >> creating screencasts. >> >> Thanks in advance. >> > Hi, > > I quickly test your port and it seems some missing dependences. At this > point I just notice py-gtk. And of course portlint > seems not really happy with some lines in your makefile. Here is a patch > with suggested 'fixes'. > > - regards > Rodrigo OSORIO Thanks! I sent updated patch with fixes, that you pointed out, to original PR and also placed it here: http://happy-nation.by.ru/ports/gtk-recordmydesktop.shar.txt -- Regards, Ruslan From owner-freebsd-ports@FreeBSD.ORG Sun Aug 29 23:11:25 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 567A210656AE for ; Sun, 29 Aug 2010 23:11:25 +0000 (UTC) (envelope-from gordon.tetlow@gmail.com) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 1A4D68FC18 for ; Sun, 29 Aug 2010 23:11:24 +0000 (UTC) Received: by iwn36 with SMTP id 36so4967960iwn.13 for ; Sun, 29 Aug 2010 16:11:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:sender:received :in-reply-to:references:date:x-google-sender-auth:message-id:subject :from:to:cc:content-type; bh=qY/4tBqUuOBfxq0TtPFWlEB6VKptSOTGO9GgrjB/t0I=; b=xj7hSI8HBg7uiG0RRP15nyujJmEAWvLz/4Mf1u2zy8wo3tKrA1amX4BkchgKMsvdzx 5/v2QFyz6w3cgqaBWldki4CQaMekxhuVzl4dhifjO0Ve1eSVCby9kl/PEiUlur+U81Ge J9odie5mC6lzi3mMrrQyWfpWyinVupVkYlylg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; b=rYGMwXtCaQuU9SJAHCajxeaz6YOZ99Sb5WoUHK/6dXQbBvJhF2LzqtxpxoQ8IwxSCs 0HBs9zPTe4GUIGRNtMg6A9fPKhP1Ph6WkWoj0/7UP8w/riJ1yfRDcSaylJOuOGPB24Nk xmSBEB9oNGw7uQmwPDnElf9Yfdc6+iLXmun+c= MIME-Version: 1.0 Received: by 10.231.166.72 with SMTP id l8mr4339896iby.95.1283121982501; Sun, 29 Aug 2010 15:46:22 -0700 (PDT) Sender: gordon.tetlow@gmail.com Received: by 10.231.159.139 with HTTP; Sun, 29 Aug 2010 15:46:22 -0700 (PDT) In-Reply-To: <4C7A6A60.3090309@DataIX.net> References: <4C7A4FD0.1050304@DataIX.net> <4C7A5E20.4060302@gmx.de> <4C7A6A60.3090309@DataIX.net> Date: Sun, 29 Aug 2010 15:46:22 -0700 X-Google-Sender-Auth: UndnFkmDdwg93qfxIDIV73kMY1s Message-ID: From: Gordon Tetlow To: jhell Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: olli hauer , FreeBSD Ports Subject: Re: devel/p4d patch X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2010 23:11:25 -0000 On Sun, Aug 29, 2010 at 7:10 AM, jhell wrote: > > > > Hi J, > > > > this will only work if you install via ports but not via package. > > > > Try '@${CAT} ${PKGMESSAGE}' instead, the port system will find > > the file and it will be displayed during (package) install. > > > > post-install is the right section, but I agree the message can be > > overlooked easily, this is one of the reason some pkg-messages > > start and end with a line of '=' signs and have some blanks > > between the '====..' line and the message self. > > > > Hi Olli, > > Thank you for the feedback. I knew there was something more to it!. Good > to know that is the right place for this. Maybe adding a @${ECHO} to the > bottom and top of that statement to echo a separation line would make it > more clear. Leaving it up to Gordon as I just wanted to inform him about > the error so it can be fixed. > > Thanks for the report. The porter's guide called out the post-install section for displaying the pkg-message. I'll look to add the ${PKGMESSAGE} into the port instead of relying on the local directory. I'm going to guess such a minor change doesn't warrant touching the revision for the port. As a suggestion for the Porter's Handbook, can someone add some suggested code ("@${ECHO} ${PKGMESSAGE}") instead of the note that is currently in 8.1? A warning in portlint would be helpful too. Gordon From owner-freebsd-ports@FreeBSD.ORG Mon Aug 30 01:00:04 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8CBAC10656AD; Mon, 30 Aug 2010 01:00:04 +0000 (UTC) (envelope-from yanegomi@gmail.com) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id AAA5D8FC0A; Mon, 30 Aug 2010 01:00:03 +0000 (UTC) Received: by bwz20 with SMTP id 20so3982702bwz.13 for ; Sun, 29 Aug 2010 18:00:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=aZbJO70a32gY88f9oyQfvASCcHbxOqHL453NKm90ZSc=; b=j85kEshJgVIsaZmPUEXr69snSAoYozKGVMVUOdp/9sFdSqQ86nFZZl0SUU+28zEOM/ oBHdRjtfgFSFmzKaI3AiBC8DXsiHU6+1p6PlhXyHtSbaQpOmfW2yb07At5r+tZEHAw/f kOhlPh4L5i7uKtdBwBFE6SXsR0H16uzgjb+J4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=usD78Mx+AgzTI7PukZriVimLnb9CmWq7UVkUn6w/RtOMXeRCqw3qtOl7Wv/GCoG+kD DmrUA/qXKZDmsX/H8G6t+zN1+Tev7SffvnSN/UV713ViD0O+56gmSR7ML1uKP4k7Dimc iItT1fwVMmNPTy0nNA2wRJpLcVxRu6dlisJ64= MIME-Version: 1.0 Received: by 10.204.133.91 with SMTP id e27mr2695935bkt.197.1283130002475; Sun, 29 Aug 2010 18:00:02 -0700 (PDT) Received: by 10.204.113.79 with HTTP; Sun, 29 Aug 2010 18:00:02 -0700 (PDT) In-Reply-To: References: Date: Sun, 29 Aug 2010 18:00:02 -0700 Message-ID: From: Garrett Cooper To: Ade Lovett Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: ports@freebsd.org, bug-followup@freebsd.org Subject: Re: ports/146754: [patch] new port: add devel/atf framework to ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2010 01:00:04 -0000 On Fri, Aug 20, 2010 at 2:22 PM, Garrett Cooper wrote: > On Fri, Aug 20, 2010 at 12:39 PM, Ade Lovett wrote: >> >> On Aug 19, 2010, at 20:30 , Garrett Cooper wrote: >> >>> =A0 =A0This request has been sitting mostly idle for the last 3 months.= I >>> realize people are busy, but could someone with some time please help >>> me work out any issues that might exist with this port, and commit >>> this to ports? There are a _lot_ of developers that would be happy to >>> see this committed to ports so they can add unittests for their work, >>> and I would like to see this committed so I can start writing real >>> testcases for pkg_install. >> >> It looks relatively straightforward. =A0My only concern is the bunch of = files being dumped into ${PREFIX}/tests, which violates hier(7). =A0Would i= t be possible to move them to, say ${PREFIX}/share/${PORTNAME}/tests ?? > > It might be but I'll have to check with Julio from NetBSD about that > because this is how things install today; they use a fixed version in > NetBSD though instead of from pkgsrc, and it hasn't gained a lot of > traction outside of a smaller niche of users, so I might be able to > convince him to change the default (or at least parameterize it so it > conforms to hier(7)). Found the reference. The stuff that gets installed under ${PREFIX}/tests (to some degree) are actually executables ($(execdir)), and some are data files ($(datarootdir)). The author -- Julio -- used $(execdir) for everything... incorrectly as you noted, but I think that this should be resolved at a later date (say, when 0.11 rolls out?) because I don't know what functional issues might arise if I start monkeying around with paths right now. The package upstream is already at 0.10, and I would rather get this in and resolve issues as they come instead of waiting for perfection, if that's ok.. atf is still a rather fledgling project that's changing a bit from release to release, and is being modified on a regular basis, so just waiting for things to resolve themselves will be more hurtful than beneficial. I want to get to the 0.11 release though in the next hop, so I'd be more than happy to work towards achieving that goal in that period of time (0.12 at the latest). Thoughts? -Garrett From owner-freebsd-ports@FreeBSD.ORG Mon Aug 30 06:04:09 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E7E0310656B7 for ; Mon, 30 Aug 2010 06:04:09 +0000 (UTC) (envelope-from c-s@c-s.li) Received: from server22.cyon.ch (server22.cyon.ch [194.126.200.32]) by mx1.freebsd.org (Postfix) with ESMTP id AB8FC8FC12 for ; Mon, 30 Aug 2010 06:04:09 +0000 (UTC) Received: from [84.72.44.78] (helo=[192.168.1.11]) by server22.cyon.ch with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1Opx7S-0005CU-Bb for freebsd-ports@freebsd.org; Mon, 30 Aug 2010 07:41:22 +0200 From: C-S To: freebsd-ports@freebsd.org Content-Type: text/plain; charset="UTF-8" Date: Mon, 30 Aug 2010 07:41:20 +0200 Message-ID: <1283146880.1493.6.camel@laptop> Mime-Version: 1.0 X-Mailer: Evolution 2.28.3 Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - server22.cyon.ch X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - c-s.li Subject: Howto: TCP_KEEPIDLE ----> TCPTV_KEEP_IDLE ? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2010 06:04:10 -0000 I am trying to update the devel/clanlib port to the latest version when running into this problem. The patch for unix_socket.cpp looks like this: ================================================== if (enable && timeout != 0 && interval != 0) { - setsockopt(handle, SOL_TCP, TCP_KEEPIDLE, (const char *) &timeout, sizeof(int)); - setsockopt(handle, SOL_TCP, TCP_KEEPINTVL, (const char *) &interval, sizeof(int)); + setsockopt(handle, IPPROTO_TCP, TCPTV_KEEP_IDLE, (const char *) &timeout, sizeof(int)); + setsockopt(handle, IPPROTO_TCP, TCPTV_KEEPINTVL, (const char *) &interval, sizeof(int)); } } ================================================== However, when compiling I get the following error: ================================================== Socket/unix_socket.cpp:146: error: 'hz' was not declared in this scope ================================================== It seems to be that TCP_KEEPIDLE and TCPTV_KEEP_IDLE use different measures. Does anybody have an idea how to handle that problem? Many thanks... From owner-freebsd-ports@FreeBSD.ORG Mon Aug 30 07:33:48 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A7B0E10656A8; Mon, 30 Aug 2010 07:33:48 +0000 (UTC) (envelope-from swell.k@gmail.com) Received: from mail-ew0-f54.google.com (mail-ew0-f54.google.com [209.85.215.54]) by mx1.freebsd.org (Postfix) with ESMTP id D54DF8FC0C; Mon, 30 Aug 2010 07:33:46 +0000 (UTC) Received: by ewy4 with SMTP id 4so3141667ewy.13 for ; Mon, 30 Aug 2010 00:33:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:references :date:in-reply-to:message-id:user-agent:mime-version:content-type; bh=lQ5LJuMbEyMGknvIecyissBC+IvGQQcrdf5u9sMLYh4=; b=rjgS+yyqD/dMzuYmgc6ZmWFSv5R6SmCblsJ5iT4jrE+gohna9D19VvXrKKKpBUEM9P 0aQyK8BmXJAZBjQAq6Diz3wXCzVMVc+w35piRlp5iJ4bqJW/2RT89RKwkxDbUFWKLNQJ Gor0G5vyGWtdAPp8oiUuPvKsXjkP2p39yoSsk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type; b=jOkd6DNJzFiFo00yNI0u0s97dW5lzMwahQDCccHCdBHKeaPVkE3wd/Xtyl7ls+T9lR hLCkOk4NjlaAlbeAvQun6EqQIf69PbVQdsqd0jtFz2+LHibbetTt2myaaOQUb3PbYX+S PYaSi3c89U+p9u+/en31E26huife6VhR2SnOw= Received: by 10.227.138.84 with SMTP id z20mr4195341wbt.214.1283153625773; Mon, 30 Aug 2010 00:33:45 -0700 (PDT) Received: from localhost ([85.17.254.135]) by mx.google.com with ESMTPS id m25sm6105158wbc.1.2010.08.30.00.33.43 (version=SSLv3 cipher=RC4-MD5); Mon, 30 Aug 2010 00:33:44 -0700 (PDT) From: Anonymous To: Bapt References: <20100819143830.GJ35140@azathoth.lan> <4C6DA0FA.7080203@DataIX.net> <20100820124332.GB1786@azathoth.lan> Date: Mon, 30 Aug 2010 11:27:53 +0400 In-Reply-To: <20100820124332.GB1786@azathoth.lan> (bapt@freebsd.org's message of "Fri, 20 Aug 2010 14:43:32 +0200") Message-ID: <86lj7o7e6e.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Florent Thoumie , Julien Laffaye , David Forsythe , Garrett Cooper , Tim Kientzle , Ivan Voras , freebsd-ports@freebsd.org Subject: Re: what next for the pkg_install rewrite X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2010 07:33:48 -0000 Bapt writes: > On Fri, Aug 20, 2010 at 02:09:59PM +0200, Julien Laffaye wrote: >> On Fri, Aug 20, 2010 at 12:00 PM, Ivan Voras wrote: >> > > 2. XML is a bad idea. Great in theory, wonderful in my browser, but a >> > > bloated plaintext file with a lot of complexity. I would prefer a >> > > database solution that could be dumped to a simple text file format if >> > > needed. >> > >> > XML, at least in my proposal, would not be used for the system package >> > database, but would replace (either in part or all with a single file) >> > today's "+" files in the packages, together with other purposes where >> > some metadata transfer is required. >> > >> > That said, I would also be happy with other self-described formats >> > like JSON. XML is the front runner because it's more standard >> > (industry standard, whether someone likes this fact or not!) and there >> > is already a parser in base. >> > >> >> The pro of XML here is that we have a parser in base, The con is its >> verbosity. But anyway the manifest is not meant to be human readable. >> Nevertheless, I prefer JSON, because it's less complex than XML and we can >> have a parser/emiter in a single 500SLOC .c file. >> And it looks sexier than XML, eh : http://pastebin.com/8hzPSSJC > > > +1 for JSON, XML would have been interesting if we add a validating parser in > base which would have help us to verify the package integrity, but expat isn't a > good validating parser. writting a json parser/emiter is easy, and there already > exists tons of BSDL friendly license JSON parser. For exemple we could import > yajl (BSDL) into base or use cJSON (MIT) which consist in one simple C + header > file We can as well use Lua tables to store package database. Their syntax is close to JSON. Besides, I think it's better to divorce ports from base so that pkg_* tools can evolve faster and are not limited to dependencies from base. The only thing we'd need to leave in base is smth like pkg_bootstrap. IMO, this chicken and egg problem is getting quite annoying. From owner-freebsd-ports@FreeBSD.ORG Mon Aug 30 08:22:07 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D138A1065698; Mon, 30 Aug 2010 08:22:07 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 3C87B8FC08; Mon, 30 Aug 2010 08:22:07 +0000 (UTC) Received: by iwn36 with SMTP id 36so5358144iwn.13 for ; Mon, 30 Aug 2010 01:22:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:sender:received :in-reply-to:references:date:x-google-sender-auth:message-id:subject :from:to:cc:content-type; bh=bBSoGC5tuMJvFSVqKcPyl8jRRRHTXscSKUS/qQhLIFY=; b=uVDWpnY9h/PcXJo39f/9NF27STdd0DSQ2JbB2tkGDyW+9D/4iZhb2++G/gpm8Yd5uM xvJ93rXHwjm6mhg6uurNIx7xsclOkqa6IdXRtvTlhBnDJ3QqgCOqj9bdWz8TjEiB/1O9 SdHQesux7yk/Idoyo4v3fXBEgSSH541ISl9C4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; b=Q6mzNI/gZZeWcIGp0tTT0B4ZWjId6gNwy5LyDXLeqIBxqExbOG6eHzlGvd/9b83SQ8 t/eKEjWciWNyGoYWHr93XNYnvU4hTMw+iqItBm0rCMDl9szfnn+8wLAUZKXjKdWonDmE 91sC0QyfecLANyCzqhPmzDGW0YfNmxe8PJsJ8= MIME-Version: 1.0 Received: by 10.231.183.134 with SMTP id cg6mr4813521ibb.197.1283156525871; Mon, 30 Aug 2010 01:22:05 -0700 (PDT) Sender: baptiste.daroussin@gmail.com Received: by 10.231.199.14 with HTTP; Mon, 30 Aug 2010 01:22:05 -0700 (PDT) In-Reply-To: <86lj7o7e6e.fsf@gmail.com> References: <20100819143830.GJ35140@azathoth.lan> <4C6DA0FA.7080203@DataIX.net> <20100820124332.GB1786@azathoth.lan> <86lj7o7e6e.fsf@gmail.com> Date: Mon, 30 Aug 2010 08:22:05 +0000 X-Google-Sender-Auth: hMwkXPsMxB3zVhDbawjExwRlEns Message-ID: From: Baptiste Daroussin To: Anonymous Content-Type: text/plain; charset=ISO-8859-1 Cc: Florent Thoumie , Julien Laffaye , David Forsythe , Garrett Cooper , Tim Kientzle , Ivan Voras , freebsd-ports@freebsd.org Subject: Re: what next for the pkg_install rewrite X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2010 08:22:07 -0000 2010/8/30 Anonymous : > Bapt writes: > > We can as well use Lua tables to store package database. Their syntax is > close to JSON. > > Besides, I think it's better to divorce ports from base so that pkg_* > tools can evolve faster and are not limited to dependencies from base. > The only thing we'd need to leave in base is smth like pkg_bootstrap. > IMO, this chicken and egg problem is getting quite annoying. > _______________________________________________ > 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" > yes lua could be a good idea for that purpose and it also would allow users to easily extend pkg_install. I have begun that: http://wiki.freebsd.org/Pkg_install2_specs if you could add ideas and all stuff you have in mind about what has to be and what could be in pkg_install, I'll cleanup the page after some time, when all the needed discussion would be done and will transform this page into real specifications. Concerning having pkg_install into base or not, I really have no opinion? regards, Bapt From owner-freebsd-ports@FreeBSD.ORG Mon Aug 30 09:28:21 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1C88210656A6; Mon, 30 Aug 2010 09:28:21 +0000 (UTC) (envelope-from ivoras@gmail.com) Received: from mail-qw0-f54.google.com (mail-qw0-f54.google.com [209.85.216.54]) by mx1.freebsd.org (Postfix) with ESMTP id 382358FC16; Mon, 30 Aug 2010 09:28:19 +0000 (UTC) Received: by qwg5 with SMTP id 5so5145419qwg.13 for ; Mon, 30 Aug 2010 02:28:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:sender:received :in-reply-to:references:from:date:x-google-sender-auth:message-id :subject:to:cc:content-type; bh=Z6/ocPEQ/Bpv6LN+6PaHMot5MYfj7iwPg5pdPo/8/+o=; b=cPJXXqJno6UMnP21bDVRDFh5Y8RfEfRhfxZUQoi8r2J/FBCp/E64etOa41aQRlVyd6 vnBsNcKEMj2XoQqeWsTFTA69Auy5M7TkFrDxJbHZsB1qGKlOIUzg1Fs9K4wAnkgMyXcz 6B3nL1ohhlfs3BItvE3GE1sBI4XgyzNOheDcQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; b=oN4w40ffrQPrIFUFP87wOWqPhCTOpox/YceO6vwkEl/VvV4ZQVX2K70Bp+a3a8DkcO Jo7YWwUUDiHylXn59pzM9h5fwCF4l1s2jfbk2Vv4RONZfV0RvnmGATDGAgj9AK0E2fyV jQQ09o7qJ8/xg9aSYDL1XqWD2iv2kEhjVFK9Q= Received: by 10.224.97.97 with SMTP id k33mr2748689qan.49.1283160499258; Mon, 30 Aug 2010 02:28:19 -0700 (PDT) MIME-Version: 1.0 Sender: ivoras@gmail.com Received: by 10.229.222.81 with HTTP; Mon, 30 Aug 2010 02:27:58 -0700 (PDT) In-Reply-To: <86lj7o7e6e.fsf@gmail.com> References: <20100819143830.GJ35140@azathoth.lan> <4C6DA0FA.7080203@DataIX.net> <20100820124332.GB1786@azathoth.lan> <86lj7o7e6e.fsf@gmail.com> From: Ivan Voras Date: Mon, 30 Aug 2010 11:27:58 +0200 X-Google-Sender-Auth: Bdhp141DeZwhNRjsf7a-JY2oCic Message-ID: To: Anonymous Content-Type: text/plain; charset=UTF-8 Cc: Bapt , Florent Thoumie , Julien Laffaye , David Forsythe , Garrett Cooper , Tim Kientzle , freebsd-ports@freebsd.org Subject: Re: what next for the pkg_install rewrite X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2010 09:28:21 -0000 On 30 August 2010 09:27, Anonymous wrote: > We can as well use Lua tables to store package database. Their syntax is > close to JSON. > > Besides, I think it's better to divorce ports from base so that pkg_* > tools can evolve faster and are not limited to dependencies from base. > The only thing we'd need to leave in base is smth like pkg_bootstrap. > IMO, this chicken and egg problem is getting quite annoying. Speaking of Lua, I had a thread on this in -current which went IMO fairly well, mostly because Lua is a clean and easy language to import compared to, e.g. Perl, TCL or Python. As I see it, there will not be heavy opposition if Lua is to be imported. In short, if there is going to be a scripting language for pkg_*, Lua is sort-of "pre-approved" - as opposed to ksh and others mentioned here. From owner-freebsd-ports@FreeBSD.ORG Mon Aug 30 09:39:34 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 600EA1065674 for ; Mon, 30 Aug 2010 09:39:34 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from qmta03.emeryville.ca.mail.comcast.net (qmta03.emeryville.ca.mail.comcast.net [76.96.30.32]) by mx1.freebsd.org (Postfix) with ESMTP id 3BEAC8FC1B for ; Mon, 30 Aug 2010 09:39:33 +0000 (UTC) Received: from omta17.emeryville.ca.mail.comcast.net ([76.96.30.73]) by qmta03.emeryville.ca.mail.comcast.net with comcast id 0ZdM1f0041afHeLA3ZfZ8F; Mon, 30 Aug 2010 09:39:33 +0000 Received: from koitsu.dyndns.org ([98.248.41.155]) by omta17.emeryville.ca.mail.comcast.net with comcast id 0ZfY1f0083LrwQ28dZfY6y; Mon, 30 Aug 2010 09:39:33 +0000 Received: by icarus.home.lan (Postfix, from userid 1000) id 846B29B425; Mon, 30 Aug 2010 02:39:32 -0700 (PDT) Date: Mon, 30 Aug 2010 02:39:32 -0700 From: Jeremy Chadwick To: Ivan Voras Message-ID: <20100830093932.GA28927@icarus.home.lan> References: <4C6DA0FA.7080203@DataIX.net> <20100820124332.GB1786@azathoth.lan> <86lj7o7e6e.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.20 (2009-06-14) Cc: Bapt , Florent Thoumie , Julien Laffaye , David Forsythe , Garrett Cooper , Tim Kientzle , freebsd-ports@freebsd.org, Anonymous Subject: Re: what next for the pkg_install rewrite X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2010 09:39:34 -0000 On Mon, Aug 30, 2010 at 11:27:58AM +0200, Ivan Voras wrote: > On 30 August 2010 09:27, Anonymous wrote: > > > We can as well use Lua tables to store package database. Their syntax is > > close to JSON. > > > > Besides, I think it's better to divorce ports from base so that pkg_* > > tools can evolve faster and are not limited to dependencies from base. > > The only thing we'd need to leave in base is smth like pkg_bootstrap. > > IMO, this chicken and egg problem is getting quite annoying. > > Speaking of Lua, I had a thread on this in -current which went IMO > fairly well, mostly because Lua is a clean and easy language to import > compared to, e.g. Perl, TCL or Python. As I see it, there will not be > heavy opposition if Lua is to be imported. > > In short, if there is going to be a scripting language for pkg_*, Lua > is sort-of "pre-approved" - as opposed to ksh and others mentioned > here. Lua would make a nice addition for an unrelated reason (I don't follow -current so someone may have mentioned this already): there is an interest in replacing the Forth/FICL pieces of the FreeBSD bootloader with something in Lua instead. Rink Springer and I discussed this (either in Email or on IRC, I forget), and both of us have interest in such. For those curious about Lua, I highly recommend the book "Programming in Lua" (2nd Edition). -- | Jeremy Chadwick jdc@parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, USA | | Making life hard for others since 1977. PGP: 4BD6C0CB | From owner-freebsd-ports@FreeBSD.ORG Mon Aug 30 09:50:10 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 057CD1065674; Mon, 30 Aug 2010 09:50:10 +0000 (UTC) (envelope-from ivoras@gmail.com) Received: from mail-qy0-f182.google.com (mail-qy0-f182.google.com [209.85.216.182]) by mx1.freebsd.org (Postfix) with ESMTP id 1E1A18FC12; Mon, 30 Aug 2010 09:50:08 +0000 (UTC) Received: by qyk4 with SMTP id 4so5401679qyk.13 for ; Mon, 30 Aug 2010 02:50:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:sender:received :in-reply-to:references:from:date:x-google-sender-auth:message-id :subject:to:cc:content-type; bh=h9zxjRIAeECJaSGeLH2nW/2QRWnjZqN11NhEE4rM8PU=; b=PM7AbHnx3fEij49WCfbh4+Pj19FzadAcDZNsgfe/EBd7YOfnCLWUAGt9O6l05XZ2jo cMGmgR5TmJESM1NP4Py8kP9FPPpgD87cT10Wz6qsFbQ6I7eIwvnWdr6Pm7+J1mSB69dO PIr4KqEmcwEcIIv/W0gokr6P8hre4keTyEgjo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; b=JjzGrlu8Z1UlCVY2lSRDZ2oZN0VooJwIokFG8feaEMVUMY8w7VT3xV5cOPerPb5KLN XzK9oQmeGmuj9eeDtqOgEpYBSsB6ZSRPj1HgCA+EeQ4ioRss3u/zpVyd8T+57oAaG2cm NeTjgUJ4fLKnguPtTfL0C4KM0CQOiDeLisSIo= Received: by 10.229.250.203 with SMTP id mp11mr2855782qcb.173.1283161808271; Mon, 30 Aug 2010 02:50:08 -0700 (PDT) MIME-Version: 1.0 Sender: ivoras@gmail.com Received: by 10.229.222.81 with HTTP; Mon, 30 Aug 2010 02:49:48 -0700 (PDT) In-Reply-To: References: <20100819143830.GJ35140@azathoth.lan> <4C6DA0FA.7080203@DataIX.net> <20100820124332.GB1786@azathoth.lan> <86lj7o7e6e.fsf@gmail.com> From: Ivan Voras Date: Mon, 30 Aug 2010 11:49:48 +0200 X-Google-Sender-Auth: pXARGUaJDDhAgeZP7AaY1WkezdI Message-ID: To: Baptiste Daroussin Content-Type: text/plain; charset=UTF-8 Cc: Florent Thoumie , Julien Laffaye , David Forsythe , Garrett Cooper , Tim Kientzle , freebsd-ports@freebsd.org, Anonymous Subject: Re: what next for the pkg_install rewrite X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2010 09:50:10 -0000 On 30 August 2010 10:22, Baptiste Daroussin wrote: > I have begun that: http://wiki.freebsd.org/Pkg_install2_specs if you > could add ideas and all stuff you have in mind about what has to be > and what could be in pkg_install, I'll cleanup the page after some > time, when all the needed discussion would be done and will transform > this page into real specifications. I like the proposal for the manifest format. I've added some small ideas. > Concerning having pkg_install into base or not, I really have no opinion? Oh it should be in base, the operating system isn't complete without it. From owner-freebsd-ports@FreeBSD.ORG Mon Aug 30 11:06:06 2010 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 66C7310656AA for ; Mon, 30 Aug 2010 11:06:06 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 545718FC1D for ; Mon, 30 Aug 2010 11:06:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o7UB66rP086678 for ; Mon, 30 Aug 2010 11:06:06 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o7UB65eO086676 for freebsd-ports@FreeBSD.org; Mon, 30 Aug 2010 11:06:05 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 30 Aug 2010 11:06:05 GMT Message-Id: <201008301106.o7UB65eO086676@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD ports list Cc: Subject: Current unassigned ports problem reports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2010 11:06:06 -0000 (Note: an HTML version of this report is available at http://www.freebsd.org/cgi/query-pr-summary.cgi?category=ports .) The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/150108 [MAINTAINER] japanese/ibus-skk: update to 1.0.0 f ports/150097 [PATCH] Update devel/libconfuse 2.6 to 2.7 o ports/150092 [MAINTAINER] multimedia/gpodder: update to 2.8 o ports/150091 [New port]; graphics/jogl2 o ports/150086 [NEW PORT] net-im/tkabber-plugins-devel: External Plug o ports/150078 security/tor: Recursive dependencies on ports tor and o ports/150077 [patch] graphics/zathura: update 0.0.8.1 f ports/150074 [patch] games/hex-a-hop: update to 1.1.0 o ports/150073 net-mgmt/flow-tools-ng: update to 0.68.5.1 o ports/150072 new port: security/spass o ports/150070 Add rc.d script to sabnzbdplus o ports/150058 [patch] graphics/apngasm: update to 2.2 o ports/150055 Port fix: archivers/par2cmdline-tbb - Allow build with o ports/150054 Port fix: devel/tbb - Honor CXX variable o ports/150053 Port fix: games/flightgear-mb339-pan - Fix size mismat f ports/150051 [PATCH] devel/tmake: honor CXX in linking mode f ports/150050 [PATCH] www/drraw: update to 2.2b2 o ports/150047 net/ipv6socket_scrub: Makefile contains incorrect URL f ports/150038 [update] databases/mysqltuner updated to version 1.1.0 o ports/150037 Port upgrade: editors/omegaT 2.0.5 upgrade 4 o ports/149988 [patch] net-p2p/amule2: update to 10273 o ports/149987 [NEW PORT] mail/xpi-dispmua: Displays the icon of the o ports/149986 [MAINTAINER] x11-fonts/dejavu: update to 2.32 f ports/149975 [PATCH] dns/ldns: update to 1.6.6 o ports/149963 chinese/ibus-chewing: Refine FETCH_ARGS o ports/149947 [NEW PORT] devel/smartCVS, a powerful graphical CVS cl o ports/149942 need add option to lang/php52-extensions o ports/149928 New port: textproc/iText iText, a JAVA-PDF library by f ports/149923 [PATCH] sysutils/duplicity-devel: fix ftpbackend bug o ports/149907 New port: misc/backuppc System for backing PCs and lap o ports/149892 [NEW PORT] textproc/weka-devel: Data Mining Software i f ports/149882 [PATCH] www/tinymce3: update to 3.3.8 o ports/149881 [PATCH] databases/mydumper: update to 0.1.8a f ports/149873 [PATCH] games/linux-enemyterritory: missing DRI o ports/149851 vlc and mplayer - race conditions? o ports/149849 New Port : print/scribus-devel - Scribus is a desktop o ports/149848 [patch] www/tomcat55 can't install via package due to s ports/149821 [NEW PORT] devel/bzr-tfs o ports/149819 [NEW PORT] french/MT: Other languages and French local f ports/149816 devel/icu4: install forget to install the lib libicute f ports/149771 mail/p5-Mail-SpamAssassin port no longer installs bina o ports/149738 www/opera installation error o ports/149736 update port: math/isabelle to version 2009.2 o ports/149725 [patch] devel/cdk: Errors in examples of cdk_display(3 f ports/149722 [PATCH] devel/jakarta-commons-daemon: update to 1.0.3 o ports/149714 After quit www/opera is crashed. o ports/149701 patch to update net/radiator port from version 3.17.1 o ports/149691 new port: japanese/tegaki-zinnia-japanese o ports/149690 new port: japanese/tegaki-recognize o ports/149689 new port: japanese/py-tegaki-gtk o ports/149688 new port: japanese/py-tegaki o ports/149687 new port: japanese/zinnia-tomoe o ports/149686 new port: japanese/py-zinnia o ports/149685 new port: japanese/zinnia o ports/149682 New port:net/gogonet_c gogoCLIENT offers IPv6 connecti o ports/149674 [patch] sysutils/fusefs-kmod: ftruncate() sycall on FU o ports/149669 Update port: print/latex-biblatex update to 0.9b o ports/149667 New port: print/latex-logreq automation of LaTeX workf o ports/149659 math/scilab crashing when run demos o ports/149627 [patch] net-p2p/amule2: fix for geoip and for a gd war f ports/149616 [PATCH] textproc/ibus: update to 1.3.7 o ports/149601 New port: games/gargoyle - a multiplatform interacti f ports/149575 Update for port: www/cherokee f ports/149565 Update port: converters/igbinary o ports/149564 patch for various games/ adding appropriate LICENSEs t a ports/149561 mail/p5-Mail-SpamAssassin Test suite fails with perl 5 f ports/149534 [maintainer-update] multimedia/mplayer and mencoder de f ports/149507 security/libprelude missing configure option f ports/149493 [PATCH] www/typo3: update to 4.3.5 f ports/149473 [maintainer update] devel/lamson unbreak o ports/149348 New port: net/wowzamediaserver o ports/149327 new port: www/cas, high-performance MVC framework for f ports/149305 Small security fix and transcoding profile fix to net/ o ports/149196 [PATCH] chinese/zh-ibus-chewing: update to 1.3.6.20100 o ports/149069 new port: sysutils/hfsexplorer HFSExplorer read Mac-fo o ports/149040 new port: sysutils/pcpustat, Per-CPU usage statistics o ports/149020 sysutils/dvdisaster Inappropriate ioctl for device wit f ports/148994 New port: net/netperfmeter, a network performance mete o ports/148993 [patch] net-im/echat: respect STRIP, don't override -O f ports/148950 Please upgrade www/grails to 1.3.3 o ports/148937 [PATCH] print/cups-samba: improve installation message o ports/148925 [PATCH] net/nss_ldap: Use $SUB_FILES instead of invoki f ports/148919 graphics/mapnik not longer broken o misc/148871 bad packages: p5-XML-Parser-2.36_1 p5-XML-SAX-Expat-0. o ports/148821 [NEW PORT] security/ccsrch: Is a tool that searches fo f ports/148804 graphics/gdal - Thread support broken o ports/148790 [MAINTAINER] net-mgmt/zabbix-frontend: fix sqlite usag o ports/148691 [NEW PORT] multimedia/gtk-recordmydesktop: GTK+ fronte f ports/148641 [PATCH] graphics/ipe: Update to latest version (now us f ports/148628 [new port] ftp/uftp3 o ports/148605 security/ipsec-tools rc.d/racoon startup script fails f ports/148579 new version databases/xtrabackup 1.3 f ports/148472 net/kojoney - missing dependency on devel/py-asn1 f ports/148462 [New port] www/wordpress-themes: wordpress featured th o ports/148457 lang/oo2c fix and update o ports/148454 games/freebsd-carddeck-kde4: freebsd's kde card deck d o ports/148415 new port: devel/libsysinfo, GNU libc's sysinfo port fo o ports/148411 New port: audio/madfufw M-Audio DFU Firmware for USB s o ports/148398 [NEW PORT] net/omcmd: CLI utility for performing OMAPI f ports/148316 net/quagga 0.99.16 - OSPF broken o ports/148276 Update ports chinese/ibus-chewing to 1.3.4 o ports/148234 pkg_install fails for some octave-forge-* ports o ports/148229 Update of math/octave-forge-ga f ports/148145 print/cups-samba: Add ability to use difference samba s ports/148090 [PATCH] security/ike: update to 2.1.5 o ports/148014 [update] libticonv/libtifiles2/libticables2/libticalcs o ports/147944 [NEW PORT] net/gogoc: GogoCLIENT, which is needed to c o ports/147943 New port: net/radsecproxy Radsecproxy is a generic RAD o ports/147841 [patch] databases/sqlite3: add SECURE_DELETE option f ports/147669 science/gramps fails to start f ports/147658 audio/mpc 0.17 still requires libintl.so.8 after gette o ports/147554 new ports: audio/linux-f10-[alsa|pulseaudio] s ports/147457 Update port: devel/ptlib26 f ports/147289 devel/gdb66 doesn't build o ports/147251 New port: german/joomla15 - german language packages f o ports/147093 New port: www/sitracker - Incident tracker / Help Desk o ports/146964 New port: net/asterisk162 o ports/146934 [NEW PORT] japanese/unzip NLS patched unzip. import fr f ports/146913 ports/databases/skytools failed to make package if Pos f ports/146895 [NEW PORT] emulators/linux-libusb -- linux(4)-friendly o ports/146830 multimedia/pvr_xxx does not compile on FreeBSD 8.* and f ports/146801 can't build graphics/py-opengl because math/py-numpy f o ports/146717 New port: devel/vxlog is C++ loggin library f ports/146713 [patch] net-mgmt/argus-monitor update f ports/146709 Update port: sysutils/psmisc Upgrade to 22.11 f ports/146641 [MAINTAINER] sysutils/gosa: update to 2.6.10 f ports/146392 [NEW PORT] devel/php5-thrift: PHP interface to Thrift o ports/146281 [ PATCH ] net/xorp doesn't honor WITH_OPENSSL_PORT=yes o ports/146271 [patch] sysutils/jfbterm: use PREFIX in man pages, con o ports/146230 [patch] sysutils/jfbterm: png14 regression f ports/145966 port devel/pwlib fails to build: cast error: patch att o ports/145945 [NEW PORT] www/encode-explorer: A PHP script to browse s ports/145858 [request] new port: add sysutils/xfce4-diskperf-plugin f ports/145596 [MAINTAINER] www/commonist: update to 0.3.43, fix logi o ports/145266 [update] java/eclipse-emf and maintainership request o ports/145094 [patch][repocopy] audio/linux-nerodigitalaudio: update o ports/145076 I could not build devel/pwlib f ports/144993 databases/postgresql-odbc: contents of numeric fields o ports/144988 [NEW PORT] net/monast: A monitoring and an operator pa o ports/144910 [new port] java/hgeclipse Mercurial VCS plugin for the f ports/144901 [new port] net-mgmt/py-flowtools-ng f ports/144857 [patch] audio/abraca: update to 0.4.3 o ports/144849 [new port] java/eclipse-eclemma code coverage for ecli f ports/144690 [NEW PORT] sysutils/fsvs f ports/144617 [PATCH] net-mgmt/docsis: Fix build on systems where GC o ports/144597 security/openssh-portable fails to compile with KERBER o ports/144555 graphics/mesagl: glutMainLoop() crashes when using VBO f ports/144412 Update port: mail/tkrat2 (Use latest tcl/tk versions) f ports/144066 Upgrade net/asterisk16-addons to 1.6.2.0 f ports/144036 audio/lmms: compile error in core/JournalingObject.cpp o ports/143938 [NEW PORTS] Linux versions of IBus (Intelligent Input o ports/143566 sysutils/diskcheckd runs constantly when using gmirror f ports/143344 [PATCH] sysutils/dtc: unbreak port s ports/143024 [PATCH] sysutils/puppet: add possobility to rc script o ports/142824 [patch] security/openssh-portable: add VersionAddendum o ports/142744 new port: x11/keyboardcast Broadcast keystrokes to mul o ports/142504 new port: net/gnu-dico - dict protocol server p ports/142374 Update: www/MT and Other language o ports/142086 new port: databases/lib_mysqludf_xql, provides SQLXML o ports/141790 [new port] net-im/zephyr : enterprise-class IM system f ports/141103 net/stone strange behavior on 8.0-RELEASE f ports/141001 net/ssltunnel-server/ depends on /sbin/pppd f ports/140867 net-mgmt/nagios-plugins: check_icmp default packets si o ports/140557 ports shells/44bsd-csh ESC file completion and ^D (vie s ports/140303 net-mgmt/docsis can not compile filters under amd64 pl o ports/140232 Resolve conflicts w/ devel/antlr & devel/pccts f ports/139867 mail/isoqlog catch segmentation fault under AMD64 f ports/139203 sysutils/freebsd-snapshot more careful patch not depen o ports/139107 [patch] sysutils/jfbterm: convert to bsdmake o ports/138929 [PATCH] security/heimdal update to 1.2.1 o ports/138806 New port: games/avp-demo ("Aliens versus predator" dem f ports/138602 audio/sphinxbase port update o ports/138179 Fix sysutils/serpentine to not require muine o ports/137751 [new port] audio/jokosher: Multi-track non-linear audi f ports/137378 Advisory locks fail with ports/security/cfs on FreeBSD f ports/136108 new port: www/webistrano, web frontend to capistrano a ports/133773 net/keepalived port update request f ports/133563 security/cfs rc script needs "mntudp" option on 8-CURR o ports/133146 [patch] x11-fonts/dejavu: install fontconfig configura o ports/132786 New port: sysutils/sispmctl Utility for controlling a o ports/129300 [vuxml] editors/vim6: document CVE-2008-3432 o ports/128952 [NEW PORT] java/javadb: Sun's supported distribution o o ports/127321 japanese/kon2-16dot: buffer overflow and mouse bugs s ports/127087 mail/bincimap port does not include an rc.d file s ports/125324 editors/the (3.2) looses cursor when compiled with PDC o ports/124375 security/heimdal: www/mod_auth_kerb doesn't compile ag o ports/123068 sysutils/bubblemon2 bubblemon-dockapp: error extractin o ports/118716 security/heimhal - shared library conflict with heimda f ports/117921 New port: multimedia/feng Feng is a multimedia streami s ports/117299 [new ports] www/webobjects(+) Apple WebObjects ports b o ports/114611 [NEW PORT] net-p2p/freenet05: An anonymous censorship- o ports/111501 [NEW PORT] databases/ruby-oci8 o ports/82634 heimdal port conflict with base heimdal o ports/59254 ports that write something after bsd.port.mk s ports/57498 HEIMDAL_HOME should be defined in src or ports Makefil 195 problems total. From owner-freebsd-ports@FreeBSD.ORG Mon Aug 30 18:11:28 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4D3061065670 for ; Mon, 30 Aug 2010 18:11:28 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from worf.ds9.tecnik93.com (worf.ds9.tecnik93.com [81.196.207.130]) by mx1.freebsd.org (Postfix) with ESMTP id B18A98FC1E for ; Mon, 30 Aug 2010 18:11:27 +0000 (UTC) Received: from it.buh.tecnik93.com (it.buh.tecnik93.com [81.196.204.98]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by worf.ds9.tecnik93.com (Postfix) with ESMTPSA id 7D40E22C5400; Mon, 30 Aug 2010 21:11:26 +0300 (EEST) Date: Mon, 30 Aug 2010 21:11:25 +0300 From: Ion-Mihai Tetcu To: "Rodrigo OSORIO (ros)" Message-ID: <20100830211125.15cee3b4@it.buh.tecnik93.com> In-Reply-To: <4C7AB8D0.5040302@bebik.net> References: <4C7AA925.3070505@yandex.ru> <4C7AB8D0.5040302@bebik.net> X-Mailer: Claws Mail 3.7.6 (GTK+ 2.20.1; amd64-portbld-freebsd8.1) Mime-Version: 1.0 Content-Type: multipart/signed; micalg=PGP-SHA1; boundary="Sig_/F/bw7OK+BlDciXavizu0yY_"; protocol="application/pgp-signature" Cc: FreeBSD Ports Mailing List , Ruslan Mahmatkhanov Subject: Re: ports/148691: [NEW PORT] multimedia/gtk-recordmydesktop X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2010 18:11:28 -0000 --Sig_/F/bw7OK+BlDciXavizu0yY_ Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On Sun, 29 Aug 2010 21:45:20 +0200 "Rodrigo OSORIO (ros)" wrote: > --- Makefile 2010-08-29 21:34:42.000000000 +0200 > +++ Makefile.new 2010-08-29 21:37:11.000000000 +0200 > @@ -2,6 +2,7 @@ > # Date created: 16 July 2010 > # Whom: Ruslan Mahmatkhanov > Please write the date in ISO format YYYY-MM-DD. Thanks. --=20 IOnut - Un^d^dregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" FreeBSD committer -> itetcu@FreeBSD.org, PGP Key ID 057E9F8B493A297B --Sig_/F/bw7OK+BlDciXavizu0yY_ Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.16 (FreeBSD) iEYEARECAAYFAkx79E0ACgkQJ7GIuiH/oeXWtwCcCxk+pXnMEf4IXJTsYaKR1qNK hpwAoLT4AFMu/9fDDolpMeTDI7JVNkxz =8r+J -----END PGP SIGNATURE----- --Sig_/F/bw7OK+BlDciXavizu0yY_-- From owner-freebsd-ports@FreeBSD.ORG Mon Aug 30 18:47:10 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 88B0E1065675 for ; Mon, 30 Aug 2010 18:47:10 +0000 (UTC) (envelope-from cvs-src@yandex.ru) Received: from forward13.mail.yandex.net (forward13.mail.yandex.net [95.108.130.120]) by mx1.freebsd.org (Postfix) with ESMTP id 324318FC2A for ; Mon, 30 Aug 2010 18:47:10 +0000 (UTC) Received: from smtp12.mail.yandex.net (smtp12.mail.yandex.net [95.108.131.191]) by forward13.mail.yandex.net (Yandex) with ESMTP id 53A0110806C5; Mon, 30 Aug 2010 22:47:08 +0400 (MSD) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1283194028; bh=PcljbNPeweFZPwiubBGQ6C0Qz4z78s4npmH4Vuc0KyY=; h=Message-ID:Date:From:MIME-Version:To:CC:Subject:References: In-Reply-To:Content-Type:Content-Transfer-Encoding; b=BiD15ENL4f18KSoI22MC+F2CzfMETCQ4dSo1ypK+RwEapAo4lzd+hJuIR14s339tV Wa2QSPCDpzdjczSXPRocFMnEYQ0a5Ef8+dh+vMwFPCBMMefNqgDXJrfbUJy766/lo/ h2qUF7Y/qvfNzkEfDTx+Ph7Ts+9vopH/DKSBYCb8= Received: from smeshariki2.local (unknown [77.66.145.223]) by smtp12.mail.yandex.net (Yandex) with ESMTPSA id 211A113E805A; Mon, 30 Aug 2010 22:47:08 +0400 (MSD) Message-ID: <4C7BFC40.5010803@yandex.ru> Date: Mon, 30 Aug 2010 22:45:20 +0400 From: Ruslan Mahmatkhanov User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; ru-RU; rv:1.9.2.8) Gecko/20100814 Thunderbird/3.1.2 MIME-Version: 1.0 To: Ion-Mihai Tetcu References: <4C7AA925.3070505@yandex.ru> <4C7AB8D0.5040302@bebik.net> <20100830211125.15cee3b4@it.buh.tecnik93.com> In-Reply-To: <20100830211125.15cee3b4@it.buh.tecnik93.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Yandex-TimeMark: 1283194028 X-Yandex-Spam: 1 X-Yandex-Front: smtp12.mail.yandex.net Cc: FreeBSD Ports Mailing List Subject: Re: ports/148691: [NEW PORT] multimedia/gtk-recordmydesktop X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2010 18:47:10 -0000 30.08.2010 22:11, Ion-Mihai Tetcu пишет: > On Sun, 29 Aug 2010 21:45:20 +0200 > "Rodrigo OSORIO (ros)" wrote: > >> --- Makefile 2010-08-29 21:34:42.000000000 +0200 >> +++ Makefile.new 2010-08-29 21:37:11.000000000 +0200 >> @@ -2,6 +2,7 @@ >> # Date created: 16 July 2010 >> # Whom: Ruslan Mahmatkhanov >> > > Please write the date in ISO format YYYY-MM-DD. Thanks. > Ok. There is updated archive: http://happy-nation.by.ru/ports/gtk-recordmydesktop.shar -- Regards, Ruslan From owner-freebsd-ports@FreeBSD.ORG Mon Aug 30 22:59:28 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from apollo.emma.line.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by hub.freebsd.org (Postfix) with ESMTP id A130910656A5; Mon, 30 Aug 2010 22:59:28 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from localhost ([127.0.0.1] helo=apollo.emma.line.org) by apollo.emma.line.org with esmtp (Exim 4.72 (FreeBSD)) (envelope-from ) id 1OqD5i-000M5S-Vj; Tue, 31 Aug 2010 00:44:38 +0200 Message-ID: <4C7C3456.2030500@FreeBSD.org> Date: Tue, 31 Aug 2010 00:44:38 +0200 From: Matthias Andree User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; de-DE; rv:1.9.2.8) Gecko/20100807 Thunderbird/3.1.2 MIME-Version: 1.0 To: ports@freebsd.org, java@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: RFT: deskutils/sciplore-mindmapping X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2010 22:59:28 -0000 Greetings, I have create a new port for SciPlore Mind Mapping, a mind mapper/manager with reference and PDF management (to integrate with JabRef, Mendeley, BibTeX). The port requires Java 1.6. Since this is my first Java-related port, and I haven't all the related tools installed, I'd like to request testing and feedback on the port. Please let me know if it works for you, what reference and/or PDF software you've used, or if it fails, or if you spot something I can improve before making this an official port. URL: http://home.pages.de/~mandree/freebsd/ - grab the .shar file and the GnuPG signature, make sure the file wasn't tampered with, then type: cd /var/tmp sh /path/to/sciplore-mindmapping.shar cd sciplore-mindmapping make install clean Thanks a lot. From owner-freebsd-ports@FreeBSD.ORG Mon Aug 30 23:41:42 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0E29410656AC for ; Mon, 30 Aug 2010 23:41:42 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-gx0-f182.google.com (mail-gx0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id A89D38FC15 for ; Mon, 30 Aug 2010 23:41:41 +0000 (UTC) Received: by gxk24 with SMTP id 24so2557325gxk.13 for ; Mon, 30 Aug 2010 16:41:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:date:from :user-agent:mime-version:to:cc:subject:x-enigmail-version :content-type; bh=pfRNXcdfkJqebxJrzt7gDCHTAgFw40/V/XhWyuAukRM=; b=GLoSWM1WY2+D+ra/xjwPG89noatiNa7XH1Vk5jC7x5UdzLF+HsmV3L0iQdxQWg+ZWa f4eNN34+z5UHc278GnkYEOhAQlt72rqsl/paOZTDZKF4uu8l4yNRnB5X8ExTioUus5GM S3BZTpQylgmutbymoVkHFWAyLScv6n//6WBS8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :x-enigmail-version:content-type; b=Zq8ORRRi/w9W2IvdSl5okmncwY2Uy2QlKx1TilCfaTqROGsm4PJX/ZuzNs7zLTae1y 69NPex04X5qbuJ3FSMnS4FW5eDbMi8zfTarwPId+XGx+CxXSuVphW0Kxg/e1hP4BXwPZ iJ2UpOK8uH3TMdD4xEfEyBAPHiTT9uLw2nRPo= Received: by 10.220.62.5 with SMTP id v5mr3251902vch.101.1283211700533; Mon, 30 Aug 2010 16:41:40 -0700 (PDT) Received: from centel.dataix.local (adsl-99-181-137-20.dsl.klmzmi.sbcglobal.net [99.181.137.20]) by mx.google.com with ESMTPS id q12sm2682940vcf.11.2010.08.30.16.41.38 (version=SSLv3 cipher=RC4-MD5); Mon, 30 Aug 2010 16:41:39 -0700 (PDT) Sender: "J. Hellenthal" Message-ID: <4C7C41B1.6010409@DataIX.net> Date: Mon, 30 Aug 2010 19:41:37 -0400 From: jhell User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.2.8) Gecko/20100806 Lightning/1.0b1 Thunderbird MIME-Version: 1.0 To: maho@FreeBSD.org X-Enigmail-Version: 1.1.2 Content-Type: multipart/mixed; boundary="------------010608060302060706000704" Cc: FreeBSD Ports Subject: math/blas linking to gfortran with LDADD?= -lgfortran X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Aug 2010 23:41:42 -0000 This is a multi-part message in MIME format. --------------010608060302060706000704 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 The subject listed port fails to link during an upgrade from the previous version. Looking into this further libblas.so.2 without being linked to gfortran is correct as in the already installed previous version installed inspected with ldd(1) shows the same linking as the new version without the -lgfortran linker flags. Attached is the patch that solves the linking problem. I do not see any dependents listed for this port for any of the gcc* ports that can be installed so therefore I have removed the -lgfortran from LDADD. $FreeBSD: ports/math/blas/Makefile,v 1.47 2010/08/30 07:26:27 bf Exp $ Regards, - -- jhell,v -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.16 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iQEcBAEBAgAGBQJMfEGwAAoJEJBXh4mJ2FR+cDUH/RfAGgADnpT862Ef2NrWYmvC l49FDRSDjPpyWEAOX2tpQ4Is7/88N0siumeVqKSLYesxb9tRL2sAAcmHvAo0UR7I JyufU49SIqvnsgMWV5Lkfb+l2Kb/7+C1BhQLA6PuotsyehGPgeH+1SynT/MtR+1I kIlVtWVz0f5BwQ4Tny8aeqPLEmCcnkCJlZtXWjYfvlhULE/qhjlK67Q0T71oaGfN Feyso8uDDsviwXEkwULRRIMmLTCNt5ZuJOsQe0VZiZR9Xfgc0MxVVcC4USvWHCiS ODME2TZiTS7Gau5aAw/NT5PuugkrBOzvmS62X5xaMLpSaEAcrlpi6zyTIC3dIbo= =Fabs -----END PGP SIGNATURE----- --------------010608060302060706000704 Content-Type: text/x-patch; name="blas.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="blas.diff" --- Makefile.orig 2010-08-30 19:27:57.024501012 -0400 +++ Makefile 2010-08-30 19:29:09.372193126 -0400 @@ -28,7 +28,7 @@ PLIST_FILES= lib/libblas.a lib/libblas.so lib/libblas.so.${SHLIB_MAJOR} LDFLAGS+= ${FFLAGS} -LDADD ?= -lgfortran -lm +LDADD ?= -lm MAKE_ENV+= LDADD="${LDADD}" LDFLAGS="${LDFLAGS}" \ SHLIB_MAJOR="${SHLIB_MAJOR}" .for _u in AR NM RANLIB --------------010608060302060706000704 Content-Type: application/octet-stream; name="blas.diff.sig" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="blas.diff.sig" iQEcBAABAgAGBQJMfEGwAAoJEJBXh4mJ2FR+7UsIAIO62UVOV8fZXkSJYxSrBCIrwujugCCe J7M18KJ+KHC/1K0xYThAP08STU1hAmgMxDT/1StA6B76C8wiYkT2Z1VNBNgRQEYybMiHtJ12 2Q1KI2L6X+iYjeJKhcz/SC9+AWcR0kZHAVPJ+a3Ickj9H4e6gZsfcTea01ZtH5R7FK2151QT KZaKghfQFy44TGd7VSk/RpKdE/AL5GbltQ1768n37yZ5x6ttWf5tD8iigRRgcXUKLboirA0h qOtxVKrIRjjivrkgiB/M6onBopxo/v4dcf0tvtRTCsn8u7x18/odj7DoJGL8WSWT35W9nvfc rWS6e0e+Ch81jZw/X97pDG8= --------------010608060302060706000704-- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 00:24:18 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 700951065696; Tue, 31 Aug 2010 00:24:18 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-gx0-f182.google.com (mail-gx0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id 00D758FC12; Tue, 31 Aug 2010 00:24:17 +0000 (UTC) Received: by gxk24 with SMTP id 24so2576843gxk.13 for ; Mon, 30 Aug 2010 17:24:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :x-enigmail-version:content-type:content-transfer-encoding; bh=AIBn7YiJLdGksuDh9gV76yJhRk15S7tLz6a9jbiWeck=; b=Y/SM0g4cwL9N3F1/4b+Ij1VnxuPCqRbmU4VIRU14M+0lwWbzjdjtxaJf2MxBsvQ1Pw ju0jTyHFz8NoKCZU7hfRKRKdalkbi7bVexK+BvAXHJ5OOTalluTUEzrYJe40lerawywO mQscNncfGW+2QPPCXxfKgE7+GpeuA1cJvRFR0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; b=sfOy1lLmGNdCO9B4Cvke7/CMuxKC6EZ9n+QugTYg2EETmPokv785ecse2Q9Y7MBgn3 ouB0QcA4kKvtNwmQSQ13RLADUxC7j0gz+qJRGYuFbvmmUqbN5fy/zdGW9RQAp0VE3jss 0h3VGH0qviKWEasFFopLCRzU0jT+Pd4AyC5Wo= Received: by 10.229.240.145 with SMTP id la17mr3709704qcb.75.1283214256756; Mon, 30 Aug 2010 17:24:16 -0700 (PDT) Received: from centel.dataix.local ([99.181.137.20]) by mx.google.com with ESMTPS id r38sm9017653qcs.38.2010.08.30.17.24.15 (version=SSLv3 cipher=RC4-MD5); Mon, 30 Aug 2010 17:24:15 -0700 (PDT) Sender: "J. Hellenthal" Message-ID: <4C7C4BAD.7030306@DataIX.net> Date: Mon, 30 Aug 2010 20:24:13 -0400 From: jhell User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.2.8) Gecko/20100806 Lightning/1.0b1 Thunderbird MIME-Version: 1.0 To: maho@FreeBSD.org References: <4C7C41B1.6010409@DataIX.net> In-Reply-To: <4C7C41B1.6010409@DataIX.net> X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: FreeBSD Ports Subject: Re: math/blas linking to gfortran with LDADD?= -lgfortran X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 00:24:18 -0000 On 08/30/2010 19:41, jhell wrote: > > The subject listed port fails to link during an upgrade from the > previous version. Looking into this further libblas.so.2 without being > linked to gfortran is correct as in the already installed previous > version installed inspected with ldd(1) shows the same linking as the > new version without the -lgfortran linker flags. > > Attached is the patch that solves the linking problem. I do not see any > dependents listed for this port for any of the gcc* ports that can be > installed so therefore I have removed the -lgfortran from LDADD. > > $FreeBSD: ports/math/blas/Makefile,v 1.47 2010/08/30 07:26:27 bf Exp $ It also appears that recent changes in math/lapack make blind assumptions that the user wants to compile these with ???PROFILING??? why? .if !(defined(NOPROFILE) || defined(NO_PROFILE) || defined(WITHOUT_PROFILE)) Would this not be better with if (defined(WITH_PROFILE)) ?? But then again this port also breaks so I guess I do not have to worry about blind assumptions here. -- jhell,v From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 00:26:48 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 962B210656A3 for ; Tue, 31 Aug 2010 00:26:48 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by mx1.freebsd.org (Postfix) with ESMTP id 3F2A88FC08 for ; Tue, 31 Aug 2010 00:26:47 +0000 (UTC) Received: by yxn35 with SMTP id 35so1973122yxn.13 for ; Mon, 30 Aug 2010 17:26:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :x-enigmail-version:content-type:content-transfer-encoding; bh=e/gnEp5iArXLbPRzHjxHwUREWbjHcLbPJRe2mKQJofg=; b=yA+rjEkUNUV3gPR8WfurQRMNLxJH/8G1jtjKM3Th59Fo2y1DfPrWe8huA1veEE80r0 2PrnsCEFeKUsEX8UVi2EklwbUnZWMpk86p2IXlkPBtsC/I3soi4+T0I9R/uPWrzvjXS1 2N9MXweROYPJskSfjplLNqp3hGZCzvtJRuQpI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; b=aYjVbh0fROk61SMFBoTY+qMceKAGpWvSbM3K0Vt5LZr521eBaGWQSv7G0a0fo86cZZ MexITQsKs/rSCBEJGpb5SWQGY3YO3YpUEx8djRzaSPlr9ZIHVlyX2DQhgKWFSwzAE13D PNiJYKsAxlFTNVBhMaiS/24RSTPArFmkAHEhA= Received: by 10.220.158.11 with SMTP id d11mr287636vcx.91.1283214407256; Mon, 30 Aug 2010 17:26:47 -0700 (PDT) Received: from centel.dataix.local (adsl-99-181-137-20.dsl.klmzmi.sbcglobal.net [99.181.137.20]) by mx.google.com with ESMTPS id n9sm2701154vch.19.2010.08.30.17.26.45 (version=SSLv3 cipher=RC4-MD5); Mon, 30 Aug 2010 17:26:45 -0700 (PDT) Sender: "J. Hellenthal" Message-ID: <4C7C4C44.8020708@DataIX.net> Date: Mon, 30 Aug 2010 20:26:44 -0400 From: jhell User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.2.8) Gecko/20100806 Lightning/1.0b1 Thunderbird MIME-Version: 1.0 To: Emanuel Haupt References: <20100827153022.92508730.ehaupt@critical.ch> In-Reply-To: <20100827153022.92508730.ehaupt@critical.ch> X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org Subject: Re: i7z for FreeBSD X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 00:26:48 -0000 On 08/27/2010 09:30, Emanuel Haupt wrote: > How hard would it be to port i7z to FreeBSD? Seems like a very useful tool. > > http://code.google.com/p/i7z/ > This seems a little like ports/misc/cpuid, is it ? -- jhell,v From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 06:54:36 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C888510656A8 for ; Tue, 31 Aug 2010 06:54:36 +0000 (UTC) (envelope-from mail@ozzmosis.com) Received: from extmail-03.people.net.au (extmail-03.people.net.au [202.154.122.99]) by mx1.freebsd.org (Postfix) with SMTP id 229048FC17 for ; Tue, 31 Aug 2010 06:54:35 +0000 (UTC) Received: (qmail 30493 invoked from network); 31 Aug 2010 06:27:54 -0000 Received: from unknown (HELO extmail-01.people.net.au) (202.154.123.98) by extmail-03.people.net.au with SMTP; 31 Aug 2010 06:27:54 -0000 Received: (qmail 10054 invoked from network); 31 Aug 2010 06:27:54 -0000 Received: from unknown (HELO smtp.phoenix) (218.215.180.178) by extmail-01.people.net.au with SMTP; 31 Aug 2010 06:27:54 -0000 Received: by smtp.phoenix (Postfix, from userid 1001) id 48E6017199; Tue, 31 Aug 2010 16:27:59 +1000 (EST) Date: Tue, 31 Aug 2010 16:27:59 +1000 From: andrew clarke To: ports@freebsd.org Message-ID: <20100831062759.GA6916@ozzmosis.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-06-14) Cc: ehaupt@FreeBSD.org, billposer@alum.mit.edu Subject: textproc/uni2ascii build failure on FreeBSD 7.3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 06:54:36 -0000 Hi, uni2ascii no longer builds on FreeBSD 7.3: cc -DNEWSUMMARY -O2 -fno-strict-aliasing -pipe -o ascii2uni ascii2uni.o enttbl.o GetWord.o putu8.o SetFormat.o ascii2uni.o(.text+0xb23): In function main': : undefined reference to getline' Quoting the ChangeLog: > 2010-08-29 Bill Poser > > * ascii2uni.c: > Removed getline.c dependent on GNU_SOURCE since getline is standard as of POSIX2008. Relying on POSIX2008 support may be a bit ambitious. Thanks, Regards Andrew From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 07:25:10 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ACC7D10656B0 for ; Tue, 31 Aug 2010 07:25:10 +0000 (UTC) (envelope-from ehaupt@critical.ch) Received: from mx.critical.ch (mx.critical.ch [62.2.45.171]) by mx1.freebsd.org (Postfix) with ESMTP id 28E9E8FC20 for ; Tue, 31 Aug 2010 07:25:09 +0000 (UTC) Received: from wiggles.bwns.ch (localhost [IPv6:::1]) by mx.critical.ch (8.14.3/8.14.3/critical-1.0) with SMTP id o7V7OrrI074259; Tue, 31 Aug 2010 09:24:54 +0200 (CEST) (envelope-from ehaupt@critical.ch) Date: Tue, 31 Aug 2010 09:24:53 +0200 From: Emanuel Haupt To: jhell Message-Id: <20100831092453.04165170.ehaupt@critical.ch> In-Reply-To: <4C7C4C44.8020708@DataIX.net> References: <20100827153022.92508730.ehaupt@critical.ch> <4C7C4C44.8020708@DataIX.net> X-Mailer: Sylpheed 3.0.3 (GTK+ 2.20.1; amd64-portbld-freebsd8.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org Subject: Re: i7z for FreeBSD X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 07:25:10 -0000 jhell wrote: > On 08/27/2010 09:30, Emanuel Haupt wrote: > > How hard would it be to port i7z to FreeBSD? Seems like a very > > useful tool. > > > > http://code.google.com/p/i7z/ > > > > This seems a little like ports/misc/cpuid, is it ? Not quite. i7z is primarily for dumping i7, i3, i5 CPU features. Emanuel From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 07:33:54 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AE95D10656B1 for ; Tue, 31 Aug 2010 07:33:54 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from qmta07.emeryville.ca.mail.comcast.net (qmta07.emeryville.ca.mail.comcast.net [76.96.30.64]) by mx1.freebsd.org (Postfix) with ESMTP id 9648C8FC1E for ; Tue, 31 Aug 2010 07:33:54 +0000 (UTC) Received: from omta17.emeryville.ca.mail.comcast.net ([76.96.30.73]) by qmta07.emeryville.ca.mail.comcast.net with comcast id 0vZC1f0041afHeLA7vZuZZ; Tue, 31 Aug 2010 07:33:54 +0000 Received: from koitsu.dyndns.org ([98.248.41.155]) by omta17.emeryville.ca.mail.comcast.net with comcast id 0vZt1f0023LrwQ28dvZtKH; Tue, 31 Aug 2010 07:33:54 +0000 Received: by icarus.home.lan (Postfix, from userid 1000) id 06E249B425; Tue, 31 Aug 2010 00:33:53 -0700 (PDT) Date: Tue, 31 Aug 2010 00:33:53 -0700 From: Jeremy Chadwick To: andrew clarke Message-ID: <20100831073352.GA60974@icarus.home.lan> References: <20100831062759.GA6916@ozzmosis.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20100831062759.GA6916@ozzmosis.com> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: ports@freebsd.org, ehaupt@FreeBSD.org, billposer@alum.mit.edu Subject: Re: textproc/uni2ascii build failure on FreeBSD 7.3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 07:33:54 -0000 On Tue, Aug 31, 2010 at 04:27:59PM +1000, andrew clarke wrote: > uni2ascii no longer builds on FreeBSD 7.3: > > cc -DNEWSUMMARY -O2 -fno-strict-aliasing -pipe -o ascii2uni ascii2uni.o enttbl.o GetWord.o putu8.o SetFormat.o > ascii2uni.o(.text+0xb23): In function main': > : undefined reference to getline' FreeBSD 7.x's libc does not include getline(3). The port will have to be modified to probably bring in devel/libgetline and custom patches made to work when built on that OS. Alternatively, one could try and get the author (CC'd) to restore getline.c in the official source but only build it/make use of it when a specific configure or make flag is specified. -- | Jeremy Chadwick jdc@parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, USA | | Making life hard for others since 1977. PGP: 4BD6C0CB | From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 07:55:15 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 576C21065670; Tue, 31 Aug 2010 07:55:15 +0000 (UTC) (envelope-from ehaupt@critical.ch) Received: from mx.critical.ch (mx.critical.ch [62.2.45.171]) by mx1.freebsd.org (Postfix) with ESMTP id E13458FC0C; Tue, 31 Aug 2010 07:55:14 +0000 (UTC) Received: from wiggles.bwns.ch (localhost [IPv6:::1]) by mx.critical.ch (8.14.3/8.14.3/critical-1.0) with SMTP id o7V7tBG9097251; Tue, 31 Aug 2010 09:55:11 +0200 (CEST) (envelope-from ehaupt@critical.ch) Date: Tue, 31 Aug 2010 09:55:11 +0200 From: Emanuel Haupt To: andrew clarke Message-Id: <20100831095511.29324fda.ehaupt@critical.ch> In-Reply-To: <20100831062759.GA6916@ozzmosis.com> References: <20100831062759.GA6916@ozzmosis.com> X-Mailer: Sylpheed 3.0.3 (GTK+ 2.20.1; amd64-portbld-freebsd8.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org, ehaupt@freebsd.org, billposer@alum.mit.edu Subject: Re: textproc/uni2ascii build failure on FreeBSD 7.3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 07:55:15 -0000 andrew clarke wrote: > Hi, > > uni2ascii no longer builds on FreeBSD 7.3: > > cc -DNEWSUMMARY -O2 -fno-strict-aliasing -pipe -o ascii2uni > ascii2uni.o enttbl.o GetWord.o putu8.o SetFormat.o ascii2uni.o(.text > +0xb23): In function main': : undefined reference to getline' > > Quoting the ChangeLog: > > > 2010-08-29 Bill Poser > > > > * ascii2uni.c: > > Removed getline.c dependent on GNU_SOURCE since getline is > > standard as of POSIX2008. > > Relying on POSIX2008 support may be a bit ambitious. According to [1] getline wasn't introduced before OSREVISION prior to 800067. I've just commited a patch that pulls in devel/libgetline on those versions. [1] http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/freebsd-versions.html#AEN4754 Thanks for the notification. Emanuel From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 08:19:03 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3DB761065673; Tue, 31 Aug 2010 08:19:03 +0000 (UTC) (envelope-from billposer2@gmail.com) Received: from mail-gx0-f182.google.com (mail-gx0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id D89E38FC08; Tue, 31 Aug 2010 08:19:02 +0000 (UTC) Received: by gxk24 with SMTP id 24so2765481gxk.13 for ; Tue, 31 Aug 2010 01:19:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type; bh=hm0A2MrRvjgV/qNM+zaJJXSvs0b9ZjIl4OU+24pMeUs=; b=EtNWBv9kguZnsn/XPyZpV7rkwRNO9Dpp1Oan67jbVTay0vkbaksMDz+TvDi+B7nS+A g1hukJjMTRlUevZ492S4ZCJOV3y0+xB7GEuHc8F2RTs9Sc//J+mDeOQi1W4axbi/EfFn tiBJTAcOPuCjJgr7p7kMjoKxX4oiTmS2fJ1J0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=Fp6ZIK9gJOH0+7eBmZPAT2gBIN4ZL94UNMgxVPV2h4rtIM81zBA1GZ52f2tKTbAAWo cViAyzLlKr+ikqSNWP4m14lvdETSaDFUDklEQdGVjiVOhbM41BZ5Z6xS16w7YprbW8w1 FzctPFM14zrmVNcDxe8WOK3XksOALenfmd3r0= MIME-Version: 1.0 Received: by 10.150.51.17 with SMTP id y17mr1267027yby.82.1283241278992; Tue, 31 Aug 2010 00:54:38 -0700 (PDT) Received: by 10.150.196.18 with HTTP; Tue, 31 Aug 2010 00:54:38 -0700 (PDT) In-Reply-To: <20100831073352.GA60974@icarus.home.lan> References: <20100831062759.GA6916@ozzmosis.com> <20100831073352.GA60974@icarus.home.lan> Date: Tue, 31 Aug 2010 00:54:38 -0700 Message-ID: From: Bill Poser To: Jeremy Chadwick Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: ports@freebsd.org, andrew clarke , ehaupt@freebsd.org, billposer@alum.mit.edu Subject: Re: textproc/uni2ascii build failure on FreeBSD 7.3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 08:19:03 -0000 > > Alternatively, one could try and get the author (CC'd) to restore > getline.c in the official source but only build it/make use of it when a > specific configure or make flag is specified. > > Hi. I think that's the best solution. I'll restore the internal copy and test for the library version in the configure file. From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 08:25:36 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2382710656BB; Tue, 31 Aug 2010 08:25:36 +0000 (UTC) (envelope-from ehaupt@critical.ch) Received: from mx.critical.ch (mx.critical.ch [62.2.45.171]) by mx1.freebsd.org (Postfix) with ESMTP id A8CD58FC26; Tue, 31 Aug 2010 08:25:35 +0000 (UTC) Received: from wiggles.bwns.ch (localhost [IPv6:::1]) by mx.critical.ch (8.14.3/8.14.3/critical-1.0) with SMTP id o7V8PWvj021302; Tue, 31 Aug 2010 10:25:32 +0200 (CEST) (envelope-from ehaupt@critical.ch) Date: Tue, 31 Aug 2010 10:25:32 +0200 From: Emanuel Haupt To: Bill Poser Message-Id: <20100831102532.4bd51838.ehaupt@critical.ch> In-Reply-To: References: <20100831062759.GA6916@ozzmosis.com> <20100831073352.GA60974@icarus.home.lan> X-Mailer: Sylpheed 3.0.3 (GTK+ 2.20.1; amd64-portbld-freebsd8.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org, ehaupt@freebsd.org, andrew clarke , Jeremy Chadwick , billposer@alum.mit.edu Subject: Re: textproc/uni2ascii build failure on FreeBSD 7.3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 08:25:36 -0000 Bill Poser wrote: > > > > Alternatively, one could try and get the author (CC'd) to restore > > getline.c in the official source but only build it/make use of it > > when a specific configure or make flag is specified. > > > > Hi. I think that's the best solution. I'll restore the internal > > copy and > test for the library version in the configure file. I've just fixed the port for the current version a few minutes ago. So there is no hurry. I'd rather have the port use the system internal version so I'm in favor or Bill's removal. Emanuel From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 08:39:52 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6877010656B6 for ; Tue, 31 Aug 2010 08:39:52 +0000 (UTC) (envelope-from r.c.ladan@gmail.com) Received: from mail-ww0-f42.google.com (mail-ww0-f42.google.com [74.125.82.42]) by mx1.freebsd.org (Postfix) with ESMTP id 6C5B88FC22 for ; Tue, 31 Aug 2010 08:39:43 +0000 (UTC) Received: by wwi14 with SMTP id 14so45676wwi.1 for ; Tue, 31 Aug 2010 01:39:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=nqo4Sv25idDHi8Bhh4kdUuHqAt7vzobL9EJLSsC6RwI=; b=mtKnw/DqcyuOIxkaFUFS6RzwefhjHQWWjhA6yse8FW2ZAZpNzBR8QwlK9hBNBwdqFR Mzu0qhYjgLybxbS7Rq6rqKnKFeJLpAYBz6zbeaVvpgbt576sj/8+rJKI9lbThky82KMC LzStJCLQq9Tmsn4C5A++5J/ikmqKPfwpJnu1Y= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=uhlq3sSnVPdrHMikg3DOnPvs+IBKx++ixs9/tnAgclcixuBoDaTOs28mQTYq4QgsiS KnS1AhOtD9k90OUAW7+NS/Xu02Kt+kQYiC7U2GW95dQtaQtA9/Mv+dke1tbV8X7/4w+J ZqxAqJPv5xqIf90tzcup+LS6846QQEFflWhYI= MIME-Version: 1.0 Received: by 10.227.141.84 with SMTP id l20mr6187716wbu.119.1283243976321; Tue, 31 Aug 2010 01:39:36 -0700 (PDT) Received: by 10.227.151.143 with HTTP; Tue, 31 Aug 2010 01:39:36 -0700 (PDT) Date: Tue, 31 Aug 2010 10:39:36 +0200 Message-ID: From: =?ISO-8859-1?Q?Ren=E9_Ladan?= To: freebsd ports Content-Type: text/plain; charset=ISO-8859-1 Subject: devel/sdl12 and gcc -m32 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 08:39:52 -0000 Hi, I was trying to build the future port games/avp-demo (ports/138806) on my 9.0-amd64 laptop with system gcc, but this failed because of SDL errors: gcc -m32 -g -Wall -pipe -Isrc -Isrc/include -Isrc/win95 -Isrc/avp -Isrc/avp/win95 -Isrc/avp/support -Isrc/avp/win95/frontend -Isrc/avp/win95/gadgets -I/usr/local/include/SDL -I/usr/local/include -D_GNU_SOURCE=1 -D_REENTRANT -I/usr/local/include -c -o src/main.o src/main.c In file included from /usr/local/include/SDL/SDL_main.h:26, from /usr/local/include/SDL/SDL.h:30, from src/main.c:6: /usr/local/include/SDL/SDL_stdinc.h:131: error: size of array 'SDL_dummy_uint64' is negative /usr/local/include/SDL/SDL_stdinc.h:132: error: size of array 'SDL_dummy_sint64' is negative Note the -m32 flag passed to gcc, which is used to force generating 32-bit code on 64-bit platforms. The flag is set in the Makefile of the game itself. When I removed the flag I ran into code snippets which would need a rewrite for 64-bit platforms (typecasting, extending hash functions on pointers, etc). I guess SDL is tellng that I cannot have 64-bit values on a 32-bit target when I have devel/sdl12 compiled as the native 64-bit version. Is this a limitation of SDL itself? Regards, Rene -- http://www.rene-ladan.nl/ GPG fingerprint = E738 5471 D185 7013 0EE0 4FC8 3C1D 6F83 12E1 84F6 (subkeys.pgp.net) From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 09:33:01 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 95C601065672 for ; Tue, 31 Aug 2010 09:33:01 +0000 (UTC) (envelope-from swell.k@gmail.com) Received: from mail-qy0-f182.google.com (mail-qy0-f182.google.com [209.85.216.182]) by mx1.freebsd.org (Postfix) with ESMTP id 48CD48FC19 for ; Tue, 31 Aug 2010 09:32:59 +0000 (UTC) Received: by qyk4 with SMTP id 4so6957990qyk.13 for ; Tue, 31 Aug 2010 02:32:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:references :date:in-reply-to:message-id:user-agent:mime-version:content-type :content-transfer-encoding; bh=34vLXhqAVGsERNabBiZ0Sxxn5A2br7AKHEZ3etgZxwM=; b=JKs8lsDCVJHH5jtbUvr4Klo5vs7kyAMiLn4thX/u/+S9TgB8LexJ9U6ouly2fS3upi gihze+dwDdniydObEGi0vY1aSFC06HxZFNkYsbHFHs2DZumxtfcgRogM65LOGJVCDPpw sQ0ZpLKsaeywUrhOAOn2mthCOOLJfDxiHlehs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type:content-transfer-encoding; b=Czav9f4I9RRnvCPAd4nhJTgy4RJvM69pTVGBHmfoBF5ArQ8kGaFKuk/+/fSWi+y3Hq lmpynWB/LazCEoQFLp284nMqLVkUNx4uvYupoLTKE94g5NY2P/VKRUAeayJacTCsby/H 6cYKPCqeXE88gQO3vCug0RsaMN/8Wd/pHiD8c= Received: by 10.229.229.210 with SMTP id jj18mr3978563qcb.82.1283247178624; Tue, 31 Aug 2010 02:32:58 -0700 (PDT) Received: from localhost ([80.62.217.18]) by mx.google.com with ESMTPS id t24sm9508302qcs.23.2010.08.31.02.32.56 (version=SSLv3 cipher=RC4-MD5); Tue, 31 Aug 2010 02:32:58 -0700 (PDT) From: Anonymous To: =?utf-8?Q?Ren=C3=A9?= Ladan References: Date: Tue, 31 Aug 2010 13:32:48 +0400 In-Reply-To: (=?utf-8?Q?=22Ren=C3=A9?= Ladan"'s message of "Tue, 31 Aug 2010 10:39:36 +0200") Message-ID: <86tymbjfen.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Cc: freebsd ports Subject: Re: devel/sdl12 and gcc -m32 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 09:33:01 -0000 Ren=C3=A9 Ladan writes: > Hi, > > I was trying to build the future port games/avp-demo (ports/138806) on > my 9.0-amd64 laptop > with system gcc, but this failed because of SDL errors: > > gcc -m32 -g -Wall -pipe -Isrc -Isrc/include -Isrc/win95 -Isrc/avp > -Isrc/avp/win95 -Isrc/avp/support -Isrc/avp/win95/frontend > -Isrc/avp/win95/gadgets -I/usr/local/include/SDL -I/usr/local/include > -D_GNU_SOURCE=3D1 -D_REENTRANT -I/usr/local/include -c -o src/main.o > src/main.c > In file included from /usr/local/include/SDL/SDL_main.h:26, > from /usr/local/include/SDL/SDL.h:30, > from src/main.c:6: > /usr/local/include/SDL/SDL_stdinc.h:131: error: size of array > 'SDL_dummy_uint64' is negative > /usr/local/include/SDL/SDL_stdinc.h:132: error: size of array > 'SDL_dummy_sint64' is negative -m32 is not supported yet, especially not by the ports tree. And even if you manage to compile sources it wouldn't link against 64bit libs. There is a way to compile 32bit ports on amd64 but it involves either using chroot() or different LOCALBASE. > > Note the -m32 flag passed to gcc, which is used to force generating > 32-bit code on 64-bit > platforms. The flag is set in the Makefile of the game itself. When I > removed the flag I ran into > code snippets which would need a rewrite for 64-bit platforms > (typecasting, extending hash > functions on pointers, etc). This just means the port is BROKEN on amd64. > I guess SDL is tellng that I cannot have 64-bit values on a 32-bit > target when I have devel/sdl12 > compiled as the native 64-bit version. Is this a limitation of SDL itself? I guess SDL inherits some values from headers. BTW, the port doesn't respect CC/CXX and LDFLAGS in make.conf/environ as well as overrides CXXFLAGS. Also audio/openal is pretty ancient. Does the port not support audio/openal-soft? %% --- avp_git/Makefile~ +++ avp_git/Makefile @@ -1,15 +1,8 @@ -CC =3D gcc -CXX =3D g++ - -CFLAGS =3D -m32 -g -Wall -pipe -#CFLAGS +=3D -O2 -#CFLAGS +=3D -DNDEBUG -O6 -ffast-math -fomit-frame-pointer -march=3Dpentiu= m3 -mtune=3Dpentium4 - CFLAGS +=3D -Isrc -Isrc/include -Isrc/win95 -Isrc/avp -Isrc/avp/win95 -Isr= c/avp/support -Isrc/avp/win95/frontend -Isrc/avp/win95/gadgets CFLAGS +=3D $(shell sdl-config --cflags) $(shell openal-config --cflags) -CXXFLAGS =3D $(CFLAGS) +CXXFLAGS +=3D $(CFLAGS) =20 -LDLIBS =3D -m32 $(shell sdl-config --libs) $(shell openal-config --libs) +LDLIBS =3D $(shell sdl-config --libs) $(shell openal-config --libs) =20 ROOT =3D main.c files.c winapi.c stubs.c version.c mathline.c opengl.c fmv= .c oglfunc.c openal.c cdplayer.c menus.c net.c frustum.c kshape.c map.c mat= hs.c md5.c mem3dc.c mem3dcpp.cpp module.c morph.c object.c shpanim.c sphere= .c tables.c vdb.c AVP =3D ai_sight.c avpview.c bh_agun.c bh_ais.c bh_alien.c bh_binsw.c bh_c= able.c bh_corpse.c bh_deathvol.c bh_debri.c bh_dummy.c bh_fan.c bh_far.c bh= _fhug.c bh_gener.c bh_ldoor.c bh_lift.c bh_light.c bh_lnksw.c bh_ltfx.c bh_= marin.c bh_mission.c bh_near.c bh_pargen.c bh_plachier.c bh_plift.c bh_pred= .c bh_queen.c bh_rubberduck.c bh_selfdest.c bh_snds.c bh_spcl.c bh_swdor.c = bh_track.c bh_types.c bh_videoscreen.c bh_waypt.c bh_weap.c bh_xeno.c bonus= abilities.c cconvars.cpp cdtrackselection.cpp cheatmodes.c comp_map.c comp_= shp.c consolelog.cpp davehook.cpp deaths.c decal.c detaillevels.c dynamics.= c dynblock.c equipmnt.c extents.c game.c game_statistics.c gamecmds.cpp gam= evars.cpp hmodel.c hud.c inventry.c language.c lighting.c load_shp.c los.c = mempool.c messagehistory.c missions.cpp movement.c paintball.c particle.c p= farlocs.c pheromon.c player.c pmove.c psnd.c psndproj.c pvisible.c savegame= .c scream.cpp secstats.c sfx.c stratdef.c targeting.c track.c triggers.c we= apons.c @@ -48,7 +41,7 @@ OBJ =3D $(ROOTOBJ) $(AVPOBJ) $(SHAPESOBJ)=20 all: avp =20 avp: $(OBJ) - $(CXX) -o avp $(OBJ) $(LDLIBS) + $(CXX) -o avp $(OBJ) $(LDLIBS) $(LDFLAGS) =20 clean: -rm -rf $(OBJ) avp %% From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 09:40:05 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7F0381065695 for ; Tue, 31 Aug 2010 09:40:05 +0000 (UTC) (envelope-from r.c.ladan@gmail.com) Received: from mail-ww0-f50.google.com (mail-ww0-f50.google.com [74.125.82.50]) by mx1.freebsd.org (Postfix) with ESMTP id 14D5A8FC1A for ; Tue, 31 Aug 2010 09:40:04 +0000 (UTC) Received: by wwb34 with SMTP id 34so6577251wwb.31 for ; Tue, 31 Aug 2010 02:40:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=VM/CJvALbEtwpuDWKI1ILeeUCQBSP5zPiwLpy5DQFv4=; b=VAPQcXpjRl6jWJVfQETuyuJ0aEyy8vEp+Dwf1tO8a3NHz9xzXWMOH+PNcCdiSGfZ8p XmmctsklzcrsSKIIuJ8h26vEJzlWEv659OOcgOJx7C1z/2TF9VqA6bPjZdE7eBci2NQd Y64OFonPWykDLOYWg2h2eRRrPb+9kiddfzjmQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=QSHlIg8lWmT8nnKuunerjWDyX59qWnmjFYLIqS0HcV5itntCCWdzwVkdNED8595cgJ ZeIPsid+ZBAFPI30g1HHGHy5il82HzZOVB87og3HW6YdYkYCe33K7+w0Y0HT1+xRg9sx mb5nvTZuxc3RMpNsU8Ew3BaR/DkqcVgqfZB84= MIME-Version: 1.0 Received: by 10.227.145.14 with SMTP id b14mr6214851wbv.24.1283247604048; Tue, 31 Aug 2010 02:40:04 -0700 (PDT) Received: by 10.227.151.143 with HTTP; Tue, 31 Aug 2010 02:40:03 -0700 (PDT) In-Reply-To: <86tymbjfen.fsf@gmail.com> References: <86tymbjfen.fsf@gmail.com> Date: Tue, 31 Aug 2010 11:40:03 +0200 Message-ID: From: =?ISO-8859-1?Q?Ren=E9_Ladan?= To: Anonymous Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: stast@bsdportal.ru, freebsd ports Subject: Re: devel/sdl12 and gcc -m32 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 09:40:05 -0000 (cc'ing submitter of the port) 2010/8/31 Anonymous : > Ren=E9 Ladan writes: > >> Hi, >> >> I was trying to build the future port games/avp-demo (ports/138806) on >> my 9.0-amd64 laptop >> with system gcc, but this failed because of SDL errors: >> >> gcc -m32 -g -Wall -pipe -Isrc -Isrc/include -Isrc/win95 -Isrc/avp >> -Isrc/avp/win95 -Isrc/avp/support -Isrc/avp/win95/frontend >> -Isrc/avp/win95/gadgets -I/usr/local/include/SDL -I/usr/local/include >> -D_GNU_SOURCE=3D1 -D_REENTRANT -I/usr/local/include -c -o src/main.o >> src/main.c >> In file included from /usr/local/include/SDL/SDL_main.h:26, >> from /usr/local/include/SDL/SDL.h:30, >> from src/main.c:6: >> /usr/local/include/SDL/SDL_stdinc.h:131: error: size of array >> 'SDL_dummy_uint64' is negative >> /usr/local/include/SDL/SDL_stdinc.h:132: error: size of array >> 'SDL_dummy_sint64' is negative > > -m32 is not supported yet, especially not by the ports tree. And even if > you manage to compile sources it wouldn't link against 64bit libs. > Hmm ok, I'll add a NOT_FOR_ARCH / ONLY_FOR_ARCH to the port. > There is a way to compile 32bit ports on amd64 but it involves either > using chroot() or different LOCALBASE. The wine approach. > >> >> Note the -m32 flag passed to gcc, which is used to force generating >> 32-bit code on 64-bit >> platforms. The flag is set in the Makefile of the game itself. When I >> removed the flag I ran into >> code snippets which would need a rewrite for 64-bit platforms >> (typecasting, extending hash >> functions on pointers, etc). > > This just means the port is BROKEN on amd64. > >> I guess SDL is tellng that I cannot have 64-bit values on a 32-bit >> target when I have devel/sdl12 >> compiled as the native 64-bit version. Is this a limitation of SDL itsel= f? > > I guess SDL inherits some values from headers. > > BTW, the port doesn't respect CC/CXX and LDFLAGS in make.conf/environ as > well as overrides CXXFLAGS. > > Also audio/openal is pretty ancient. Does the port not support > audio/openal-soft? > I've replaced this with USE_OPENAL=3Dyes in my local copy of the Makefile, = as well using the DOCSDIR and DATADIR macros. I'll change the port to also respect = the above flags. > %% > --- avp_git/Makefile~ > +++ avp_git/Makefile > @@ -1,15 +1,8 @@ > -CC =3D gcc > -CXX =3D g++ > - > -CFLAGS =3D -m32 -g -Wall -pipe > -#CFLAGS +=3D -O2 > -#CFLAGS +=3D -DNDEBUG -O6 -ffast-math -fomit-frame-pointer -march=3Dpent= ium3 -mtune=3Dpentium4 > - > =A0CFLAGS +=3D -Isrc -Isrc/include -Isrc/win95 -Isrc/avp -Isrc/avp/win95 = -Isrc/avp/support -Isrc/avp/win95/frontend -Isrc/avp/win95/gadgets > =A0CFLAGS +=3D $(shell sdl-config --cflags) $(shell openal-config --cflag= s) > -CXXFLAGS =3D $(CFLAGS) > +CXXFLAGS +=3D $(CFLAGS) > > -LDLIBS =3D -m32 $(shell sdl-config --libs) $(shell openal-config --libs) > +LDLIBS =3D $(shell sdl-config --libs) $(shell openal-config --libs) > > =A0ROOT =3D main.c files.c winapi.c stubs.c version.c mathline.c opengl.c= fmv.c oglfunc.c openal.c cdplayer.c menus.c net.c frustum.c kshape.c map.c= maths.c md5.c mem3dc.c mem3dcpp.cpp module.c morph.c object.c shpanim.c sp= here.c tables.c vdb.c > =A0AVP =3D ai_sight.c avpview.c bh_agun.c bh_ais.c bh_alien.c bh_binsw.c = bh_cable.c bh_corpse.c bh_deathvol.c bh_debri.c bh_dummy.c bh_fan.c bh_far.= c bh_fhug.c bh_gener.c bh_ldoor.c bh_lift.c bh_light.c bh_lnksw.c bh_ltfx.c= bh_marin.c bh_mission.c bh_near.c bh_pargen.c bh_plachier.c bh_plift.c bh_= pred.c bh_queen.c bh_rubberduck.c bh_selfdest.c bh_snds.c bh_spcl.c bh_swdo= r.c bh_track.c bh_types.c bh_videoscreen.c bh_waypt.c bh_weap.c bh_xeno.c b= onusabilities.c cconvars.cpp cdtrackselection.cpp cheatmodes.c comp_map.c c= omp_shp.c consolelog.cpp davehook.cpp deaths.c decal.c detaillevels.c dynam= ics.c dynblock.c equipmnt.c extents.c game.c game_statistics.c gamecmds.cpp= gamevars.cpp hmodel.c hud.c inventry.c language.c lighting.c load_shp.c lo= s.c mempool.c messagehistory.c missions.cpp movement.c paintball.c particle= .c pfarlocs.c pheromon.c player.c pmove.c psnd.c psndproj.c pvisible.c save= game.c scream.cpp secstats.c sfx.c stratdef.c targeting.c track.c triggers.= c weapons.c > @@ -48,7 +41,7 @@ OBJ =3D $(ROOTOBJ) $(AVPOBJ) $(SHAPESOBJ) > =A0all: avp > > =A0avp: $(OBJ) > - =A0 =A0 =A0 $(CXX) -o avp $(OBJ) $(LDLIBS) > + =A0 =A0 =A0 $(CXX) -o avp $(OBJ) $(LDLIBS) $(LDFLAGS) > > =A0clean: > =A0 =A0 =A0 =A0-rm -rf $(OBJ) avp > %% > Note that "openal-config" is replaced by "pkg-config openal", I've also patched that. Thanks, Rene From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 09:49:24 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 53544106564A for ; Tue, 31 Aug 2010 09:49:24 +0000 (UTC) (envelope-from swell.k@gmail.com) Received: from mail-wy0-f182.google.com (mail-wy0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id D7AF08FC1A for ; Tue, 31 Aug 2010 09:49:23 +0000 (UTC) Received: by wyb33 with SMTP id 33so8937714wyb.13 for ; Tue, 31 Aug 2010 02:49:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:references :date:in-reply-to:message-id:user-agent:mime-version:content-type :content-transfer-encoding; bh=MrBpBUlpP54oOhX9QJJwX8n6uTwFV1/dpBbtoWSqjDM=; b=hw51iDRfOZXGKtisAfji+MrNrdFDq46OsjbnYE0Keq9f8G7RLlfRAahQrR9u/m6ZeC PIAXDNchQ3O8pJzJMlozkFC/oKUfVTeGopbDpx1YdODCwYJxTHJHSeW2ck7w/p78iJJS VSx5FTrjt4JuRBB9YfFxmoCXgY+CJS73j1UwU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type:content-transfer-encoding; b=UIIG3ESfPMZ87NSDzh13jS5O1S4/nc4Mk366/oM8opMJiALoAMnd1z308V3aTDhKMK g1FoS05nJePX8Se0i66UlZgxdp6Hv7gEyu6nb+oWth3UuJxnAMPG5K7S8WceRbiLHD0I eXrhBrHQPAgOGM0+Nqpac5vt1VHC6SOfldofg= Received: by 10.216.52.135 with SMTP id e7mr6013531wec.98.1283248162699; Tue, 31 Aug 2010 02:49:22 -0700 (PDT) Received: from localhost (h-83-15.A238.priv.bahnhof.se [212.116.83.15]) by mx.google.com with ESMTPS id u32sm5119737weq.11.2010.08.31.02.49.19 (version=SSLv3 cipher=RC4-MD5); Tue, 31 Aug 2010 02:49:21 -0700 (PDT) From: Anonymous To: =?utf-8?Q?Ren=C3=A9?= Ladan References: <86tymbjfen.fsf@gmail.com> Date: Tue, 31 Aug 2010 13:49:09 +0400 In-Reply-To: (=?utf-8?Q?=22Ren=C3=A9?= Ladan"'s message of "Tue, 31 Aug 2010 11:40:03 +0200") Message-ID: <86aao3jene.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Cc: stast@bsdportal.ru, freebsd ports Subject: Re: devel/sdl12 and gcc -m32 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 09:49:24 -0000 Ren=C3=A9 Ladan writes: >> -m32 is not supported yet, especially not by the ports tree. And even if >> you manage to compile sources it wouldn't link against 64bit libs. >> > Hmm ok, I'll add a NOT_FOR_ARCH / ONLY_FOR_ARCH to the port. ONLY_FOR_ARCHS/NOT_FOR_ARCHS set IGNORE, not BROKEN for the port. IIRC, tinderbox has -trybroken option in order to test whether the ports is *still* broken or not. > >> There is a way to compile 32bit ports on amd64 but it involves either >> using chroot() or different LOCALBASE. > > The wine approach. Nah, wine is mostly useful for running 32bit apps. And wine64 for running 64bit apps is still experimental. It's only makes sense for it to have IGNORE for non-i386 archs. From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 10:45:50 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7035710656B7; Tue, 31 Aug 2010 10:45:50 +0000 (UTC) (envelope-from zhoushuqun@gmail.com) Received: from mail-gx0-f182.google.com (mail-gx0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id 0814C8FC1A; Tue, 31 Aug 2010 10:45:49 +0000 (UTC) Received: by gxk24 with SMTP id 24so2835945gxk.13 for ; Tue, 31 Aug 2010 03:45:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:received:in-reply-to :references:from:date:message-id:subject:to:cc:content-type; bh=08hXsPcvWpHm3ZAtSA3fsZNO8UmHwdJxOG6gJfexTus=; b=ooOhCpGl6X80psX3W1QMcDeVGccjGudp3RhvJ86fkMqOoe/yjkV17qqA52bE4awntW bDkbMn95CAIj9V0ZM2xx/7Nen7VquGELi0otP7jPjgf2tMTciK+Ryfc8kLTltLqNPtVZ HutVsyDbEJgdNMZwhHVH6csbOE17pSKfLxxuQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=f4CqLgOE5RgtHEv7NdKMck/fjMS95Jvs3UnsAYoAq6DdEyKdFRjYOY6Fx5S0Ijg2PZ vzMoqE0HT86Z5vr6QlPm+H426WLbBdNKgkU/IDrCk6hErx0fFkGia8cfHjlDQ/XygdU6 vTXvSp8pKu9PQkR+ZaVfp2Tl80p1jglggxJzU= Received: by 10.220.89.30 with SMTP id c30mr3187615vcm.21.1283249668277; Tue, 31 Aug 2010 03:14:28 -0700 (PDT) MIME-Version: 1.0 Received: by 10.220.162.72 with HTTP; Tue, 31 Aug 2010 03:14:08 -0700 (PDT) In-Reply-To: <4C7C3456.2030500@FreeBSD.org> References: <4C7C3456.2030500@FreeBSD.org> From: Sutra Zhou Date: Tue, 31 Aug 2010 18:14:08 +0800 Message-ID: To: Matthias Andree Content-Type: text/plain; charset=UTF-8 Cc: ports@freebsd.org, java@freebsd.org Subject: Re: RFT: deskutils/sciplore-mindmapping X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 10:45:50 -0000 On Tue, Aug 31, 2010 at 6:44 AM, Matthias Andree wrote: > Greetings, > > I have create a new port for SciPlore Mind Mapping, a mind mapper/manager > with reference and PDF management (to integrate with JabRef, Mendeley, > BibTeX). The port requires Java 1.6. > > Since this is my first Java-related port, and I haven't all the related > tools installed, I'd like to request testing and feedback on the port. > > Please let me know if it works for you, what reference and/or PDF software > you've used, or if it fails, or if you spot something I can improve before > making this an official port. > > URL: http://home.pages.de/~mandree/freebsd/ - grab the .shar file and the > GnuPG signature, make sure the file wasn't tampered with, then type: > > cd /var/tmp > sh /path/to/sciplore-mindmapping.shar > cd sciplore-mindmapping > make install clean > > Thanks a lot. I works OK on my 8.0-RELEASE. From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 15:39:44 2010 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DE78410656A9 for ; Tue, 31 Aug 2010 15:39:44 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (builder.freebsd.org [IPv6:2001:4f8:fff6::4b]) by mx1.freebsd.org (Postfix) with ESMTP id CFEB58FC1B for ; Tue, 31 Aug 2010 15:39:44 +0000 (UTC) Received: from builder.freebsd.org (localhost [127.0.0.1]) by builder.freebsd.org (8.14.4/8.14.4) with ESMTP id o7VFdiYg074771 for ; Tue, 31 Aug 2010 15:39:44 GMT (envelope-from erwin@builder.freebsd.org) Received: (from erwin@localhost) by builder.freebsd.org (8.14.4/8.14.3/Submit) id o7VFdiTt074770 for ports@FreeBSD.org; Tue, 31 Aug 2010 15:39:44 GMT (envelope-from erwin) Date: Tue, 31 Aug 2010 15:39:44 GMT From: Erwin Lansing Message-Id: <201008311539.o7VFdiTt074770@builder.freebsd.org> To: ports@FreeBSD.org Cc: Subject: INDEX build failed for 6.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 15:39:44 -0000 INDEX build failed with errors: Generating INDEX-6 - please wait..pkg_info: not found pkg_info: not found Done. make_index: btpeer-0.2.1: no entry for /usr/ports/net/Sockets-devel Committers on the hook: avilla avl garga jadawin lth olgeni sylvio Most recent CVS update was: U MOVED U accessibility/ktts/Makefile U accessibility/ktts/pkg-message U accessibility/speech-dispatcher/Makefile U accessibility/speech-dispatcher/distinfo U accessibility/speech-dispatcher/pkg-plist U accessibility/speech-dispatcher/files/patch-config-Makefile.in U accessibility/speech-dispatcher/files/patch-config-clients-Makefile.in U accessibility/speech-dispatcher/files/patch-config-modules-Makefile.in U accessibility/speech-dispatcher/files/patch-configure U accessibility/speech-dispatcher/files/patch-src-server-speechd.h U audio/mhwaveedit/Makefile U audio/mhwaveedit/distinfo U chinese/Makefile U devel/p5-Log-Log4perl/Makefile U devel/p5-Log-Log4perl/distinfo U editors/rox-edit/Makefile U editors/rox-edit/distinfo U graphics/Makefile U misc/Makefile U net/Makefile U net/freerdp/Makefile U net/freerdp/distinfo U net/p5-POE-Component-Client-Keepalive/Makefile U net/p5-POE-Component-Client-Keepalive/distinfo U net/p5-POE-Component-Server-Twirc/Makefile U net/p5-POE-Component-Server-Twirc/distinfo U net/remmina/Makefile U net/remmina/distinfo U net/remmina/pkg-plist U net/remmina-applet/Makefile U net/remmina-applet/distinfo U net/remmina-applet/pkg-plist U net/remmina-plugin-i18n/pkg-plist U net/remmina-plugins/Makefile U net/remmina-plugins/distinfo U security/vuxml/vuln.xml U sysutils/usermin/Makefile U sysutils/usermin/distinfo U sysutils/webmin/Makefile U sysutils/webmin/distinfo U sysutils/webmin/files/patch-fsdump_freebsd-lib.pl U www/p5-POE-Component-Client-HTTP/Makefile U www/p5-POE-Component-Client-HTTP/distinfo From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 15:47:51 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 05F2D10656A3 for ; Tue, 31 Aug 2010 15:47:51 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-fx0-f54.google.com (mail-fx0-f54.google.com [209.85.161.54]) by mx1.freebsd.org (Postfix) with ESMTP id 571B68FC17 for ; Tue, 31 Aug 2010 15:47:49 +0000 (UTC) Received: by fxm4 with SMTP id 4so4689070fxm.13 for ; Tue, 31 Aug 2010 08:47:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :x-enigmail-version:content-type:content-transfer-encoding; bh=Gm34Lcdo/6HsVIstFZicRdN34U2GloVorzXZF7MYUVg=; b=wAsJ/H5XNG1TkcFN8ZIh49xa0tsl4RmFV48StaiqU6W7uvW2anrxk6/DOJLWPuBm6d XUN+4sEPcAXMyYL/PrBNAw32lQ/9CzgsXHHOkMaHg8UOno2MNMDdtM6lKWD8zDlmn5YK OH4IjUeikMvlUMgFlsOvRQTiXvdLbiuF0a+sk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; b=b+0zNGfOEho2jctW2JFqRVrI8qZ3SuLGttCiFIijwEm0AwPHCkdfEwUxWcTHicjSwX BjOLGNplLLNvk+c67betLL+b+RrrEynAVhl9VHDd0esZ+je6WhkzRQK8xJqjPg73GjF8 azQtG9/aFJJkBGBty40IRJMA6L2/z+andzdig= Received: by 10.223.126.84 with SMTP id b20mr5567652fas.98.1283269669050; Tue, 31 Aug 2010 08:47:49 -0700 (PDT) Received: from centel.dataix.local (adsl-99-181-137-20.dsl.klmzmi.sbcglobal.net [99.181.137.20]) by mx.google.com with ESMTPS id s20sm4031405faa.28.2010.08.31.08.47.46 (version=SSLv3 cipher=RC4-MD5); Tue, 31 Aug 2010 08:47:47 -0700 (PDT) Sender: "J. Hellenthal" Message-ID: <4C7D2421.2060609@DataIX.net> Date: Tue, 31 Aug 2010 11:47:45 -0400 From: "J. Hellenthal" User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.2.8) Gecko/20100806 Lightning/1.0b1 Thunderbird MIME-Version: 1.0 To: Sutra Zhou References: <4C7C3456.2030500@FreeBSD.org> In-Reply-To: X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org, java@freebsd.org, Matthias Andree Subject: Re: RFT: deskutils/sciplore-mindmapping X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 15:47:51 -0000 On 08/31/2010 06:14, Sutra Zhou wrote: > On Tue, Aug 31, 2010 at 6:44 AM, Matthias Andree wrote: >> Greetings, >> >> I have create a new port for SciPlore Mind Mapping, a mind mapper/manager >> with reference and PDF management (to integrate with JabRef, Mendeley, >> BibTeX). The port requires Java 1.6. >> >> Since this is my first Java-related port, and I haven't all the related >> tools installed, I'd like to request testing and feedback on the port. >> >> Please let me know if it works for you, what reference and/or PDF software >> you've used, or if it fails, or if you spot something I can improve before >> making this an official port. >> >> URL: http://home.pages.de/~mandree/freebsd/ - grab the .shar file and the >> GnuPG signature, make sure the file wasn't tampered with, then type: >> >> cd /var/tmp >> sh /path/to/sciplore-mindmapping.shar >> cd sciplore-mindmapping >> make install clean >> >> Thanks a lot. > > I works OK on my 8.0-RELEASE. Runs as expected on FreeBSD 8.1-STABLE. Java runs like shit, menu's for me have been wacked for some time with no seen fix in the future. I am starting to think its my minimal approach to X using Xmonad as a window manager but the last time I tried to get anyone to test and see if things worked! properly I had no replies. Would be nice to get software like this working but who knows. Other than the above, nice job... Submit & Commit! -- jhell,v From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 16:41:36 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6BBB410656A8 for ; Tue, 31 Aug 2010 16:41:36 +0000 (UTC) (envelope-from emss.mail@gmail.com) Received: from mail-ww0-f42.google.com (mail-ww0-f42.google.com [74.125.82.42]) by mx1.freebsd.org (Postfix) with ESMTP id E58928FC0A for ; Tue, 31 Aug 2010 16:41:35 +0000 (UTC) Received: by wwi14 with SMTP id 14so611364wwi.1 for ; Tue, 31 Aug 2010 09:41:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:received :x-virus-scanned:received:received:to:subject:from :x-operating-system:date:message-id:user-agent:mime-version :content-type:content-transfer-encoding; bh=NYcgDKrqEaJ1c//F4oEuGUIyvwQtws+wek6tprXkGTM=; b=TruwtZ/q3jTQgXbHRqUEcDhCVY+u9f+ZkeVsos70g4J7nWg1jrjkUvLUnbktmL7LqA OqZW/r6E28z2QnYOu/r44qy1VCFUjIBXqVAxNmoRBC3FDY/te5GO4pG+v2t29ys5aUc9 hpwflpzcHho431X+UB5vK81Q5vrp4UmHMG+T0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:x-virus-scanned:to:subject:from:x-operating-system:date :message-id:user-agent:mime-version:content-type :content-transfer-encoding; b=BnUZvS5I7lXom7MjE8MrJxwr1eyMeh31x+80djJ9vJ7M9LpLiKwnICb9EQ0ro0j0QZ yxfPxNW2ZahzZmnzW8/upWmQv0yOIgFT4N5icbswB2U/6+St97b458jbPrOqfr37s7eL pq4bBU6W2703QD4hGL9lAwB43VnBOE4Ybkk38= Received: by 10.216.71.85 with SMTP id q63mr6472691wed.53.1283271375045; Tue, 31 Aug 2010 09:16:15 -0700 (PDT) Received: from srvbsdfenssv.interne.associated-bears.org (LCaen-151-92-21-48.w217-128.abo.wanadoo.fr [217.128.200.48]) by mx.google.com with ESMTPS id u11sm5401179weq.7.2010.08.31.09.16.07 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 31 Aug 2010 09:16:09 -0700 (PDT) Sender: Eric Masson Received: from srvbsdfenssv.interne.associated-bears.org (localhost [127.0.0.1]) by srvbsdfenssv.interne.associated-bears.org (Postfix) with ESMTP id 3E1D61CF96 for ; Tue, 31 Aug 2010 18:16:05 +0200 (CEST) X-Virus-Scanned: amavisd-new at interne.associated-bears.org Received: from srvbsdfenssv.interne.associated-bears.org ([127.0.0.1]) by srvbsdfenssv.interne.associated-bears.org (srvbsdfenssv.interne.associated-bears.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 6FzDNk1jTdvB for ; Tue, 31 Aug 2010 18:15:58 +0200 (CEST) Received: by srvbsdfenssv.interne.associated-bears.org (Postfix, from userid 1001) id C50F21CD1C; Tue, 31 Aug 2010 18:15:58 +0200 (CEST) To: Mailing List FreeBSD Ports From: Eric Masson X-Operating-System: FreeBSD 8.1-RELEASE amd64 Date: Tue, 31 Aug 2010 18:15:58 +0200 Message-ID: <86mxs2lpvl.fsf@srvbsdfenssv.interne.associated-bears.org> User-Agent: Gnus/5.1008 (Gnus v5.10.8) XEmacs/21.5-b28 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: 8bit Cc: Subject: net/freeswitch-core X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 16:41:36 -0000 Hello, When building/installing net/freeswitch-core on an amd64 8.1-RELEASE, only the following modules are installed in /usr/local/lib/freeswitch/mod : emss@srvbsdfenssv:~> ll /usr/local/lib/freeswitch/mod/ total 288 -rwxr-xr-x 1 root wheel 1239 31 aoû 16:24 mod_amr.la -rwxr-xr-x 1 root wheel 41228 31 aoû 16:24 mod_amr.so -rwxr-xr-x 1 root wheel 1251 31 aoû 16:24 mod_amrwb.la -rwxr-xr-x 1 root wheel 41208 31 aoû 16:24 mod_amrwb.so -rwxr-xr-x 1 root wheel 1233 31 aoû 16:24 mod_bv.la -rwxr-xr-x 1 root wheel 139239 31 aoû 16:24 mod_bv.so -rwxr-xr-x 1 root wheel 1263 31 aoû 16:24 mod_cdr_csv.la -rwxr-xr-x 1 root wheel 61225 31 aoû 16:24 mod_cdr_csv.so Modules like mod_sofia, mod_console and many others are missing (on i386, they're available, as tested on a i386 8.1-RELEASE). Has anyone an idea regarding this problem, please ? Script of the build is available here : http://emss.free.fr/contents/informatique/FreeBSD-amd64-FreeSWITCH/fs_build.7z Regards Éric Masson -- Pourriez vous me dire comment réaliser un fichier autoexecutable ou plus presisement le fichier .exe que l'on met dedans ! -+- T in Guide du Neuneu Usenet : autoexécution de neuneu -+- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 16:57:50 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D9D0210656B7 for ; Tue, 31 Aug 2010 16:57:50 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from qmta09.westchester.pa.mail.comcast.net (qmta09.westchester.pa.mail.comcast.net [76.96.62.96]) by mx1.freebsd.org (Postfix) with ESMTP id 864938FC1B for ; Tue, 31 Aug 2010 16:57:44 +0000 (UTC) Received: from omta21.westchester.pa.mail.comcast.net ([76.96.62.72]) by qmta09.westchester.pa.mail.comcast.net with comcast id 0ydm1f0011ZXKqc594xkWa; Tue, 31 Aug 2010 16:57:44 +0000 Received: from koitsu.dyndns.org ([98.248.41.155]) by omta21.westchester.pa.mail.comcast.net with comcast id 14xj1f00T3LrwQ23h4xku7; Tue, 31 Aug 2010 16:57:44 +0000 Received: by icarus.home.lan (Postfix, from userid 1000) id B71EB9B425; Tue, 31 Aug 2010 09:57:42 -0700 (PDT) Date: Tue, 31 Aug 2010 09:57:42 -0700 From: Jeremy Chadwick To: Eric Masson Message-ID: <20100831165742.GA75257@icarus.home.lan> References: <86mxs2lpvl.fsf@srvbsdfenssv.interne.associated-bears.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <86mxs2lpvl.fsf@srvbsdfenssv.interne.associated-bears.org> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: Mailing List FreeBSD Ports Subject: Re: net/freeswitch-core X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 16:57:50 -0000 On Tue, Aug 31, 2010 at 06:15:58PM +0200, Eric Masson wrote: > Hello, > > When building/installing net/freeswitch-core on an amd64 8.1-RELEASE, > only the following modules are installed in > /usr/local/lib/freeswitch/mod : > emss@srvbsdfenssv:~> ll /usr/local/lib/freeswitch/mod/ > total 288 > -rwxr-xr-x 1 root wheel 1239 31 aoû 16:24 mod_amr.la > -rwxr-xr-x 1 root wheel 41228 31 aoû 16:24 mod_amr.so > -rwxr-xr-x 1 root wheel 1251 31 aoû 16:24 mod_amrwb.la > -rwxr-xr-x 1 root wheel 41208 31 aoû 16:24 mod_amrwb.so > -rwxr-xr-x 1 root wheel 1233 31 aoû 16:24 mod_bv.la > -rwxr-xr-x 1 root wheel 139239 31 aoû 16:24 mod_bv.so > -rwxr-xr-x 1 root wheel 1263 31 aoû 16:24 mod_cdr_csv.la > -rwxr-xr-x 1 root wheel 61225 31 aoû 16:24 mod_cdr_csv.so > > Modules like mod_sofia, mod_console and many others are missing (on > i386, they're available, as tested on a i386 8.1-RELEASE). > > Has anyone an idea regarding this problem, please ? > > Script of the build is available here : > http://emss.free.fr/contents/informatique/FreeBSD-amd64-FreeSWITCH/fs_build.7z Looks like the entire build, and installation, bombs out once it tries to deal with something called "celt-0.7.1.tar.gz" (mod_celt). Taken from the build script: Creating mod_cdr_csv.la... making all mod_celt file:///vol0/ports/distfiles/celt-0.7.1.tar.gz: Schéma non supporté «file». cannot find celt-0.7.1.tar.gz gmake[5]: *** [/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libs/celt-0.7.1] Erreur 1 gmake[4]: *** [all] Erreur 1 gmake[3]: *** [mod_celt-all] Erreur 1 gmake[2]: *** [all-recursive] Erreur 1 ===> Installing for freeswitch-core-1.0.6_4 [...snip...] installing mod_cdr_csv.la quiet_libtool: install: warning: relinking `mod_cdr_csv.la' making install mod_celt file:///vol0/ports/distfiles/celt-0.7.1.tar.gz: Schéma non supporté «file». cannot find celt-0.7.1.tar.gz gmake[5]: *** [/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libs/celt-0.7.1] Erreur 1 gmake[4]: *** [install] Erreur 1 gmake[3]: *** [mod_celt-install] Erreur 1 gmake[2]: *** [install-recursive] Erreur 1 -- | Jeremy Chadwick jdc@parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, USA | | Making life hard for others since 1977. PGP: 4BD6C0CB | From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 17:17:36 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E9C5E10656B3; Tue, 31 Aug 2010 17:17:36 +0000 (UTC) (envelope-from ade@freebsd.org) Received: from panix.lovett.com (panix.lovett.com [166.84.7.128]) by mx1.freebsd.org (Postfix) with ESMTP id C137A8FC0A; Tue, 31 Aug 2010 17:17:36 +0000 (UTC) Received: from cpe-66-68-128-204.austin.res.rr.com ([66.68.128.204] helo=[172.16.32.100]) by panix.lovett.com with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.72 (FreeBSD)) (envelope-from ) id 1OqUSl-0003kk-MY; Tue, 31 Aug 2010 17:17:35 +0000 Mime-Version: 1.0 (Apple Message framework v1081) Content-Type: text/plain; charset=us-ascii From: Ade Lovett In-Reply-To: Date: Tue, 31 Aug 2010 12:17:24 -0500 Content-Transfer-Encoding: quoted-printable Message-Id: References: To: Garrett Cooper X-Mailer: Apple Mail (2.1081) Cc: ports , bug-followup@freebsd.org Subject: Re: ports/146754: [patch] new port: add devel/atf framework to ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 17:17:37 -0000 On Aug 29, 2010, at 20:00 , Garrett Cooper wrote: > Found the reference. The stuff that gets installed under > ${PREFIX}/tests (to some degree) are actually executables > ($(execdir)), and some are data files ($(datarootdir)). Woo. Lots of fun there. :) As much as I hate committing a port that has known issues (in this case = hier(7) breakage), I can certainly see the value in having it in the = tree. So. Here's the deal. I'll go ahead and commit it, adding a note that = it currently isn't hier(7) safe (just a note, not an = IGNORE/BROKEN/whatever). However, if in 6 months, or two version jumps, whichever comes first, it = is still not heir(7) safe, then I _will_ mark it BROKEN. Unless anyone else can thing of an utter show-stopper, this would seem = to be the best compromise. -aDe From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 17:20:51 2010 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F151E10656A8; Tue, 31 Aug 2010 17:20:51 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from unimail.uni-dortmund.de (mx1.HRZ.Uni-Dortmund.DE [129.217.128.51]) by mx1.freebsd.org (Postfix) with ESMTP id 8420A8FC13; Tue, 31 Aug 2010 17:20:51 +0000 (UTC) Received: from [131.234.21.116] (baloo.cs.uni-paderborn.de [131.234.21.116]) (authenticated bits=0) by unimail.uni-dortmund.de (8.14.4/8.14.4) with ESMTP id o7VH1a0X001370 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NOT); Tue, 31 Aug 2010 19:01:37 +0200 (CEST) Message-ID: <4C7D356E.7070705@FreeBSD.org> Date: Tue, 31 Aug 2010 19:01:34 +0200 From: Matthias Andree User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; de; rv:1.9.2.8) Gecko/20100802 Lightning/1.0b2 Thunderbird/3.1.2 MIME-Version: 1.0 To: "J. Hellenthal" References: <4C7C3456.2030500@FreeBSD.org> <4C7D2421.2060609@DataIX.net> In-Reply-To: <4C7D2421.2060609@DataIX.net> X-Enigmail-Version: 1.1.1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: ports@FreeBSD.org, java@FreeBSD.org Subject: Re: RFT: deskutils/sciplore-mindmapping X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 17:20:52 -0000 Am 31.08.2010 17:47, schrieb J. Hellenthal: > Runs as expected on FreeBSD 8.1-STABLE. Java runs like shit, menu's for > me have been wacked for some time with no seen fix in the future. I am > starting to think its my minimal approach to X using Xmonad as a window > manager but the last time I tried to get anyone to test and see if > things worked! properly I had no replies. Would be nice to get software > like this working but who knows. Hi J, java/jdk16 seems to work reasonably well for me, where the Xorg stuff was automatically installed as part of a gnome2 desktop dependency for me, menus work seemingly OK (AMD Radeon HD 3300 two-generations-past chipset graphics here). Java is not blazingly fast (compared to Ubuntu Linux on the same hardware, I'M using FreeBSD 8.1-STABLE amd64), but then again ZFS is the bigger hog on performance currently. > Other than the above, nice job... Submit & Commit! Thanks. I'm a ports committer though, so you won't see an ephemeral PR - and I am still awaiting a bit more feedback (I got test promises in private mail) but might commit Thursday night (European time) then. I'd also appreciate if some of the java@ team could comment on the coding style of the port's Makefile/pkg-* files (unless someone already did and I didn't reckon that). Best regards Matthias From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 17:40:03 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 67D321065670 for ; Tue, 31 Aug 2010 17:40:03 +0000 (UTC) (envelope-from jhs@berklix.com) Received: from tower.berklix.org (tower.berklix.org [83.236.223.114]) by mx1.freebsd.org (Postfix) with ESMTP id CE6968FC16 for ; Tue, 31 Aug 2010 17:40:02 +0000 (UTC) Received: from park.js.berklix.net (p549A5043.dip.t-dialin.net [84.154.80.67]) (authenticated bits=0) by tower.berklix.org (8.14.2/8.14.2) with ESMTP id o7VHdtvO007067; Tue, 31 Aug 2010 17:39:58 GMT (envelope-from jhs@berklix.com) Received: from fire.js.berklix.net (fire.js.berklix.net [192.168.91.41]) by park.js.berklix.net (8.13.8/8.13.8) with ESMTP id o7VHdqSx063980; Tue, 31 Aug 2010 19:39:53 +0200 (CEST) (envelope-from jhs@berklix.com) Received: from fire.js.berklix.net (localhost [127.0.0.1]) by fire.js.berklix.net (8.14.3/8.14.3) with ESMTP id o7VHdgxW048479; Tue, 31 Aug 2010 19:39:47 +0200 (CEST) (envelope-from jhs@fire.js.berklix.net) Received: (from jhs@localhost) by fire.js.berklix.net (8.14.3/8.14.3/Submit) id o7VHdWDY048477; Tue, 31 Aug 2010 19:39:32 +0200 (CEST) (envelope-from jhs) Date: Tue, 31 Aug 2010 19:39:32 +0200 (CEST) Message-Id: <201008311739.o7VHdWDY048477@fire.js.berklix.net> To: FreeBSD-gnats-submit@freebsd.org From: "Julian H. Stacey" X-send-pr-version: 3.113 X-GNATS-Notify: Cc: ports@freebsd.org, "Julian H. Stacey" Subject: current ports Mk make fetch calls wget fails to support schemes X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Julian H. Stacey" List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 17:40:03 -0000 >Submitter-Id: current-users >Originator: Julian H. Stacey >Organization: http://berklix.com BSD Linux Unix Consultancy, Munich/Muenchen. >Confidential: no >Synopsis: current ports Mk make fetch calls wget fails to support schemes >Severity: serious >Priority: high >Category: ports >Class: sw-bug >Release: current >Environment: System: FreeBSD fire.js.berklix.net 8.0-RELEASE FreeBSD 8.0-RELEASE #0: Mon Jul 12 00:59:43 CEST 2010 jhs@fire.js.berklix.net:/usr1/src/sys/amd64/compile/FIRE64.small amd64 >Description: Using a base of 8.0-RELEASE & cd /pri/FreeBSD/branches/-current/ports setenv PORTSDIR `/bin/pwd` cd sysutils/tarsnap make fetch Mk/ has regressed in current & now fails to fetch URLS of type file:///usr/bla/ /usr/bla/ with error: /usr/home/jhs/tmp/tarsnap-autoconf-1.0.27.tgz: Unsupported scheme. file:///host/gate/usr/home/jhs/tmp/tarsnap-autoconf-1.0.27.tgz: \ Unsupported scheme. >From make.conf fragment: DIS_LOCAL+= /usr/home/jhs/tmp/distfiles/ DIS_LOCAL+= file:///usr/home/jhs/tmp/distfiles/ MASTER_SITE_OVERRIDE= ${DIS_LOCAL} make fetch used to call src/ BSD licensed fetch it now calls FSF GNU licensed wget, You can see why it fails with cd sysutils/tarsnap ; make fetch-list Even after one has found where Unsupported scheme comes from & tried to work round it with make.conf assertion of FETCH_BINARY=/usr/bin/fetch as shown in bsd.port.mk /usr/src/usr.bin/fetch is still not used. >How-To-Repeat: See above >Fix: Revert Mk invocation back to longer invoke FSF/GNU licensed wget & instead again invoke BSD licensed src/ provided fetch, until such time as wget might be capable of offering all schemes BSD fetch already does. From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 17:40:43 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 746F010656A5; Tue, 31 Aug 2010 17:40:43 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-fx0-f54.google.com (mail-fx0-f54.google.com [209.85.161.54]) by mx1.freebsd.org (Postfix) with ESMTP id 98BB48FC21; Tue, 31 Aug 2010 17:40:42 +0000 (UTC) Received: by fxm4 with SMTP id 4so4819894fxm.13 for ; Tue, 31 Aug 2010 10:40:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :x-enigmail-version:content-type:content-transfer-encoding; bh=277MSVFY02Ww4OoKM9Ag9uRkDyaoDx/0K6DAM1wse58=; b=mct33JZMVODBcQHB1HDpgGNGPYlsKEXO+xdB/YGbYq4GGUsMn56AouZVa6DReE5q+S SR67IWc+h8/m6Wt+orLTX5tO23+fIMrckmkGRUYX6EEY4Ks3vhK+W/ujbtTY2QSPppUM 6ZC4ANgfZ9vbvxe2RCFpdjZ8slX2q0WxnN9QQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; b=EmzYgAyUHfPvR4x0oudq152gFcAuwIi2TnyU9AxzCvHIEO7wLclVbHrh+Kq6bUH9QZ E9J7SFNJi/VDjvBIzO5TWJRRlCQaA4Ck+nCm+AtWY3aUkqWNMUl23g6HhPyywbnFaYKz WWqRiMjE6VCXhR+4cDRnbdsXA/yrVdI+a8QQo= Received: by 10.223.112.212 with SMTP id x20mr4294554fap.89.1283276441502; Tue, 31 Aug 2010 10:40:41 -0700 (PDT) Received: from centel.dataix.local (adsl-99-181-137-20.dsl.klmzmi.sbcglobal.net [99.181.137.20]) by mx.google.com with ESMTPS id t6sm4111105faa.27.2010.08.31.10.40.39 (version=SSLv3 cipher=RC4-MD5); Tue, 31 Aug 2010 10:40:40 -0700 (PDT) Sender: "J. Hellenthal" Message-ID: <4C7D3E96.1090606@DataIX.net> Date: Tue, 31 Aug 2010 13:40:38 -0400 From: jhell User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.2.8) Gecko/20100806 Lightning/1.0b1 Thunderbird MIME-Version: 1.0 To: Matthias Andree References: <4C7C3456.2030500@FreeBSD.org> <4C7D2421.2060609@DataIX.net> <4C7D356E.7070705@FreeBSD.org> In-Reply-To: <4C7D356E.7070705@FreeBSD.org> X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org, java@freebsd.org Subject: Re: RFT: deskutils/sciplore-mindmapping X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 17:40:43 -0000 On 08/31/2010 13:01, Matthias Andree wrote: > Am 31.08.2010 17:47, schrieb J. Hellenthal: > >> Runs as expected on FreeBSD 8.1-STABLE. Java runs like shit, menu's for >> me have been wacked for some time with no seen fix in the future. I am >> starting to think its my minimal approach to X using Xmonad as a window >> manager but the last time I tried to get anyone to test and see if >> things worked! properly I had no replies. Would be nice to get software >> like this working but who knows. > > Hi J, > > java/jdk16 seems to work reasonably well for me, where the Xorg stuff was > automatically installed as part of a gnome2 desktop dependency for me, menus > work seemingly OK (AMD Radeon HD 3300 two-generations-past chipset graphics here). > > Java is not blazingly fast (compared to Ubuntu Linux on the same hardware, I'M > using FreeBSD 8.1-STABLE amd64), but then again ZFS is the bigger hog on > performance currently. > >> Other than the above, nice job... Submit & Commit! > > Thanks. I'm a ports committer though, so you won't see an ephemeral PR - and I > am still awaiting a bit more feedback (I got test promises in private mail) but > might commit Thursday night (European time) then. > > > I'd also appreciate if some of the java@ team could comment on the coding style > of the port's Makefile/pkg-* files (unless someone already did and I didn't > reckon that). > > Best regards > Matthias I just patched up my xmonad. Just for reference the referring URL to the fix is here: http://bit.ly/cZt3UX to make Java act correctly in a non-re-parenting Window Manager. I am in a way shocked that they knew about this back at 0.8 and were up to 0.9 now with no fix... Sigh... I have not looked into this until now that I saw that you were working on SCIPlore very useful utility small and faster than Freemind in a lot of ways. Anyway... Thanks! Regards, -- jhell,v From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 17:56:13 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CDABE1065675 for ; Tue, 31 Aug 2010 17:56:13 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from qmta12.westchester.pa.mail.comcast.net (qmta12.westchester.pa.mail.comcast.net [76.96.59.227]) by mx1.freebsd.org (Postfix) with ESMTP id 79F6F8FC13 for ; Tue, 31 Aug 2010 17:56:13 +0000 (UTC) Received: from omta20.westchester.pa.mail.comcast.net ([76.96.62.71]) by qmta12.westchester.pa.mail.comcast.net with comcast id 10dz1f00F1YDfWL5C5wDNH; Tue, 31 Aug 2010 17:56:13 +0000 Received: from koitsu.dyndns.org ([98.248.41.155]) by omta20.westchester.pa.mail.comcast.net with comcast id 15wB1f0073LrwQ23g5wCAS; Tue, 31 Aug 2010 17:56:13 +0000 Received: by icarus.home.lan (Postfix, from userid 1000) id 63F549B425; Tue, 31 Aug 2010 10:56:10 -0700 (PDT) Date: Tue, 31 Aug 2010 10:56:10 -0700 From: Jeremy Chadwick To: "Julian H. Stacey" Message-ID: <20100831175610.GA76534@icarus.home.lan> References: <201008311739.o7VHdWDY048477@fire.js.berklix.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201008311739.o7VHdWDY048477@fire.js.berklix.net> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: ports@freebsd.org, FreeBSD-gnats-submit@freebsd.org Subject: Re: current ports Mk make fetch calls wget fails to support schemes X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 17:56:13 -0000 On Tue, Aug 31, 2010 at 07:39:32PM +0200, Julian H. Stacey wrote: > >Submitter-Id: current-users > >Originator: Julian H. Stacey > >Organization: http://berklix.com BSD Linux Unix Consultancy, Munich/Muenchen. > >Confidential: no > >Synopsis: current ports Mk make fetch calls wget fails to support schemes > >Severity: serious > >Priority: high > >Category: ports > >Class: sw-bug > >Release: current > >Environment: > System: FreeBSD fire.js.berklix.net 8.0-RELEASE FreeBSD 8.0-RELEASE #0: Mon Jul 12 00:59:43 CEST 2010 jhs@fire.js.berklix.net:/usr1/src/sys/amd64/compile/FIRE64.small amd64 > > > > >Description: > > Using a base of 8.0-RELEASE & > cd /pri/FreeBSD/branches/-current/ports > setenv PORTSDIR `/bin/pwd` > cd sysutils/tarsnap > make fetch > > Mk/ has regressed in current & now fails to fetch URLS of type > file:///usr/bla/ > /usr/bla/ > with error: > /usr/home/jhs/tmp/tarsnap-autoconf-1.0.27.tgz: Unsupported scheme. > file:///host/gate/usr/home/jhs/tmp/tarsnap-autoconf-1.0.27.tgz: \ > Unsupported scheme. > > >From make.conf fragment: > DIS_LOCAL+= /usr/home/jhs/tmp/distfiles/ > DIS_LOCAL+= file:///usr/home/jhs/tmp/distfiles/ > MASTER_SITE_OVERRIDE= ${DIS_LOCAL} > > make fetch used to call src/ BSD licensed fetch > it now calls FSF GNU licensed wget, > You can see why it fails with > cd sysutils/tarsnap ; make fetch-list > > Even after one has found where > Unsupported scheme > comes from & tried to work round it with make.conf assertion of > FETCH_BINARY=/usr/bin/fetch > as shown in bsd.port.mk > /usr/src/usr.bin/fetch is still not used. > > > >How-To-Repeat: > See above > > >Fix: > > Revert Mk invocation back to longer invoke FSF/GNU licensed > wget & instead again invoke BSD licensed src/ provided fetch, > until such time as wget might be capable of offering all > schemes BSD fetch already does. Hmm... Can't reproduce it here, but this is now the 2nd report of this problem to hit -ports. # uname -a FreeBSD icarus.home.lan 8.1-STABLE FreeBSD 8.1-STABLE #0: Mon Aug 2 07:35:23 PDT 2010 root@icarus.home.lan:/usr/obj/usr/src/sys/X7SBA_RELENG_8_amd64 amd64 # cd /usr/ports/sysutils/tarsnap # make fetch ===> License check disabled, port has not defined LICENSE ===> tarsnap-1.0.27 depends on file: /usr/local/bin/wget - found => tarsnap-autoconf-1.0.27.tgz doesn't seem to exist in /usr/ports/distfiles/. => Attempting to fetch from https://www.tarsnap.com/download/. --2010-08-31 10:54:32-- https://www.tarsnap.com/download/tarsnap-autoconf-1.0.27.tgz Resolving www.tarsnap.com... 208.79.82.75 Connecting to www.tarsnap.com|208.79.82.75|:443... connected. WARNING: cannot verify www.tarsnap.com's certificate, issued by `/C=US/ST=Arizona/L=Scottsdale/O=GoDaddy.com, Inc./OU=http://certificates.godaddy.com/repository/CN=Go Daddy Secure Certification Authority/serialNumber=07969287': Self-signed certificate encountered. HTTP request sent, awaiting response... 200 OK Length: 587420 (574K) [application/x-gzip] Saving to: `tarsnap-autoconf-1.0.27.tgz' 100%[==========================================================================================>] 587,420 596K/s in 1.0s 2010-08-31 10:54:34 (596 KB/s) - `tarsnap-autoconf-1.0.27.tgz' saved [587420/587420] # grep -ri wget /usr/ports/Mk # My ports tree was last updated a couple hours ago. I can confirm that GNU wget doesn't support the file:/// URI and does return "unsupported scheme". -- | Jeremy Chadwick jdc@parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, USA | | Making life hard for others since 1977. PGP: 4BD6C0CB | From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 18:25:14 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4A0C110656A8 for ; Tue, 31 Aug 2010 18:25:14 +0000 (UTC) (envelope-from emss.mail@gmail.com) Received: from mail-ww0-f50.google.com (mail-ww0-f50.google.com [74.125.82.50]) by mx1.freebsd.org (Postfix) with ESMTP id 9BB418FC18 for ; Tue, 31 Aug 2010 18:25:13 +0000 (UTC) Received: by wwb34 with SMTP id 34so7250202wwb.31 for ; Tue, 31 Aug 2010 11:25:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:received :x-virus-scanned:received:received:to:cc:subject:from:in-reply-to :references:x-operating-system:date:message-id:user-agent :mime-version:content-type; bh=a7HN8I56O2uw/UPlCEJceSaUbRXus+IfJ7g5x/w9UIE=; b=syT1F6NDuWIuCY/9p5aoUbOUWVa7y71SdZ8jwn9IP9dgDY85Xw0NdLWYNKsnL1J0DV IhKR/saCYEMJHbNBe++0TDlsEy5/NWu2HfthSEB8ZSxAzEYH9r11zyA39BIbhC9THFqX azTmEb5/TSw8VNgNLXCDA06GJyiyor2vYjYuA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:x-virus-scanned:to:cc:subject:from:in-reply-to:references :x-operating-system:date:message-id:user-agent:mime-version :content-type; b=uYSiNoUHo8T4vIMF9Ip7V6yMUavWU4Gdq9iaW8pdWq/0yzOuQaGJqJ28yewseQP+p8 OGadzTZRZ7s2XcEPWOD//7JrKjVMwyC+9o0gHqhoyrhuY4bJcrjWfPyJ/KAgTu/0pi3+ 4Zx4WnCUyYxyPF2cAIu7HAC5AoYryy3R2TVb0= Received: by 10.227.136.2 with SMTP id p2mr6524879wbt.215.1283279112259; Tue, 31 Aug 2010 11:25:12 -0700 (PDT) Received: from srvbsdfenssv.interne.associated-bears.org (LCaen-151-92-21-48.w217-128.abo.wanadoo.fr [217.128.200.48]) by mx.google.com with ESMTPS id l55sm5494051weq.41.2010.08.31.11.25.09 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 31 Aug 2010 11:25:10 -0700 (PDT) Sender: Eric Masson Received: from srvbsdfenssv.interne.associated-bears.org (localhost [127.0.0.1]) by srvbsdfenssv.interne.associated-bears.org (Postfix) with ESMTP id 7B5E51D11C; Tue, 31 Aug 2010 20:25:07 +0200 (CEST) X-Virus-Scanned: amavisd-new at interne.associated-bears.org Received: from srvbsdfenssv.interne.associated-bears.org ([127.0.0.1]) by srvbsdfenssv.interne.associated-bears.org (srvbsdfenssv.interne.associated-bears.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0fOeH-1FbajR; Tue, 31 Aug 2010 20:25:02 +0200 (CEST) Received: by srvbsdfenssv.interne.associated-bears.org (Postfix, from userid 1001) id CB7E01D12F; Tue, 31 Aug 2010 20:25:02 +0200 (CEST) To: Jeremy Chadwick From: Eric Masson In-Reply-To: <20100831165742.GA75257@icarus.home.lan> (Jeremy Chadwick's message of "Tue, 31 Aug 2010 09:57:42 -0700") References: <86mxs2lpvl.fsf@srvbsdfenssv.interne.associated-bears.org> <20100831165742.GA75257@icarus.home.lan> X-Operating-System: FreeBSD 8.1-RELEASE amd64 Date: Tue, 31 Aug 2010 20:25:02 +0200 Message-ID: <864oeaprlt.fsf@srvbsdfenssv.interne.associated-bears.org> User-Agent: Gnus/5.1008 (Gnus v5.10.8) XEmacs/21.5-b28 (berkeley-unix) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Cc: Mailing List FreeBSD Ports Subject: Re: net/freeswitch-core X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 18:25:14 -0000 --=-=-= Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: 8bit Jeremy Chadwick writes: Hi Jeremy, > Looks like the entire build, and installation, bombs out once it tries > to deal with something called "celt-0.7.1.tar.gz" (mod_celt). Taken > from the build script: Ok, I can reproduce the problem in fs source tree on my box, gmake -d in mod_celt directory does bomb the same way (locale settings removed to get vanilla error messages) file:///vol0/ports/distfiles/celt-0.7.1.tar.gz: Unsupported scheme `file'. cannot find celt-0.7.1.tar.gz Running gmake -d doesn't enlighten me about the possible cause of the problem (output attached), maybe I'm missing something obvious... Regards Éric Masson --=-=-= Content-Disposition: attachment; filename=fs_build_celt.txt Script started on Tue Aug 31 20:08:56 201 GNU Make 3.81 Copyright (C) 2006 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. This program built for amd64-portbld-freebsd8.1 Reading makefiles... Reading makefile `Makefile'... Reading makefile `../../../../build/modmake.rules' (search path) (no ~ expansion)... Updating makefiles.... Considering target file `../../../../build/modmake.rules'. Looking for an implicit rule for `../../../../build/modmake.rules'. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/modmake.rules.c'. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/modmake.rules.lo'. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/modmake.rules.o'. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/modmake.rules.cpp'. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/modmake.rules,v'. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/RCS/modmake.rules,v'. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/RCS/modmake.rules'. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/s.modmake.rules'. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/SCCS/s.modmake.rules'. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/modmake.rules.c'. Looking for a rule with intermediate file `../../../../build/modmake.rules.c'. Avoiding implicit rule recursion. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/modmake.rules.w'. Trying pattern rule with stem `modmake.rules.c'. Trying implicit prerequisite `../../../../build/modmake.rules.c,v'. Trying pattern rule with stem `modmake.rules.c'. Trying implicit prerequisite `../../../../build/RCS/modmake.rules.c,v'. Trying pattern rule with stem `modmake.rules.c'. Trying implicit prerequisite `../../../../build/RCS/modmake.rules.c'. Trying pattern rule with stem `modmake.rules.c'. Trying implicit prerequisite `../../../../build/s.modmake.rules.c'. Trying pattern rule with stem `modmake.rules.c'. Trying implicit prerequisite `../../../../build/SCCS/s.modmake.rules.c'. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/modmake.rules.w'. Looking for a rule with intermediate file `../../../../build/modmake.rules.w'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `modmake.rules.w'. Trying implicit prerequisite `../../../../build/modmake.rules.w,v'. Trying pattern rule with stem `modmake.rules.w'. Trying implicit prerequisite `../../../../build/RCS/modmake.rules.w,v'. Trying pattern rule with stem `modmake.rules.w'. Trying implicit prerequisite `../../../../build/RCS/modmake.rules.w'. Trying pattern rule with stem `modmake.rules.w'. Trying implicit prerequisite `../../../../build/s.modmake.rules.w'. Trying pattern rule with stem `modmake.rules.w'. Trying implicit prerequisite `../../../../build/SCCS/s.modmake.rules.w'. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/modmake.rules.lo'. Looking for a rule with intermediate file `../../../../build/modmake.rules.lo'. Avoiding implicit rule recursion. Trying pattern rule with stem `modmake.rules'. Rejecting impossible implicit prerequisite `../../../../build/modmake.rules.c'. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/modmake.rules.cpp'. Trying pattern rule with stem `modmake.rules.lo'. Trying implicit prerequisite `../../../../build/modmake.rules.lo,v'. Trying pattern rule with stem `modmake.rules.lo'. Trying implicit prerequisite `../../../../build/RCS/modmake.rules.lo,v'. Trying pattern rule with stem `modmake.rules.lo'. Trying implicit prerequisite `../../../../build/RCS/modmake.rules.lo'. Trying pattern rule with stem `modmake.rules.lo'. Trying implicit prerequisite `../../../../build/s.modmake.rules.lo'. Trying pattern rule with stem `modmake.rules.lo'. Trying implicit prerequisite `../../../../build/SCCS/s.modmake.rules.lo'. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/modmake.rules.cpp'. Looking for a rule with intermediate file `../../../../build/modmake.rules.cpp'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `modmake.rules.cpp'. Trying implicit prerequisite `../../../../build/modmake.rules.cpp,v'. Trying pattern rule with stem `modmake.rules.cpp'. Trying implicit prerequisite `../../../../build/RCS/modmake.rules.cpp,v'. Trying pattern rule with stem `modmake.rules.cpp'. Trying implicit prerequisite `../../../../build/RCS/modmake.rules.cpp'. Trying pattern rule with stem `modmake.rules.cpp'. Trying implicit prerequisite `../../../../build/s.modmake.rules.cpp'. Trying pattern rule with stem `modmake.rules.cpp'. Trying implicit prerequisite `../../../../build/SCCS/s.modmake.rules.cpp'. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/modmake.rules.o'. Looking for a rule with intermediate file `../../../../build/modmake.rules.o'. Avoiding implicit rule recursion. Trying pattern rule with stem `modmake.rules'. Rejecting impossible implicit prerequisite `../../../../build/modmake.rules.c'. Trying pattern rule with stem `modmake.rules'. Rejecting impossible implicit prerequisite `../../../../build/modmake.rules.cpp'. Trying pattern rule with stem `modmake.rules.o'. Trying implicit prerequisite `../../../../build/modmake.rules.o,v'. Trying pattern rule with stem `modmake.rules.o'. Trying implicit prerequisite `../../../../build/RCS/modmake.rules.o,v'. Trying pattern rule with stem `modmake.rules.o'. Trying implicit prerequisite `../../../../build/RCS/modmake.rules.o'. Trying pattern rule with stem `modmake.rules.o'. Trying implicit prerequisite `../../../../build/s.modmake.rules.o'. Trying pattern rule with stem `modmake.rules.o'. Trying implicit prerequisite `../../../../build/SCCS/s.modmake.rules.o'. Trying pattern rule with stem `modmake.rules'. Rejecting impossible implicit prerequisite `../../../../build/modmake.rules.cpp'. No implicit rule found for `../../../../build/modmake.rules'. Finished prerequisites of target file `../../../../build/modmake.rules'. No need to remake target `../../../../build/modmake.rules'. Considering target file `Makefile'. Finished prerequisites of target file `Makefile'. No need to remake target `Makefile'. Updating goal targets.... Considering target file `all'. File `all' does not exist. Pruning file `Makefile'. Finished prerequisites of target file `all'. Must remake target `all'. Putting child 0x800c302e0 (all) PID 65732 on the chain. Live child 0x800c302e0 (all) PID 65732 GNU Make 3.81 Copyright (C) 2006 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. This program built for amd64-portbld-freebsd8.1 Reading makefiles... Reading makefile `Makefile'... Reading makefile `../../../../build/modmake.rules' (search path) (no ~ expansion)... Updating makefiles.... Considering target file `../../../../build/modmake.rules'. Looking for an implicit rule for `../../../../build/modmake.rules'. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/modmake.rules.c'. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/modmake.rules.o'. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/modmake.rules.cpp'. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/modmake.rules,v'. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/RCS/modmake.rules,v'. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/RCS/modmake.rules'. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/s.modmake.rules'. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/SCCS/s.modmake.rules'. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/modmake.rules.c'. Looking for a rule with intermediate file `../../../../build/modmake.rules.c'. Avoiding implicit rule recursion. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/modmake.rules.w'. Trying pattern rule with stem `modmake.rules.c'. Trying implicit prerequisite `../../../../build/modmake.rules.c,v'. Trying pattern rule with stem `modmake.rules.c'. Trying implicit prerequisite `../../../../build/RCS/modmake.rules.c,v'. Trying pattern rule with stem `modmake.rules.c'. Trying implicit prerequisite `../../../../build/RCS/modmake.rules.c'. Trying pattern rule with stem `modmake.rules.c'. Trying implicit prerequisite `../../../../build/s.modmake.rules.c'. Trying pattern rule with stem `modmake.rules.c'. Trying implicit prerequisite `../../../../build/SCCS/s.modmake.rules.c'. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/modmake.rules.w'. Looking for a rule with intermediate file `../../../../build/modmake.rules.w'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `modmake.rules.w'. Trying implicit prerequisite `../../../../build/modmake.rules.w,v'. Trying pattern rule with stem `modmake.rules.w'. Trying implicit prerequisite `../../../../build/RCS/modmake.rules.w,v'. Trying pattern rule with stem `modmake.rules.w'. Trying implicit prerequisite `../../../../build/RCS/modmake.rules.w'. Trying pattern rule with stem `modmake.rules.w'. Trying implicit prerequisite `../../../../build/s.modmake.rules.w'. Trying pattern rule with stem `modmake.rules.w'. Trying implicit prerequisite `../../../../build/SCCS/s.modmake.rules.w'. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/modmake.rules.o'. Looking for a rule with intermediate file `../../../../build/modmake.rules.o'. Avoiding implicit rule recursion. Trying pattern rule with stem `modmake.rules'. Rejecting impossible implicit prerequisite `../../../../build/modmake.rules.c'. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/modmake.rules.cpp'. Trying pattern rule with stem `modmake.rules.o'. Trying implicit prerequisite `../../../../build/modmake.rules.o,v'. Trying pattern rule with stem `modmake.rules.o'. Trying implicit prerequisite `../../../../build/RCS/modmake.rules.o,v'. Trying pattern rule with stem `modmake.rules.o'. Trying implicit prerequisite `../../../../build/RCS/modmake.rules.o'. Trying pattern rule with stem `modmake.rules.o'. Trying implicit prerequisite `../../../../build/s.modmake.rules.o'. Trying pattern rule with stem `modmake.rules.o'. Trying implicit prerequisite `../../../../build/SCCS/s.modmake.rules.o'. Trying pattern rule with stem `modmake.rules'. Trying implicit prerequisite `../../../../build/modmake.rules.cpp'. Looking for a rule with intermediate file `../../../../build/modmake.rules.cpp'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `modmake.rules.cpp'. Trying implicit prerequisite `../../../../build/modmake.rules.cpp,v'. Trying pattern rule with stem `modmake.rules.cpp'. Trying implicit prerequisite `../../../../build/RCS/modmake.rules.cpp,v'. Trying pattern rule with stem `modmake.rules.cpp'. Trying implicit prerequisite `../../../../build/RCS/modmake.rules.cpp'. Trying pattern rule with stem `modmake.rules.cpp'. Trying implicit prerequisite `../../../../build/s.modmake.rules.cpp'. Trying pattern rule with stem `modmake.rules.cpp'. Trying implicit prerequisite `../../../../build/SCCS/s.modmake.rules.cpp'. Trying pattern rule with stem `modmake.rules'. Rejecting impossible implicit prerequisite `../../../../build/modmake.rules.cpp'. No implicit rule found for `../../../../build/modmake.rules'. Finished prerequisites of target file `../../../../build/modmake.rules'. No need to remake target `../../../../build/modmake.rules'. Considering target file `Makefile'. Finished prerequisites of target file `Makefile'. No need to remake target `Makefile'. Updating goal targets.... Considering target file `all-modules'. File `all-modules' does not exist. Considering target file `local_depend'. File `local_depend' does not exist. Finished prerequisites of target file `local_depend'. Must remake target `local_depend'. Successfully remade target file `local_depend'. Considering target file `mod_celt.la'. File `mod_celt.la' does not exist. Considering target file `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libfreeswitch.la'. Looking for an implicit rule for `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libfreeswitch.la'. Trying pattern rule with stem `libfreeswitch.la'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libfreeswitch.la.c'. Trying pattern rule with stem `libfreeswitch.la'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libfreeswitch.la.o'. Trying pattern rule with stem `libfreeswitch.la'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libfreeswitch.la.cpp'. Trying pattern rule with stem `libfreeswitch.la'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libfreeswitch.la,v'. Trying pattern rule with stem `libfreeswitch.la'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/RCS/libfreeswitch.la,v'. Trying pattern rule with stem `libfreeswitch.la'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/RCS/libfreeswitch.la'. Trying pattern rule with stem `libfreeswitch.la'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/s.libfreeswitch.la'. Trying pattern rule with stem `libfreeswitch.la'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/SCCS/s.libfreeswitch.la'. Trying pattern rule with stem `libfreeswitch.la'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libfreeswitch.la.c'. Looking for a rule with intermediate file `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libfreeswitch.la.c'. Avoiding implicit rule recursion. Trying pattern rule with stem `libfreeswitch.la'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libfreeswitch.la.w'. Trying pattern rule with stem `libfreeswitch.la.c'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libfreeswitch.la.c,v'. Trying pattern rule with stem `libfreeswitch.la.c'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/RCS/libfreeswitch.la.c,v'. Trying pattern rule with stem `libfreeswitch.la.c'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/RCS/libfreeswitch.la.c'. Trying pattern rule with stem `libfreeswitch.la.c'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/s.libfreeswitch.la.c'. Trying pattern rule with stem `libfreeswitch.la.c'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/SCCS/s.libfreeswitch.la.c'. Trying pattern rule with stem `libfreeswitch.la'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libfreeswitch.la.w'. Looking for a rule with intermediate file `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libfreeswitch.la.w'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `libfreeswitch.la.w'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libfreeswitch.la.w,v'. Trying pattern rule with stem `libfreeswitch.la.w'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/RCS/libfreeswitch.la.w,v'. Trying pattern rule with stem `libfreeswitch.la.w'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/RCS/libfreeswitch.la.w'. Trying pattern rule with stem `libfreeswitch.la.w'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/s.libfreeswitch.la.w'. Trying pattern rule with stem `libfreeswitch.la.w'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/SCCS/s.libfreeswitch.la.w'. Trying pattern rule with stem `libfreeswitch.la'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libfreeswitch.la.o'. Looking for a rule with intermediate file `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libfreeswitch.la.o'. Avoiding implicit rule recursion. Trying pattern rule with stem `libfreeswitch.la'. Rejecting impossible implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libfreeswitch.la.c'. Trying pattern rule with stem `libfreeswitch.la'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libfreeswitch.la.cpp'. Trying pattern rule with stem `libfreeswitch.la.o'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libfreeswitch.la.o,v'. Trying pattern rule with stem `libfreeswitch.la.o'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/RCS/libfreeswitch.la.o,v'. Trying pattern rule with stem `libfreeswitch.la.o'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/RCS/libfreeswitch.la.o'. Trying pattern rule with stem `libfreeswitch.la.o'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/s.libfreeswitch.la.o'. Trying pattern rule with stem `libfreeswitch.la.o'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/SCCS/s.libfreeswitch.la.o'. Trying pattern rule with stem `libfreeswitch.la'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libfreeswitch.la.cpp'. Looking for a rule with intermediate file `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libfreeswitch.la.cpp'. Avoiding implicit rule recursion. Avoiding implicit rule recursion. Trying pattern rule with stem `libfreeswitch.la.cpp'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libfreeswitch.la.cpp,v'. Trying pattern rule with stem `libfreeswitch.la.cpp'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/RCS/libfreeswitch.la.cpp,v'. Trying pattern rule with stem `libfreeswitch.la.cpp'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/RCS/libfreeswitch.la.cpp'. Trying pattern rule with stem `libfreeswitch.la.cpp'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/s.libfreeswitch.la.cpp'. Trying pattern rule with stem `libfreeswitch.la.cpp'. Trying implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/SCCS/s.libfreeswitch.la.cpp'. Trying pattern rule with stem `libfreeswitch.la'. Rejecting impossible implicit prerequisite `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libfreeswitch.la.cpp'. No implicit rule found for `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libfreeswitch.la'. Finished prerequisites of target file `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libfreeswitch.la'. No need to remake target `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libfreeswitch.la'. Considering target file `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libs/celt-0.7.1/libcelt/.libs/libcelt0.la'. File `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libs/celt-0.7.1/libcelt/.libs/libcelt0.la' does not exist. Considering target file `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libs/celt-0.7.1/Makefile'. File `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libs/celt-0.7.1/Makefile' does not exist. Considering target file `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libs/celt-0.7.1'. File `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libs/celt-0.7.1' does not exist. Finished prerequisites of target file `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libs/celt-0.7.1'. Must remake target `/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libs/celt-0.7.1'. Putting child 0x800c333d0 (/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libs/celt-0.7.1) PID 65746 on the chain. Live child 0x800c333d0 (/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libs/celt-0.7.1) PID 65746 file:///vol0/ports/distfiles/celt-0.7.1.tar.gz: Unsupported scheme `file'. cannot find celt-0.7.1.tar.gz Reaping losing child 0x800c333d0 PID 65746 gmake[1]: *** [/vol0/ports/build/usr/ports/net/freeswitch-core/work/freeswitch-1.0.6/libs/celt-0.7.1] Error 1 Removing child 0x800c333d0 PID 65746 from chain. Reaping losing child 0x800c302e0 PID 65732 gmake: *** [all] Error 1 Removing child 0x800c302e0 PID 65732 from chain. Script done on Tue Aug 31 20:08:56 201 --=-=-= Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: 8bit -- L'IRQ a été inventée par Murphy ; le partage des IRQ, par quelqu'un voulant le defier --=-=-=-- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 18:32:31 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D0E2E10656B5; Tue, 31 Aug 2010 18:32:31 +0000 (UTC) (envelope-from yanegomi@gmail.com) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 06C608FC20; Tue, 31 Aug 2010 18:32:30 +0000 (UTC) Received: by bwz20 with SMTP id 20so5618888bwz.13 for ; Tue, 31 Aug 2010 11:32:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=hC98BAi27ZwKwPfgXQrRQDub2ucfAz8wqKVsMevdfEI=; b=BSlPI6gb9pWg+gFrFX1oFyL+URhiYJCHH/DR07GxrRDGUQbp9pslU5IeI+EiQUgOHI y4wS+owfkFTUP/LcJZjloJhLZu73LYu6nhTZvYgJiAlm7wEc7FOKZZ22UFqPnQ07Lb5D ZEI7MVBrR6nb1IXQ7jmlmlGK+1ZizvOXDBmEc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=QiGIFBvqalMZUIUsm8EhpX5Ob0tNFZEDcXkU/Pr3+NOxCUU8OMkmVni2+axBpUURAH khf+qKgoQmirghStXWWv6MuCf6skG/+nxezSkdTduL/XnFQga26MGo93qu8pWmcmT/T+ flH68BaNIr+uOG8xFanTVCxPralviOqGpKBvI= MIME-Version: 1.0 Received: by 10.204.63.9 with SMTP id z9mr4839063bkh.66.1283279549069; Tue, 31 Aug 2010 11:32:29 -0700 (PDT) Received: by 10.204.113.79 with HTTP; Tue, 31 Aug 2010 11:32:28 -0700 (PDT) In-Reply-To: References: Date: Tue, 31 Aug 2010 11:32:28 -0700 Message-ID: From: Garrett Cooper To: Ade Lovett Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: ports , bug-followup@freebsd.org Subject: Re: ports/146754: [patch] new port: add devel/atf framework to ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 18:32:31 -0000 On Tue, Aug 31, 2010 at 10:17 AM, Ade Lovett wrote: > > On Aug 29, 2010, at 20:00 , Garrett Cooper wrote: >> =A0 =A0Found the reference. The stuff that gets installed under >> ${PREFIX}/tests (to some degree) are actually executables >> ($(execdir)), and some are data files ($(datarootdir)). > > Woo. =A0Lots of fun there. :) > > As much as I hate committing a port that has known issues (in this case h= ier(7) breakage), I can certainly see the value in having it in the tree. > > So. =A0Here's the deal. =A0I'll go ahead and commit it, adding a note tha= t it currently isn't hier(7) safe (just a note, not an IGNORE/BROKEN/whatev= er). > > However, if in 6 months, or two version jumps, whichever comes first, it = is still not heir(7) safe, then I _will_ mark it BROKEN. > > Unless anyone else can thing of an utter show-stopper, this would seem to= be the best compromise. Understood. Thanks, -Garrett From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 18:39:38 2010 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E1650106567A for ; Tue, 31 Aug 2010 18:39:38 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (builder.freebsd.org [IPv6:2001:4f8:fff6::4b]) by mx1.freebsd.org (Postfix) with ESMTP id B8E938FC1C for ; Tue, 31 Aug 2010 18:39:38 +0000 (UTC) Received: from builder.freebsd.org (localhost [127.0.0.1]) by builder.freebsd.org (8.14.4/8.14.4) with ESMTP id o7VIdcIx037457 for ; Tue, 31 Aug 2010 18:39:38 GMT (envelope-from erwin@builder.freebsd.org) Received: (from erwin@localhost) by builder.freebsd.org (8.14.4/8.14.3/Submit) id o7VIdcDf037456 for ports@FreeBSD.org; Tue, 31 Aug 2010 18:39:38 GMT (envelope-from erwin) Date: Tue, 31 Aug 2010 18:39:38 GMT From: Erwin Lansing Message-Id: <201008311839.o7VIdcDf037456@builder.freebsd.org> To: ports@FreeBSD.org Cc: Subject: INDEX build failed for 6.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 18:39:39 -0000 INDEX build failed with errors: Generating INDEX-6 - please wait..pkg_info: not found pkg_info: not found Done. make_index: btpeer-0.2.1: no entry for /usr/ports/net/Sockets-devel Committers on the hook: avilla avl bapt garga jadawin lth olgeni rene sylvio Most recent CVS update was: U MOVED U comms/Makefile U comms/spandsp/Makefile U comms/spandsp/distinfo U comms/spandsp/pkg-descr U comms/spandsp/pkg-plist U devel/libs11n/Makefile U devel/libs11n/distinfo U french/Makefile U graphics/Makefile U mail/Makefile U sysutils/Makefile U sysutils/ddrescue/Makefile U sysutils/ddrescue/distinfo U textproc/Makefile From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 19:05:07 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A22710656C9; Tue, 31 Aug 2010 19:05:07 +0000 (UTC) (envelope-from emss.mail@gmail.com) Received: from mail-wy0-f182.google.com (mail-wy0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id 7A8818FC16; Tue, 31 Aug 2010 19:05:06 +0000 (UTC) Received: by wyb33 with SMTP id 33so9602807wyb.13 for ; Tue, 31 Aug 2010 12:05:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:received :x-virus-scanned:received:received:to:cc:subject:from:in-reply-to :references:x-operating-system:date:message-id:user-agent :mime-version:content-type:content-transfer-encoding; bh=Xcv4pKDMxB7A5mrLjLrVva7rcHe4XGbSGzKN5DRRbu8=; b=uuqbS3HkpRC/zJUOZiYwMgVW9qte6y8KPEYmpZJ1CmICLMwxBvLVTOYbFRmFQffVig UmesvG1Xg/1gru3o1bidPFors72cb6TQFUc3dviVRmSl13ah6iL1/O56LQAptVkd4w/d RSIaETGk0mGmAsGjPkNmJ8YvDWByLnC4Bwk38= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:x-virus-scanned:to:cc:subject:from:in-reply-to:references :x-operating-system:date:message-id:user-agent:mime-version :content-type:content-transfer-encoding; b=jAHVrgUzhcWdz+n0DQojl7RlhgxkVK4lrh0ti9511Xp+6KqsiJ2GowpPgfD+M5vEyt Imb9uFTu9EKVjqla3sRnow9KHlQiVFW80MNPJsFM4bDDj3ZgafZOsRVE2PbAQMlH66EJ OC/Q/xepKq0YWc5NioUG5m434Bnq2bi91JmwY= Received: by 10.227.152.18 with SMTP id e18mr6871111wbw.1.1283280034424; Tue, 31 Aug 2010 11:40:34 -0700 (PDT) Received: from srvbsdfenssv.interne.associated-bears.org (LCaen-151-92-21-48.w217-128.abo.wanadoo.fr [217.128.200.48]) by mx.google.com with ESMTPS id p52sm5502111weq.20.2010.08.31.11.40.31 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 31 Aug 2010 11:40:33 -0700 (PDT) Sender: Eric Masson Received: from srvbsdfenssv.interne.associated-bears.org (localhost [127.0.0.1]) by srvbsdfenssv.interne.associated-bears.org (Postfix) with ESMTP id 6E9B51D11C; Tue, 31 Aug 2010 20:40:30 +0200 (CEST) X-Virus-Scanned: amavisd-new at interne.associated-bears.org Received: from srvbsdfenssv.interne.associated-bears.org ([127.0.0.1]) by srvbsdfenssv.interne.associated-bears.org (srvbsdfenssv.interne.associated-bears.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2TdzdB88yHcT; Tue, 31 Aug 2010 20:40:22 +0200 (CEST) Received: by srvbsdfenssv.interne.associated-bears.org (Postfix, from userid 1001) id C36141D13D; Tue, 31 Aug 2010 20:40:22 +0200 (CEST) To: Jeremy Chadwick From: Eric Masson In-Reply-To: <20100831175610.GA76534@icarus.home.lan> (Jeremy Chadwick's message of "Tue, 31 Aug 2010 10:56:10 -0700") References: <201008311739.o7VHdWDY048477@fire.js.berklix.net> <20100831175610.GA76534@icarus.home.lan> X-Operating-System: FreeBSD 8.1-RELEASE amd64 Date: Tue, 31 Aug 2010 20:40:22 +0200 Message-ID: <86zkw2ocbt.fsf@srvbsdfenssv.interne.associated-bears.org> User-Agent: Gnus/5.1008 (Gnus v5.10.8) XEmacs/21.5-b28 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: 8bit Cc: ports@freebsd.org, "Julian H. Stacey" , FreeBSD-gnats-submit@freebsd.org Subject: Re: current ports Mk make fetch calls wget fails to support schemes X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 19:05:07 -0000 Jeremy Chadwick writes: Hi, > Hmm... Can't reproduce it here, but this is now the 2nd report of this > problem to hit -ports. Removing wget from path solves the issue faced when building mod_celt in net/freeswitch. Thanks for you help diagnosing the problem. Éric Masson -- Il vaut mieux de dormir pendant 6 mois que vivant dans constante culturelle l'obscurité -+- Pelle in Pelle le con quérant -+- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 19:06:34 2010 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7289A10656AA for ; Tue, 31 Aug 2010 19:06:34 +0000 (UTC) (envelope-from bf1783@googlemail.com) Received: from mail-ww0-f42.google.com (mail-ww0-f42.google.com [74.125.82.42]) by mx1.freebsd.org (Postfix) with ESMTP id 0A6008FC08 for ; Tue, 31 Aug 2010 19:06:33 +0000 (UTC) Received: by wwb39 with SMTP id 39so46845wwb.1 for ; Tue, 31 Aug 2010 12:06:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:received:reply-to:date :message-id:subject:from:to:cc:content-type; bh=qZevNmucItyaJJsmagecxHSy2slU9RiHzKqDpon0L38=; b=YqgkyFevfWIIxlk7vYO/M9A8hzBUQjoRfINzhcuvSN8hFdevpkO0R22pUYL/TeCQLH xggOzSmeZXbwxgtsgQLTtZdhrSkvzvzjxeYOgk8edAWAOxr0LPRMdgxvm2CZRZZJkh47 ejOVnGQwumz3A8vM712Z11B4qFwYiNkLqXoMA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:reply-to:date:message-id:subject:from:to:cc :content-type; b=VDP0VZK+3F9oYBfdw3xR4vquQm75hIKnmbhrztGXCkwtJ55/LJSSMnz8H2IX7h52dl Er8KO7UbsQ9NRBb9IvImENUgBxR7h2X080CkYsCbgqr4VgCp+//zh2NwQ858E/LQCTRz fI2F0if9DRyjhTEAGWcxEa8/VVuJUoo4NCnmE= MIME-Version: 1.0 Received: by 10.227.142.139 with SMTP id q11mr7107835wbu.103.1283281592926; Tue, 31 Aug 2010 12:06:32 -0700 (PDT) Received: by 10.216.63.146 with HTTP; Tue, 31 Aug 2010 12:06:32 -0700 (PDT) Date: Tue, 31 Aug 2010 19:06:32 +0000 Message-ID: From: "b. f." To: jhell Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-ports@FreeBSD.org Subject: Re: math/blas linking to gfortran with LDADD?= -lgfortran X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: bf1783@gmail.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 19:06:34 -0000 >The subject listed port fails to link during an upgrade from the >previous version. Looking into this further libblas.so.2 without being Would you elaborate, please? Where is a transcript showing the linking failure? Would you mail it to me off-list? >linked to gfortran is correct as in the already installed previous >version installed inspected with ldd(1) shows the same linking as the >new version without the -lgfortran linker flags. > I don't find this to be the case. Perhaps you could provide listings for `ldd -a /usr/local/lib/libblas.so.2`, `objdump -x /usr/local/lib/libblas.so.2`, and `make -C /usr/ports/math/blas -v -d l deinstall clean all`, with and without your change, off-list? >Attached is the patch that solves the linking problem. I do not see any >dependents listed for this port for any of the gcc* ports that can be >installed so therefore I have removed the -lgfortran from LDADD. ? USE_FORTRAN=yes ==> USE_GCC=4.4 You don't see any relevant undefined symbols in the blas libraries? With regards to your statements about math/lapack and profiling: it has been the case for some time that this port has built and installed these libraries by default, perhaps because this port has mainly been used by people concerned about numerical linear algebra and concrete measures of performance. I recently added the statement you quoted to allow users to avoid these libraries -- it intentionally mirrors the similar statement in the allied port math/blas, where the form is is dictated by the use of bsd.lib.mk to build the libraries. Given the typical use of these ports, I don't think it is unreasonable to enable profiling libraries by default. But if you don't like it, you can now easily opt out. Regards, b. From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 20:08:30 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 23E0010656B1; Tue, 31 Aug 2010 20:08:30 +0000 (UTC) (envelope-from jhs@berklix.com) Received: from tower.berklix.org (tower.berklix.org [83.236.223.114]) by mx1.freebsd.org (Postfix) with ESMTP id A217B8FC35; Tue, 31 Aug 2010 20:08:28 +0000 (UTC) Received: from park.js.berklix.net (p549A5043.dip.t-dialin.net [84.154.80.67]) (authenticated bits=0) by tower.berklix.org (8.14.2/8.14.2) with ESMTP id o7VK8PCK008526; Tue, 31 Aug 2010 20:08:26 GMT (envelope-from jhs@berklix.com) Received: from fire.js.berklix.net (fire.js.berklix.net [192.168.91.41]) by park.js.berklix.net (8.13.8/8.13.8) with ESMTP id o7VK8MC2064787; Tue, 31 Aug 2010 22:08:22 +0200 (CEST) (envelope-from jhs@berklix.com) Received: from fire.js.berklix.net (localhost [127.0.0.1]) by fire.js.berklix.net (8.14.3/8.14.3) with ESMTP id o7VK87Br094105; Tue, 31 Aug 2010 22:08:12 +0200 (CEST) (envelope-from jhs@fire.js.berklix.net) Message-Id: <201008312008.o7VK87Br094105@fire.js.berklix.net> To: Eric Masson From: "Julian H. Stacey" Organization: http://www.berklix.com BSD Unix Linux Consultancy, Munich Germany User-agent: EXMH on FreeBSD http://www.berklix.com/free/ X-URL: http://www.berklix.com In-reply-to: Your message "Tue, 31 Aug 2010 20:40:22 +0200." <86zkw2ocbt.fsf@srvbsdfenssv.interne.associated-bears.org> Date: Tue, 31 Aug 2010 22:08:07 +0200 Sender: jhs@berklix.com Cc: ports@freebsd.org, FreeBSD-gnats-submit@freebsd.org, Jeremy Chadwick Subject: Re: current ports Mk make fetch calls wget fails to support schemes X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 20:08:30 -0000 Jeremy Chadwick wrote: > ... > Hmm... Can't reproduce it here, but this is now the 2nd report of this > problem to hit -ports. > ... Thanks for looking, I'll send you more of my env. by private mail off list Eric Masson wrote: > Jeremy Chadwick writes: > > Hi, > > > Hmm... Can't reproduce it here, but this is now the 2nd report of this > > problem to hit -ports. > > Removing wget from path solves the issue faced when building mod_celt in > net/freeswitch. > > Thanks for you help diagnosing the problem. > > Éric Masson Removing wget didnt avoid the problem here: mv /usr/local/bin/wget /usr/local/bin/wgetMV ; rehash cd /pri/FreeBSD/branches/-current/ports setenv PORTSDIR /pri/FreeBSD/branches/-current/ports cd sysutils/tarsnap make fetch ===> tarsnap-1.0.27 depends on file: /usr/local/bin/wget \ - not found ===> Verifying install for /usr/local/bin/wget in \ /pri/FreeBSD/branches/-current/ports/ftp/wget .... ===> Extracting for wget-1.12_1 Cheers, Julian -- Julian Stacey: BSD Unix Linux C Sys Eng Consultants Munich http://berklix.com Mail plain text, Not HTML, quoted-printable & base 64 dumped with spam. Avoid top posting, It cripples itemised cumulative responses. From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 21:14:55 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 28EAA1065679 for ; Tue, 31 Aug 2010 21:14:55 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-ew0-f54.google.com (mail-ew0-f54.google.com [209.85.215.54]) by mx1.freebsd.org (Postfix) with ESMTP id A660D8FC15 for ; Tue, 31 Aug 2010 21:14:54 +0000 (UTC) Received: by ewy4 with SMTP id 4so4405119ewy.13 for ; Tue, 31 Aug 2010 14:14:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :x-enigmail-version:content-type:content-transfer-encoding; bh=4WFHKFnHlkzXBmYOAjrCeSkbVYhJeG/z+6BJtjUYRqI=; b=tzUev0/oFVITFFJDhzAbnDzHu+2qiFCTKAjYC+JEqxf64pK5RAwUGHABtWnjYj7ZyB Mcwy4KvQ1680kFtuQ+iUKhFIb64XzBqddfq8HP+wpk90LmoUBr1l0KWtG9FmyzzSnVc/ aVOaYuyEqMaCKdk5ELUM3vsYampXD3XLkovEI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; b=gMIMM2++Z5DEsa4wz+YRV6NBx33Y4iPFl+kB+wNI+Dv1jSx7m+q9dlaBfzVGxyWHpl /pekVfhH6dQerV6ESSMRH4XcwfoQ0YNmXTuGmbIkIF+6vbEdLN+NGjlxdqlZ6cj1oyc4 UjNkiM2e381VwlUDQFAYy5+OsbEmojED08Xx4= Received: by 10.216.168.202 with SMTP id k52mr6869033wel.105.1283289293429; Tue, 31 Aug 2010 14:14:53 -0700 (PDT) Received: from centel.dataix.local (adsl-99-181-137-20.dsl.klmzmi.sbcglobal.net [99.181.137.20]) by mx.google.com with ESMTPS id v11sm5612882weq.16.2010.08.31.14.14.51 (version=SSLv3 cipher=RC4-MD5); Tue, 31 Aug 2010 14:14:52 -0700 (PDT) Sender: "J. Hellenthal" Message-ID: <4C7D70CA.2070104@DataIX.net> Date: Tue, 31 Aug 2010 17:14:50 -0400 From: jhell User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.2.8) Gecko/20100806 Lightning/1.0b1 Thunderbird MIME-Version: 1.0 To: bf1783@gmail.com References: In-Reply-To: X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: "b. f." , FreeBSD Ports Subject: Re: math/blas linking to gfortran with LDADD?= -lgfortran X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 21:14:55 -0000 On 08/31/2010 15:06, b. f. wrote: > Would you elaborate, please? Where is a transcript showing the linking failure? > Would you mail it to me off-list? Simply -lgfortran by it self should not work. Since lib directories gcc44 gcc45 gcc46 and such are not in the standard path -L/usr/local/lib/gcc44 would have to be passed to LDFLAGS in order for it to be found. Off list should not be necessary. > > I don't find this to be the case. Perhaps you could provide listings for > `ldd -a /usr/local/lib/libblas.so.2`, `objdump -x > /usr/local/lib/libblas.so.2`, and > `make -C /usr/ports/math/blas -v -d l deinstall clean all`, with and > without your change, off-list? > With my change in objdump the only thing listed in objdump -x that is relevant to -lgfortran is the RPATH=/usr/local/lib/gcc44 and there is no undefined symbols. Without my change it simply will not build unless I either a) remove -lgfortran or b) add -L/usr/local/lib/gcc44 > ? USE_FORTRAN=yes ==> USE_GCC=4.4 > > You don't see any relevant undefined symbols in the blas libraries? > > With regards to your statements about math/lapack and profiling: it > has been the case for some time that this port has built and installed > these libraries by default, perhaps because this port has mainly been > used by people concerned about numerical linear algebra and concrete > measures of performance. I recently added the statement you quoted to > allow users to avoid these libraries -- it intentionally mirrors the > similar statement in the allied port math/blas, where the form is is > dictated by the use of bsd.lib.mk to build the libraries. Given the > typical use of these ports, I don't think it is unreasonable to enable > profiling libraries by default. But if you don't like it, you can now > easily opt out. Would it be possible with this to check for the existence of -lc_p before and opt out automatically while warning the user that the profiled libc was not found so profiling will be unavailable. ? Specifically this port is making a blind assumptions that profiled libraries are installed on the system it is being installed on, I do not find that to be correct. Something like this would best be handled by options that default off. gfortran44 -O -pg -c dsecndtst.f -o dsecndtst.o gfortran44 -O -pg -c tstiee.f -o tstiee.o gfortran44 -O -pg -c ilaver.f -o ilaver.o gfortran44 -O -pg -c LAPACK_version.f -o LAPACK_version.o gfortran44 -Wl,-rpath=/usr/local/lib/gcc44 -pg -o testlsame lsame.o lsametst.o /usr/local/bin/ld: cannot find -lc_p collect2: ld returned 1 exit status *** Error code 1 -- jhell,v From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 21:39:45 2010 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B853510656B0 for ; Tue, 31 Aug 2010 21:39:45 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (builder.freebsd.org [IPv6:2001:4f8:fff6::4b]) by mx1.freebsd.org (Postfix) with ESMTP id AA0938FC14 for ; Tue, 31 Aug 2010 21:39:45 +0000 (UTC) Received: from builder.freebsd.org (localhost [127.0.0.1]) by builder.freebsd.org (8.14.4/8.14.4) with ESMTP id o7VLdjVS000307 for ; Tue, 31 Aug 2010 21:39:45 GMT (envelope-from erwin@builder.freebsd.org) Received: (from erwin@localhost) by builder.freebsd.org (8.14.4/8.14.3/Submit) id o7VLdjge000306 for ports@FreeBSD.org; Tue, 31 Aug 2010 21:39:45 GMT (envelope-from erwin) Date: Tue, 31 Aug 2010 21:39:45 GMT From: Erwin Lansing Message-Id: <201008312139.o7VLdjge000306@builder.freebsd.org> To: ports@FreeBSD.org Cc: Subject: INDEX build failed for 6.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 21:39:45 -0000 INDEX build failed with errors: Generating INDEX-6 - please wait..pkg_info: not found pkg_info: not found Done. make_index: btpeer-0.2.1: no entry for /usr/ports/net/Sockets-devel Committers on the hook: avilla avl bapt brooks cy fjoe garga jacula jadawin lth olgeni pav pgollucci rene sylvio Most recent CVS update was: U deskutils/plans/Makefile U deskutils/plans/distinfo U devel/google-perftools/Makefile U devel/google-perftools/distinfo U devel/google-perftools/pkg-plist U devel/google-perftools/files/patch-Makefile.in U devel/google-perftools/files/patch-pprof U devel/llvm-devel/files/patch-tools_clang_include_clang_Analysis_Analyses_FormatString.h U misc/dahdi/Makefile U misc/dahdi/distinfo U misc/dahdi/pkg-plist U misc/dahdi/files/patch-bchan U misc/dahdi/files/patch-freebsd-freebsd-Makefile U misc/dahdi/files/patch-oslec U misc/dahdi/files/patch-zaphfc U sysutils/doinkd/Makefile U sysutils/doinkd/distinfo U sysutils/doinkd/pkg-descr U sysutils/doinkd/pkg-message U textproc/rubygem-liquid/Makefile U textproc/rubygem-liquid/distinfo U www/bricolage/Makefile From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 21:39:54 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6F275106573B for ; Tue, 31 Aug 2010 21:39:54 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-ew0-f54.google.com (mail-ew0-f54.google.com [209.85.215.54]) by mx1.freebsd.org (Postfix) with ESMTP id EDA898FC16 for ; Tue, 31 Aug 2010 21:39:53 +0000 (UTC) Received: by ewy4 with SMTP id 4so4420707ewy.13 for ; Tue, 31 Aug 2010 14:39:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :x-enigmail-version:content-type:content-transfer-encoding; bh=H2mUA/hStcNQBiF2kGr4Hs1mE3qVWzmKq54//ZyPOpw=; b=BomLXvmQUs+S60wBmXScNLeXhMZKVr7kkNcfIbU6YdRgwmh+ShKtVIK38oFXWGWkN3 1Dx+hx1uIghUlBXtCrBzuy8YEljCvlIePT42aBQt7yUV4JJYelpC9deP3DeuXU26CPXh xIqcpipZO5IFsY1ehvJBZifyJohZD4sEWn1Ts= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; b=bpDZF+8V2hq//K4iat+IE0pw01kIcpTAmOz+8cA9zum7F2o/KkP/4fM5oG1KqT44Ig nzf1x2KMFKciyM/uht/f+r3SPOrpATjSBPPL0QBEX3sO+OwqHveVY9d5McGZm7QYVnoL OxM3lAfNxxlLx9twpobOjdvjRhX4M0AFQsbpk= Received: by 10.213.105.77 with SMTP id s13mr10496480ebo.50.1283290792993; Tue, 31 Aug 2010 14:39:52 -0700 (PDT) Received: from centel.dataix.local (adsl-99-181-137-20.dsl.klmzmi.sbcglobal.net [99.181.137.20]) by mx.google.com with ESMTPS id a48sm14774892eei.13.2010.08.31.14.39.51 (version=SSLv3 cipher=RC4-MD5); Tue, 31 Aug 2010 14:39:52 -0700 (PDT) Sender: "J. Hellenthal" Message-ID: <4C7D76A6.7080401@DataIX.net> Date: Tue, 31 Aug 2010 17:39:50 -0400 From: jhell User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.2.8) Gecko/20100806 Lightning/1.0b1 Thunderbird MIME-Version: 1.0 To: bf1783@gmail.com References: In-Reply-To: X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: "b. f." , freebsd-ports@FreeBSD.org Subject: Re: math/blas linking to gfortran with LDADD?= -lgfortran X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 21:39:54 -0000 Looking closer at the math/blas & math/lapack ports: This statement does not make any sense. The logic is backwards for every instance. And WITH_PROFILE would do. .if !(defined(NOPROFILE) || defined(NO_PROFILE) || defined(WITHOUT_PROFILE)) PLIST_FILES+= lib/libblas_p.a .endif Which is basically saying: Add that profile lib if NOPROFILE is not defined "_p is a profiled lib why would you want to install this if the admin has NOT defined NOPROFILE? Second add that lib if NO_PROFILE is defined ? see previous question still doing the wrong thing here. Third add that lib if WITHOUT_PROFILE is defined ? see previous two question still not doing the right thing here. Simple following would do. .if (defined(WITH_PROFILE) PLIST_FILES+= lib/libblas_p.a ,endif Then if it is really a concern that this has to default to on, then use the options framework to present that to the user. At least in this instance the user will at least know whats going on. Regards, -- jhell,v From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 22:14:14 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 383B4106564A for ; Tue, 31 Aug 2010 22:14:14 +0000 (UTC) (envelope-from david@vizion2000.net) Received: from dns1.vizion2000.net (dns1.vizion2000.net [62.49.197.50]) by mx1.freebsd.org (Postfix) with ESMTP id DE38B8FC13 for ; Tue, 31 Aug 2010 22:14:13 +0000 (UTC) Received: by dns1.vizion2000.net (Postfix, from userid 1001) id 9A23934D461; Tue, 31 Aug 2010 23:13:58 +0100 (BST) From: David Southwell Organization: Voice & Vision To: freebsd-ports@freebsd.org Date: Tue, 31 Aug 2010 23:13:58 +0100 User-Agent: KMail/1.13.5 (FreeBSD/7.2-RELEASE-p3; KDE/4.4.5; amd64; ; ) MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <201008312313.58505.david@vizion2000.net> Subject: comms/spandsp compile failure on upgrade X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 22:14:14 -0000 Hi On amd64 freebsd 7.1 Compile failure: spandsp/dc_restore.h:151: warning: incompatible implicit declaration of built- in function 'rintl' libtool: compile: cc -DHAVE_CONFIG_H -I. -I. -I. -I.. -I/usr/local/include - I/usr/local/include/libxml2 -DNDEBUG -std=gnu99 -ffast-math -Wall -Wunused- variable -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -O2 -fno- strict-aliasing -pipe -march=nocona -MT tone_generate.lo -MD -MP -MF .deps/tone_generate.Tpo -c tone_generate.c -o tone_generate.o >/dev/null 2>&1 cc -I/usr/local/include -I/usr/local/include/libxml2 -I. -o make_modem_filter make_modem_filter.c filter_tools.c -lm In file included from spandsp.h:93, from make_modem_filter.c:47: ./spandsp/t30_api.h:451: error: conflicting types for 't30_set_ecm_capability' /usr/local/include/spandsp/t30.h:803: error: previous declaration of 't30_set_ecm_capability' was here ./spandsp/t30_api.h:468: error: conflicting types for 't30_set_supported_modems' /usr/local/include/spandsp/t30.h:779: error: previous declaration of 't30_set_supported_modems' was here ./spandsp/t30_api.h:475: error: conflicting types for 't30_set_supported_compressions' /usr/local/include/spandsp/t30.h:785: error: previous declaration of 't30_set_supported_compressions' was here ./spandsp/t30_api.h:482: error: conflicting types for 't30_set_supported_resolutions' /usr/local/include/spandsp/t30.h:791: error: previous declaration of 't30_set_supported_resolutions' was here ./spandsp/t30_api.h:489: error: conflicting types for 't30_set_supported_image_sizes' /usr/local/include/spandsp/t30.h:797: error: previous declaration of 't30_set_supported_image_sizes' was here In file included from spandsp.h:93, from filter_tools.c:49: ./spandsp/t30_api.h:451: error: conflicting types for 't30_set_ecm_capability' /usr/local/include/spandsp/t30.h:803: error: previous declaration of 't30_set_ecm_capability' was here ./spandsp/t30_api.h:468: error: conflicting types for 't30_set_supported_modems' /usr/local/include/spandsp/t30.h:779: error: previous declaration of 't30_set_supported_modems' was here ./spandsp/t30_api.h:475: error: conflicting types for 't30_set_supported_compressions' /usr/local/include/spandsp/t30.h:785: error: previous declaration of 't30_set_supported_compressions' was here ./spandsp/t30_api.h:482: error: conflicting types for 't30_set_supported_resolutions' /usr/local/include/spandsp/t30.h:791: error: previous declaration of 't30_set_supported_resolutions' was here ./spandsp/t30_api.h:489: error: conflicting types for 't30_set_supported_image_sizes' /usr/local/include/spandsp/t30.h:797: error: previous declaration of 't30_set_supported_image_sizes' was here gmake[2]: *** [make_modem_filter] Error 1 gmake[2]: Leaving directory `/usr/ports/comms/spandsp/work/spandsp-0.0.5/src' gmake[1]: *** [all] Error 2 gmake[1]: Leaving directory `/usr/ports/comms/spandsp/work/spandsp-0.0.5/src' gmake: *** [all-recursive] Error 1 *** Error code 1 Stop in /usr/ports/comms/spandsp. Photographic Artist Permanent Installations & Design Creative Imagery and Advanced Digital Techniques High Dynamic Range Photography & Official Portraiture Combined darkroom & digital creations & Systems Adminstrator for the vizion2000.net network From owner-freebsd-ports@FreeBSD.ORG Tue Aug 31 23:39:36 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D4B2210656A8 for ; Tue, 31 Aug 2010 23:39:36 +0000 (UTC) (envelope-from rbgarga@gmail.com) Received: from mail-wy0-f182.google.com (mail-wy0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id 6A3F68FC0C for ; Tue, 31 Aug 2010 23:39:35 +0000 (UTC) Received: by wyb33 with SMTP id 33so9929775wyb.13 for ; Tue, 31 Aug 2010 16:39:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:received:in-reply-to :references:from:date:message-id:subject:to:cc:content-type; bh=L6D0gtGL2ckRzQJTQhihA3kP1Cod5GiMMWxXNiSWAlw=; b=WdENijT2a6Qg7i4RnFVjR/x3zNhu8bnNBTzmNmVdbNNaiTkBjUVqaA8OVRI3skGuGp 5lgSqesWpNiYESacvIgK++QgaE1NIU8AIloGNXfGaLJGJdKKbEvDlldGs8CJ9hsaeh7K evStfcmC1VpPyT9QBjF31tJ1J4guvx9MKwhzw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=bXsmMjM7phGSh36FfZw2GgOf0HWJ42OhnbDqtzjUFxL+5WT2Eg/tzJ8wK7DjmBSoVs HnNevcJD+tSW6nfnxbCE854zOpWPbCUhquFUO8y4q7DwAi7ghXstrap/Ij31hhCOEoTD 7OF6SrjIENqkO4FKWz2XWcG4JDWTHyVPUzSaU= Received: by 10.216.231.25 with SMTP id k25mr7106225weq.2.1283296611413; Tue, 31 Aug 2010 16:16:51 -0700 (PDT) MIME-Version: 1.0 Received: by 10.216.165.14 with HTTP; Tue, 31 Aug 2010 16:16:31 -0700 (PDT) In-Reply-To: <201008312313.58505.david@vizion2000.net> References: <201008312313.58505.david@vizion2000.net> From: Renato Botelho Date: Tue, 31 Aug 2010 20:16:31 -0300 Message-ID: To: David Southwell Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-ports@freebsd.org Subject: Re: comms/spandsp compile failure on upgrade X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Aug 2010 23:39:36 -0000 On Tue, Aug 31, 2010 at 7:13 PM, David Southwell wrote: > > Hi > > On amd64 freebsd 7.1 Strange, i tested it on 7.2-RELEASE amd64 and it built without any problem. All your other ports are up-to-date? -- Renato Botelho From owner-freebsd-ports@FreeBSD.ORG Wed Sep 1 00:06:39 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9698A10656AC for ; Wed, 1 Sep 2010 00:06:39 +0000 (UTC) (envelope-from bf1783@googlemail.com) Received: from mail-wy0-f182.google.com (mail-wy0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id 2BDEC8FC0C for ; Wed, 1 Sep 2010 00:06:39 +0000 (UTC) Received: by wyb33 with SMTP id 33so9958716wyb.13 for ; Tue, 31 Aug 2010 17:06:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:received:reply-to :in-reply-to:references:date:message-id:subject:from:to:cc :content-type; bh=dxCFM5m6pe+ANaWXn0ecPf16M+tS1FC8JgTgpzljmRQ=; b=IWgPHBJ/lu4q6FqC326RExdKk8AY8bRQD9h6IsCG7QD28vMxjLxo+8xrCTOr29oefG 27psax32Oq2s8tjJlzdx8oxrjLnGqG0py/fPC9FHjkRzq5qX9Ka+q6xOKb0YSckEAOx+ 9+G8cLyVxwSCfNrujLW3Z+tWGyjoNDNrgbuGA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:reply-to:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; b=HUiHtkxbeuwOzUl9E/ke9mbw2BKbtmaaTgRhbYbIZaVvIziFhgumtuIUZFA3nuh8Oh BcDIYuir5+R+fLUQSaACviW3Bh8diLHv3TWqrcSNQU8kmHXJRrkHrFwBTjW5McfTObbp iHCeNyZBxW1UlkesX6uAKTrAScjY+kbcHzx7o= MIME-Version: 1.0 Received: by 10.227.37.212 with SMTP id y20mr6304788wbd.101.1283299589593; Tue, 31 Aug 2010 17:06:29 -0700 (PDT) Received: by 10.216.63.146 with HTTP; Tue, 31 Aug 2010 17:06:26 -0700 (PDT) In-Reply-To: <4C7D70CA.2070104@DataIX.net> References: <4C7D70CA.2070104@DataIX.net> Date: Wed, 1 Sep 2010 00:06:26 +0000 Message-ID: From: "b. f." To: jhell Content-Type: text/plain; charset=ISO-8859-1 Cc: FreeBSD Ports Subject: Re: math/blas linking to gfortran with LDADD?= -lgfortran X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: bf1783@gmail.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2010 00:06:39 -0000 On 8/31/10, jhell wrote: > On 08/31/2010 15:06, b. f. wrote: >> Would you elaborate, please? Where is a transcript showing the linking >> failure? >> Would you mail it to me off-list? > > Simply -lgfortran by it self should not work. Since lib directories > gcc44 gcc45 gcc46 and such are not in the standard path > -L/usr/local/lib/gcc44 would have to be passed to LDFLAGS in order for > it to be found. > > Off list should not be necessary. ? gfortran44 builds the object files, and gcc44 performs the linking for the shared library. Their default search directories normally allow them to find libgfortran at compile- and link-time. And afterwards, at run-time, the appropriate rpath is inscribed in the binary (see bsd.gcc.mk: this has been done for some time now), if the system linker hints aren't sufficient. So this does not seem to explain your problem, and that's why I asked for more complete information. Since I don't want to spam the list with that volume of material, that's why I asked for it to be sent via private email. > With my change in objdump the only thing listed in objdump -x that is > relevant to -lgfortran is the RPATH=/usr/local/lib/gcc44 and there is no > undefined symbols. As I said before, I cannot account for this -- I really need to see the complete information I requested earlier. Since gfortran44 is used to build the library components, there should be undefined symbols relating to libgfortran in all of the libraries, and the rpath should be present in both cases, if all you did was remove the explicit libgfortran from LDADD. The only difference should be the presence or absence of a DT_NEEDED tag for libgfortran. > Would it be possible with this to check for the existence of -lc_p > before and opt out automatically while warning the user that the > profiled libc was not found so profiling will be unavailable. ? I'll look into this. There is a dichotomy here: when building from source, base system profiling libraries are built and installed by default. The same may not be true if the user installs a binary distribution, using something like systinstall(8). It should be possible to handle both cases. On your subsequent question about the form of the statement: for math/lapack, yes, the statement could be changed to fit into the OPTIONS framework. But, as I wrote before, I put it in that form to mimic the similar statements in math/blas. The statements in math/blas must take into account the NO* variables, and WITHOUT_PROFILE, because the presence of these variables in the build environment or an included makefile is what actually controls whether the profiling libraries are built, via the relevant base system makefiles in /usr/share/mk, regardless of WITH_PROFILE. I will look into using the OPTIONS framework -- in the base system makefiles, unlike in Ports, there is a sanity check on the simultaneous use of WITH_FOO and WITHOUT_FOO. So there are some added safeguards, not normally available for Ports, that may make it possible to integrate this with OPTIONS. b. From owner-freebsd-ports@FreeBSD.ORG Wed Sep 1 00:39:47 2010 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EDA9510656A4 for ; Wed, 1 Sep 2010 00:39:47 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (builder.freebsd.org [IPv6:2001:4f8:fff6::4b]) by mx1.freebsd.org (Postfix) with ESMTP id C590C8FC13 for ; Wed, 1 Sep 2010 00:39:47 +0000 (UTC) Received: from builder.freebsd.org (localhost [127.0.0.1]) by builder.freebsd.org (8.14.4/8.14.4) with ESMTP id o810dlPN063058 for ; Wed, 1 Sep 2010 00:39:47 GMT (envelope-from erwin@builder.freebsd.org) Received: (from erwin@localhost) by builder.freebsd.org (8.14.4/8.14.3/Submit) id o810dl8E063056 for ports@FreeBSD.org; Wed, 1 Sep 2010 00:39:47 GMT (envelope-from erwin) Date: Wed, 1 Sep 2010 00:39:47 GMT From: Erwin Lansing Message-Id: <201009010039.o810dl8E063056@builder.freebsd.org> To: ports@FreeBSD.org Cc: Subject: INDEX now builds successfully on 6.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2010 00:39:48 -0000 From owner-freebsd-ports@FreeBSD.ORG Wed Sep 1 03:06:04 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D4ABF1065696 for ; Wed, 1 Sep 2010 03:06:04 +0000 (UTC) (envelope-from bf1783@googlemail.com) Received: from mail-wy0-f182.google.com (mail-wy0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id 6B0C88FC17 for ; Wed, 1 Sep 2010 03:06:03 +0000 (UTC) Received: by wyb33 with SMTP id 33so10143857wyb.13 for ; Tue, 31 Aug 2010 20:06:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:received:reply-to :in-reply-to:references:date:message-id:subject:from:to:cc :content-type; bh=RIMTN0Tkeg2DBDzhqUOX46U2UukvN71S9RchckjNCp4=; b=HQmdAQuv0EcOcoi6NLTF9KB0/d6ImvZOZHjWQcwy5ojtv+q+y/az90lZffz9fxQ4jO rh4TKtN6xqIjVNiicRU/1iwFxbNCb8HqEbmPmJYzCYvp0g4rfdV/g7ni6zKer9xzlo08 pzcC76c+ObCT3VyGX5erhisujfXFnjSX2Lqqc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:reply-to:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; b=GWKyg+tg+uM1HgJYVxzktpsX7+TLQQ4lECweCvUtS6P4t+QmI0vUHymZxdUQtj5vVk oOBLCCYFNafDNh95wnWNJb4v0YrKSD1rGQMvjyXcCAbKI5Fda8M71MQtJWmyh96wHWWG 8G8xRtFSkaSYVN/1hekHcwOQIkHO6AUdO8aNU= MIME-Version: 1.0 Received: by 10.216.131.161 with SMTP id m33mr7291748wei.13.1283310362991; Tue, 31 Aug 2010 20:06:02 -0700 (PDT) Received: by 10.216.63.146 with HTTP; Tue, 31 Aug 2010 20:06:02 -0700 (PDT) In-Reply-To: <4C7D76A6.7080401@DataIX.net> References: <4C7D76A6.7080401@DataIX.net> Date: Wed, 1 Sep 2010 03:06:02 +0000 Message-ID: From: "b. f." To: jhell Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-ports@freebsd.org Subject: Re: math/blas linking to gfortran with LDADD?= -lgfortran X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: bf1783@gmail.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2010 03:06:04 -0000 On 8/31/10, jhell wrote: > Looking closer at the math/blas & math/lapack ports: > > This statement does not make any sense. The logic is backwards for every > instance. And WITH_PROFILE would do. > .if !(defined(NOPROFILE) || defined(NO_PROFILE) || defined(WITHOUT_PROFILE)) > PLIST_FILES+= lib/libblas_p.a > .endif > > Which is basically saying: > Add that profile lib if NOPROFILE is not defined "_p is a profiled lib > why would you want to install this if the admin has NOT defined NOPROFILE? > Er, I'm not sure what you're getting at here. No means no. Really. The default, as I explained, is to build and install the profiling libraries, unless one or more of three disabling variables has been defined. And that's the default because users of these ports often use the profiled libraries when analyzing performance of their programs, which are usually computationally-intensive. Why the three variables? Because they control whether the profiling libraries are actually built via bsd.compat.mk and bsd.lib.mk. > > Simple following would do. > .if (defined(WITH_PROFILE) > PLIST_FILES+= lib/libblas_p.a > ,endif > > Then if it is really a concern that this has to default to on, then use > the options framework to present that to the user. At least in this > instance the user will at least know whats going on. As I wrote earlier, there needs to be some additional logic here, at least warnings about NO*, and maybe some other steps. There is a confluence of base system options with port options here. I will discuss it with the maintainer. b. From owner-freebsd-ports@FreeBSD.ORG Wed Sep 1 03:46:35 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6D9DB1065694 for ; Wed, 1 Sep 2010 03:46:35 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-gx0-f182.google.com (mail-gx0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id 1263B8FC08 for ; Wed, 1 Sep 2010 03:46:34 +0000 (UTC) Received: by gxk24 with SMTP id 24so3297243gxk.13 for ; Tue, 31 Aug 2010 20:46:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :x-enigmail-version:content-type:content-transfer-encoding; bh=ESjso0l4BlVv9MDVpnEDtTum8jYqk3ZI9FbczJCe6qQ=; b=RCRro56bRYZK/YPwuq5mf5Y3ppoBSmOCbXpuJnRf+9R6eRt5M2FsyDrVkP5nQFY3FO aKMImyyzs9J8CUYTlTqQi8KG3TM9dJ0vK+b4eNCDJCl+5wV+fSPBZ44C2lKum6jzE9hd 93mfiwH7eV7eEEJXZUguiAmh/Wh5Y9m+J8dyE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; b=F4gwNSzjcqM7/+U719VuklxbgypzpI2TNFfAdML3l1ULOdtmFVGsuvxbPiNf+ebGf1 LJkJog0poZnWQ/Br86ZyVoo/qu0BM2zPfTQH8uf687CX+ZyWFyljjHIY7zpI1QgJSJ5a 8ygZeKkcQXTa+q+DKazS8lPaUOqcn6hH32zq0= Received: by 10.150.136.10 with SMTP id j10mr4975413ybd.191.1283312794066; Tue, 31 Aug 2010 20:46:34 -0700 (PDT) Received: from centel.dataix.local (adsl-99-181-137-20.dsl.klmzmi.sbcglobal.net [99.181.137.20]) by mx.google.com with ESMTPS id q21sm9679045ybk.11.2010.08.31.20.46.32 (version=SSLv3 cipher=RC4-MD5); Tue, 31 Aug 2010 20:46:33 -0700 (PDT) Sender: "J. Hellenthal" Message-ID: <4C7DCC96.5030006@DataIX.net> Date: Tue, 31 Aug 2010 23:46:30 -0400 From: jhell User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.2.8) Gecko/20100806 Lightning/1.0b1 Thunderbird MIME-Version: 1.0 To: bf1783@gmail.com References: <4C7D70CA.2070104@DataIX.net> In-Reply-To: X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: "b. f." , FreeBSD Ports Subject: Re: math/blas linking to gfortran with LDADD?= -lgfortran X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2010 03:46:35 -0000 On 08/31/2010 20:06, b. f. wrote: > ? gfortran44 builds the object files, and gcc44 performs the linking > for the shared library. Their default search directories normally > allow them to find libgfortran at compile- and link-time. And > afterwards, at run-time, the appropriate rpath is inscribed in the > binary (see bsd.gcc.mk: this has been done for some time now), if the > system linker hints aren't sufficient. So this does not seem to > explain your problem, and that's why I asked for more complete > information. Since I don't want to spam the list with that volume of > material, that's why I asked for it to be sent via private email. My apologies I did not mean to infer that off-list mailing of those were a problem I just did not see it as needed, technically because math/blas will simply not build without a path to the gcc44 directory i.e -L/usr/local/lib/gcc44. Mailing you separately the contents what you asked for. Everything except the build errors as those are your standard linking errors for file not found. and can be reproduced by adding garbage to LDFLAGS i.e. -lslkdfksjdhf > > As I said before, I cannot account for this -- I really need to see > the complete information I requested earlier. Since gfortran44 is > used to build the library components, there should be undefined > symbols relating to libgfortran in all of the libraries, and the rpath > should be present in both cases, if all you did was remove the > explicit libgfortran from LDADD. The only difference should be the > presence or absence of a DT_NEEDED tag for libgfortran. > > I'll look into this. There is a dichotomy here: when building from > source, base system profiling libraries are built and installed by > default. The same may not be true if the user installs a binary > distribution, using something like systinstall(8). It should be > possible to handle both cases. Specifically I use WITHOUT_PROFILE in src.conf(5) to ensure that those libraries do not exist on the system in question due to cases like this one. If I had not put that in there then I probably would not have been called to attention with this upgrade error and blindly would have had profiled libraries installed. I do have the libraries on hand if I should ever need profiling with the system libraries but I do not. I install these in a separate location for ease of use on testbeds. One example that I have of prevention in this case is the re-entrant version of libc. I once had to recompile libc and somehow ended up in the libc_r directory instead and after installing this lib manually for some reason or another it was being found first by every program on the system causing a slow down. Not knowing what caused that slowdown I began recompiling ports which I might add was terribly slow and after compiling 50 or so ports and having them then directly linked to libc_r I found the root cause of the problem ``libc_r'' not thinking twice about this I removed libc_r, crashed the system and had to SU in and edit libmap.conf to temporarily fix the problem until I could get all those ports recompiled again. So in short. To make sure this does not happen again on a client system re-entrant & profiling are disabled on a larger scale. The side effect is I find ports that blindly link to profiled libraries. So far I can only account for these two ports in ~1.5 years of use & that is about the time that the above problem arose and I decided to tend to it. > > On your subsequent question about the form of the statement: for > math/lapack, yes, the statement could be changed to fit into the > OPTIONS framework. But, as I wrote before, I put it in that form to > mimic the similar statements in math/blas. The statements in > math/blas must take into account the NO* variables, and > WITHOUT_PROFILE, because the presence of these variables in the build > environment or an included makefile is what actually controls whether > the profiling libraries are built, via the relevant base system > makefiles in /usr/share/mk, regardless of WITH_PROFILE. I will look > into using the OPTIONS framework -- in the base system makefiles, > unlike in Ports, there is a sanity check on the simultaneous use of > WITH_FOO and WITHOUT_FOO. So there are some added safeguards, not > normally available for Ports, that may make it possible to integrate > this with OPTIONS. Here I did not define anything: pkg_delete -d blas-\* pkg_delete: file '/usr/local/lib/libblas_p.a' doesn't exist pkg_delete: couldn't entirely delete package (perhaps the packing list is incorrectly specified?) WITHOUT_PROFILE appears to work as it is supposed to by not adding that _p.a. Anyway I think Ive come to a better understanding of the issue that is really at hand with this case. It seems to me and I praise you guys/gals for being able to deal with it but there is simply to many knobs to account for things that could be handled by fewer knobs. The way I see it is WITH_ means use this and WITHOUT_ means do not use and can be contorted with operators like (!) in either form that already adds enough complexity to handle even the stickiest situations with ports but on top of that you have NOPROFILE NO_PROFILE etc... etc... and whatever else may be used to define (NO|DONT|DO|THAT|WITH|THESE) If this is for sheer compatibility then why aren't the *.mk files handling this instead of forcing it upon the maintainers. If you were to write a C program in this sense then gawd! only knows what the consequences would be so why are we doing it here?. Please do not take offense to any of this as I am just trying to understand why in a sea of Makefile's & define's. Regards, -- jhell,v From owner-freebsd-ports@FreeBSD.ORG Wed Sep 1 04:32:02 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 218EF10656BA; Wed, 1 Sep 2010 04:32:02 +0000 (UTC) (envelope-from swhetzel@gmail.com) Received: from mail-fx0-f54.google.com (mail-fx0-f54.google.com [209.85.161.54]) by mx1.freebsd.org (Postfix) with ESMTP id 817098FC1A; Wed, 1 Sep 2010 04:32:01 +0000 (UTC) Received: by fxm4 with SMTP id 4so5226722fxm.13 for ; Tue, 31 Aug 2010 21:32:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=iR8C8WAS6ioWsg97vi6mbfWE17aBzLZc14UesfdJJHo=; b=mBxcUfl/jg+7MrwKaScwDrmd3am4AN94nI+dn2k/w1xYFa376kPsve0CGubkoT7+Xq yd/TsWxxMiPRSE0QevcW3+O9FqiTA0bmegyhtu296yNGi/28tj7a65Kn00aJGI6GfG4R dKVtCxkhtqO6ABTOKyhTBjqpPTOjbpPi/X4qQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=A0TNGr7UdirXd7yMB4RsTpIM8c9Cl0Bg9ExRgNbbRcWWqD8P37CfaP18npL1XjHYTK rGCMWzMFfGAENrGQAHLUK9bf32gIm5acy4Z8I+2xNvLM0fVVAhxx6ckNT3eYcAp8LO8x 8WPmqcRa8fajw9/Q+zB5dGsuqRx2ifVvgTLVQ= MIME-Version: 1.0 Received: by 10.239.155.69 with SMTP id h5mr492115hbc.61.1283314208869; Tue, 31 Aug 2010 21:10:08 -0700 (PDT) Received: by 10.239.155.129 with HTTP; Tue, 31 Aug 2010 21:10:08 -0700 (PDT) In-Reply-To: References: <4C7D76A6.7080401@DataIX.net> Date: Tue, 31 Aug 2010 23:10:08 -0500 Message-ID: From: Scot Hetzel To: bf1783@gmail.com, maho@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-ports@freebsd.org Subject: Re: math/blas linking to gfortran with LDADD?= -lgfortran X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2010 04:32:02 -0000 On Tue, Aug 31, 2010 at 10:06 PM, b. f. wrote: > On 8/31/10, jhell wrote: >> Looking closer at the math/blas & math/lapack ports: >> >> This statement does not make any sense. The logic is backwards for every >> instance. And WITH_PROFILE would do. >> .if !(defined(NOPROFILE) || defined(NO_PROFILE) || defined(WITHOUT_PROFI= LE)) >> PLIST_FILES+=3D =A0 lib/libblas_p.a >> .endif >> >> Which is basically saying: >> Add that profile lib if NOPROFILE is not defined "_p is a profiled lib >> why would you want to install this if the admin has NOT defined NOPROFIL= E? >> > > Er, I'm not sure what you're getting at here. No means no. =A0Really. > The default, as I explained, is to build and install the profiling > libraries, unless one or more of three disabling variables has been > defined. And that's the default because users of these ports often use > the profiled libraries when analyzing performance of their programs, > which are usually computationally-intensive. =A0Why the three variables? > =A0Because they control whether the profiling libraries are actually > built via bsd.compat.mk and bsd.lib.mk. > Actually there are only 2 *_PROFILE variables (WITH_PROFILE and WITHOUT_PROFILE) that are user visible for the FreeBSD sources. The NOPROFILE variable is depreceiated, and the NO_PROFILE variable is only supposed to be used in Makefiles according to bsd.own.mk: # Define MK_* variables (which are either "yes" or "no") for users # to set via WITH_*/WITHOUT_* in /etc/src.conf and override in the # make(1) environment. # These should be tested with `=3D=3D "no"' or `!=3D "no"' in makefiles. # The NO_* variables should only be set by makefiles. So according to bsd.own.mk, this is the correct test for the math/blas port to determine if profiling libraries should be built: .if !defined(WITHOUT_PROFILE) PLIST_FILES+=3D lib/libblas_p.a .endif I also tested how these variables responded: vbox# cd /usr/src/lib/libcam vbox# make -V WITH_PROFILE -V MK_PROFILE -V NO_PROFILE -V WITHOUT_PROFILE yes vbox# make -V WITH_PROFILE -V MK_PROFILE -V NO_PROFILE -V WITHOUT_PROFILE WITH_PROFILE=3Dyes yes yes vbox# make -V WITH_PROFILE -V MK_PROFILE -V NO_PROFILE -V WITHOUT_PROFILE NO_PROFILE=3Dyes no yes vbox# make -V WITH_PROFILE -V MK_PROFILE -V NO_PROFILE -V WITHOUT_PROFILE WITHOUT_PROFILE=3Dyes no yes vbox# make -V WITH_PROFILE -V MK_PROFILE -V NO_PROFILE -V WITHOUT_PROFILE NOPROFILE=3Dyes "/usr/share/mk/bsd.compat.mk", line 35: warning: NOPROFILE is deprecated in favour of NO_PROFILE no yes As can be seen, NOPROFILE is deprecated. NOTE: WITHOUT_PROFILE would need to be set in /etc/make.conf (instead of /etc/src.conf) to disable building profiled libraries in the FreeBSD sources and the math/blas port. Scot From owner-freebsd-ports@FreeBSD.ORG Wed Sep 1 04:58:01 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B3DE10656B3; Wed, 1 Sep 2010 04:58:01 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-gx0-f182.google.com (mail-gx0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id CDA938FC12; Wed, 1 Sep 2010 04:58:00 +0000 (UTC) Received: by gxk24 with SMTP id 24so3314209gxk.13 for ; Tue, 31 Aug 2010 21:58:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :x-enigmail-version:content-type:content-transfer-encoding; bh=hZpb9Tg9G+/duKKKDU92sTKzePZuBWGXjt2uBYhjJYk=; b=htr7WcW/eFBCHN3nHtdwckSoV1QERs4DupcKhYm7OnoFVMg+NR0Xp5wi0ZV4GwmjY+ 2+OBLA0ogsJeWvi8mKAKx6mXyM+gdC+KUUs7nO/6ZluH2Vv0ou+czoqf0CoN3wWuXscF L1ua0L3KakcBkfjRdmTKWJTiSiemRA1tGesxY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; b=lzEMeA6Vdu6mxiCs7cbn4idsz/H69c4xMklhUb7pOkxIQQ0gtlkahykqx2YiGMeBRl 0BpJe0eMiCbKOwYjpWejfCjEjB6TwPU5S12iutc5VQYE7xuryF+CDHGz0CY7tjavxOJN 09Ezo93nQkZP/e6UaDYUtwEMdUKWsx9L1QC+k= Received: by 10.100.96.19 with SMTP id t19mr7639840anb.246.1283317080039; Tue, 31 Aug 2010 21:58:00 -0700 (PDT) Received: from centel.dataix.local (adsl-99-181-137-20.dsl.klmzmi.sbcglobal.net [99.181.137.20]) by mx.google.com with ESMTPS id w10sm10935079ank.14.2010.08.31.21.57.57 (version=SSLv3 cipher=RC4-MD5); Tue, 31 Aug 2010 21:57:59 -0700 (PDT) Sender: "J. Hellenthal" Message-ID: <4C7DDD54.7020602@DataIX.net> Date: Wed, 01 Sep 2010 00:57:56 -0400 From: jhell User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.2.8) Gecko/20100806 Lightning/1.0b1 Thunderbird MIME-Version: 1.0 To: Scot Hetzel References: <4C7D76A6.7080401@DataIX.net> In-Reply-To: X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: bf1783@gmail.com, maho@freebsd.org, freebsd-ports@freebsd.org Subject: Re: math/blas linking to gfortran with LDADD?= -lgfortran X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2010 04:58:01 -0000 On 09/01/2010 00:10, Scot Hetzel wrote: > On Tue, Aug 31, 2010 at 10:06 PM, b. f. wrote: >> On 8/31/10, jhell wrote: >>> Looking closer at the math/blas & math/lapack ports: >>> >>> This statement does not make any sense. The logic is backwards for every >>> instance. And WITH_PROFILE would do. >>> .if !(defined(NOPROFILE) || defined(NO_PROFILE) || defined(WITHOUT_PROFILE)) >>> PLIST_FILES+= lib/libblas_p.a >>> .endif >>> >>> Which is basically saying: >>> Add that profile lib if NOPROFILE is not defined "_p is a profiled lib >>> why would you want to install this if the admin has NOT defined NOPROFILE? >>> >> >> Er, I'm not sure what you're getting at here. No means no. Really. >> The default, as I explained, is to build and install the profiling >> libraries, unless one or more of three disabling variables has been >> defined. And that's the default because users of these ports often use >> the profiled libraries when analyzing performance of their programs, >> which are usually computationally-intensive. Why the three variables? >> Because they control whether the profiling libraries are actually >> built via bsd.compat.mk and bsd.lib.mk. >> > Actually there are only 2 *_PROFILE variables (WITH_PROFILE and > WITHOUT_PROFILE) that are user visible for the FreeBSD sources. The > NOPROFILE variable is depreceiated, and the NO_PROFILE variable is > only supposed to be used in Makefiles according to bsd.own.mk: > > # Define MK_* variables (which are either "yes" or "no") for users > # to set via WITH_*/WITHOUT_* in /etc/src.conf and override in the > # make(1) environment. > # These should be tested with `== "no"' or `!= "no"' in makefiles. > # The NO_* variables should only be set by makefiles. > > So according to bsd.own.mk, this is the correct test for the math/blas > port to determine if profiling libraries should be built: > > .if !defined(WITHOUT_PROFILE) > PLIST_FILES+= lib/libblas_p.a > .endif > > I also tested how these variables responded: > > vbox# cd /usr/src/lib/libcam > vbox# make -V WITH_PROFILE -V MK_PROFILE -V NO_PROFILE -V WITHOUT_PROFILE > > yes > > > vbox# make -V WITH_PROFILE -V MK_PROFILE -V NO_PROFILE -V > WITHOUT_PROFILE WITH_PROFILE=yes > yes > yes > > > vbox# make -V WITH_PROFILE -V MK_PROFILE -V NO_PROFILE -V > WITHOUT_PROFILE NO_PROFILE=yes > > no > yes > > vbox# make -V WITH_PROFILE -V MK_PROFILE -V NO_PROFILE -V > WITHOUT_PROFILE WITHOUT_PROFILE=yes > > no > > yes > > vbox# make -V WITH_PROFILE -V MK_PROFILE -V NO_PROFILE -V > WITHOUT_PROFILE NOPROFILE=yes > "/usr/share/mk/bsd.compat.mk", line 35: warning: NOPROFILE is > deprecated in favour of NO_PROFILE > > no > yes > > > As can be seen, NOPROFILE is deprecated. > > NOTE: WITHOUT_PROFILE would need to be set in /etc/make.conf (instead > of /etc/src.conf) to disable building profiled libraries in the > FreeBSD sources and the math/blas port. > > Scot Thank you Scot As for src.conf Yes I know it would need to be defined in make.conf globally to effect src & ports. But to my belief at the time I did not believe that anything in ports would blindly assume that setting something with profiling would be acceptable which is why I suggested the if defined(WITH_PROFILE) instead. Things that enable options like profiling usually used for debugging that is not used in general usually lead to an infestation of other targets and programs that link against them and in some cases like the -PIE instance a while back with samba and cups where something in one of the source files was configured in a way that lead to global profiling of anything that had enabled -PIE during their builds resulting in *.gprof files being created in /. This is just one of the reasons why I don't like profiling enabled without the user knowing that its going to happen. For reference PR/143924 & MFC commit r205567 that happened during releng/7.2 days. Regards & Thank you again. -- jhell,v From owner-freebsd-ports@FreeBSD.ORG Wed Sep 1 04:58:59 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EFC8A1065675; Wed, 1 Sep 2010 04:58:59 +0000 (UTC) (envelope-from bf1783@googlemail.com) Received: from mail-ww0-f50.google.com (mail-ww0-f50.google.com [74.125.82.50]) by mx1.freebsd.org (Postfix) with ESMTP id 5EC408FC12; Wed, 1 Sep 2010 04:58:59 +0000 (UTC) Received: by wwb34 with SMTP id 34so7976424wwb.31 for ; Tue, 31 Aug 2010 21:58:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:received:reply-to :in-reply-to:references:date:message-id:subject:from:to:cc :content-type; bh=kX5fY+v7S/X4jyYqD3z0mcUqBzAlEXnvcBlulm3IPrg=; b=FM9gWabv1hUTCWHEBHCgQXjcyNXEL4Lhgz73QvLjpYqkae85G0NGicGoL5XWumtuZ1 S1bUUKmFcla20cFOWqGLM39+xJJR5v7KabJlD8vBwxh60jJY1DIdD7lYw5I5x46aXlVA BGOCm0IEOfP8ANilYLaLnVCAVotwQ1nC6aZB0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:reply-to:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; b=gyvB9Jn/8MxjWjrc8b9jKCQQWMQWwtI87ymnq4TvVJum+CB/dWTVQXo6FpNvbXKR+E y4YjyuMQYNOdWWVcsDmmo9DvXG8LtQHK1tEshKCHb6zERpR4MJ9JVEkYd0KgbBUCQu+h MlKjz5SFQUIKM0IH6Kp/6LPlQzqT8+++R4tiM= MIME-Version: 1.0 Received: by 10.227.68.149 with SMTP id v21mr7566016wbi.138.1283317138487; Tue, 31 Aug 2010 21:58:58 -0700 (PDT) Received: by 10.216.63.146 with HTTP; Tue, 31 Aug 2010 21:58:58 -0700 (PDT) In-Reply-To: References: <4C7D76A6.7080401@DataIX.net> Date: Wed, 1 Sep 2010 04:58:58 +0000 Message-ID: From: "b. f." To: Scot Hetzel Content-Type: text/plain; charset=ISO-8859-1 Cc: maho@freebsd.org, freebsd-ports@freebsd.org Subject: Re: math/blas linking to gfortran with LDADD?= -lgfortran X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: bf1783@gmail.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2010 04:59:00 -0000 On 9/1/10, Scot Hetzel wrote: > On Tue, Aug 31, 2010 at 10:06 PM, b. f. wrote: >> On 8/31/10, jhell wrote: >So according to bsd.own.mk, this is the correct test for the math/blas >port to determine if profiling libraries should be built: > >.if !defined(WITHOUT_PROFILE) >PLIST_FILES+= lib/libblas_p.a >.endif No, you are leaving the order out of account. Apart from local and custom makefiles, the makefiles are included so: /usr/share/mk/sys.mk /etc/make.conf /usr/share/mk/bsd.compat.mk usr/share/mk/bsd.cpu.mk Makefile(for math/blas) /usr/share/mk/bsd.port.mk /usr/share/mk/bsd.own.mk /usr/ports/Mk/bsd.port.mk /usr/ports/Mk/bsd.commands.mk /usr/ports/Mk/bsd.perl.mk /usr/ports/Mk/bsd.gcc.mk /usr/ports/Mk/bsd.perl.mk /usr/ports/Mk/bsd.licenses.mk /usr/ports/Mk/bsd.sites.mk ... So if NO_PROFILE or NOPROFILE is defined, a test for WITHOUT_PROFILE in Makefile will still fail because NO_PROFILE is not mapped to WITHOUT_PROFILE until bsd.own.mk, after the test. Just be patient and we'll sort it out. > > As can be seen, NOPROFILE is deprecated. It may be deprecated, but it will still take effect without BURN_BRIDGES, and so still must be accounted for. > > NOTE: WITHOUT_PROFILE would need to be set in /etc/make.conf (instead > of /etc/src.conf) to disable building profiled libraries in the > FreeBSD sources and the math/blas port. No, it will still take effect, after the math/blas Makefile is parsed, unless _WITHOUT_SRCCONF is defined. See bsd.own.mk. b. From owner-freebsd-ports@FreeBSD.ORG Wed Sep 1 05:15:30 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9776210660FD; Wed, 1 Sep 2010 05:15:03 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-yw0-f54.google.com (mail-yw0-f54.google.com [209.85.213.54]) by mx1.freebsd.org (Postfix) with ESMTP id 32D388FC1D; Wed, 1 Sep 2010 05:15:02 +0000 (UTC) Received: by ywt2 with SMTP id 2so3345658ywt.13 for ; Tue, 31 Aug 2010 22:15:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :x-enigmail-version:content-type:content-transfer-encoding; bh=NLKIhqeKFsT9nQ6zfl7rnP7aDMJCXL3bIsZ91wM9XsU=; b=bm7c4DKS5HRe7FakODvaafe12jiwnkBRquv1F65534oW7p5egQsY2onmwBiVoSc1+B LBHRWUVgE/z1QmBwKdVpwm3voZs2GtkjtTy6BVs/2bmyXhQ1APT0igEzyMEzkIhM6UwL hmrEOST6ZmwcRrlZfqas5ujRHBDsywIfDbODA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; b=Pe0SB5/8JmKWaSXKZGV7s+oX7yeK0dl9g3RZbGBPzEMosmSWd7VBaZtNOVbv6JhhIc +qSEpOx/Oz6QWG/jY8ri3KHNNvddCvrSJYCf//XlTK27s/8lspnmbwWpX+FuHQrFGF/q cHozevtT0r7Jt2o5ViNh3jDVkZLzA16TWOuRs= Received: by 10.150.185.11 with SMTP id i11mr3007225ybf.63.1283318102372; Tue, 31 Aug 2010 22:15:02 -0700 (PDT) Received: from centel.dataix.local (adsl-99-181-137-20.dsl.klmzmi.sbcglobal.net [99.181.137.20]) by mx.google.com with ESMTPS id 36sm399158ybr.8.2010.08.31.22.15.00 (version=SSLv3 cipher=RC4-MD5); Tue, 31 Aug 2010 22:15:01 -0700 (PDT) Sender: "J. Hellenthal" Message-ID: <4C7DE153.2090901@DataIX.net> Date: Wed, 01 Sep 2010 01:14:59 -0400 From: jhell User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.2.8) Gecko/20100806 Lightning/1.0b1 Thunderbird MIME-Version: 1.0 To: bf1783@gmail.com References: <4C7D76A6.7080401@DataIX.net> In-Reply-To: X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: maho@freebsd.org, Scot Hetzel , "b. f." , freebsd-ports@freebsd.org Subject: Re: math/blas linking to gfortran with LDADD?= -lgfortran X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2010 05:15:31 -0000 On 09/01/2010 00:58, b. f. wrote: > No, it will still take effect, after the math/blas Makefile is parsed, > unless _WITHOUT_SRCCONF is defined. See bsd.own.mk. ports(7) pulls in src.conf ??? I hope I am not understanding this right... -- jhell,v From owner-freebsd-ports@FreeBSD.ORG Wed Sep 1 05:24:40 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 80E11106650C; Wed, 1 Sep 2010 05:24:38 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by mx1.freebsd.org (Postfix) with ESMTP id 1C2B18FC2D; Wed, 1 Sep 2010 05:24:37 +0000 (UTC) Received: by yxn35 with SMTP id 35so2707971yxn.13 for ; Tue, 31 Aug 2010 22:24:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :x-enigmail-version:content-type:content-transfer-encoding; bh=mUNjCYaVqxvRvGHgl27JHZojOszs/QoWZ5USwyib5hg=; b=uOPyigJZRisIEseqCyxr+w6zTuLm0E32w+arrcwVaILu9RMujb+lsiXTEOybmEj3eQ m416lwyIj223vzBZ0SFvjcD+CFbslVC+aPK7uSd5/wQ/rmUrshHNUndtsRO6ef9tzJJI t/w/S/s4TwJI9mHogq96QB9PzNcxZ36c7Xvag= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; b=uY8qcVmzeGtlpwcZTjT0Kkz44UXpY62E8lBYmRX9WyjioB41XxYWpcOJUE6GaFYBcE rY45YHA+eGb0PdXiZ+VYF6j6fBT7pA6I00FgvenU3NQVnD+6192p58ENn5jDWtQ9XYwO vT5kxz/s30C9Rm/rUeIODCG1GjKifDsayzMnw= Received: by 10.150.53.17 with SMTP id b17mr2894519yba.3.1283318677402; Tue, 31 Aug 2010 22:24:37 -0700 (PDT) Received: from centel.dataix.local (adsl-99-181-137-20.dsl.klmzmi.sbcglobal.net [99.181.137.20]) by mx.google.com with ESMTPS id i4sm9778192ybd.3.2010.08.31.22.24.35 (version=SSLv3 cipher=RC4-MD5); Tue, 31 Aug 2010 22:24:36 -0700 (PDT) Sender: "J. Hellenthal" Message-ID: <4C7DE392.4020605@DataIX.net> Date: Wed, 01 Sep 2010 01:24:34 -0400 From: jhell User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.2.8) Gecko/20100806 Lightning/1.0b1 Thunderbird MIME-Version: 1.0 To: bf1783@gmail.com References: <4C7D76A6.7080401@DataIX.net> <4C7DE153.2090901@DataIX.net> In-Reply-To: <4C7DE153.2090901@DataIX.net> X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: maho@freebsd.org, Scot Hetzel , "b. f." , freebsd-ports@freebsd.org Subject: Re: math/blas linking to gfortran with LDADD?= -lgfortran X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2010 05:24:40 -0000 On 09/01/2010 01:14, jhell wrote: > On 09/01/2010 00:58, b. f. wrote: >> No, it will still take effect, after the math/blas Makefile is parsed, >> unless _WITHOUT_SRCCONF is defined. See bsd.own.mk. > > ports(7) pulls in src.conf ??? I hope I am not understanding this right... > No wonder why some of my ports are fricking ticking my counters with ccache! (!@#!%#$%#@!$#%!@# !@#!$@#%@% @$#@$@%~#^@#^) Now that I know I can burn that bridge right now by adding that to make.conf in a .if (.CURDIR:M/usr/ports*) FF Sakes. Thank you. -- jhell,v From owner-freebsd-ports@FreeBSD.ORG Wed Sep 1 05:27:52 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4EB93106566C; Wed, 1 Sep 2010 05:27:52 +0000 (UTC) (envelope-from bf1783@googlemail.com) Received: from mail-wy0-f182.google.com (mail-wy0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id B02478FC1B; Wed, 1 Sep 2010 05:27:51 +0000 (UTC) Received: by wyb33 with SMTP id 33so10271568wyb.13 for ; Tue, 31 Aug 2010 22:27:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:received:reply-to :in-reply-to:references:date:message-id:subject:from:to:cc :content-type; bh=Jzz3z6TqUlgXzmpU07AwQCWfNhV3pTFUrhZqkSFcFUU=; b=mZDkjatLemD2Gx3iomyHFTQzsKdt8Fcq1XrHw51WKjqjzyWhRflhpyQJSc4fxCHehu fvuokU+5SUtFYliC0GFTziGMl03oGBl+WVfrUklqRqluIvzAo/NLep71fNZM914yjLoD 89Xtp4hyDIJhng0YR/u17OLJBH8pi1NIbNArc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:reply-to:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; b=QVgrbzxElfeZlF4aFCei0jGRhovDlfmE7xCswKXP3VlfDSPqdDq+r0nYfdc/E9JVSn IriY5lJXZeXOq56nAC9qKsxN5SNyKolkXbNKv3Ly1wB0cmJXBOIT19QNk4XMu4RVY4SV 7tzbqHl3Ac/4Pk8+hj6xzP0cu1zeq2Z/gjZn0= MIME-Version: 1.0 Received: by 10.216.157.81 with SMTP id n59mr7336317wek.84.1283318870697; Tue, 31 Aug 2010 22:27:50 -0700 (PDT) Received: by 10.216.63.146 with HTTP; Tue, 31 Aug 2010 22:27:50 -0700 (PDT) In-Reply-To: <4C7DE153.2090901@DataIX.net> References: <4C7D76A6.7080401@DataIX.net> <4C7DE153.2090901@DataIX.net> Date: Wed, 1 Sep 2010 05:27:50 +0000 Message-ID: From: "b. f." To: jhell Content-Type: text/plain; charset=ISO-8859-1 Cc: maho@freebsd.org, Scot Hetzel , freebsd-ports@freebsd.org Subject: Re: math/blas linking to gfortran with LDADD?= -lgfortran X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: bf1783@gmail.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2010 05:27:52 -0000 On 9/1/10, jhell wrote: > On 09/01/2010 00:58, b. f. wrote: >> No, it will still take effect, after the math/blas Makefile is parsed, >> unless _WITHOUT_SRCCONF is defined. See bsd.own.mk. > > ports(7) pulls in src.conf ??? I hope I am not understanding this right... > In this case, yes. Because math/blas is one of a few ports that takes advantage of some base system makefiles to construct binaries and libraries. It's an old port (the software was written in the 70's and it was introduced to Ports in Oct. 1994, just a few months after the Ports repository was created), and since the needed machinery had just been constructed in the base system (this was back in the days when Fortran was still in the base system, and HPC was one of the key applications), they just used that machinery, rather than reinventing the wheel. But that means that, since it uses base system makefiles, it has inevitably been subject to some of the conventions and constructs of the base system (the latest change being the userland dtrace project, which has injected a lot of ctf stuff into the makefiles in -CURRENT), as well as those of Ports. That's not altogether bad (they influence one another, as jhell's problem with an absence of profiling libraries reminds us), but it has to be handled properly. b. From owner-freebsd-ports@FreeBSD.ORG Wed Sep 1 05:41:52 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BE6A11065673; Wed, 1 Sep 2010 05:41:52 +0000 (UTC) (envelope-from bf1783@googlemail.com) Received: from mail-ww0-f50.google.com (mail-ww0-f50.google.com [74.125.82.50]) by mx1.freebsd.org (Postfix) with ESMTP id 1780E8FC0A; Wed, 1 Sep 2010 05:41:51 +0000 (UTC) Received: by wwb34 with SMTP id 34so8015413wwb.31 for ; Tue, 31 Aug 2010 22:41:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:received:reply-to :in-reply-to:references:date:message-id:subject:from:to:cc :content-type; bh=FOb0d15O9UJhjmXzZLMThIA+z85OmYwsl4j1Hjb3G8o=; b=XaJIoL/QUF3oT/hmIryFUDu/IPFvE4vdTihzuh8Hkf2QA5GhzKb5WCOYlJS+DKK65e WZFp1BZHaJg9imOERgMpQ/Je1H6CRfJNaAF+VpYRxhXS4sT6WVQl1vEjmQz3gi8NtMp/ sTnIa7y34UV/nNiP2CUSiVvIBNeB5NshxlXwI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:reply-to:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; b=bK5SWD6WVL+avj8sgaLHP+7jtZ1bpv8p4EkdwG7mnn0q4PVXYkgRry3jJMaRMP9VTU cqBc45yWwX/ZL6BjIvvgmjtrF0QDo609/mCHcaT7lfcawLEf9Tj7Z0kOQachj2HfnWcV Ze3eV8K1d1HoBTzPMnrAtmhqJ5cV+IFsVQoH0= MIME-Version: 1.0 Received: by 10.216.11.66 with SMTP id 44mr7412276wew.69.1283319699133; Tue, 31 Aug 2010 22:41:39 -0700 (PDT) Received: by 10.216.63.146 with HTTP; Tue, 31 Aug 2010 22:41:39 -0700 (PDT) In-Reply-To: <4C7DE392.4020605@DataIX.net> References: <4C7D76A6.7080401@DataIX.net> <4C7DE153.2090901@DataIX.net> <4C7DE392.4020605@DataIX.net> Date: Wed, 1 Sep 2010 05:41:39 +0000 Message-ID: From: "b. f." To: jhell Content-Type: text/plain; charset=ISO-8859-1 Cc: maho@freebsd.org, Scot Hetzel , freebsd-ports@freebsd.org Subject: Re: math/blas linking to gfortran with LDADD?= -lgfortran X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: bf1783@gmail.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2010 05:41:52 -0000 On 9/1/10, jhell wrote: > On 09/01/2010 01:14, jhell wrote: >> On 09/01/2010 00:58, b. f. wrote: >>> No, it will still take effect, after the math/blas Makefile is parsed, >>> unless _WITHOUT_SRCCONF is defined. See bsd.own.mk. >> >> ports(7) pulls in src.conf ??? I hope I am not understanding this right... >> > > No wonder why some of my ports are fricking ticking my counters with > ccache! (!@#!%#$%#@!$#%!@# !@#!$@#%@% @$#@$@%~#^@#^) > > Now that I know I can burn that bridge right now by adding that to > make.conf in a .if (.CURDIR:M/usr/ports*) Well, that would be wise in any event, to minimize build pollution. But if you look in /usr/share/mk/bsd.port.mk, you will see that bsd.own.mk is typically only included after _WITHOUT_SRCCONF is defined. It is only exceptional cases where src.conf can have any effect in Ports. b. From owner-freebsd-ports@FreeBSD.ORG Wed Sep 1 06:30:40 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7BC3F10656B1; Wed, 1 Sep 2010 06:30:40 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by mx1.freebsd.org (Postfix) with ESMTP id 147F98FC13; Wed, 1 Sep 2010 06:30:39 +0000 (UTC) Received: by yxn35 with SMTP id 35so2724548yxn.13 for ; Tue, 31 Aug 2010 23:30:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :x-enigmail-version:content-type:content-transfer-encoding; bh=MXQenxGWzq54HRZP9QECBKYe+pPwsehxxwwe2ZijXXk=; b=m8hf+emMoffrHHMRTFoqVfFsHxYvAzXXjLR0FB4AppeiulFKZ08hIQVHr2Zv0wPHdk aY3qCuO7TKU6uib9iNhk9wpg6IHZwg23+CNpFVwBK4bm5OXWZ+RYo5GpZqvPU/eL5pR/ a7iKb30tYjrPntIMESpgiBUBqPkoo9dLzEdsA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; b=hmVks8UjBEvmfjT+EHJZFbhOX4EB7FRhYW9ayoY9LkPlqtjCrUlWM0Gja1qRubZMPg PKZcLRZBAluEhrdXB0U27cosizV6Yr34sLMvYXsy+jNrAGc3YxOoN9lL1lE8e4idEIff +89qu2sVViVdrxrRQ9ctwqrI7Y2F+CJrDUVGI= Received: by 10.150.217.15 with SMTP id p15mr494574ybg.406.1283322639176; Tue, 31 Aug 2010 23:30:39 -0700 (PDT) Received: from centel.dataix.local (adsl-99-181-137-20.dsl.klmzmi.sbcglobal.net [99.181.137.20]) by mx.google.com with ESMTPS id t2sm464592yba.14.2010.08.31.23.30.37 (version=SSLv3 cipher=RC4-MD5); Tue, 31 Aug 2010 23:30:38 -0700 (PDT) Sender: "J. Hellenthal" Message-ID: <4C7DF30C.5080006@DataIX.net> Date: Wed, 01 Sep 2010 02:30:36 -0400 From: jhell User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.2.8) Gecko/20100806 Lightning/1.0b1 Thunderbird MIME-Version: 1.0 To: bf1783@gmail.com References: <4C7D76A6.7080401@DataIX.net> <4C7DE153.2090901@DataIX.net> <4C7DE392.4020605@DataIX.net> In-Reply-To: X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: maho@freebsd.org, Scot Hetzel , "b. f." , freebsd-ports@freebsd.org Subject: Re: math/blas linking to gfortran with LDADD?= -lgfortran X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2010 06:30:40 -0000 On 09/01/2010 01:41, b. f. wrote: > On 9/1/10, jhell wrote: >> On 09/01/2010 01:14, jhell wrote: >>> On 09/01/2010 00:58, b. f. wrote: >>>> No, it will still take effect, after the math/blas Makefile is parsed, >>>> unless _WITHOUT_SRCCONF is defined. See bsd.own.mk. >>> >>> ports(7) pulls in src.conf ??? I hope I am not understanding this right... >>> >> >> No wonder why some of my ports are fricking ticking my counters with >> ccache! (!@#!%#$%#@!$#%!@# !@#!$@#%@% @$#@$@%~#^@#^) >> >> Now that I know I can burn that bridge right now by adding that to >> make.conf in a .if (.CURDIR:M/usr/ports*) > > Well, that would be wise in any event, to minimize build pollution. > But if you look in /usr/share/mk/bsd.port.mk, you will see that > bsd.own.mk is typically only included after _WITHOUT_SRCCONF is > defined. It is only exceptional cases where src.conf can have any > effect in Ports. > > b. So really then the only ultimate way to get around this if someone needed it that bad would be make.conf with a .CURDIR:M for /usr/src/* and pull in their own dynamically evil hidden defines. Or creating their own define that will not be referenced by anything in source or ports. This is mind boggling in more ways than one but at least knowing this now can save the heart ache in the future. Personally I think were hitting a design bump in the road here that raises concern of how is this going to look 5,10,15 years from now. This seems a pretty apparent warning sign IMHO that something should be forked from this now and work be done to separate the two and make a simple strategic set of knobs that are well defined and minimal by design ultimately easing the project and the cruft floating around the pkg_install-NG debates. I know these are a lot of things to handle all at once given the large amount there is to work with but since these all of a sudden have been coming out of the framework and becoming more and more apparent its time to fix them permanently. If only I had the time and the money to sit here all day I would be more than happy to take this on but unfortunately I don't, at least for right now. Thanks, Regards & Good Dreams, -- jhell,v From owner-freebsd-ports@FreeBSD.ORG Wed Sep 1 06:31:37 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E5D7410656A9; Wed, 1 Sep 2010 06:31:36 +0000 (UTC) (envelope-from swhetzel@gmail.com) Received: from mail-fx0-f54.google.com (mail-fx0-f54.google.com [209.85.161.54]) by mx1.freebsd.org (Postfix) with ESMTP id 470E48FC17; Wed, 1 Sep 2010 06:31:36 +0000 (UTC) Received: by fxm4 with SMTP id 4so5264132fxm.13 for ; Tue, 31 Aug 2010 23:31:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=SP5loXVf+mqQxAaHtOuD4PqVthWL5uaNiBj3tAPmGQY=; b=I2gR7iwLdKBDvFijNb71ktiDbrhOPOej4amkg0H5lA8WR4pqMWi2midjQV4ukXrsKm P3YIDjVPe/+7VEDyO6QPIpXseuDINN8vFx+tqv8ARLFqkS0h5n7RD24jRyO54oPDC6MK nxdrNKfpkSRYoGCXEzParhiu6XgirdW6rhse8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=pZIM85bOWc7L+8HF/Iv1geQIuHpoCJrgMZ9uR8q8ZguGxoO2u3+VuFaXq7Kj78i6c9 A38e+wzlZ5y0P02F+ASmut+QCVdciqS5BIXFw85kZ2qOIxSIAqnm6pLFU8aSKjj51Fk+ /W09uLu9+89xdO3XQ2fS9394bH1Mof7oIXQVo= MIME-Version: 1.0 Received: by 10.239.142.6 with SMTP id e6mr162612hba.31.1283322694915; Tue, 31 Aug 2010 23:31:34 -0700 (PDT) Received: by 10.239.155.129 with HTTP; Tue, 31 Aug 2010 23:31:34 -0700 (PDT) In-Reply-To: References: <4C7D76A6.7080401@DataIX.net> Date: Wed, 1 Sep 2010 01:31:34 -0500 Message-ID: From: Scot Hetzel To: bf1783@gmail.com Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: maho@freebsd.org, freebsd-ports@freebsd.org Subject: Re: math/blas linking to gfortran with LDADD?= -lgfortran X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2010 06:31:37 -0000 On Tue, Aug 31, 2010 at 11:58 PM, b. f. wrote: > On 9/1/10, Scot Hetzel wrote: >> On Tue, Aug 31, 2010 at 10:06 PM, b. f. wrote: >>> On 8/31/10, jhell wrote: > >>So according to bsd.own.mk, this is the correct test for the math/blas >>port to determine if profiling libraries should be built: >> >>.if !defined(WITHOUT_PROFILE) >>PLIST_FILES+=3D =A0 lib/libblas_p.a >>.endif > > No, you are leaving the order out of account. =A0Apart from local and > custom makefiles, the makefiles are included so: > > /usr/share/mk/sys.mk > /etc/make.conf > /usr/share/mk/bsd.compat.mk > usr/share/mk/bsd.cpu.mk > Makefile(for math/blas) > /usr/share/mk/bsd.port.mk > /usr/share/mk/bsd.own.mk > /usr/ports/Mk/bsd.port.mk > /usr/ports/Mk/bsd.commands.mk > /usr/ports/Mk/bsd.perl.mk > /usr/ports/Mk/bsd.gcc.mk > /usr/ports/Mk/bsd.perl.mk > /usr/ports/Mk/bsd.licenses.mk > /usr/ports/Mk/bsd.sites.mk > ... > > So if NO_PROFILE or NOPROFILE is defined, a test for WITHOUT_PROFILE > in Makefile will still fail because NO_PROFILE is not mapped to > WITHOUT_PROFILE until bsd.own.mk, after the test. =A0Just be patient and > we'll sort it out. > >> >> As can be seen, NOPROFILE is deprecated. > > It may be deprecated, but it will still take effect without > BURN_BRIDGES, and so still must be accounted for. > >> >> NOTE: WITHOUT_PROFILE would need to be set in /etc/make.conf (instead >> of /etc/src.conf) to disable building profiled libraries in the >> FreeBSD sources and the math/blas port. > > No, it will still take effect, after the math/blas Makefile is parsed, > unless _WITHOUT_SRCCONF is defined. =A0See bsd.own.mk. > > b. > I created PR 150174, before I got your reply: http://www.freebsd.org/cgi/query-pr.cgi?pr=3D150174 I changed the port to use the OPTIONS framework to enable/disable profiled libraries. The only thing I didn't take into account was the bsd.lib.mk was still pulling in /etc/src.conf. To fix this we just need to add _WITHOUT_SRCCONF to the MAKE_ARGS (should they be MAKE_ENV?). Scot From owner-freebsd-ports@FreeBSD.ORG Wed Sep 1 07:12:04 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C8A8910656AE; Wed, 1 Sep 2010 07:12:04 +0000 (UTC) (envelope-from swhetzel@gmail.com) Received: from mail-fx0-f54.google.com (mail-fx0-f54.google.com [209.85.161.54]) by mx1.freebsd.org (Postfix) with ESMTP id 305788FC12; Wed, 1 Sep 2010 07:12:04 +0000 (UTC) Received: by fxm4 with SMTP id 4so5276698fxm.13 for ; Wed, 01 Sep 2010 00:12:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=ICKrDtIQvtaIQoMdsFYVurIf4SE1dt6rgw7+sDVRZX4=; b=ZQBp3RRC+N58ZfvkX7SskLAJYly2gMsS1/EBBQF4+joVef62VlnuFkP/yTAHWsJjlQ B7sUFPqMnfVWI5jnUaVNLQpd2Ge8SlBImIFl98E322aH/NDpzIyg/GxSLppQpCXoPdbH 33yq8Eb7UqRFlPc6us0sgbNeHYpe8dvXXRts0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=d9QymqjuD+34Cwaif3gFOF1exoHX0X+PiH3rKCVezflaMQiT1Vj5oEx0OrRVYhp9/R jo2KX2DMdSgbpUWwamefbhuX3JsSI3+jNN5Vu2shzqFCgmDrh7KoO1gBm1oa2ytQp/kf HnKLlb57CRIa0ylMMPPGWRex7ZyV185OM204A= MIME-Version: 1.0 Received: by 10.239.160.132 with SMTP id c4mr365429hbd.171.1283325123222; Wed, 01 Sep 2010 00:12:03 -0700 (PDT) Received: by 10.239.155.129 with HTTP; Wed, 1 Sep 2010 00:12:03 -0700 (PDT) In-Reply-To: References: <4C7D76A6.7080401@DataIX.net> Date: Wed, 1 Sep 2010 02:12:03 -0500 Message-ID: From: Scot Hetzel To: bf1783@gmail.com Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: maho@freebsd.org, freebsd-ports@freebsd.org Subject: Re: math/blas linking to gfortran with LDADD?= -lgfortran X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2010 07:12:04 -0000 On Wed, Sep 1, 2010 at 1:31 AM, Scot Hetzel wrote: >> No, it will still take effect, after the math/blas Makefile is parsed, >> unless _WITHOUT_SRCCONF is defined. =A0See bsd.own.mk. >> >> b. >> > > I created PR 150174, before I got your reply: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D150174 > > I changed the port to use the OPTIONS framework to enable/disable > profiled libraries. =A0The only thing I didn't take into account was the > bsd.lib.mk was still pulling in /etc/src.conf. =A0To fix this we just > need to add _WITHOUT_SRCCONF to the MAKE_ARGS (should they be > MAKE_ENV?). > I retested using MAKE_ENV and it works. Unfortunately, adding _WITHOUT_SRCCONF causes: =3D=3D=3D> Building for blas-1.0_5 "/usr/share/mk/bsd.lib.mk", line 31: Malformed conditional (${MK_ASSERT_DEBUG} =3D=3D "no") "/usr/share/mk/bsd.lib.mk", line 34: if-less endif "/usr/share/mk/bsd.libnames.mk", line 20: Malformed conditional (${MK_BIND_LIBS} !=3D "no") : due to _WITHOUT_SRCCONF is preventing bsd.own.mk from defining these variab= les. I found a way to solve this, by defining SRCCONF=3D"", which prevents /etc/src.conf from being pulled in automatically. Scot From owner-freebsd-ports@FreeBSD.ORG Wed Sep 1 08:05:32 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0AA4010656A4 for ; Wed, 1 Sep 2010 08:05:32 +0000 (UTC) (envelope-from david@vizion2000.net) Received: from dns1.vizion2000.net (dns1.vizion2000.net [62.49.197.50]) by mx1.freebsd.org (Postfix) with ESMTP id 8EA7F8FC17 for ; Wed, 1 Sep 2010 08:05:31 +0000 (UTC) Received: by dns1.vizion2000.net (Postfix, from userid 1001) id AEE5A34D462; Wed, 1 Sep 2010 09:05:15 +0100 (BST) From: David Southwell Organization: Voice & Vision To: freebsd-ports@freebsd.org Date: Wed, 1 Sep 2010 09:05:15 +0100 User-Agent: KMail/1.13.5 (FreeBSD/7.2-RELEASE-p3; KDE/4.4.5; amd64; ; ) References: <201008312313.58505.david@vizion2000.net> In-Reply-To: MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <201009010905.15594.david@vizion2000.net> Subject: Re: comms/spandsp compile failure on upgrade X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2010 08:05:32 -0000 > On Tue, Aug 31, 2010 at 7:13 PM, David Southwell > > wrote: > > Hi > > > > On amd64 freebsd 7.1 > > Strange, i tested it on 7.2-RELEASE amd64 and it built without > any problem. > > All your other ports are up-to-date? Yep all up to date immediately before the original post. Something weird however. Originally spandsp failed to upgrade as part of portupgrade -a run giving the same error as shown in the original post. I then cd to the port directory. The errors were again shown after make clean & make. This produced the errors which were copied to the posting. I then ran portupgrade -a which produced the following: __________________________________________ In file included from spandsp.h:93, from filter_tools.c:49: ./spandsp/t30_api.h:451: error: conflicting types for 't30_set_ecm_capability' /usr/local/include/spandsp/t30.h:803: error: previous declaration of 't30_set_ecm_capability' was here ./spandsp/t30_api.h:468: error: conflicting types for 't30_set_supported_modems' /usr/local/include/spandsp/t30.h:779: error: previous declaration of 't30_set_supported_modems' was here ./spandsp/t30_api.h:475: error: conflicting types for 't30_set_supported_compressions' /usr/local/include/spandsp/t30.h:785: error: previous declaration of 't30_set_supported_compressions' was here ./spandsp/t30_api.h:482: error: conflicting types for 't30_set_supported_resolutions' /usr/local/include/spandsp/t30.h:791: error: previous declaration of 't30_set_supported_resolutions' was here ./spandsp/t30_api.h:489: error: conflicting types for 't30_set_supported_image_sizes' /usr/local/include/spandsp/t30.h:797: error: previous declaration of 't30_set_supported_image_sizes' was here gmake[2]: *** [make_modem_filter] Error 1 gmake[2]: Leaving directory `/usr/ports/comms/spandsp/work/spandsp-0.0.5/src' gmake[1]: *** [all] Error 2 gmake[1]: Leaving directory `/usr/ports/comms/spandsp/work/spandsp-0.0.5/src' gmake: *** [all-recursive] Error 1 *** Error code 1 Stop in /usr/ports/comms/spandsp. ---> Backing up the old version ---> Uninstalling the old version ---> Deinstalling 'spandsp-0.0.3_2' ---> Preserving /usr/local/lib/libspandsp.so.0 as /usr/local/lib/compat/pkg/libspandsp.so.0 pkg_delete: package 'spandsp-0.0.3_2' is required by these other packages and may not be deinstalled (but I'll delete it anyway): astfax-1.0_9 [Updating the pkgdb in /var/db/pkg ... - 1327 packages found (-1 +0) (...) done] ---> Installing the new version via the port ===> Building for spandsp-0.0.5 Making all in src gmake[1]: Entering directory `/usr/ports/comms/spandsp/work/spandsp-0.0.5/src' gmake all-am gmake[2]: Entering directory `/usr/ports/comms/spandsp/work/spandsp-0.0.5/src' cc -I/usr/local/include -I/usr/local/include/libxml2 -I. -o make_modem_filter make_modem_filter.c filter_tools.c -lm ./make_modem_filter -m V.17 -i -r >v17rx_fixed_rrc.h ./make_modem_filter -m V.17 -r >v17rx_floating_rrc.h : : /usr/ports/comms/spandsp/work/spandsp-0.0.5/config/install-sh -c -m 644 'spandsp/timing.h' '/usr/local/include/spandsp/timing.h' /usr/ports/comms/spandsp/work/spandsp-0.0.5/config/install-sh -c -m 644 'spandsp/tone_detect.h' '/usr/local/include/spandsp/tone_detect.h' /usr/ports/comms/spandsp/work/spandsp-0.0.5/config/install-sh -c -m 644 'spandsp/tone_generate.h' '/usr/local/include/spandsp/tone_generate.h' /usr/ports/comms/spandsp/work/spandsp-0.0.5/config/install-sh -c -m 644 'spandsp/v17rx.h' '/usr/local/include/spandsp/v17rx.h' /usr/ports/comms/spandsp/work/spandsp-0.0.5/config/install-sh -c -m 644 'spandsp/v17tx.h' '/usr/local/include/spandsp/v17tx.h' /usr/ports/comms/spandsp/work/spandsp-0.0.5/config/install-sh -c -m 644 'spandsp/v22bis.h' '/usr/local/include/spandsp/v22bis.h' /usr/ports/comms/spandsp/work/spandsp-0.0.5/config/install-sh -c -m 644 'spandsp/v27ter_rx.h' '/usr/local/include/spandsp/v27ter_rx.h' /usr/ports/comms/spandsp/work/spandsp-0.0.5/config/install-sh -c -m 644 'spandsp/v27ter_tx.h' '/usr/local/include/spandsp/v27ter_tx.h' /usr/ports/comms/spandsp/work/spandsp-0.0.5/config/install-sh -c -m 644 'spandsp/v29rx.h' '/usr/local/include/spandsp/v29rx.h' /usr/ports/comms/spandsp/work/spandsp-0.0.5/config/install-sh -c -m 644 'spandsp/v29tx.h' '/usr/local/include/spandsp/v29tx.h' /usr/ports/comms/spandsp/work/spandsp-0.0.5/config/install-sh -c -m 644 'spandsp/v42.h' '/usr/local/include/spandsp/v42.h' /usr/ports/comms/spandsp/work/spandsp-0.0.5/config/install-sh -c -m 644 'spandsp/v42bis.h' '/usr/local/include/spandsp/v42bis.h' /usr/ports/comms/spandsp/work/spandsp-0.0.5/config/install-sh -c -m 644 'spandsp/v8.h' '/usr/local/include/spandsp/v8.h' /usr/ports/comms/spandsp/work/spandsp-0.0.5/config/install-sh -c -m 644 'spandsp/vector_float.h' '/usr/local/include/spandsp/vector_float.h' /usr/ports/comms/spandsp/work/spandsp-0.0.5/config/install-sh -c -m 644 'spandsp/vector_int.h' '/usr/local/include/spandsp/vector_int.h' /usr/ports/comms/spandsp/work/spandsp-0.0.5/config/install-sh -c -m 644 'spandsp/version.h' '/usr/local/include/spandsp/version.h' test -z "/usr/local/include" || /usr/ports/comms/spandsp/work/spandsp-0.0.5/config/install-sh -d "/usr/local/include" install -o root -g wheel -m 444 'spandsp.h' '/usr/local/include/spandsp.h' gmake[2]: Leaving directory `/usr/ports/comms/spandsp/work/spandsp-0.0.5/src' gmake[1]: Leaving directory `/usr/ports/comms/spandsp/work/spandsp-0.0.5/src' gmake[1]: Entering directory `/usr/ports/comms/spandsp/work/spandsp-0.0.5' gmake[2]: Entering directory `/usr/ports/comms/spandsp/work/spandsp-0.0.5' gmake[2]: Nothing to be done for `install-exec-am'. gmake[2]: Nothing to be done for `install-data-am'. gmake[2]: Leaving directory `/usr/ports/comms/spandsp/work/spandsp-0.0.5' gmake[1]: Leaving directory `/usr/ports/comms/spandsp/work/spandsp-0.0.5' ===> Running ldconfig /sbin/ldconfig -m /usr/local/lib ===> Registering installation for spandsp-0.0.5 ===> Cleaning for spandsp-0.0.5 ---> Cleaning out obsolete shared libraries [Updating the pkgdb in /var/db/pkg ... - 1328 packages found (-0 +1) . done] ____________________________________________________ So subsequently successfully built the port after deinstalling the older version. It seems that make fails if the older version is currently installed. (Incidentally I realise I made a typo the system is amd64 7.2 p3 not 7.1) David Photographic Artist Permanent Installations & Design Creative Imagery and Advanced Digital Techniques High Dynamic Range Photography & Official Portraiture Combined darkroom & digital creations & Systems Adminstrator for the vizion2000.net network From owner-freebsd-ports@FreeBSD.ORG Wed Sep 1 11:41:17 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C410710656B3; Wed, 1 Sep 2010 11:41:17 +0000 (UTC) (envelope-from swell.k@gmail.com) Received: from mail-wy0-f182.google.com (mail-wy0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id 2D4C98FC15; Wed, 1 Sep 2010 11:41:16 +0000 (UTC) Received: by wyb33 with SMTP id 33so10660595wyb.13 for ; Wed, 01 Sep 2010 04:41:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:references :date:in-reply-to:message-id:user-agent:mime-version:content-type; bh=zExaFQifj3lVsffhZc9IPE7cdH+cZYzljupUiOstySs=; b=JLKI1hdF2qg4f+F0lQSY433cWPnUUKDSWRXup/QeUf6LYIfGmzFtGtdoTUecU+rayu i+Fa8G5qvBU1/1irlih9RwPBOH/WXP5MAK6N/9kAJT8+x6uvmHLR3BKDOXliyVbt/pUD 0fA0Wv10GpsHRmqhWq0gTDHVkKk/qNtQhTai0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type; b=t+ZcPgCdn1QxwEeUx7vwFiu3qR6WxTRtFVv8tx4iidQ257N8aQehybdWylC2zDM+y2 tofJKH2NuJKdu8ogk0bT/ojNmsoc8p0mkrRbWQkT8cvBov0wC+bMI9aFWlNYVIly0cCV lU018r5q55pkCxjzS7MMZnbNUQWeLLBxsrZsQ= Received: by 10.216.38.207 with SMTP id a57mr197516web.40.1283341275341; Wed, 01 Sep 2010 04:41:15 -0700 (PDT) Received: from localhost (tor-exit-proxy8-readme.formlessnetworking.net [208.53.142.44]) by mx.google.com with ESMTPS id u32sm6058342weq.35.2010.09.01.04.41.13 (version=SSLv3 cipher=RC4-MD5); Wed, 01 Sep 2010 04:41:14 -0700 (PDT) From: Anonymous To: Renato Botelho References: <20100901111158.GA42848@bluepex.com> Date: Wed, 01 Sep 2010 15:35:01 +0400 In-Reply-To: <20100901111158.GA42848@bluepex.com> (Renato Botelho's message of "Wed, 1 Sep 2010 08:12:03 -0300") Message-ID: <86zkw1u26y.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-ports@freebsd.org, bug-followup@FreeBSD.org Subject: Re: ports/150173: [patch] lang/lua: don't override optimization with `-O2' X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2010 11:41:17 -0000 Renato Botelho writes: > It seems to be working fine, i can setup CFLAGS at build time: > > # make CFLAGS="-O3 -pipe" The port should respect -O[0-3] in sys.mk, make.conf or environment. Besides, you can't use `+=' on command line. WITH_DEBUG in bsd.port.mk implies that all optimization from CFLAGS should be erased. So, I'm not sure why you're ignoring DEBUG_FLAGS as non-issue. lang/lua in pkgsrc and openbsd ports remove vendor's `-O2' optimzation. Many other freebsd ports do the same with any `-O2' or `-g' following to Porter's Handbook. http://www.freebsd.org/doc/en/books/porters-handbook/dads-cflags.html And please, don't go closing the PR without waiting at least a few days for submitter's response. It looks uncooperative. > > ===> License check disabled, port has not defined LICENSE > ===> Extracting for lua-5.1.4_1 > => MD5 Checksum OK for lua-5.1.4.tar.gz. > => SHA256 Checksum OK for lua-5.1.4.tar.gz. > ===> Patching for lua-5.1.4_1 > ===> Applying FreeBSD patches for lua-5.1.4_1 > ===> lua-5.1.4_1 depends on executable: pkg-config - found > ===> Configuring for lua-5.1.4_1 > ===> Building for lua-5.1.4_1 > cd src && make freebsd > make all MYCFLAGS="-DLUA_USE_LINUX" MYLIBS="-Wl,-E -lreadline" > cc -O3 -pipe -c lapi.c > cc -O3 -pipe -c lcode.c From owner-freebsd-ports@FreeBSD.ORG Wed Sep 1 18:13:06 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0AD2410656A8 for ; Wed, 1 Sep 2010 18:13:06 +0000 (UTC) (envelope-from matthias.andree@gmx.de) Received: from mail.gmx.net (mailout-de.gmx.net [213.165.64.23]) by mx1.freebsd.org (Postfix) with SMTP id 528F88FC12 for ; Wed, 1 Sep 2010 18:13:04 +0000 (UTC) Received: (qmail invoked by alias); 01 Sep 2010 18:13:03 -0000 Received: from g226244155.adsl.alicedsl.de (EHLO mandree.no-ip.org) [92.226.244.155] by mail.gmx.net (mp009) with SMTP; 01 Sep 2010 20:13:03 +0200 X-Authenticated: #428038 X-Provags-ID: V01U2FsdGVkX19cFIdHmupcRGvdwzCA/1V4oMOohqV62QjIfSpvjg +EWs0KQml321sl Received: from merlin.emma.line.org (localhost [127.0.0.1]) by merlin.emma.line.org (Postfix) with ESMTP id 0233B94651 for ; Wed, 1 Sep 2010 20:13:01 +0200 (CEST) Content-Type: text/plain; charset=utf-8; format=flowed; delsp=yes To: freebsd-ports@freebsd.org References: <4C7C3456.2030500@FreeBSD.org> <4C7D2421.2060609@DataIX.net> <4C7D356E.7070705@FreeBSD.org> <4C7D3E96.1090606@DataIX.net> Date: Wed, 01 Sep 2010 20:13:01 +0200 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: "Matthias Andree" Organization: Message-ID: In-Reply-To: <4C7D3E96.1090606@DataIX.net> User-Agent: Opera Mail/10.61 (Linux) X-Y-GMX-Trusted: 0 Subject: Re: RFT: deskutils/sciplore-mindmapping X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2010 18:13:06 -0000 Greetings, jhell wrote yesterday: > I have not looked into this until now that I saw that you were working > on SCIPlore very useful utility small and faster than Freemind in a lot > of ways. Anyway... Thanks! Good (and thanks for the - unquoted - pointer to fixing your other issue, such is most useful in archives). I've received all positive feedback, so testing is closed, I have committed the port, deskutils/sciplore-mindmapping. Soon to be features on a portsnap mirror close to you. :) Further issue reports please via usual means (i. e. PR with Cc: to my FreeBSD or this mailing address if thought to be FreeBSD-specific or of unclear origin), or to the upstream if the observed misbehaviour looks like a generic fault, or reproduces on Linux, MacOS X, or Windows. Please note that my Java-fu is severely limited, keep that in mind when reporting issues. Thanks for all the testing and feedback! Best regards -- Matthias 'mandree@' Andree From owner-freebsd-ports@FreeBSD.ORG Wed Sep 1 21:53:39 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D66A1065693 for ; Wed, 1 Sep 2010 21:53:39 +0000 (UTC) (envelope-from varga.michal@gmail.com) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id AE1228FC14 for ; Wed, 1 Sep 2010 21:53:38 +0000 (UTC) Received: by bwz20 with SMTP id 20so77664bwz.13 for ; Wed, 01 Sep 2010 14:53:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:subject:from:to:content-type :organization:date:message-id:mime-version:x-mailer :content-transfer-encoding; bh=Dm6y5jGACoChDqXFRrWQyb4OLEQNS6mtIvNPbAbdolU=; b=x+MTP/slSOQ2z26yoGTD7mx5kOBkzSxhPZ09sIO2EjOJbRqzfLz+Eph/zEpMlkjkS3 G0sOoEzzwAq+dcFfeje9EyVmkrrvGCctTgYYji6P91oYtzMiv94Iml/IQaDxbIdYAdzh LcRt7Z47RtkX6/lQphM5jTGkhMcVi/Uf8A8Xs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:to:content-type:organization:date:message-id :mime-version:x-mailer:content-transfer-encoding; b=GGpOvJg+jA8Wq8hbaoU9xtUXy2cgeCwpoASRyjkEHiwGxgE6klj+mvb1fVrrAGgkK8 kCzuAyqRklSY8OKTctQGm5j1QmBIfGR1XKosgSJ4nnnZ592xTyqb+t5dzQy5+l5CpQY7 8wweOmKX7G0MWbhxh+yDuQOrZZpFB27RcedGI= Received: by 10.204.127.65 with SMTP id f1mr5938465bks.55.1283376515892; Wed, 01 Sep 2010 14:28:35 -0700 (PDT) Received: from [10.0.101.2] (73.44.broadband10.iol.cz [90.177.44.73]) by mx.google.com with ESMTPS id s34sm7639626bkk.13.2010.09.01.14.28.34 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 01 Sep 2010 14:28:35 -0700 (PDT) From: Michal Varga To: ports@freebsd.org Content-Type: text/plain; charset="UTF-8" Organization: Stonehenge Date: Wed, 01 Sep 2010 23:28:32 +0200 Message-ID: <1283376512.1550.10.camel@xenon> Mime-Version: 1.0 X-Mailer: Evolution 2.30.3 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Cc: Subject: New NVIDIA 256.53 driver with important fixes X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Sep 2010 21:53:39 -0000 For those interested, there is a new graphics driver available from nvidia with some rather important fixes: http://www.nvidia.com/object/freebsd-x86-256.53-driver.html For quick and dirty installation/testing, edit distversion as: DISTVERSION?= 256.53 in "/usr/ports/x11/nvidia-driver/Makefile" run `make makesum` and reinstall your driver. m. -- Michal Varga, Stonehenge (Gmail account) From owner-freebsd-ports@FreeBSD.ORG Thu Sep 2 08:02:55 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0FAB41065767; Thu, 2 Sep 2010 08:02:55 +0000 (UTC) (envelope-from dforsythe@gmail.com) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 8A2388FC0C; Thu, 2 Sep 2010 08:02:54 +0000 (UTC) Received: by iwn34 with SMTP id 34so307121iwn.13 for ; Thu, 02 Sep 2010 01:02:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:sender:received :in-reply-to:references:date:x-google-sender-auth:message-id:subject :from:to:cc:content-type; bh=tr8zbRaZDX1PLeL6c1OJ5fjRBmMdWyibo3csEqGG8Uk=; b=kOAy218uauRdzwYF9XTF7s0iQegHTiLz/+tiJySJ3oAfjdxuJ+ejtK5f9WfUihu9rc uwUPnGp9pYShZYyDLN6f9Wrfa+1JK8LlsMj4l6iK1MZHXrb6rPAHOTZEm0fbFmbFgZjZ WZtb6NTQuVaogjpqt5LxWppQl2Q3v8oE57GsE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; b=QFid+5hLjrBQMPbT/t6BoTXuX5TCfZjg0I42wMQxwA9L2jLHXcsbKldhByiDt2zEvC DZ3gyKLSnNhqbcf0T5975/KlI/XQHA5SbmVeAW+bUm0nGaboZ2ueOJ5LQ2YXL9S7B3HM o1WhTTCFHdPZoYaOrBd2TaW4fL0yJ7wc7bmQY= MIME-Version: 1.0 Received: by 10.231.19.198 with SMTP id c6mr9852022ibb.140.1283412898205; Thu, 02 Sep 2010 00:34:58 -0700 (PDT) Sender: dforsythe@gmail.com Received: by 10.231.59.143 with HTTP; Thu, 2 Sep 2010 00:34:58 -0700 (PDT) In-Reply-To: References: <20100819143830.GJ35140@azathoth.lan> <4C6DA0FA.7080203@DataIX.net> <20100820124332.GB1786@azathoth.lan> <86lj7o7e6e.fsf@gmail.com> Date: Thu, 2 Sep 2010 00:34:58 -0700 X-Google-Sender-Auth: AuYUzBbz-VxKuwGlS9KX3U7fqDM Message-ID: From: David Forsythe To: Ivan Voras Content-Type: text/plain; charset=UTF-8 Cc: Baptiste Daroussin , Florent Thoumie , Julien Laffaye , Garrett Cooper , Tim Kientzle , freebsd-ports@freebsd.org, Anonymous Subject: Re: what next for the pkg_install rewrite X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2010 08:02:55 -0000 Eh, why didn't this thread spring up before summer of code got under way (or during the many weeks it was running)? Concerning the database situation, sqlite would be cool. If we can ship the sqlite code either with libpkg or with the pkg_install tools, it's a win (I don't read licenses, someone will have to tell me if we can do that). Realistically, if this is doable, then there can be no opposition because the pkg_install tools as they are now create their own "database", so nothing is changing. Plus we'll get free concurrency, which everybody wants. If I can get an okay on this, I'll start reworking libpkg to handle it. The manifest format really does need to change. We should go with JSON and either write our own specialized parser/writer or go with something like yajl. Writing a parser and a writer that plug into my libpkg will give you conversion tools (both forwards and backwards) for free and adding properties and changing formats isn't really a big deal because I store package information in a plist(5) (from OS X) like structure. Bringing a fat library into base just for manifest parsing will meet with resistance, so if you guys can find some really small json lib (I'm talking 1 or 2 files) that's license compatible, I'll happily suck it into libpkg. The lua stuff is way too far off in dream land for my taste... The things that you guys want to drop from plists are things gcooper has been wanting to get rid of and replace for a while, and libarchive restoring group/mode/owner perms has been the plan for a while now I believe (I actually just ignore this stuff in libpkg). Separating ports and packages is silly, because they need to coexist. Like gcooper pointed out, ports should be using the pkg tools to build and install packages. The repository format is something that you guys didn't really touch on that I think could use some fixing, but I'll wait to see where this all goes and maybe throw some ideas on a wiki page later on. In the mean time, I'll keep building libpkg too work with the pkg system in its current state. Dave. From owner-freebsd-ports@FreeBSD.ORG Thu Sep 2 08:38:11 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EC5AB1065672; Thu, 2 Sep 2010 08:38:10 +0000 (UTC) (envelope-from james.technew@gmail.com) Received: from mail-qy0-f175.google.com (mail-qy0-f175.google.com [209.85.216.175]) by mx1.freebsd.org (Postfix) with ESMTP id 52D818FC1C; Thu, 2 Sep 2010 08:38:10 +0000 (UTC) Received: by qyk31 with SMTP id 31so1850476qyk.13 for ; Thu, 02 Sep 2010 01:38:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=CI+tZ6NpZLNo0pOnklq5Q+UOJYSJcBzkgxv9o+7FOy8=; b=AtkJuxUtmCCJfgGbHja6WfesdF5Gi2pCIQFVrBIJXZXSVO2xFWG1anSnnUmIzlTGxj cMN4/ulbXHQfCZonIl2tV9drxJ8lkzmwmaJZ9eI44XIJ+qb1s80QebiM+zfy3RNqyJBw fcEY0S5p6vPyGgqcpCTw0ZedLM+Kr5hcv31gQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=vH55qIpJj3FZuuyfPI6eVveurdDwChYDOz3x29rODD/foE4/3orvXEFuprzxKbTQsH FRZ5gkNfvIvTlkFAzC5/qlk+SRlBcUti28FP0EEtgbd0ijhwTnHvVxKOP0qmmT5t6hYZ QULqMNnLHpcTACUEEt79y4ll+9kyVLgPaOsb8= MIME-Version: 1.0 Received: by 10.229.189.211 with SMTP id df19mr6946514qcb.146.1283416686222; Thu, 02 Sep 2010 01:38:06 -0700 (PDT) Received: by 10.229.140.205 with HTTP; Thu, 2 Sep 2010 01:38:06 -0700 (PDT) In-Reply-To: References: Date: Thu, 2 Sep 2010 16:38:06 +0800 Message-ID: From: James Chang To: araujo@freebsd.org, freebsd-ports-bugs , freebsd-ports Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: Subject: Re: About ocsinventory-* in FreeBSD ports tree (/usr/ports/net-mgmt/ocsinventory-*) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2010 08:38:11 -0000 Hi Marcelo, I install ocsinventory-ng-1.3.2 from FreeBSD ports tree, But I cannot finish installation successfully! Following are my steps and ERROR message, could you please share your installation experience with me? Step 1. cd /usr/ports/net-mgmt/ocsinventory-ng/ Step 2. make install Step 3. cd /usr/local/share/ocsinventory-ng Step 4. sh ./setup.sh Step 5. FAILED! and following are error messages :< +----------------------------------------------------------+ | OK, Communication server Perl modules install finished;-)| | | | Creating Communication server log directory... | +----------------------------------------------------------+ Creating Communication server log directory /var/log/ocsinventory-server. Fixing Communication server log directory files permissions. Configuring logrotate for Communication server. /usr/local/share/ocsinventory-ng cp: etc/logrotate.d/ocsinventory-server: No such file or directory Can't open logrotate.ocsinventory-server.local: No such file or directory. cat: logrotate.ocsinventory-server.local: No such file or directory Removing old communication server logrotate file /etc/logrotate.d/ocsinventory-NG Writing communication server logrotate to file /etc/logrotate.d/ocsinventory-server *** ERROR: Unable to configure log rotation, please look at error in /usr/local/share/ocsinventory-ng/ocs_server_setup.log and fix ! Installation aborted ! # Best Regards! James Chang 2010/8/26 Marcelo Araujo : > Hi James, > First of all, thanks to contact me about ocs. > Well, right now both ports are in the queue of my Tinderbox, just to chec= k > and test if everything is OK. > Soon, I believe till this weekend, I can effective the update. > Once again, thanks. > Best Regards. > - Araujo > > 2010/8/25 James Chang >> >> Dear Sir, >> >> =A0 I found the following ports in FreeBSD are maintained by you. >> 1./usr/ports/net-mgmt/ocsinventory-ng >> 2./usr/ports/net-mgmt/ocsinventory-agent >> >> >> =A0 In May 13,2010, the OCS Inventory Team =A0has released v1.3.2 which >> fix many security bugs! >> Could you please update the ocsinventory-* in FreeBSD port tree to >> version v1.3.2 ? >> >> Best Regards! >> >> >> =A0 =A0 =A0 =A0 =A0 =A0 James Chang > > > > -- > Marcelo Araujo > araujo@FreeBSD.org > From owner-freebsd-ports@FreeBSD.ORG Thu Sep 2 09:52:07 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9D06F10656DC; Thu, 2 Sep 2010 09:52:07 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-ey0-f182.google.com (mail-ey0-f182.google.com [209.85.215.182]) by mx1.freebsd.org (Postfix) with ESMTP id 170298FC08; Thu, 2 Sep 2010 09:52:05 +0000 (UTC) Received: by eyx24 with SMTP id 24so106621eyx.13 for ; Thu, 02 Sep 2010 02:52:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:date:from:to:cc :subject:message-id:references:mime-version:content-type :content-disposition:in-reply-to:user-agent; bh=edTFRQPn6sb6je5zSxwrLvhXmeiZGrb0MibMDB1byhk=; b=dO5gDTEOI34/XjnJX5tWdxqgeO5b6xEQWImRiDLdhq9v78dPir5HsI6mKg3fVRg60U O0tX+4QNXDgf823+7wrXlo+txSMSIKLEd0tvGHXK0h4lR+x71jek5ZlVfHM/41ozE278 OeOWYaA0L4rwQK40+5Udt3dxzhp9iO0T/Zslw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=gmax/lYEfC6ijM6b+Q4yjDA3cEVqAbiaa3Tp1+/5IM+0Ulzi0p80E/+/xDj9CdNd4Z ROEEosAL9n3Mflh4i0D5gCVYrKAsc8CP+xzTPrKoAP+QUUw7NvScjjz+Kzi/A+vgYymX imq4lQmS/CsoZ70M6yXWNhAbCSASntzZWZvmQ= Received: by 10.216.54.202 with SMTP id i52mr9140976wec.40.1283421124920; Thu, 02 Sep 2010 02:52:04 -0700 (PDT) Received: from azathoth.lan (stc92-3-82-245-249-89.fbx.proxad.net [82.245.249.89]) by mx.google.com with ESMTPS id e56sm166451wer.22.2010.09.02.02.52.02 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 02 Sep 2010 02:52:04 -0700 (PDT) Sender: Baptiste Daroussin Date: Thu, 2 Sep 2010 11:52:19 +0200 From: Baptiste Daroussin To: David Forsythe Message-ID: <20100902095219.GA47247@azathoth.lan> References: <4C6DA0FA.7080203@DataIX.net> <20100820124332.GB1786@azathoth.lan> <86lj7o7e6e.fsf@gmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="W/nzBZO5zC0uMSeA" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.20 (2009-06-14) Cc: Florent Thoumie , Julien Laffaye , Garrett Cooper , Tim Kientzle , Ivan Voras , freebsd-ports@freebsd.org, Anonymous Subject: Re: what next for the pkg_install rewrite X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2010 09:52:07 -0000 --W/nzBZO5zC0uMSeA Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Sep 02, 2010 at 12:34:58AM -0700, David Forsythe wrote: > Eh, why didn't this thread spring up before summer of code got under > way (or during the many weeks it was running)? >=20 I was expecting for your reply :) Sorry I didn't launch this thread before that because I didn't get enough s= pare time before summer, nor during it. > Concerning the database situation, sqlite would be cool. If we can > ship the sqlite code either with libpkg or with the pkg_install tools, > it's a win (I don't read licenses, someone will have to tell me if we > can do that). Realistically, if this is doable, then there can be no > opposition because the pkg_install tools as they are now create their > own "database", so nothing is changing. Plus we'll get free > concurrency, which everybody wants. If I can get an okay on this, > I'll start reworking libpkg to handle it. sqlite if we goes on is BSD-like licensed so it should ne be a problem, it = is designed to be embeded (one .h and .c to compile) no need to import the full sqlite sources. (see www.fossil-scm.org from the author of sqlite). >=20 > The manifest format really does need to change. We should go with > JSON and either write our own specialized parser/writer or go with > something like yajl. Writing a parser and a writer that plug into my > libpkg will give you conversion tools (both forwards and backwards) > for free and adding properties and changing formats isn't really a big > deal because I store package information in a plist(5) (from OS X) > like structure. Bringing a fat library into base just for manifest > parsing will meet with resistance, so if you guys can find some really > small json lib (I'm talking 1 or 2 files) that's license compatible, > I'll happily suck it into libpkg. >=20 That would be great, the json lib I use for testing purpose cjson (http://sourceforge.net/projects/cjson/) which is really simple to use, BSD license and can be embeded. I have writen a pkg_register which is a quick a= nd dirty version of pkg_add -O just to be a dropin replacement of PKG_CMD for = ports to register new package with the new manifest (without the need of patching bsd.port.mk) > The lua stuff is way too far off in dream land for my taste... >=20 I think the only interest of lua in pkg_install would be to allow hooks wri= tten in lua but this is not very important in the state we are). So let's forget lua for the moment :) > The things that you guys want to drop from plists are things gcooper > has been wanting to get rid of and replace for a while, and libarchive > restoring group/mode/owner perms has been the plan for a while now I > believe (I actually just ignore this stuff in libpkg). >=20 > Separating ports and packages is silly, because they need to coexist. > Like gcooper pointed out, ports should be using the pkg tools to build > and install packages. Agree with that >=20 > The repository format is something that you guys didn't really touch > on that I think could use some fixing, but I'll wait to see where this > all goes and maybe throw some ideas on a wiki page later on. >=20 I expect for your ideas on the wiki page. > In the mean time, I'll keep building libpkg too work with the pkg > system in its current state. >=20 How hard would it be to add support for the new manifest on you libpkg whic= h is really great by the way :) How hard would it be to allow other developers to work with you on libpkg? separate the tasks etc. regards, bapt --W/nzBZO5zC0uMSeA Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.16 (FreeBSD) iEYEARECAAYFAkx/c9MACgkQ8kTtMUmk6EyMQQCfZkG75FHsALwqIb/abCfzCuZG b9IAoKLvKOochgYQHqgGmMrnDu7ywNjv =H9QA -----END PGP SIGNATURE----- --W/nzBZO5zC0uMSeA-- From owner-freebsd-ports@FreeBSD.ORG Thu Sep 2 09:53:50 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 034A510657AB; Thu, 2 Sep 2010 09:53:50 +0000 (UTC) (envelope-from ivoras@gmail.com) Received: from mail-qw0-f54.google.com (mail-qw0-f54.google.com [209.85.216.54]) by mx1.freebsd.org (Postfix) with ESMTP id 10E788FC19; Thu, 2 Sep 2010 09:53:48 +0000 (UTC) Received: by qwg5 with SMTP id 5so317002qwg.13 for ; Thu, 02 Sep 2010 02:53:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:sender:received :in-reply-to:references:from:date:x-google-sender-auth:message-id :subject:to:cc:content-type; bh=VFyJsgAFQE4U/Bf9y/fJ+c7fm+Y7iyb+RdIqg/7HhXQ=; b=SKfFMgFUOLVKBYIkE2MCUirPgAuXxfpjYemCLLbzKRRzvRBspKo/16NpgGRy6CwTzL dmE/hClJG/T453all23jXUVaqhuO0MCVNnOsGERryjaqwuzIQ+2s4ZLidONyNkJPmYAp Zqf7ZCmuBjm/dOWeImNJmAV3JPSicPJ62czPA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; b=sd4fvaDC1nzkDwGtQ5FJ+GEPf5ElVSrgk9fqtsvYDd8pEDnRa2M7XLWOI0phm2HKfn u9W5d6m4A9FbS9owshjJ3yFXlIHrZyPzErgP01yhs+b+FF/q9YYIciwkonVX1qhvS9rb tmaLB4/2vn/CqxjVQsv656e/fTvTCGjiD/TVw= Received: by 10.224.80.133 with SMTP id t5mr2387934qak.341.1283421228112; Thu, 02 Sep 2010 02:53:48 -0700 (PDT) MIME-Version: 1.0 Sender: ivoras@gmail.com Received: by 10.229.222.81 with HTTP; Thu, 2 Sep 2010 02:53:28 -0700 (PDT) In-Reply-To: References: <20100819143830.GJ35140@azathoth.lan> <4C6DA0FA.7080203@DataIX.net> <20100820124332.GB1786@azathoth.lan> <86lj7o7e6e.fsf@gmail.com> From: Ivan Voras Date: Thu, 2 Sep 2010 11:53:28 +0200 X-Google-Sender-Auth: LSaVh08CIURM6sP-Hw1QE0fW3u4 Message-ID: To: David Forsythe Content-Type: text/plain; charset=UTF-8 Cc: Baptiste Daroussin , Florent Thoumie , Julien Laffaye , Garrett Cooper , Tim Kientzle , freebsd-ports@freebsd.org, Anonymous Subject: Re: what next for the pkg_install rewrite X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2010 09:53:50 -0000 On 2 September 2010 09:34, David Forsythe wrote: > Eh, why didn't this thread spring up before summer of code got under > way (or during the many weeks it was running)? Yes, that would have been beneficial. For what it's worth, I've been trying to start it without success for years :) As for your other questions, I think you should read http://wiki.freebsd.org/Pkg_install2_specs - most of them will be answered there (also follow the wiki links). > The repository format is something that you guys didn't really touch > on that I think could use some fixing, but I'll wait to see where this > all goes and maybe throw some ideas on a wiki page later on. Repository format as in "ftp server layout" or something else? From owner-freebsd-ports@FreeBSD.ORG Thu Sep 2 12:04:43 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B2AF010656B5; Thu, 2 Sep 2010 12:04:43 +0000 (UTC) (envelope-from dudu@dudu.ro) Received: from mail-qy0-f182.google.com (mail-qy0-f182.google.com [209.85.216.182]) by mx1.freebsd.org (Postfix) with ESMTP id 5F1BA8FC1F; Thu, 2 Sep 2010 12:04:43 +0000 (UTC) Received: by qyk4 with SMTP id 4so511055qyk.13 for ; Thu, 02 Sep 2010 05:04:42 -0700 (PDT) Received: by 10.224.89.80 with SMTP id d16mr6486644qam.169.1283427425278; Thu, 02 Sep 2010 04:37:05 -0700 (PDT) MIME-Version: 1.0 Received: by 10.229.65.150 with HTTP; Thu, 2 Sep 2010 04:36:25 -0700 (PDT) From: Vlad Galu Date: Thu, 2 Sep 2010 14:36:25 +0300 Message-ID: To: ruby@freebsd.org, freebsd-ports@freebsd.org Content-Type: multipart/mixed; boundary=0015175cb29acaa69f048f453bd9 Cc: Subject: Small typo in www/rubygem-rails/Makefile X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2010 12:04:43 -0000 --0015175cb29acaa69f048f453bd9 Content-Type: text/plain; charset=ISO-8859-1 PORT_DBDIR didn't have the leading $, thus it wasn't being expanded correctly. Because of this, make couldn't find the options file and tried to create a new one in the current directory. In my case, the ports tree is mounted read-only in a jail. However, the gem itself seems slightly broken. Installing it from either the port or through the gem framework yields this: -- cut here -- Installing ri documentation for rails-3.0.0... rdoc --ri --op /usr/local/lib/ruby/gems/1.8/doc/rails-3.0.0/ri --quiet lib --title rails-3.0.0 Documentation File not found: lib -- and here -- I can do without the docs, this is just an FYI. Regards, Vlad -- Good, fast & cheap. Pick any two. --0015175cb29acaa69f048f453bd9 Content-Type: application/octet-stream; name="Makefile.diff" Content-Disposition: attachment; filename="Makefile.diff" Content-Transfer-Encoding: base64 X-Attachment-Id: f_gdldbyzv0 LS0tIE1ha2VmaWxlCTIwMTAtMDktMDIgMDM6NDM6MjcuMDAwMDAwMDAwICswMTAwCisrKyBNYWtl ZmlsZS5uZXcJMjAxMC0wOS0wMiAwOToxNzoyNS4wMDAwMDAwMDAgKzAxMDAKQEAgLTMxLDcgKzMx LDcgQEAKIAlNT05HUkVMQ0xVU1RFUgkiTW9uZ3JlbCBDbHVzdGVyIGJhY2tlbmQiCU9mZiBcCiAJ UEFTU0VOR0VSCQkiUGFzc2VuZ2VyIGJhY2tlbmQiCQkJT2ZmIFwKIAlNRU1DQUNIRV9DTElFTlQg Ik1lbUNhY2hlLUNsaWVudCBzdXBwb3J0IiAJT2ZmCi1PUFRJT05TRklMRT0Je1BPUlRfREJESVJ9 L3J1YnlnZW0tJHtQT1JUTkFNRX0vb3B0aW9ucworT1BUSU9OU0ZJTEU9CSR7UE9SVF9EQkRJUn0v cnVieWdlbS0ke1BPUlROQU1FfS9vcHRpb25zCiAKIC5pbmNsdWRlIDxic2QucG9ydC5vcHRpb25z Lm1rPgogCg== --0015175cb29acaa69f048f453bd9-- From owner-freebsd-ports@FreeBSD.ORG Thu Sep 2 14:56:00 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC55E10656E0; Thu, 2 Sep 2010 14:56:00 +0000 (UTC) (envelope-from pgollucci@p6m7g8.com) Received: from cell.p6m7g8.net (static-71-178-236-107.washdc.fios.verizon.net [71.178.236.107]) by mx1.freebsd.org (Postfix) with ESMTP id 6F9308FC16; Thu, 2 Sep 2010 14:55:59 +0000 (UTC) Received: from philip.hq.rws (wsip-174-79-184-239.dc.dc.cox.net [174.79.184.239]) (authenticated bits=0) by cell.p6m7g8.net (8.14.4/8.14.3) with ESMTP id o82Etpog015947 (version=TLSv1/SSLv3 cipher=DHE-DSS-CAMELLIA256-SHA bits=256 verify=NO); Thu, 2 Sep 2010 14:55:56 GMT (envelope-from pgollucci@p6m7g8.com) Message-ID: <4C7FBAF8.2070305@p6m7g8.com> Date: Thu, 02 Sep 2010 14:55:52 +0000 From: "Philip M. Gollucci" Organization: P6M7G8 Inc. User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.1.9) Gecko/20100607 Thunderbird/3.0.4 MIME-Version: 1.0 To: Vlad Galu References: In-Reply-To: X-Enigmail-Version: 1.0.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-0.9 required=5.0 tests=BAYES_00,RDNS_DYNAMIC autolearn=no version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on cell.p6m7g8.net Cc: ruby@freebsd.org, freebsd-ports@freebsd.org Subject: Re: Small typo in www/rubygem-rails/Makefile X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2010 14:56:00 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 09/02/10 11:36, Vlad Galu wrote: > PORT_DBDIR didn't have the leading $, thus it wasn't being expanded > correctly. Because of this, make couldn't find the options file and > tried to create a new one in the current directory. In my case, the > ports tree is mounted read-only in a jail. D'oh. > -- cut here -- > Installing ri documentation for rails-3.0.0... > rdoc --ri --op /usr/local/lib/ruby/gems/1.8/doc/rails-3.0.0/ri --quiet > lib --title rails-3.0.0 Documentation > File not found: lib > -- and here -- > I can do without the docs, this is just an FYI. Okay good, I'm not crazy. Its not a doc error. The gem has no lib/ dir. I could cause it on 08/31. I could not cause it on 09/01. At any rate, both are fixed now. Ty! - -- - ------------------------------------------------------------------------ 1024D/DB9B8C1C B90B FBC3 A3A1 C71A 8E70 3F8C 75B8 8FFB DB9B 8C1C Philip M. Gollucci (pgollucci@p6m7g8.com) c: 703.336.9354 VP Apache Infrastructure; Member, Apache Software Foundation Committer, FreeBSD Foundation Consultant, P6M7G8 Inc. Sr. System Admin, Ridecharge Inc. Work like you don't need the money, love like you'll never get hurt, and dance like nobody's watching. -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.14 (FreeBSD) iD8DBQFMf7r4dbiP+9ubjBwRAuWiAJ9WA6yHOUZnXEz7Rl9aWG2J0aI7qQCeIBg2 hMkDEDnOxu+NnyLalwxRw9k= =czFG -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Thu Sep 2 16:09:57 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D35601065824; Thu, 2 Sep 2010 16:09:57 +0000 (UTC) (envelope-from tim@kientzle.com) Received: from mail-pz0-f54.google.com (mail-pz0-f54.google.com [209.85.210.54]) by mx1.freebsd.org (Postfix) with ESMTP id 89A388FC19; Thu, 2 Sep 2010 16:09:57 +0000 (UTC) Received: by pzk7 with SMTP id 7so195432pzk.13 for ; Thu, 02 Sep 2010 09:09:57 -0700 (PDT) Received: by 10.114.14.16 with SMTP id 16mr26232wan.17.1283443401968; Thu, 02 Sep 2010 09:03:21 -0700 (PDT) Received: from [10.123.2.180] (99-74-170-25.lightspeed.sntcca.sbcglobal.net [99.74.170.25]) by mx.google.com with ESMTPS id k23sm1201507waf.5.2010.09.02.09.03.18 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 02 Sep 2010 09:03:19 -0700 (PDT) Sender: Tim Kientzle Mime-Version: 1.0 (Apple Message framework v1081) Content-Type: text/plain; charset=us-ascii From: Tim Kientzle In-Reply-To: Date: Thu, 2 Sep 2010 09:03:19 -0700 Content-Transfer-Encoding: 7bit Message-Id: <8F9FCBFE-7756-4BD6-9D9F-36C82CE5C213@freebsd.org> References: <20100819143830.GJ35140@azathoth.lan> <4C6DA0FA.7080203@DataIX.net> <20100820124332.GB1786@azathoth.lan> <86lj7o7e6e.fsf@gmail.com> To: David Forsythe X-Mailer: Apple Mail (2.1081) Cc: Baptiste Daroussin , Florent Thoumie , Julien Laffaye , Garrett Cooper , Ivan Voras , freebsd-ports@freebsd.org, Anonymous Subject: Re: what next for the pkg_install rewrite X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2010 16:09:57 -0000 On Sep 2, 2010, at 12:34 AM, David Forsythe wrote: > In the mean time, I'll keep building libpkg too work with the pkg > system in its current state. Any really viable plan to change the manifest structure will have to include a means to continue to support the old structure during the transition period. Tim From owner-freebsd-ports@FreeBSD.ORG Thu Sep 2 16:19:50 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D80E10656AD; Thu, 2 Sep 2010 16:19:50 +0000 (UTC) (envelope-from tim@kientzle.com) Received: from mail-qy0-f182.google.com (mail-qy0-f182.google.com [209.85.216.182]) by mx1.freebsd.org (Postfix) with ESMTP id 789118FC17; Thu, 2 Sep 2010 16:19:49 +0000 (UTC) Received: by qyk4 with SMTP id 4so806347qyk.13 for ; Thu, 02 Sep 2010 09:19:48 -0700 (PDT) Received: by 10.229.225.196 with SMTP id it4mr7609235qcb.46.1283443014019; Thu, 02 Sep 2010 08:56:54 -0700 (PDT) Received: from [10.123.2.180] (99-74-170-25.lightspeed.sntcca.sbcglobal.net [99.74.170.25]) by mx.google.com with ESMTPS id l13sm608921qck.7.2010.09.02.08.56.50 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 02 Sep 2010 08:56:51 -0700 (PDT) Sender: Tim Kientzle Mime-Version: 1.0 (Apple Message framework v1081) Content-Type: text/plain; charset=us-ascii From: Tim Kientzle In-Reply-To: Date: Thu, 2 Sep 2010 08:56:50 -0700 Content-Transfer-Encoding: 7bit Message-Id: <27594367-6355-4C30-B486-CA64345641B8@freebsd.org> References: <20100819143830.GJ35140@azathoth.lan> <4C6DA0FA.7080203@DataIX.net> <20100820124332.GB1786@azathoth.lan> <86lj7o7e6e.fsf@gmail.com> To: David Forsythe X-Mailer: Apple Mail (2.1081) Cc: Baptiste Daroussin , Florent Thoumie , Julien Laffaye , Garrett Cooper , Ivan Voras , freebsd-ports@freebsd.org, Anonymous Subject: Re: what next for the pkg_install rewrite X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2010 16:19:50 -0000 On Sep 2, 2010, at 12:34 AM, David Forsythe wrote: > Separating ports and packages is silly, because they need to coexist. > Like gcooper pointed out, ports should be using the pkg tools to build > and install packages. I've been impressed with how MacPorts handles this. If I understand correctly, you can specify a package you want and the options you want with it and the system will download a pre-built package with those options (if one exists) or pull the source and build the port, all transparently. Even better, the central repository sees all of these requests, so can prioritize which option sets are most popular. Tim From owner-freebsd-ports@FreeBSD.ORG Thu Sep 2 17:20:41 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 567CB1065721 for ; Thu, 2 Sep 2010 17:20:41 +0000 (UTC) (envelope-from bounce-2279046-417770-ports=freebsd.org@mcsv178.net) Received: from mcsv178.net (mcsv178.net [69.20.90.53]) by mx1.freebsd.org (Postfix) with ESMTP id 1AED78FC18 for ; Thu, 2 Sep 2010 17:20:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=k1; d=mcsv178.net; h=Subject:From:Reply-To:To:Date:Message-ID:List-Unsubscribe:Sender:Content-Type:MIME-Version; i=exchange=3Dmedallionidc.com@mcsv178.net; bh=Pnnze5oVtLhZ6Ro27K+f6i2ZHFI=; b=nhmskUJqALM5NjKnoDv1acyClN2emS0NDJlpuRYxj9EmzEMxpIwB9MM6fi9tulhCgWXPkn672opV TyGEHzCBJtFriV68bZWzsaElfH7eGPoPcrmcdD9IInhlBn+bNR58DihUa0aG5PlH7Frjh8p/rdxX fRiLwZFgGGM9kKNuBpk= DomainKey-Signature: a=rsa-sha1; c=nofws; q=dns; s=k1; d=mcsv178.net; b=MN4Fbpsb5vgcDLf+8vOjW3jhbe8LzPulwfo7ZjTgQkRyTioMSQXIdAVtFWM5V5zgTxi+EFy2a4JU J6CYmW5oybQPcjwwjxB3WIElAHRWZjCA66nC1gm/DQWMUkjqP+dfRo44djjBzsLeaq/QTFlCwZoh L+X3KNh0iJUQiNMhFHM=; Received: by mcsv178.net (PowerMTA(TM) v3.5r15) id hfveei0lj3g6 for ; Thu, 2 Sep 2010 12:47:19 -0400 (envelope-from ) From: "MedallionIDC" To: "" Date: Thu, 2 Sep 2010 12:47:19 -0400 Message-ID: <2cc684bd35caef45ecd7733fcc673222d31.20100902164451@mcsv178.net> X-Mailer: MailChimp Mailer - **CIDd0157ec89ac673222d31** X-Campaign: mailchimp2cc684bd35caef45ecd7733fc.d0157ec89a X-campaignid: mailchimp2cc684bd35caef45ecd7733fc.d0157ec89a x-im: 38509-d0157ec89a X-Report-Abuse: Please report abuse for this campaign here: http://www.mailchimp.com/abuse/abuse.phtml?u=2cc684bd35caef45ecd7733fc&id=d0157ec89a&e=c673222d31 Sender: "MedallionIDC" MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: 1031 Exchange Buyers! Income Property Needed ASAP! X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: MedallionIDC List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2010 17:20:41 -0000 Email not displaying correctly? [1]View it in your browser Links: 1. http://us2.campaign-archive.com/?u=2cc684bd35caef45ecd7733fc&id=d0157ec89a&e=c673222d31 income property needed asap! Hello, Medallion Investment & Development has three different 1031 Exchange Clients that must close within the next 30-45 days! _1ST Client:_ URGENT!! Looking to purchase in income producing property for up to _$4,000,000._ Whether it be a shopping center, apartment building, office building or an SFR. Their criteria is that it be in Southern California, solid tenants and secure location at a market cap rate. 2_nd_ Client: Looking to purchase a single tenant building with a long term lease for up to_ $1,200,000_ in the Southern California Market, low cap rates are considered as well! _3RD Client:_ Looking to purchase empty box building in between 9,000 SF to 13,000 SF for up to _$1,600,000_ in the in tri county. TIME IS OF ESSENCE SO PLEASE SEND ALL YOUR SITES ASAP TO [2]EXCHANGE@MEDALLIONIDC.COM Links: 2. mailto:exchange@medallionidc.com?subject=Exchange Tell: (310)220-0636 Fax: (310)295-2009 [3]www.medallionidc.com Links: 3. http://medallionidc.us2.list-manage.com/track/click?u=2cc684bd35caef45ecd7733fc&id=1d7f99d9e5&e=c673222d31 peyman zargari (310)266-9083 [4]peyman@medallionidc.com DRE# 01872402 Links: 4. mailto:peyman@medallionidc.com david maghen (310)866-0444 [5]david@medallionidc.com DRE# 01823399 Links: 5. mailto:david@medallionidc.com omid broukhim (310)980-5196 [6]omid@medallionidc.com DRE# 01744584 Links: 6. mailto:omid@medallionidc.com [7]Unsubscribe | [8]Update your profile | [9]Forward to a friend Links: 7. http://medallionidc.us2.list-manage.com/unsubscribe?u=2cc684bd35caef45ecd7733fc&id=b8ec3bdf8c&e=c673222d31&c=d0157ec89a 8. http://medallionidc.us2.list-manage.com/profile?u=2cc684bd35caef45ecd7733fc&id=b8ec3bdf8c&e=c673222d31 9. http://us2.forward-to-friend.com/forward?u=2cc684bd35caef45ecd7733fc&id=d0157ec89a&e=c673222d31 Copyright (C) 2010 Medallion Investment & Development CO All rights reserved. You are receiving this email because you have signed up for our website's news letter. Medallion Investment & Development CO 11911 San Vicente Blvd #255 Los Angeles, California 90049 Sent to ports@freebsd.org. [10]Unsubscribe | [11]Update Profile | [12]Forward to a Friend Email Marketing Powered by MailChimp http://www.mailchimp.com/monkey-rewards/?aid=2cc684bd35caef45ecd7733fc&afl=1 Links: 10. http://medallionidc.us2.list-manage.com/unsubscribe?u=2cc684bd35caef45ecd7733fc&id=b8ec3bdf8c&e=c673222d31&c=d0157ec89a 11. http://medallionidc.us2.list-manage.com/profile?u=2cc684bd35caef45ecd7733fc&id=b8ec3bdf8c&e=c673222d31 12. http://us2.forward-to-friend.com/forward?u=2cc684bd35caef45ecd7733fc&id=d0157ec89a&e=c673222d31 From owner-freebsd-ports@FreeBSD.ORG Thu Sep 2 19:37:20 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EF0C0106571E for ; Thu, 2 Sep 2010 19:37:19 +0000 (UTC) (envelope-from corky1951@comcast.net) Received: from QMTA11.westchester.pa.mail.comcast.net (qmta11.westchester.pa.mail.comcast.net [76.96.59.211]) by mx1.freebsd.org (Postfix) with ESMTP id A8EE58FC14 for ; Thu, 2 Sep 2010 19:37:19 +0000 (UTC) Received: from omta21.westchester.pa.mail.comcast.net ([76.96.62.72]) by QMTA11.westchester.pa.mail.comcast.net with comcast id 1nSR1f0011ZXKqc5BvdKMF; Thu, 02 Sep 2010 19:37:19 +0000 Received: from comcast.net ([98.203.142.76]) by omta21.westchester.pa.mail.comcast.net with comcast id 1vdJ1f0011f6R9u3hvdJdF; Thu, 02 Sep 2010 19:37:19 +0000 Received: by comcast.net (sSMTP sendmail emulation); Thu, 02 Sep 2010 12:37:16 -0700 Date: Thu, 2 Sep 2010 12:37:16 -0700 From: Charlie Kester To: freebsd-ports@freebsd.org Message-ID: <20100902193715.GA9920@comcast.net> Mail-Followup-To: freebsd-ports@freebsd.org References: <20100820124332.GB1786@azathoth.lan> <86lj7o7e6e.fsf@gmail.com> <27594367-6355-4C30-B486-CA64345641B8@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <27594367-6355-4C30-B486-CA64345641B8@freebsd.org> X-Mailer: Mutt 1.5.20 X-Composer: Vim 7.2 User-Agent: Mutt/1.5.20 (2009-06-14) Subject: Re: what next for the pkg_install rewrite X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2010 19:37:20 -0000 On Thu 02 Sep 2010 at 08:56:50 PDT Tim Kientzle wrote: > >On Sep 2, 2010, at 12:34 AM, David Forsythe wrote: > >> Separating ports and packages is silly, because they need to coexist. >> Like gcooper pointed out, ports should be using the pkg tools to build >> and install packages. > >I've been impressed with how MacPorts handles this. >If I understand correctly, you can specify a package you >want and the options you want with it and the system will >download a pre-built package with those options >(if one exists) or pull the source and build the port, >all transparently. > >Even better, the central repository sees all of these >requests, so can prioritize which option sets are most popular. Would that include any options specified in make.conf? From owner-freebsd-ports@FreeBSD.ORG Thu Sep 2 19:49:45 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1716B1065861 for ; Thu, 2 Sep 2010 19:49:45 +0000 (UTC) (envelope-from rhurlin@gwdg.de) Received: from amailer.gwdg.de (amailer.gwdg.de [134.76.10.18]) by mx1.freebsd.org (Postfix) with ESMTP id CC28E8FC13 for ; Thu, 2 Sep 2010 19:49:44 +0000 (UTC) Received: from p578b68b8.dip0.t-ipconnect.de ([87.139.104.184] helo=krabat.raven.hur) by mailer.gwdg.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1OrFn5-0005kr-3S for freebsd-ports@freebsd.org; Thu, 02 Sep 2010 21:49:43 +0200 Message-ID: <4C7FFFD3.4020307@gwdg.de> Date: Thu, 02 Sep 2010 21:49:39 +0200 From: Rainer Hurling User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; de-DE; rv:1.9.2.8) Gecko/20100806 Thunderbird/3.1.2 MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Authenticated: Id:rhurlin X-Spam-Level: - X-Virus-Scanned: (clean) by exiscan+sophie Subject: update math/saga: question about wxWidgets X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2010 19:49:45 -0000 I am the maintainer of math/saga. A few days ago I sent an update, see http://www.freebsd.org/cgi/query-pr.cgi?pr=150157. With only little experience I tried to update to the newest linux sources of SAGA GIS. Among other things I introduced an option for unicode support. Concerning that code I have a question: Is it adequate to declare "WITH_UNICODE=yes" (and "CONFIGURE_ARGS+= --enable-unicode" for the build process) to ensure, that the right wxWidget (like wxgtk2-unicode) ports get installed, if they are not present? Or do I have to declare them explictly as dependencies? I would really appreciate if someone could have a look at it. Furthermore, perhaps someone is willing to commit this update ;-) Thanks in advance, Rainer Hurling From owner-freebsd-ports@FreeBSD.ORG Thu Sep 2 20:54:40 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AC4CA10657C2; Thu, 2 Sep 2010 20:54:40 +0000 (UTC) (envelope-from dudu@dudu.ro) Received: from mail-qw0-f54.google.com (mail-qw0-f54.google.com [209.85.216.54]) by mx1.freebsd.org (Postfix) with ESMTP id 531D18FC12; Thu, 2 Sep 2010 20:54:39 +0000 (UTC) Received: by qwg5 with SMTP id 5so1048352qwg.13 for ; Thu, 02 Sep 2010 13:54:39 -0700 (PDT) Received: by 10.229.2.35 with SMTP id 35mr6225509qch.271.1283460877627; Thu, 02 Sep 2010 13:54:37 -0700 (PDT) MIME-Version: 1.0 Received: by 10.229.65.150 with HTTP; Thu, 2 Sep 2010 13:53:57 -0700 (PDT) In-Reply-To: <4C7FBAF8.2070305@p6m7g8.com> References: <4C7FBAF8.2070305@p6m7g8.com> From: Vlad Galu Date: Thu, 2 Sep 2010 23:53:57 +0300 Message-ID: To: "Philip M. Gollucci" Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: ruby@freebsd.org, freebsd-ports@freebsd.org Subject: Re: Small typo in www/rubygem-rails/Makefile X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2010 20:54:40 -0000 Hi Philip, On Thu, Sep 2, 2010 at 5:55 PM, Philip M. Gollucci w= rote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > On 09/02/10 11:36, Vlad Galu wrote: >> PORT_DBDIR didn't have the leading $, thus it wasn't being expanded >> correctly. Because of this, make couldn't find the options file and >> tried to create a new one in the current directory. In my case, the >> ports tree is mounted read-only in a jail. > D'oh. > >> -- cut here -- >> Installing ri documentation for rails-3.0.0... >> rdoc --ri --op /usr/local/lib/ruby/gems/1.8/doc/rails-3.0.0/ri --quiet >> lib --title rails-3.0.0 Documentation >> File not found: lib >> -- and here -- >> I can do without the docs, this is just an FYI. > Okay good, I'm not crazy. =A0Its not a doc error. =A0The gem has no lib/ > dir. =A0I could cause it on 08/31. =A0I could not cause it on 09/01. > > At any rate, both are fixed now. > The lib dir issue is still there, it seems: -- cut here -- =3D=3D=3D> Vulnerability check disabled, database not found =3D=3D=3D> License check disabled, port has not defined LICENSE =3D=3D=3D> Found saved configuration for rubygem-rails-3.0.0 =3D=3D=3D> Extracting for rubygem-rails-3.0.0 =3D> MD5 Checksum OK for rubygem/rails-3.0.0.gem. =3D> SHA256 Checksum OK for rubygem/rails-3.0.0.gem. =3D=3D=3D> rubygem-rails-3.0.0 depends on file: /usr/local/bin/ruby18 - f= ound =3D=3D=3D> Patching for rubygem-rails-3.0.0 =3D=3D=3D> rubygem-rails-3.0.0 depends on file: /usr/local/bin/ruby18 - f= ound =3D=3D=3D> rubygem-rails-3.0.0 depends on file: /usr/local/bin/gem18 - fo= und =3D=3D=3D> rubygem-rails-3.0.0 depends on file: /usr/local/bin/ruby18 - f= ound =3D=3D=3D> Configuring for rubygem-rails-3.0.0 =3D=3D=3D> Installing for rubygem-rails-3.0.0 =3D=3D=3D> rubygem-rails-3.0.0 depends on package: rubygem-activesupport>=3D3.0.0 - found =3D=3D=3D> rubygem-rails-3.0.0 depends on package: rubygem-activerecord>=3D3.0.0 - found =3D=3D=3D> rubygem-rails-3.0.0 depends on package: rubygem-actionpack>=3D= 3.0.0 - found =3D=3D=3D> rubygem-rails-3.0.0 depends on package: rubygem-actionmailer>=3D3.0.0 - found =3D=3D=3D> rubygem-rails-3.0.0 depends on package: rubygem-activeresource>=3D3.0.0 - found =3D=3D=3D> rubygem-rails-3.0.0 depends on package: rubygem-railties>=3D3.= 0.0 - found =3D=3D=3D> rubygem-rails-3.0.0 depends on package: rubygem-bundler>=3D1.0= .0 - found =3D=3D=3D> rubygem-rails-3.0.0 depends on package: rubygem-passenger>=3D2= .2.15 - found =3D=3D=3D> rubygem-rails-3.0.0 depends on file: /usr/local/bin/gem18 - fo= und =3D=3D=3D> rubygem-rails-3.0.0 depends on file: /usr/local/bin/ruby18 - f= ound =3D=3D=3D> rubygem-rails-3.0.0 depends on file: /usr/local/bin/ruby18 - f= ound =3D=3D=3D> Generating temporary packing list =3D=3D=3D> Checking if www/rubygem-rails already installed /usr/bin/env /usr/local/bin/gem18 install -l --no-update-sources --no-ri --install-dir /usr/local/lib/ruby/gems/1.8 /tmp/distfiles/rubygem/rails-3.0.0.gem -- --build-args Successfully installed rails-3.0.0 1 gem installed Installing RDoc documentation for rails-3.0.0... File not found: lib *** Error code 1 -- and here -- The gem was fetched from http://production.s3.rubygems.org/gems/ --=20 Good, fast & cheap. Pick any two. From owner-freebsd-ports@FreeBSD.ORG Thu Sep 2 20:59:46 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 40C2A1065826; Thu, 2 Sep 2010 20:59:46 +0000 (UTC) (envelope-from pgollucci@p6m7g8.com) Received: from cell.p6m7g8.net (static-71-178-236-107.washdc.fios.verizon.net [71.178.236.107]) by mx1.freebsd.org (Postfix) with ESMTP id 91C888FC16; Thu, 2 Sep 2010 20:59:45 +0000 (UTC) Received: from philip.hq.rws (wsip-174-79-184-239.dc.dc.cox.net [174.79.184.239]) (authenticated bits=0) by cell.p6m7g8.net (8.14.4/8.14.3) with ESMTP id o82KxcDR026772 (version=TLSv1/SSLv3 cipher=DHE-DSS-CAMELLIA256-SHA bits=256 verify=NO); Thu, 2 Sep 2010 20:59:39 GMT (envelope-from pgollucci@p6m7g8.com) Message-ID: <4C801037.3080303@p6m7g8.com> Date: Thu, 02 Sep 2010 20:59:35 +0000 From: "Philip M. Gollucci" Organization: P6M7G8 Inc. User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.1.9) Gecko/20100607 Thunderbird/3.0.4 MIME-Version: 1.0 To: Vlad Galu References: <4C7FBAF8.2070305@p6m7g8.com> In-Reply-To: X-Enigmail-Version: 1.0.1 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigAC4A13D049DBACC0CD019561" X-Spam-Status: No, score=-0.9 required=5.0 tests=BAYES_00,RDNS_DYNAMIC autolearn=no version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on cell.p6m7g8.net Cc: ruby@freebsd.org, freebsd-ports@freebsd.org Subject: Re: Small typo in www/rubygem-rails/Makefile X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2010 20:59:46 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigAC4A13D049DBACC0CD019561 Content-Type: multipart/mixed; boundary="------------010703040907000907000903" This is a multi-part message in MIME format. --------------010703040907000907000903 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 09/02/10 20:53, Vlad Galu wrote: > Hi Philip, >> At any rate, both are fixed now. Yes, the error is still there. The '-' for the command in the Makefile simply ignores the non 0 return code of the command and continues on. Or maybe I'm going crazy b/c its serving me different .gem files sometime= s. See attached (apparently I didn't get it here) --=20 ------------------------------------------------------------------------ 1024D/DB9B8C1C B90B FBC3 A3A1 C71A 8E70 3F8C 75B8 8FFB DB9B 8C1C Philip M. Gollucci (pgollucci@p6m7g8.com) c: 703.336.9354 VP Apache Infrastructure; Member, Apache Software Foundation Committer, FreeBSD Foundation Consultant, P6M7G8 Inc. Sr. System Admin, Ridecharge Inc. Work like you don't need the money, love like you'll never get hurt, and dance like nobody's watching. --------------010703040907000907000903 Content-Type: text/plain; name="rubygem-rails-3.0.0.log" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="rubygem-rails-3.0.0.log" building rubygem-rails-3.0.0 in directory /space/md/9-CURRENT-amd64-rubyg= ems18 build started at Thu Sep 2 14:54:15 UTC 2010 port directory: /usr/ports/www/rubygem-rails building for: 9.0-CURRENT amd64 maintained by: ruby@FreeBSD.org Makefile ident: $FreeBSD: ports/www/rubygem-rails/Makefile,v 1.28 2010/09= /02 02:43:27 pgollucci Exp $ prefixes: LOCALBASE=3Dusr/local PREFIX=3D/usr/local Begin Configuration: ---Begin Environment--- ARCH=3Damd64 PACKAGE_BUILDING=3D1 USER=3Droot WITHOUT_HAL=3Dyes WITH_OPENSSL_PORT=3Dyes CCACHE_DIR=3D/ccache FORCE_MAKE_JOBS=3Dyes BRANCH=3DCURRENT CCACHE_NOLINK=3D1 HOST_WORKDIR=3D BATCH=3D1 WITHOUT_PROFILE=3Dtrue OLDPWD=3D/ HOME=3D/root LOG_DIRECTORY=3D FORCE_PACKAGE=3Dyes LOG_COMPRESSLOGS=3D0 WITH_MD2=3Dyes LOG_DOCOPY=3D0 MAKE_JOBS_NUMBER=3D12 PKGZIPCMD=3Dbzip2 HAVE_MOTIF=3D1 FTP_TIMEOUT=3D900 yes=3D HTTP_TIMEOUT=3D900 defaultUpdateHost=3Dcvsup11.us.FreeBSD.org pb=3D/space DISTFILE_CACHE=3D/home/ftp/pub/FreeBSD/ports/distfiles WITHOUT_DBUS=3Dyes WITHOUT_X11=3Dyes OSREL=3D9.0 defaultUpdateType=3DCSUP TINDERD_LOGFILE=3D/dev/null WITHOUT_GUI=3Dyes PORTOBJFORMAT=3Delf WITH_RUBY=3Dyes WRKDIRPREFIX=3D/work DISTDIR=3D/tmp/distfiles DISTCACHE=3D/distcache CCACHE_LOGFILE=3D PATH=3D/opt:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin PACKAGES=3D/tmp/packages TIMEOUT=3D7200 PKGSUFFIX=3D.tbz WITH_LDAP=3Dyes TINDERBOX_BUILDING=3D1 OSVERSION=3D900019 OPTIONS_ENABLED=3D0 __DSVERSION__=3D3.0 TINDERD_SLEEPTIME=3D120 UNAME_n=3Dtinderbox.host __MKLVL__=3D1 CCACHE_JAIL=3D0 LOCALBASE=3D/usr/local CCACHE_MAX_SIZE=3D12G DISTFILE_URI=3D X_WINDOW_SYSTEM=3Dxorg MASTER_SITE_OVERRIDE=3Dfile:///distcache/${DIST_SUBDIR}/=20 OPTIONS_DIR=3D UNAME_r=3D9.0-CURRENT USA_RESIDENT=3DYES UNAME_s=3DFreeBSD PARALLEL_PACKAGE_BUILD=3D1 PWD=3D/usr/ports/www/rubygem-rails UNAME_v=3DFreeBSD 9.0-CURRENT #0: Thu Sep 2 14:54:07 UTC 2010 root@ti= nderbox.host:/usr/src/sys/magic/kernel/path FTP_PASSIVE_MODE=3Dyes CCACHE_ENABLED=3D1 INDEXFILE=3DINDEX-9 NOPORTDOCS=3D ---End Environment--- ---Begin OPTIONS List--- =3D=3D=3D> The following configuration options are available for rubygem-= rails-3.0.0: FCGI=3DOff (default) "FastCGI backend" MONGREL=3DOff (default) "Mongrel backend" MONGRELCLUSTER=3DOff (default) "Mongrel Cluster backend" PASSENGER=3DOff (default) "Passenger backend" MEMCACHE_CLIENT=3DOff (default) "MemCache-Client support" =3D=3D=3D> Use 'make config' to modify these settings ---End OPTIONS List--- End Configuration. FETCH_DEPENDS=3D PATCH_DEPENDS=3Dopenssl-1.0.0_2.tbz ruby-1.8.7.248_3,1.tbz EXTRACT_DEPENDS=3Dopenssl-1.0.0_2.tbz ruby-1.8.7.248_3,1.tbz BUILD_DEPENDS=3Dopenssl-1.0.0_2.tbz ruby-1.8.7.248_3,1.tbz ruby18-gems-1.= 3.7.tbz RUN_DEPENDS=3Druby18-gems-1.3.7.tbz ruby-1.8.7.248_3,1.tbz ruby18-iconv-1= =2E8.7.248,1.tbz openssl-1.0.0_2.tbz libiconv-1.13.1_1.tbz rubygem-active= support-3.0.0.tbz rubygem-activemodel-3.0.0.tbz rubygem-tzinfo-0.3.23.tbz= rubygem-arel-1.0.1.tbz rubygem-builder-2.1.2.tbz rubygem-i18n-0.4.1.tbz = rubygem-activerecord-3.0.0.tbz rubygem-erubis-2.6.6.tbz rubygem-rack-moun= t-0.6.13.tbz rubygem-rack-test-0.5.4.tbz rubygem-abstract-1.0.0_1.tbz rub= ygem-rack-1.2.1,2.tbz rubygem-actionpack-3.0.0.tbz rubygem-mail-2.2.5.tbz= rubygem-treetop-1.4.8_1.tbz rubygem-mime-types-1.16.tbz rubygem-polyglot= -0.3.1.tbz rubygem-actionmailer-3.0.0.tbz rubygem-activeresource-3.0.0.tb= z rubygem-thor-0.14.0.tbz rubygem-rake-0.8.7.tbz rubygem-railties-3.0.0.t= bz rubygem-bundler-1.0.0.tbz add_pkg =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=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> License check disabled, port has not defined LICENSE =3D> rails-3.0.0.gem doesn't seem to exist in /tmp/distfiles/rubygem. =3D> Attempting to fetch from file:///distcache/rubygem/. rails-3.0.0.gem 3584 B 14 MBps =3D> MD5 Checksum OK for rubygem/rails-3.0.0.gem. =3D> SHA256 Checksum OK for rubygem/rails-3.0.0.gem. =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=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 add_pkg openssl-1.0.0_2.tbz ruby-1.8.7.248_3,1.tbz adding dependencies pkg_add openssl-1.0.0_2.tbz Copy /usr/local/openssl/openssl.cnf.sample to /usr/local/openssl/openssl.= cnf and edit it to fit your needs. pkg_add ruby-1.8.7.248_3,1.tbz =3D=3D=3D=3D Note that some of the standard libraries are provided as separate ports since they require extra dependencies: converters/ruby-iconv iconv module databases/ruby-gdbm: GDBM module x11-toolkits/ruby-tk: Tcl/Tk modules japanese/ruby-tk: Tcl/Tk modules for Japanized Tcl/Tk lang/ruby-mode.el: Emacs lisp modules Install them as occasion demands. =3D=3D=3D=3D =3D=3D=3D> License check disabled, port has not defined LICENSE =3D=3D=3D> Extracting for rubygem-rails-3.0.0 =3D> MD5 Checksum OK for rubygem/rails-3.0.0.gem. =3D> SHA256 Checksum OK for rubygem/rails-3.0.0.gem. =3D=3D=3D> rubygem-rails-3.0.0 depends on file: /usr/local/bin/ruby18 -= found Deleting ruby-1.8.7.248_3,1 Deleting openssl-1.0.0_2 =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=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 add_pkg openssl-1.0.0_2.tbz ruby-1.8.7.248_3,1.tbz adding dependencies pkg_add openssl-1.0.0_2.tbz Copy /usr/local/openssl/openssl.cnf.sample to /usr/local/openssl/openssl.= cnf and edit it to fit your needs. pkg_add ruby-1.8.7.248_3,1.tbz =3D=3D=3D=3D Note that some of the standard libraries are provided as separate ports since they require extra dependencies: converters/ruby-iconv iconv module databases/ruby-gdbm: GDBM module x11-toolkits/ruby-tk: Tcl/Tk modules japanese/ruby-tk: Tcl/Tk modules for Japanized Tcl/Tk lang/ruby-mode.el: Emacs lisp modules Install them as occasion demands. =3D=3D=3D=3D =3D=3D=3D> Patching for rubygem-rails-3.0.0 =3D=3D=3D> rubygem-rails-3.0.0 depends on file: /usr/local/bin/ruby18 -= found Deleting ruby-1.8.7.248_3,1 Deleting openssl-1.0.0_2 =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=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 add_pkg openssl-1.0.0_2.tbz ruby-1.8.7.248_3,1.tbz ruby18-gems-1.3.7.tbz adding dependencies pkg_add openssl-1.0.0_2.tbz Copy /usr/local/openssl/openssl.cnf.sample to /usr/local/openssl/openssl.= cnf and edit it to fit your needs. pkg_add ruby-1.8.7.248_3,1.tbz =3D=3D=3D=3D Note that some of the standard libraries are provided as separate ports since they require extra dependencies: converters/ruby-iconv iconv module databases/ruby-gdbm: GDBM module x11-toolkits/ruby-tk: Tcl/Tk modules japanese/ruby-tk: Tcl/Tk modules for Japanized Tcl/Tk lang/ruby-mode.el: Emacs lisp modules Install them as occasion demands. =3D=3D=3D=3D pkg_add ruby18-gems-1.3.7.tbz =3D=3D=3D> rubygem-rails-3.0.0 depends on file: /usr/local/bin/gem18 - = found =3D=3D=3D> rubygem-rails-3.0.0 depends on file: /usr/local/bin/ruby18 -= found =3D=3D=3D> Configuring for rubygem-rails-3.0.0 =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=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 cat: /tmp/make.log5: No such file or directory =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=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 add_pkg ruby18-gems-1.3.7.tbz ruby-1.8.7.248_3,1.tbz ruby18-iconv-1.8.7.2= 48,1.tbz openssl-1.0.0_2.tbz libiconv-1.13.1_1.tbz rubygem-activesupport-= 3.0.0.tbz rubygem-activemodel-3.0.0.tbz rubygem-tzinfo-0.3.23.tbz rubygem= -arel-1.0.1.tbz rubygem-builder-2.1.2.tbz rubygem-i18n-0.4.1.tbz rubygem-= activerecord-3.0.0.tbz rubygem-erubis-2.6.6.tbz rubygem-rack-mount-0.6.13= =2Etbz rubygem-rack-test-0.5.4.tbz rubygem-abstract-1.0.0_1.tbz rubygem-r= ack-1.2.1,2.tbz rubygem-actionpack-3.0.0.tbz rubygem-mail-2.2.5.tbz rubyg= em-treetop-1.4.8_1.tbz rubygem-mime-types-1.16.tbz rubygem-polyglot-0.3.1= =2Etbz rubygem-actionmailer-3.0.0.tbz rubygem-activeresource-3.0.0.tbz ru= bygem-thor-0.14.0.tbz rubygem-rake-0.8.7.tbz rubygem-railties-3.0.0.tbz r= ubygem-bundler-1.0.0.tbz adding dependencies pkg_add ruby18-gems-1.3.7.tbz skipping ruby18-gems-1.3.7, already added pkg_add ruby-1.8.7.248_3,1.tbz skipping ruby-1.8.7.248_3,1, already added pkg_add ruby18-iconv-1.8.7.248,1.tbz pkg_add openssl-1.0.0_2.tbz skipping openssl-1.0.0_2, already added pkg_add libiconv-1.13.1_1.tbz skipping libiconv-1.13.1_1, already added pkg_add rubygem-activesupport-3.0.0.tbz pkg_add rubygem-activemodel-3.0.0.tbz pkg_add rubygem-tzinfo-0.3.23.tbz pkg_add rubygem-arel-1.0.1.tbz pkg_add rubygem-builder-2.1.2.tbz skipping rubygem-builder-2.1.2, already added pkg_add rubygem-i18n-0.4.1.tbz skipping rubygem-i18n-0.4.1, already added pkg_add rubygem-activerecord-3.0.0.tbz pkg_add rubygem-erubis-2.6.6.tbz pkg_add rubygem-rack-mount-0.6.13.tbz pkg_add rubygem-rack-test-0.5.4.tbz pkg_add rubygem-abstract-1.0.0_1.tbz skipping rubygem-abstract-1.0.0_1, already added pkg_add rubygem-rack-1.2.1,2.tbz skipping rubygem-rack-1.2.1,2, already added pkg_add rubygem-actionpack-3.0.0.tbz pkg_add rubygem-mail-2.2.5.tbz pkg_add rubygem-treetop-1.4.8_1.tbz skipping rubygem-treetop-1.4.8_1, already added pkg_add rubygem-mime-types-1.16.tbz skipping rubygem-mime-types-1.16, already added pkg_add rubygem-polyglot-0.3.1.tbz skipping rubygem-polyglot-0.3.1, already added pkg_add rubygem-actionmailer-3.0.0.tbz pkg_add rubygem-activeresource-3.0.0.tbz pkg_add rubygem-thor-0.14.0.tbz pkg_add rubygem-rake-0.8.7.tbz pkg_add rubygem-railties-3.0.0.tbz pkg_add rubygem-bundler-1.0.0.tbz =3D=3D=3D> Installing for rubygem-rails-3.0.0 =3D=3D=3D> rubygem-rails-3.0.0 depends on package: rubygem-activesuppor= t>=3D3.0.0 - found =3D=3D=3D> rubygem-rails-3.0.0 depends on package: rubygem-activerecord= >=3D3.0.0 - found =3D=3D=3D> rubygem-rails-3.0.0 depends on package: rubygem-actionpack>=3D= 3.0.0 - found =3D=3D=3D> rubygem-rails-3.0.0 depends on package: rubygem-actionmailer= >=3D3.0.0 - found =3D=3D=3D> rubygem-rails-3.0.0 depends on package: rubygem-activeresour= ce>=3D3.0.0 - found =3D=3D=3D> rubygem-rails-3.0.0 depends on package: rubygem-railties>=3D= 3.0.0 - found =3D=3D=3D> rubygem-rails-3.0.0 depends on package: rubygem-bundler>=3D1= =2E0.0 - found =3D=3D=3D> rubygem-rails-3.0.0 depends on file: /usr/local/bin/gem18 - = found =3D=3D=3D> rubygem-rails-3.0.0 depends on file: /usr/local/bin/ruby18 -= found =3D=3D=3D> rubygem-rails-3.0.0 depends on file: /usr/local/bin/ruby18 -= found =3D=3D=3D> Generating temporary packing list =3D=3D=3D> Checking if www/rubygem-rails already installed /usr/bin/env /usr/local/bin/gem18 install -l --no-update-sources --no-ri= --install-dir /usr/local/lib/ruby/gems/1.8 --no-rdoc /tmp/distfiles/ruby= gem/rails-3.0.0.gem -- --build-args=20 Successfully installed rails-3.0.0 1 gem installed =3D=3D=3D> Registering installation for rubygem-rails-3.0.0 =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=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> Building package for rubygem-rails-3.0.0 Creating package /tmp/packages/All/rubygem-rails-3.0.0.tbz Registering depends: rubygem-activerecord-3.0.0 rubygem-actionmailer-3.0.= 0 rubygem-railties-3.0.0 rubygem-actionpack-3.0.0 rubygem-activeresource-= 3.0.0 rubygem-activemodel-3.0.0 rubygem-arel-1.0.1 rubygem-mail-2.2.5 rub= ygem-activesupport-3.0.0 ruby18-iconv-1.8.7.248,1 libiconv-1.13.1_1 rubyg= em-i18n-0.4.1 rubygem-builder-2.1.2 rubygem-tzinfo-0.3.23 rubygem-erubis-= 2.6.6 rubygem-abstract-1.0.0_1 rubygem-rack-mount-0.6.13 rubygem-rack-tes= t-0.5.4 rubygem-rack-1.2.1,2 rubygem-mime-types-1.16 rubygem-treetop-1.4.= 8_1 rubygem-polyglot-0.3.1 rubygem-thor-0.14.0 rubygem-rake-0.8.7 rubygem= -bundler-1.0.0 ruby18-gems-1.3.7 ruby-1.8.7.248_3,1 openssl-1.0.0_2. Creating bzip'd tar ball in '/tmp/packages/All/rubygem-rails-3.0.0.tbz' Deleting rubygem-rails-3.0.0 =3D=3D=3D Checking filesystem state Deleting rubygem-railties-3.0.0 pkg_delete: file '/usr/local/lib/ruby/gems/1.8/doc/railties-3.0.0/rdoc' d= oesn't exist pkg_delete: unable to completely remove directory '/usr/local/lib/ruby/ge= ms/1.8/doc/railties-3.0.0/rdoc' pkg_delete: file '/usr/local/lib/ruby/gems/1.8/doc/railties-3.0.0' doesn'= t exist pkg_delete: unable to completely remove directory '/usr/local/lib/ruby/ge= ms/1.8/doc/railties-3.0.0' pkg_delete: couldn't entirely delete package (perhaps the packing list is= incorrectly specified?) Deleting rubygem-bundler-1.0.0 Deleting rubygem-activeresource-3.0.0 Deleting rubygem-activerecord-3.0.0 Deleting rubygem-actionmailer-3.0.0 Deleting rubygem-actionpack-3.0.0 Deleting rubygem-arel-1.0.1 Deleting rubygem-mail-2.2.5 Deleting rubygem-rake-0.8.7 Deleting rubygem-thor-0.14.0 Deleting rubygem-tzinfo-0.3.23 Deleting rubygem-treetop-1.4.8_1 Deleting rubygem-rack-test-0.5.4 Deleting rubygem-rack-mount-0.6.13 Deleting rubygem-mime-types-1.16 Deleting rubygem-erubis-2.6.6 Deleting rubygem-activemodel-3.0.0 Deleting rubygem-abstract-1.0.0_1 Deleting rubygem-activesupport-3.0.0 Deleting rubygem-builder-2.1.2 Deleting rubygem-i18n-0.4.1 Deleting rubygem-polyglot-0.3.1 Deleting rubygem-rack-1.2.1,2 Deleting ruby18-iconv-1.8.7.248,1 Deleting ruby18-gems-1.3.7 Deleting libiconv-1.13.1_1 Deleting ruby-1.8.7.248_3,1 Deleting openssl-1.0.0_2 =3D=3D=3D Checking filesystem state after all packages deleted =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 build of /usr/ports/www/rubygem-rails ended at Thu Sep 2 14:54:43 UTC 20= 10 --------------010703040907000907000903-- --------------enigAC4A13D049DBACC0CD019561 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.14 (FreeBSD) iD8DBQFMgBA6dbiP+9ubjBwRAn3BAJoDhvNeLP3YG4ISa8ARIlT3ND3n7ACfW+9K C+NZ5CvQrK4feAq4iruDLHo= =I6lM -----END PGP SIGNATURE----- --------------enigAC4A13D049DBACC0CD019561-- From owner-freebsd-ports@FreeBSD.ORG Thu Sep 2 21:17:35 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 91C71106579C for ; Thu, 2 Sep 2010 21:17:35 +0000 (UTC) (envelope-from david@vizion2000.net) Received: from dns1.vizion2000.net (dns1.vizion2000.net [62.49.197.50]) by mx1.freebsd.org (Postfix) with ESMTP id 3CD698FC08 for ; Thu, 2 Sep 2010 21:17:34 +0000 (UTC) Received: by dns1.vizion2000.net (Postfix, from userid 1001) id 0826534D461; Thu, 2 Sep 2010 22:17:16 +0100 (BST) From: David Southwell Organization: Voice & Vision To: freebsd-ports@freebsd.org Date: Thu, 2 Sep 2010 22:17:15 +0100 User-Agent: KMail/1.13.5 (FreeBSD/7.2-RELEASE-p3; KDE/4.4.5; amd64; ; ) MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <201009022217.15895.david@vizion2000.net> Cc: gahr@freebsd.org Subject: fox-1.6.40 failure file size mismatch/ not available X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2010 21:17:35 -0000 Size mismatch for file from www.fox-toolkit.org/ftp File not available from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/ dns1# make ===> License check disabled, port has not defined LICENSE ===> Found saved configuration for fox-1.6.37_3 => fox-1.6.40.tar.gz doesn't seem to exist in /usr/ports/distfiles/. => Attempting to fetch from http://www.fox-toolkit.org/ftp/. fetch: http://www.fox-toolkit.org/ftp/fox-1.6.40.tar.gz: size mismatch: expected 4355091, actual 4353981 => Attempting to fetch from ftp://ftp.fox-toolkit.org/pub/. fetch: ftp://ftp.fox-toolkit.org/pub/fox-1.6.40.tar.gz: size mismatch: expected 4355091, actual 4353981 => Attempting to fetch from http://fresh.t-systems-sfr.com/unix/src/misc/. fetch: http://fresh.t-systems-sfr.com/unix/src/misc/fox-1.6.40.tar.gz: Not Found => Attempting to fetch from http://freebsd.unixfreunde.de/sources/. fetch: http://freebsd.unixfreunde.de/sources/fox-1.6.40.tar.gz: Not Found => Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/fox-1.6.40.tar.gz: File unavailable (e.g., file not found, no access) => Couldn't fetch it - please try to retrieve this => port manually into /usr/ports/distfiles/ and try again. *** Error code 1 Stop in /usr/ports/x11-toolkits/fox16. *** Error code 1 Stop in /usr/ports/x11-toolkits/fox16. mget fox-1.0.53.tar.gz [anpqy?]? n mget fox-1.2.16.tar.gz [anpqy?]? n mget fox-1.2.18.tar.gz [anpqy?]? n mget fox-1.4.32.tar.gz [anpqy?]? n mget fox-1.4.35.tar.gz [anpqy?]? n mget fox-1.4.6.tar.gz [anpqy?]? n mget fox-1.4.7.tar.gz [anpqy?]? n mget fox-1.6.1.tar.gz [anpqy?]? n mget fox-1.6.14.tar.gz [anpqy?]? n mget fox-1.6.16.tar.gz [anpqy?]? n mget fox-1.6.25.tar.gz [anpqy?]? n mget fox-1.6.26.tar.gz [anpqy?]? n mget fox-1.6.28.tar.gz [anpqy?]? n mget fox-1.6.29.tar.gz [anpqy?]? n mget fox-1.6.30.tar.gz [anpqy?]? n mget fox-1.6.31.tar.gz [anpqy?]? n mget fox-1.6.33.tar.gz [anpqy?]? n mget fox-1.6.34.tar.gz [anpqy?]? n mget fox-1.6.35.tar.gz [anpqy?]? n mget fox-1.6.36.tar.gz [anpqy?]? n mget fox-1.6.37.tar.gz [anpqy?]? n mget fox-1.7.21.tar.gz [anpqy?]? n Photographic Artist Permanent Installations & Design Creative Imagery and Advanced Digital Techniques High Dynamic Range Photography & Official Portraiture Combined darkroom & digital creations & Systems Adminstrator for the vizion2000.net network From owner-freebsd-ports@FreeBSD.ORG Thu Sep 2 21:46:37 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A59FC10656CE; Thu, 2 Sep 2010 21:46:37 +0000 (UTC) (envelope-from rfarmer@predatorlabs.net) Received: from mail-pz0-f54.google.com (mail-pz0-f54.google.com [209.85.210.54]) by mx1.freebsd.org (Postfix) with ESMTP id 7FDDC8FC17; Thu, 2 Sep 2010 21:46:37 +0000 (UTC) Received: by pzk7 with SMTP id 7so409930pzk.13 for ; Thu, 02 Sep 2010 14:46:36 -0700 (PDT) MIME-Version: 1.0 Received: by 10.114.109.18 with SMTP id h18mr219904wac.66.1283463989464; Thu, 02 Sep 2010 14:46:29 -0700 (PDT) Received: by 10.220.200.8 with HTTP; Thu, 2 Sep 2010 14:46:29 -0700 (PDT) X-Originating-IP: [71.1.133.114] Date: Thu, 2 Sep 2010 14:46:29 -0700 Message-ID: From: Rob Farmer To: "Julian H. Stacey" , bug-followup@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: ports@freebsd.org Subject: Re: ports/150159: current ports Mk/bsd.port.mk make fetch calls wget fails to support schemes X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2010 21:46:37 -0000 On Tue, Aug 31, 2010 at 10:39 AM, Julian H. Stacey wrote: > make fetch used to call src/ BSD licensed fetch > it now calls FSF GNU licensed wget, > You can see why it fails with > =A0 =A0 =A0 =A0cd sysutils/tarsnap ; make fetch-list > Revert Mk invocation back to longer invoke FSF/GNU licensed > wget & instead again invoke BSD licensed src/ provided fetch, > until such time as wget might be capable of offering all > schemes BSD fetch already does. In ports/sysutils/tarsnap/Makefile: 20 # Workaround for bug in libfetch(3) 21 FETCH_DEPENDS=3D ${LOCALBASE}/bin/wget:${PORTSDIR}/ftp/wget 22 FETCH_CMD=3D ${LOCALBASE}/bin/wget 23 FETCH_BEFORE_ARGS=3D --no-check-certificate 24 DISABLE_SIZE=3D yes This has nothing to do with ports/Mk and fetch would still be used if the maintainer hadn't overridden it. --=20 Rob Farmer From owner-freebsd-ports@FreeBSD.ORG Fri Sep 3 08:14:06 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C50B210657C6; Fri, 3 Sep 2010 08:14:06 +0000 (UTC) (envelope-from rfarmer@predatorlabs.net) Received: from mail-qw0-f54.google.com (mail-qw0-f54.google.com [209.85.216.54]) by mx1.freebsd.org (Postfix) with ESMTP id 5AF828FC1A; Fri, 3 Sep 2010 08:14:06 +0000 (UTC) Received: by qwg5 with SMTP id 5so1591007qwg.13 for ; Fri, 03 Sep 2010 01:14:05 -0700 (PDT) MIME-Version: 1.0 Received: by 10.229.1.162 with SMTP id 34mr256345qcf.226.1283501640397; Fri, 03 Sep 2010 01:14:00 -0700 (PDT) Received: by 10.220.200.8 with HTTP; Fri, 3 Sep 2010 01:14:00 -0700 (PDT) X-Originating-IP: [71.1.133.114] In-Reply-To: <20100903075925.GA3116@current.Sisis.de> References: <20100903075925.GA3116@current.Sisis.de> Date: Fri, 3 Sep 2010 01:14:00 -0700 Message-ID: From: Rob Farmer To: Matthias Apitz , freebsd-questions@freebsd.org, freebsd-ports@freebsd.org, matusita@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: Subject: Re: vmware-guestd6: error during make install X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2010 08:14:07 -0000 On Fri, Sep 3, 2010 at 00:59, Matthias Apitz wrote: > > > Hello, > > I'm trying to install the port /usr/ports/emulators/vmware-guestd6 (even > the freshest from FreeBSD server) in 8-CURRENT: Do you have a particular reason for using this port? Assuming you mean 8.X, the Tools that ship on this iso with Vmware will work (assuming your copy of vmware isn't too old) if you install misc/compat6x or you can try emulators/open-vm-tools (open sourced copy of Vmware Tools that you build). If you meant 9-CURRENT, things may be more difficult since Vmware only ships binaries for releases and open-vm-tools is marked broken on current. --=20 Rob Farmer > > current# pwd > /usr/ports/emulators > current# mv vmware-guestd6 vmware-guestd6.old > current# tar xzf ~guru/vmware-guestd6.tar.gz > current# cd vmware-guestd6 > current# make > =3D=3D=3D> =A0Vulnerability check disabled, database not found > > =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=3D=3D=3D=3D=3D > Choose "VM" -> "Install VMware Tools..." from VMware Workstation > menu to connect VM's CD-ROM drive and installation CD image temporary. > Press "Install" button when a dialog pops up. > =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=3D=3D=3D=3D=3D > > This port mounts /dev/acd0 to /mnt. > > Are you ready? [Y/n]: y > /bin/mkdir -p /mnt > /sbin/umount /mnt 2>&1 >/dev/null > umount: /mnt: not a file system root directory > *** Error code 1 (ignored) > /sbin/umount /dev/acd0 2>&1 >/dev/null > umount: /dev/acd0: unknown file system > *** Error code 1 (ignored) > /sbin/mount -t cd9660 /dev/acd0 /mnt > =3D=3D=3D> =A0Extracting for vmware-guestd-6.0.3.80004_2 > /sbin/umount /mnt > (cd /usr/ports/emulators/vmware-guestd6/work; /usr/bin/tar xf /usr/ports/= emulators/vmware-guestd6/work/vmware-tools-distrib/lib/modules/source/vmmem= ctl.tar) > =3D=3D=3D> =A0Patching for vmware-guestd-6.0.3.80004_2 > LC_ALL=3DC /usr/bin/sed -i.bak "`/usr/bin/printf 's|\0152\013\0350|\0152\= \\n\0350|g'`" =A0/usr/ports/emulators/vmware-guestd6/work/vmware-tools-dist= rib/lib/sbin32-6/vmware-checkvm > sed: /usr/ports/emulators/vmware-guestd6/work/vmware-tools-distrib/lib/sb= in32-6/vmware-checkvm: No such file or directory > *** Error code 1 > > Stop in /usr/ports/emulators/vmware-guestd6. > > there is no directory work/vmware-tools-distrib/lib/sbin32-6 but only > work/vmware-tools-distrib/lib/sbin32-63 > > creating a symlink helps a bit but later it can't find vmware-guestd for > installation which is not there, i.e. not in the tar file of the > vmware-tools; > > Any ideas? > > =A0 =A0 =A0 =A0matthias > > -- > Matthias Apitz > t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 > e - w http://www.unixarea.de/ > Solidarity with the zionistic pirates of Israel? =A0 Not in my =A0name! > =BFSolidaridad con los piratas sionistas de Israel? =A1No en mi nombre! > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.o= rg" > --=20 Rob Farmer From owner-freebsd-ports@FreeBSD.ORG Fri Sep 3 08:31:47 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A26DB1065770; Fri, 3 Sep 2010 08:31:47 +0000 (UTC) (envelope-from guru@unixarea.de) Received: from ms16-1.1blu.de (ms16-1.1blu.de [89.202.0.34]) by mx1.freebsd.org (Postfix) with ESMTP id 2F6ED8FC19; Fri, 3 Sep 2010 08:31:47 +0000 (UTC) Received: from [193.31.11.193] (helo=current.Sisis.de) by ms16-1.1blu.de with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1OrRgV-0007oz-JU; Fri, 03 Sep 2010 10:31:44 +0200 Received: from current.Sisis.de (current [127.0.0.1]) by current.Sisis.de (8.14.3/8.14.3) with ESMTP id o838VhxC003415; Fri, 3 Sep 2010 10:31:43 +0200 (CEST) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by current.Sisis.de (8.14.3/8.14.3/Submit) id o838VhpR003414; Fri, 3 Sep 2010 10:31:43 +0200 (CEST) (envelope-from guru@unixarea.de) X-Authentication-Warning: current.Sisis.de: guru set sender to guru@unixarea.de using -f Date: Fri, 3 Sep 2010 10:31:43 +0200 From: Matthias Apitz To: Rob Farmer Message-ID: <20100903083143.GA3316@current.Sisis.de> Mail-Followup-To: Matthias Apitz , Rob Farmer , freebsd-questions@freebsd.org, freebsd-ports@freebsd.org, matusita@freebsd.org References: <20100903075925.GA3116@current.Sisis.de> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.4.2.3i X-Operating-System: FreeBSD 8.0-CURRENT (i386) X-Con-Id: 51246 X-Originating-IP: 193.31.11.193 Cc: matusita@freebsd.org, Matthias Apitz , freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: vmware-guestd6: error during make install X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthias Apitz List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2010 08:31:47 -0000 El día Friday, September 03, 2010 a las 01:14:00AM -0700, Rob Farmer escribió: > On Fri, Sep 3, 2010 at 00:59, Matthias Apitz wrote: > > > > > > Hello, > > > > I'm trying to install the port /usr/ports/emulators/vmware-guestd6 (even > > the freshest from FreeBSD server) in 8-CURRENT: > > Do you have a particular reason for using this port? Assuming you mean > 8.X, My FreeBSD is a CVS 8-CURRENT from May 2009 to be exactly, i.e. after 8-RELEASE but before 8.1. > the Tools that ship on this iso with Vmware will work (assuming > your copy of vmware isn't too old) if you install misc/compat6x or you > can try emulators/open-vm-tools (open sourced copy of Vmware Tools > that you build). The VM is a VMware player 3.0.0 which says about itself Workstation 6.5-7.0 in the overview about the VM setup for FreeBSD; is this fine enough for the emulators/open-vm-tools? Thanks for your hint in any case matthias -- Matthias Apitz t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e - w http://www.unixarea.de/ Solidarity with the zionistic pirates of Israel? Not in my name! ¿Solidaridad con los piratas sionistas de Israel? ¡No en mi nombre! From owner-freebsd-ports@FreeBSD.ORG Fri Sep 3 08:38:47 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DCC7C1065702; Fri, 3 Sep 2010 08:38:47 +0000 (UTC) (envelope-from guru@unixarea.de) Received: from ms16-1.1blu.de (ms16-1.1blu.de [89.202.0.34]) by mx1.freebsd.org (Postfix) with ESMTP id 747248FC16; Fri, 3 Sep 2010 08:38:47 +0000 (UTC) Received: from [193.31.11.193] (helo=current.Sisis.de) by ms16-1.1blu.de with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1OrRBC-0003uC-AT; Fri, 03 Sep 2010 09:59:22 +0200 Received: from current.Sisis.de (current [127.0.0.1]) by current.Sisis.de (8.14.3/8.14.3) with ESMTP id o837xPan003159; Fri, 3 Sep 2010 09:59:25 +0200 (CEST) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by current.Sisis.de (8.14.3/8.14.3/Submit) id o837xPCA003158; Fri, 3 Sep 2010 09:59:25 +0200 (CEST) (envelope-from guru@unixarea.de) X-Authentication-Warning: current.Sisis.de: guru set sender to guru@unixarea.de using -f Date: Fri, 3 Sep 2010 09:59:25 +0200 From: Matthias Apitz To: freebsd-questions@freebsd.org, freebsd-ports@freebsd.org, matusita@freebsd.org Message-ID: <20100903075925.GA3116@current.Sisis.de> Mail-Followup-To: Matthias Apitz , freebsd-questions@freebsd.org, freebsd-ports@freebsd.org, matusita@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.4.2.3i X-Operating-System: FreeBSD 8.0-CURRENT (i386) X-Con-Id: 51246 X-Originating-IP: 193.31.11.193 Cc: Subject: vmware-guestd6: error during make install X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthias Apitz List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2010 08:38:47 -0000 Hello, I'm trying to install the port /usr/ports/emulators/vmware-guestd6 (even the freshest from FreeBSD server) in 8-CURRENT: current# pwd /usr/ports/emulators current# mv vmware-guestd6 vmware-guestd6.old current# tar xzf ~guru/vmware-guestd6.tar.gz current# cd vmware-guestd6 current# make ===> Vulnerability check disabled, database not found ======================================================================== Choose "VM" -> "Install VMware Tools..." from VMware Workstation menu to connect VM's CD-ROM drive and installation CD image temporary. Press "Install" button when a dialog pops up. ======================================================================== This port mounts /dev/acd0 to /mnt. Are you ready? [Y/n]: y /bin/mkdir -p /mnt /sbin/umount /mnt 2>&1 >/dev/null umount: /mnt: not a file system root directory *** Error code 1 (ignored) /sbin/umount /dev/acd0 2>&1 >/dev/null umount: /dev/acd0: unknown file system *** Error code 1 (ignored) /sbin/mount -t cd9660 /dev/acd0 /mnt ===> Extracting for vmware-guestd-6.0.3.80004_2 /sbin/umount /mnt (cd /usr/ports/emulators/vmware-guestd6/work; /usr/bin/tar xf /usr/ports/emulators/vmware-guestd6/work/vmware-tools-distrib/lib/modules/source/vmmemctl.tar) ===> Patching for vmware-guestd-6.0.3.80004_2 LC_ALL=C /usr/bin/sed -i.bak "`/usr/bin/printf 's|\0152\013\0350|\0152\\\n\0350|g'`" /usr/ports/emulators/vmware-guestd6/work/vmware-tools-distrib/lib/sbin32-6/vmware-checkvm sed: /usr/ports/emulators/vmware-guestd6/work/vmware-tools-distrib/lib/sbin32-6/vmware-checkvm: No such file or directory *** Error code 1 Stop in /usr/ports/emulators/vmware-guestd6. there is no directory work/vmware-tools-distrib/lib/sbin32-6 but only work/vmware-tools-distrib/lib/sbin32-63 creating a symlink helps a bit but later it can't find vmware-guestd for installation which is not there, i.e. not in the tar file of the vmware-tools; Any ideas? matthias -- Matthias Apitz t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e - w http://www.unixarea.de/ Solidarity with the zionistic pirates of Israel? Not in my name! ¿Solidaridad con los piratas sionistas de Israel? ¡No en mi nombre! From owner-freebsd-ports@FreeBSD.ORG Fri Sep 3 09:27:43 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6607410657BD for ; Fri, 3 Sep 2010 09:27:43 +0000 (UTC) (envelope-from demelier.david@gmail.com) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id ED7A98FC3D for ; Fri, 3 Sep 2010 09:27:42 +0000 (UTC) Received: by bwz20 with SMTP id 20so1625256bwz.13 for ; Fri, 03 Sep 2010 02:27:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=vsVLxpuVPINfx6oYkJ3sggsBg+Glrks/rE4L4PJedAc=; b=NIFMPGO28y41/PMjPud+HOlcJox8/G6K1Kn9xuzE2h+NEORtxY/MsapFCge54nzFfe juRYD2etQtjs19IWROa6syc63m9gFS318WnMeSKXyaf6EBQYvgtmlAtD1LxOX51TTRBW Now7sBWYMduTjJ4uHRo+SGyDznvXDvobBoElw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=MnRJObklLUHhyt51zCbgKIBgHEufPN6Ic0ywlaTOA7Rsd4X3uAgjCHrC5efEgGacEN U032T07ZXeg0p4vUeDiINq4fMB7VFVtyUKaTJyUhozCskrfSnMFZshadge57oDRR2h5P /hGC4RQHrQxpgAJWZSoQiNa1wH+/sx/f0vxIc= MIME-Version: 1.0 Received: by 10.204.127.141 with SMTP id g13mr338754bks.54.1283506053055; Fri, 03 Sep 2010 02:27:33 -0700 (PDT) Received: by 10.204.80.167 with HTTP; Fri, 3 Sep 2010 02:27:33 -0700 (PDT) Date: Fri, 3 Sep 2010 11:27:33 +0200 Message-ID: From: David DEMELIER To: freebsd-ports Content-Type: text/plain; charset=UTF-8 Subject: Problem with www/p5-Jifty X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2010 09:27:43 -0000 Hello folks, I have some troubles running jifty help after installed it : markand@Melon ~/devel/Hello $ jifty help Devel::StackTrace does not define $Devel::StackTrace::VERSION--version check failed at /usr/local/lib/perl5/site_perl/5.10.1/Exception/Class/Base.pm line 10. BEGIN failed--compilation aborted at /usr/local/lib/perl5/site_perl/5.10.1/Exception/Class/Base.pm line 10. Compilation failed in require at /usr/local/lib/perl5/site_perl/5.10.1/Exception/Class.pm line 10. BEGIN failed--compilation aborted at /usr/local/lib/perl5/site_perl/5.10.1/Exception/Class.pm line 10. Compilation failed in require at /usr/local/lib/perl5/site_perl/5.10.1/HTML/Mason/Exceptions.pm line 73. BEGIN failed--compilation aborted at /usr/local/lib/perl5/site_perl/5.10.1/HTML/Mason/Exceptions.pm line 73. Compilation failed in require at /usr/local/lib/perl5/site_perl/5.10.1/Jifty/View/Declare/Handler.pm line 9. BEGIN failed--compilation aborted at /usr/local/lib/perl5/site_perl/5.10.1/Jifty/View/Declare/Handler.pm line 9. Compilation failed in require at /usr/local/lib/perl5/site_perl/5.10.1/Jifty/Handler.pm line 29. BEGIN failed--compilation aborted at /usr/local/lib/perl5/site_perl/5.10.1/Jifty/Handler.pm line 29. Compilation failed in require at /usr/local/lib/perl5/site_perl/5.10.1/Jifty/Everything.pm line 56. BEGIN failed--compilation aborted at /usr/local/lib/perl5/site_perl/5.10.1/Jifty/Everything.pm line 56. Compilation failed in require at /usr/local/lib/perl5/site_perl/5.10.1/Jifty.pm line 103. BEGIN failed--compilation aborted at /usr/local/lib/perl5/site_perl/5.10.1/Jifty.pm line 103. Compilation failed in require at /usr/local/lib/perl5/site_perl/5.10.1/Jifty/Util.pm line 15. BEGIN failed--compilation aborted at /usr/local/lib/perl5/site_perl/5.10.1/Jifty/Util.pm line 15. Compilation failed in require at /usr/local/bin/jifty line 7. BEGIN failed--compilation aborted at /usr/local/bin/jifty line 10. I don't know if it's an upstream problem or a problem with devel/p5-Devel-StackTrace. I asked to the jifty developers but for the moment I don't have any answers from them. Do you have any idea to fix this ? Kind regards. -- Demelier David From owner-freebsd-ports@FreeBSD.ORG Fri Sep 3 10:19:53 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1756110657F9; Fri, 3 Sep 2010 10:19:53 +0000 (UTC) (envelope-from guru@unixarea.de) Received: from ms16-1.1blu.de (ms16-1.1blu.de [89.202.0.34]) by mx1.freebsd.org (Postfix) with ESMTP id 968FA8FC12; Fri, 3 Sep 2010 10:19:52 +0000 (UTC) Received: from [193.31.11.193] (helo=current.Sisis.de) by ms16-1.1blu.de with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1OrTN7-0002M5-Qo; Fri, 03 Sep 2010 12:19:50 +0200 Received: from current.Sisis.de (current [127.0.0.1]) by current.Sisis.de (8.14.3/8.14.3) with ESMTP id o83AJnvg004493; Fri, 3 Sep 2010 12:19:49 +0200 (CEST) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by current.Sisis.de (8.14.3/8.14.3/Submit) id o83AJnAE004492; Fri, 3 Sep 2010 12:19:49 +0200 (CEST) (envelope-from guru@unixarea.de) X-Authentication-Warning: current.Sisis.de: guru set sender to guru@unixarea.de using -f Date: Fri, 3 Sep 2010 12:19:49 +0200 From: Matthias Apitz To: freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Message-ID: <20100903101949.GA4476@current.Sisis.de> Mail-Followup-To: Matthias Apitz , freebsd-questions@freebsd.org, freebsd-ports@freebsd.org, Rob Farmer References: <20100903075925.GA3116@current.Sisis.de> <20100903083143.GA3316@current.Sisis.de> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20100903083143.GA3316@current.Sisis.de> User-Agent: Mutt/1.4.2.3i X-Operating-System: FreeBSD 8.0-CURRENT (i386) X-Con-Id: 51246 X-Originating-IP: 193.31.11.193 Cc: Rob Farmer Subject: emulators/open-vm-tools do not compile (was: Re: vmware-guestd6: error during make install) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthias Apitz List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2010 10:19:53 -0000 El día Friday, September 03, 2010 a las 10:31:43AM +0200, Matthias Apitz escribió: > The VM is a VMware player 3.0.0 which says about itself > Workstation 6.5-7.0 in the overview about the VM setup for FreeBSD; > is this fine enough for the emulators/open-vm-tools? > emulators/open-vm-tools does not compile: ... cc -O2 -pipe -fno-strict-aliasing -Wall -Werror -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I. -I@ -I@/contrib/altq -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -std=iso9899:1999 -fstack-protector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -c vfsops.c vfsops.c:118: error: conflicting types for 'VMBlockVFSMount' vfsops.c:70: error: previous declaration of 'VMBlockVFSMount' was here vfsops.c:259: error: conflicting types for 'VMBlockVFSUnmount' vfsops.c:74: error: previous declaration of 'VMBlockVFSUnmount' was here vfsops.c:343: error: conflicting types for 'VMBlockVFSRoot' vfsops.c:71: error: previous declaration of 'VMBlockVFSRoot' was here vfsops.c:379: error: conflicting types for 'VMBlockVFSStatFS' vfsops.c:73: error: previous declaration of 'VMBlockVFSStatFS' was here vfsops.c:389:64: error: macro "VFS_STATFS" passed 3 arguments, but takes just 2 vfsops.c: In function 'VMBlockVFSStatFS': vfsops.c:389: error: 'VFS_STATFS' undeclared (first use in this function) vfsops.c:389: error: (Each undeclared identifier is reported only once vfsops.c:389: error: for each function it appears in.) vfsops.c: At top level: vfsops.c:429: error: conflicting types for 'VMBlockVFSSync' vfsops.c:72: error: previous declaration of 'VMBlockVFSSync' was here *** Error code 1 Stop in /usr/ports/emulators/open-vm-tools/work/open-vm-tools-2009.03.18-154848/modules/freebsd/vmblock. *** Error code 1 Stop in /usr/ports/emulators/open-vm-tools/work/open-vm-tools-2009.03.18-154848/modules. *** Error code 1 Stop in /usr/ports/emulators/open-vm-tools/work/open-vm-tools-2009.03.18-154848. *** Error code 1 Stop in /usr/ports/emulators/open-vm-tools. Thanks for a hint matthias -- Matthias Apitz t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e - w http://www.unixarea.de/ Solidarity with the zionistic pirates of Israel? Not in my name! ¿Solidaridad con los piratas sionistas de Israel? ¡No en mi nombre! From owner-freebsd-ports@FreeBSD.ORG Fri Sep 3 10:24:33 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E1FFC1065880 for ; Fri, 3 Sep 2010 10:24:33 +0000 (UTC) (envelope-from fwall@inotronic.de) Received: from mail.inotronic.de (mail.inotronic.de [77.73.248.111]) by mx1.freebsd.org (Postfix) with ESMTP id 6A9778FC13 for ; Fri, 3 Sep 2010 10:24:33 +0000 (UTC) Received: from phosphorus (mail [77.73.248.111]) by mail.inotronic.de (8.14.4/8.14.3) with ESMTP id o83AOWqN002547 for ; Fri, 3 Sep 2010 12:24:32 +0200 (CEST) (envelope-from fwall@inotronic.de) X-Filter-Status: scanned by inotronic CheckMAIL Received: from boron.inotronic.de (boron.inotronic-intern.de [10.1.2.10]) by mail.inotronic.de (8.14.4/8.14.3) with ESMTP id o83AOMXM002517 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Fri, 3 Sep 2010 12:24:22 +0200 (CEST) (envelope-from fwall@inotronic.de) X-Receipient-To: Received: from gold.inotronic-management.de (gold.inotronic-management.de [10.3.1.201]) by boron.inotronic.de (8.14.3/8.14.3) with ESMTP id o83AOMaN000569 for ; Fri, 3 Sep 2010 12:24:22 +0200 (CEST) (envelope-from fwall@inotronic.de) Date: Fri, 3 Sep 2010 12:24:22 +0200 From: Frank Wall To: freebsd-ports@freebsd.org Message-ID: <20100903102421.GM31415@gold.inotronic-management.de> References: <20100827113915.GP30963@gold.inotronic-management.de> <4C77AD87.9020905@ifdnrg.com> <20100827124815.GR30963@gold.inotronic-management.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20100827124815.GR30963@gold.inotronic-management.de> User-Agent: Mutt/1.5.20 (2009-06-14) Subject: Re: ClamAV 0.96.2 not working on FreeBSD 7.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2010 10:24:34 -0000 On Fri, Aug 27, 2010 at 02:48:15PM +0200, Frank Wall wrote: > > Maybe the ClamAV people will provide a fix for this issue. There is a patch [1] available from ClamAV. For me it solves the problem. I've created a PR [2] to get the fix committed to the ports tree soon. [1] http://git.clamav.net/gitweb?p=clamav-devel.git;a=commitdiff_plain;h=71ca3536c4e0ed6454315a7c3ad5950ba212fbe1 [2] http://www.freebsd.org/cgi/query-pr.cgi?pr=150243 Thanks - Frank From owner-freebsd-ports@FreeBSD.ORG Fri Sep 3 13:01:34 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6312B10656CA; Fri, 3 Sep 2010 13:01:34 +0000 (UTC) (envelope-from guru@unixarea.de) Received: from ms16-1.1blu.de (ms16-1.1blu.de [89.202.0.34]) by mx1.freebsd.org (Postfix) with ESMTP id E2FDC8FC27; Fri, 3 Sep 2010 13:01:33 +0000 (UTC) Received: from [193.31.11.193] (helo=current.Sisis.de) by ms16-1.1blu.de with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1OrVtb-000254-CK; Fri, 03 Sep 2010 15:01:31 +0200 Received: from current.Sisis.de (current [127.0.0.1]) by current.Sisis.de (8.14.3/8.14.3) with ESMTP id o83D1U1N005383; Fri, 3 Sep 2010 15:01:30 +0200 (CEST) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by current.Sisis.de (8.14.3/8.14.3/Submit) id o83D1UVw005382; Fri, 3 Sep 2010 15:01:30 +0200 (CEST) (envelope-from guru@unixarea.de) X-Authentication-Warning: current.Sisis.de: guru set sender to guru@unixarea.de using -f Date: Fri, 3 Sep 2010 15:01:30 +0200 From: Matthias Apitz To: freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Message-ID: <20100903130130.GA5324@current.Sisis.de> Mail-Followup-To: Matthias Apitz , freebsd-questions@freebsd.org, freebsd-ports@freebsd.org References: <20100903075925.GA3116@current.Sisis.de> <20100903083143.GA3316@current.Sisis.de> <4C80EF3C.8050509@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <4C80EF3C.8050509@gmail.com> User-Agent: Mutt/1.4.2.3i X-Operating-System: FreeBSD 8.0-CURRENT (i386) X-Con-Id: 51246 X-Originating-IP: 193.31.11.193 Cc: Subject: Re: vmware-guestd6: error during make install X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthias Apitz List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2010 13:01:34 -0000 El día Friday, September 03, 2010 a las 08:51:08AM -0400, Glen Barber escribió: > Hi, > > On 9/3/10 4:31 AM, Matthias Apitz wrote: > >>> I'm trying to install the port /usr/ports/emulators/vmware-guestd6 (even > >>> the freshest from FreeBSD server) in 8-CURRENT: > >> > >> Do you have a particular reason for using this port? Assuming you mean > >> 8.X, > > > > My FreeBSD is a CVS 8-CURRENT from May 2009 to be exactly, i.e. after > > 8-RELEASE but before 8.1. > > > > 9-CURRENT was after 8.0-RELEASE. Can you provide the output of 'uname -a'? Of course: guru@current:~> uname -a FreeBSD current.Sisis.de 8.0-CURRENT FreeBSD 8.0-CURRENT #5: Sun Jan 10 09:55:14 CET 2010 guru@current.Sisis.de:/usr/obj/usr/src/sys/GENERIC i386 guru@current:~> ls -l /usr/src/CVS total 8 -rw-r--r-- 1 root wheel 654 28 may 2009 Entries -rw-r--r-- 1 root wheel 4 19 may 2009 Repository -rw-r--r-- 1 root wheel 51 19 may 2009 Root -rw-r--r-- 1 root wheel 660 19 may 2009 Template As I said, the kernel and user land is based on what was in CVS in May 2009. Later I incorparated some new USB stuff, that's why the build is from Januar 2010. I tried to install the vmware-freebsd-tools.tar.gz directly as VMWare.com it provides (I have compat6x already installed for some other reason). But in vmware-freebsd-tools.tar.gz there are only kernel modules for FreeBSD 6 and 7 and using the modules for 7 it crashes, ofc. Who can I get the tools installed? Thanks matthias -- Matthias Apitz t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e - w http://www.unixarea.de/ Solidarity with the zionistic pirates of Israel? Not in my name! ¿Solidaridad con los piratas sionistas de Israel? ¡No en mi nombre! From owner-freebsd-ports@FreeBSD.ORG Fri Sep 3 13:14:30 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AA3DA1065722; Fri, 3 Sep 2010 13:14:30 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: from mail-qy0-f175.google.com (mail-qy0-f175.google.com [209.85.216.175]) by mx1.freebsd.org (Postfix) with ESMTP id 3C8938FC08; Fri, 3 Sep 2010 13:14:30 +0000 (UTC) Received: by qyk31 with SMTP id 31so3492826qyk.13 for ; Fri, 03 Sep 2010 06:14:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:subject:references:in-reply-to :x-enigmail-version:content-type:content-transfer-encoding; bh=l9MOMPwY6DEUc4eh2eREuQVpgkAlHhrh3T6rpPtT/ZY=; b=SAblHik3MK7nyViCdK+oOk4oX20e4E7/YSBgabSp7aYnlr1S9eIV3U9cs5IiNIwapu 1iDf4D2DFmt1bvhG7m4bZtDh95xL/kigGfHppTVco1WmZXoTjiyLt32o5vpcH7xYB3AJ eqnSPAydETxUyRoPyDNAutQOiUUyepRLD/FWg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; b=L8Kl5jBdNxSNjui+B5Wnutso6gRNleUgyyEWRb40Fs+R36jds5yJXcL3YRMsNPeAkj 2P/B5XP1cD2GV5/xF8uVqikL1ICscOpzx1Se3w+yKlZcW+LN+t19UoStv5hWEvsLd5+7 NsRCOmbIjMRFlu9FOOH5JkhdiXFhhq/ZpxdRg= Received: by 10.229.250.203 with SMTP id mp11mr575742qcb.173.1283518272328; Fri, 03 Sep 2010 05:51:12 -0700 (PDT) Received: from schism.local (75.97.128.170.res-cmts.sewb.ptd.net [75.97.128.170]) by mx.google.com with ESMTPS id f15sm1853481qcr.1.2010.09.03.05.51.09 (version=SSLv3 cipher=RC4-MD5); Fri, 03 Sep 2010 05:51:09 -0700 (PDT) Message-ID: <4C80EF3C.8050509@gmail.com> Date: Fri, 03 Sep 2010 08:51:08 -0400 From: Glen Barber User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.2.8) Gecko/20100802 Thunderbird/3.1.2 MIME-Version: 1.0 To: Matthias Apitz , Rob Farmer , freebsd-questions@freebsd.org, freebsd-ports@freebsd.org, matusita@freebsd.org References: <20100903075925.GA3116@current.Sisis.de> <20100903083143.GA3316@current.Sisis.de> In-Reply-To: <20100903083143.GA3316@current.Sisis.de> X-Enigmail-Version: 1.1.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Subject: Re: vmware-guestd6: error during make install X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2010 13:14:30 -0000 Hi, On 9/3/10 4:31 AM, Matthias Apitz wrote: >>> I'm trying to install the port /usr/ports/emulators/vmware-guestd6 (even >>> the freshest from FreeBSD server) in 8-CURRENT: >> >> Do you have a particular reason for using this port? Assuming you mean >> 8.X, > > My FreeBSD is a CVS 8-CURRENT from May 2009 to be exactly, i.e. after > 8-RELEASE but before 8.1. > 9-CURRENT was after 8.0-RELEASE. Can you provide the output of 'uname -a'? Regards, -- Glen Barber From owner-freebsd-ports@FreeBSD.ORG Fri Sep 3 13:58:34 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A9A6B10657A9 for ; Fri, 3 Sep 2010 13:58:34 +0000 (UTC) (envelope-from david@vizion2000.net) Received: from dns1.vizion2000.net (dns1.vizion2000.net [62.49.197.50]) by mx1.freebsd.org (Postfix) with ESMTP id 1CAFF8FC14 for ; Fri, 3 Sep 2010 13:58:33 +0000 (UTC) Received: by dns1.vizion2000.net (Postfix, from userid 1001) id 831AE34D461; Fri, 3 Sep 2010 14:58:13 +0100 (BST) From: David Southwell Organization: Voice & Vision To: freebsd-ports@freebsd.org Date: Fri, 3 Sep 2010 14:58:13 +0100 User-Agent: KMail/1.13.5 (FreeBSD/7.2-RELEASE-p3; KDE/4.4.5; amd64; ; ) MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <201009031458.13401.david@vizion2000.net> Cc: kde-freebsd@kde.org Subject: kdelibs-4.5.1 build failure X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2010 13:58:34 -0000 Freebsd 7.3 p3 after following UPDATING instructions and deleting qt33 kdelibs4 fails build at: Thanks in advance for any help with this one David _________________________________________________ In file included from /usr/ports/x11/kdelibs4/work/kdelibs-4.5.1/kio/kfile/kurlrequester.cpp:521: /usr/ports/x11/kdelibs4/work/kdelibs-4.5.1/build/kio/kurlrequester.moc: In member function 'virtual int KUrlRequester::qt_metacall(QMetaObject::Call, int, void**)': /usr/ports/x11/kdelibs4/work/kdelibs-4.5.1/build/kio/kurlrequester.moc:125: warning: 'setPath' is deprecated (declared at /usr/ports/x11/kdelibs4/work/kdelibs-4.5.1/kio/kfile/kurlrequester.cpp:266) [ 53%] Building CXX object kio/CMakeFiles/kio.dir/kfile/kurlrequesterdialog.o [ 53%] Building CXX object kio/CMakeFiles/kio.dir/kfile/kcommentwidget.o [ 53%] Building CXX object kio/CMakeFiles/kio.dir/kfile/kloadfilemetadatathread.o [ 53%] Building CXX object kio/CMakeFiles/kio.dir/kfile/kfilesharedialog.o [ 53%] Building CXX object kio/CMakeFiles/kio.dir/kfile/kfsprocess.o [ 53%] Building CXX object kio/CMakeFiles/kio.dir/qrc_kacleditwidget.o [ 53%] Building CXX object kio/CMakeFiles/kio.dir/kssl/sslui.o [ 53%] Building CXX object kio/CMakeFiles/kio.dir/kssl/ksslcertificatebox.o [ 53%] Building CXX object kio/CMakeFiles/kio.dir/kssl/ksslinfodialog.o [ 53%] [ 53%] Building CXX object kio/CMakeFiles/kio.dir/kssl/kopenssl.o Building CXX object kio/CMakeFiles/kio.dir/kssl/kssl.o /usr/ports/x11/kdelibs4/work/kdelibs-4.5.1/kio/kssl/kssl.cpp:54:2: warning: #warning "kssl.cc contains temporary functions! Clean up" /usr/ports/x11/kdelibs4/work/kdelibs-4.5.1/kio/kssl/kssl.cpp:55:2: warning: #warning "kssl.cc needs to be ported to QSslSocket" In file included from /usr/ports/x11/kdelibs4/work/kdelibs-4.5.1/kio/kssl/kssl.cpp:50: /usr/ports/x11/kdelibs4/work/kdelibs-4.5.1/kdecore/network/k3socketbase.h:701: warning: 'virtual qint64 KNetwork::KActiveSocketBase::readData(char*, qint64)' was hidden /usr/ports/x11/kdelibs4/work/kdelibs-4.5.1/kdecore/network/k3clientsocketbase.h:452: warning: by 'virtual qint64 KNetwork::KClientSocketBase::readData(char*, qint64, KNetwork::KSocketAddress*)' /usr/ports/x11/kdelibs4/work/kdelibs-4.5.1/kdecore/network/k3socketbase.h:736: warning: 'virtual qint64 KNetwork::KActiveSocketBase::writeData(const char*, qint64)' was hidden /usr/ports/x11/kdelibs4/work/kdelibs-4.5.1/kdecore/network/k3clientsocketbase.h:463: warning: by 'virtual qint64 KNetwork::KClientSocketBase::writeData(const char*, qint64, const KNetwork::KSocketAddress*)' In file included from /usr/ports/x11/kdelibs4/work/kdelibs-4.5.1/kio/kssl/kssl.cpp:51: /usr/ports/x11/kdelibs4/work/kdelibs-4.5.1/kdecore/network/k3socketbase.h:701: warning: 'virtual qint64 KNetwork::KActiveSocketBase::readData(char*, qint64)' was hidden /usr/ports/x11/kdelibs4/work/kdelibs-4.5.1/kdecore/network/k3socketdevice.h:265: warning: by 'virtual qint64 KNetwork::KSocketDevice::readData(char*, qint64, KNetwork::KSocketAddress*)' /usr/ports/x11/kdelibs4/work/kdelibs-4.5.1/kdecore/network/k3socketbase.h:736: warning: 'virtual qint64 KNetwork::KActiveSocketBase::writeData(const char*, qint64)' was hidden /usr/ports/x11/kdelibs4/work/kdelibs-4.5.1/kdecore/network/k3socketdevice.h:276: warning: by 'virtual qint64 KNetwork::KSocketDevice::writeData(const char*, qint64, const KNetwork::KSocketAddress*)' [ 53%] Building CXX object kio/CMakeFiles/kio.dir/kssl/ksslcertchain.o [ 53%] Building CXX object kio/CMakeFiles/kio.dir/kssl/ksslcertificate.o [ 53%] Building CXX object kio/CMakeFiles/kio.dir/kssl/ksslkeygen.o [ 54%] Building CXX object kio/CMakeFiles/kio.dir/kssl/ksslsettings.o [ 54%] Building CXX object kio/CMakeFiles/kio.dir/kssl/ksslutils.o [ 54%] /usr/ports/x11/kdelibs4/work/kdelibs-4.5.1/kio/kssl/ksslsettings.cpp: In member function 'void KSSLSettings::load()': /usr/ports/x11/kdelibs4/work/kdelibs-4.5.1/kio/kssl/ksslsettings.cpp:134: warning: 'changeGroup' is deprecated (declared at /usr/ports/x11/kdelibs4/work/kdelibs-4.5.1/kdecore/config/kconfiggroup.h:159) /usr/ports/x11/kdelibs4/work/kdelibs-4.5.1/kio/kssl/ksslsettings.cpp:139: warning: 'changeGroup' is deprecated (declared at /usr/ports/x11/kdelibs4/work/kdelibs-4.5.1/kdecore/config/kconfiggroup.h:159) /usr/ports/x11/kdelibs4/work/kdelibs-4.5.1/kio/kssl/ksslsettings.cpp:144: warning: 'changeGroup' is deprecated (declared at /usr/ports/x11/kdelibs4/work/kdelibs-4.5.1/kdecore/config/kconfiggroup.h:159) /usr/ports/x11/kdelibs4/work/kdelibs-4.5.1/kio/kssl/ksslsettings.cpp: In member function 'void KSSLSettings::save()': /usr/ports/x11/kdelibs4/work/kdelibs-4.5.1/kio/kssl/ksslsettings.cpp:177: warning: 'changeGroup' is deprecated (declared at /usr/ports/x11/kdelibs4/work/kdelibs-4.5.1/kdecore/config/kconfiggroup.h:159) /usr/ports/x11/kdelibs4/work/kdelibs-4.5.1/kio/kssl/ksslsettings.cpp:182: warning: 'changeGroup' is deprecated (declared at /usr/ports/x11/kdelibs4/work/kdelibs-4.5.1/kdecore/config/kconfiggroup.h:159) Building CXX object kio/CMakeFiles/kio.dir/kssl/ksslx509v3.o Linking CXX shared library ../lib/libkio.so [ 54%] Built target kio gmake: *** [all] Error 2 *** Error code 1 Stop in /usr/ports/x11/kdelibs4. dns1# Photographic Artist Permanent Installations & Design Creative Imagery and Advanced Digital Techniques High Dynamic Range Photography & Official Portraiture Combined darkroom & digital creations & Systems Adminstrator for the vizion2000.net network From owner-freebsd-ports@FreeBSD.ORG Fri Sep 3 14:39:47 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 706D31065811 for ; Fri, 3 Sep 2010 14:39:47 +0000 (UTC) (envelope-from edwinlculp@gmail.com) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 0038F8FC1D for ; Fri, 3 Sep 2010 14:39:46 +0000 (UTC) Received: by bwz20 with SMTP id 20so1895208bwz.13 for ; Fri, 03 Sep 2010 07:39:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=7+lUNgdEQgFgbbTGltyUVhC6bj94EB8xBbpsOS/ttYw=; b=LbVA//KL2MJMNDX3tWSbKIO73weVWMIjvagQKZawSIbaQ00YfA6GFq8cW80E3MGv/1 KVf6rPw6xgqUIH262yFNyZWn+Rhug+zfnhXPBiAH74f3zEIAzRxHPFGzhmdvd+kZot0B zs+NfnJ/sGfXaUqYoFMnnoFa9XcLDuUxbbBXQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=DnRaepjLXawac9gs7s0pGt2kJGq1rXN8cGBy+6nh3gbZ+BLuO/Is5XDLyxRzsDbBSv Y9oIvfajlBi5wNZp9JnAGNjpnYLpUpve34I71Ia42ZmLGzIuA/m6TkSC8LJwPPdC449T +5WSvAaMxkK8WO7w7T9adKwoYujeydVaH6mPQ= MIME-Version: 1.0 Received: by 10.204.84.20 with SMTP id h20mr503623bkl.186.1283524785069; Fri, 03 Sep 2010 07:39:45 -0700 (PDT) Received: by 10.204.112.83 with HTTP; Fri, 3 Sep 2010 07:39:45 -0700 (PDT) Date: Fri, 3 Sep 2010 09:39:45 -0500 Message-ID: From: "Edwin L. Culp W." To: ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Cc: Subject: Strange flash issue on Current 9.0 that I am not seeing on stable 7.3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2010 14:39:47 -0000 On 9.0-CURRENT FreeBSD 9.0-CURRENT #67: Fri Sep 3 07:11:34 CDT 2010 I get the following with Firefox when trying to view a youtube video: # firefox3 LoadPlugin: failed to initialize shared library /root/.mozilla/plugins/nppdf.so [Shared object "libc.so.6" not found, required by "nppdf. *** NSPlugin Viewer *** Abort trap (core dumped) ec.encontacto.net /root # ERROR: NPN_GetValue() wait for reply: Connection closed *** NSPlugin Viewer *** WARNING:(/home/jkim/new/a/nspluginwrapper-1.3.0/src/npw-viewer.c:1136):invoke_NPN_GetValue: assertion failed: (r) I get basically the same error with chrome: *** NSPlugin Viewer *** WARNING:(/home/jkim/new/a/nspluginwrapper-1.3.0/src/npw-viewer.c:1136):invoke_NPN_GetValue: assertion failed: (r) [0903/091403:WARNING:base/debug_util_posix.cc(228)] Don't know how to do this [6886:175902720:1722284178:ERROR:base/native_library_linux.cc(24)] dlopen failed when trying to open /usr/local/lib/browser_plugins/libfl.6" not found, required by "libflashplayer.so" *** NSPlugin Viewer *** ERROR: NPN_GetValue() wait for reply: Connection closed *** NSPlugin Viewer *** WARNING:(/home/jkim/new/a/nspluginwrapper-1.3.0/src/npw-viewer.c:1136):invoke_NPN_GetValue: assertion failed: (r) I have no problem on: 7.3-STABLE FreeBSD 7.3-STABLE #1117: Fri Sep 3 05:26:11 CDT 2010 Flash works perfectly on both firefox and chrome I have rebuilt all linux ports with portmaster -r several times. It was working fine no more than a week ago but in a reboot, rebuild, port update or something similar I have lost it completely. Any suggestions appreciated. TIA ed P.D. linux-opera works as expected. The following have been rebuilt today with portmaster -r linux-dri-7.4_1 linux-f10-fontconfig-2.6.0 linux-f10-pango-1.22.3_1 linux-f10-alsa-lib-1.0.21_1 linux-f10-gtk2-2.14.7_2 linux-f10-png-1.2.37_1 linux-f10-aspell-0.60.6 linux-f10-hicolor-icon-theme-0.5 linux-f10-sqlite3-3.5.9_1 linux-f10-atk-1.24.0 linux-f10-jpeg-6b linux-f10-tiff-3.8.2 linux-f10-cairo-1.8.0_1 linux-f10-libsigc++20-2.2.2 linux-f10-xorg-libs-7.4_1 linux-f10-curl-7.19.6 linux-f10-libssh2-0.18 linux-firefox-3.6.8,1 linux-f10-cyrus-sasl2-2.1.22 linux-f10-nas-libs-1.9.1 linux-libgtkembedmoz-0.0.20100806 linux-f10-dbus-glib-0.76 linux-f10-nspr-4.7.6 linux-opera-10.61 linux-f10-dbus-libs-1.2.4 linux-f10-nss-3.12.2.0 linux_base-f10-10_2 linux-f10-expat-2.0.1 linux-f10-openldap-2.4.12_1 linuxdoc-1.1_1 linux-f10-flashplugin-10.1r82 linux-f10-openssl-0.9.8g opera-linuxplugins-10.61.6430 From owner-freebsd-ports@FreeBSD.ORG Fri Sep 3 17:00:55 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C216F10656CC for ; Fri, 3 Sep 2010 17:00:55 +0000 (UTC) (envelope-from web@3dresearch.com) Received: from smtp.3dresearch.com (dorabella.3dresearch.com [66.167.251.2]) by mx1.freebsd.org (Postfix) with ESMTP id 362958FC13 for ; Fri, 3 Sep 2010 17:00:54 +0000 (UTC) Received: from fracasso.3dresearch.com (pool-72-95-209-5.pitbpa.east.verizon.net [72.95.209.5]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by vmail.3dresearch.com (Postfix) with ESMTP id 831C0B0C64 for ; Fri, 3 Sep 2010 12:25:29 -0400 (EDT) Received: from fracasso.3dresearch.com (localhost [127.0.0.1]) by fracasso.3dresearch.com (Postfix) with SMTP id B73935C98 for ; Fri, 3 Sep 2010 12:25:28 -0400 (EDT) Date: Fri, 3 Sep 2010 12:25:19 -0400 From: Janos Dohanics To: freebsd-ports@freebsd.org Message-Id: <20100903122519.a352b86d.web@3dresearch.com> X-Mailer: Sylpheed 3.0.2 (GTK+ 2.20.1; amd64-portbld-freebsd8.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: graphics/graphviz build error X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2010 17:00:55 -0000 I don't seem to be able to build graphics/graphviz: # make install clean ===> Building for graphviz-2.26.3_3 gmake all-recursive gmake[1]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3' Making all in libltdl gmake[2]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/libltdl' gmake all-am gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/libltdl' gmake[3]: Nothing to be done for `all-am'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/libltdl' gmake[2]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/libltdl' Making all in lib gmake[2]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib' Making all in cdt gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/cdt' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/cdt' Making all in graph gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/graph' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/graph' Making all in cgraph gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/cgraph' gmake [3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/cgraph' Making all in gd gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/gd' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/gd' Making all in pathplan gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/pathplan' gmake [3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/pathplan' Making all in sfio gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/sfio' Making all in Sfio_f gmake[4]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/sfio/Sfio_f' gmake[4]: Nothing to be done for `all'. gmake[4]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/sfio/Sfio_f' gmake[4]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/sfio' gmake[4]: Nothing to be done for `all-am'. gmake[4]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/sfio' gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/sfio' Making all in vmalloc gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/vmalloc' gmake [3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/vmalloc' Making all in ast gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/ast' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/ast' Making all in vpsc gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/vpsc' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/vpsc' Making all in rbtree gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/rbtree' gmake [3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/rbtree' Making all in ortho gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/ortho' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/ortho' Making all in sparse gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/sparse' gmake [3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/sparse' Making all in patchwork gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/patchwork' gmake [3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/patchwork' Making all in expr gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/expr' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/expr' Making all in common gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/common' gmake [3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/common' Making all in pack gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/pack' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/pack' Making all in xdot gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/xdot' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/xdot' Making all in gvc gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/gvc' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/gvc' Making all in ingraphs gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/ingraphs' gmake [3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/ingraphs' Making all in topfish gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/topfish' gmake [3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/topfish' Making all in glcomp gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/glcomp' gmake [3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/glcomp' Making all in circogen gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/circogen' gmake [3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/circogen' Making all in dotgen gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/dotgen' gmake [3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/dotgen' Making all in fdpgen gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/fdpgen' gmake [3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/fdpgen' Making all in neatogen gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/neatogen' gmake [3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/neatogen' Making all in twopigen gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/twopigen' gmake [3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/twopigen' Making all in sfdpgen gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/sfdpgen' gmake [3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/sfdpgen' Making all in osage gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/osage' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/osage' Making all in gvpr gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/gvpr' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib/gvpr' gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib' gmake[3]: Nothing to be done for `all-am'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib' gmake[2]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/lib' Making all in plugin gmake[2]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/plugin' Making all in core gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/plugin/core' gmake [3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/plugin/core' Making all in devil gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/plugin/devil' gmake [3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/plugin/devil' Making all in gd gmake[3]: Entering directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/plugin/gd' /bin/sh /usr/local/bin/libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../../lib/common -I../../lib/pathplan -I../../lib/gvc -I../../lib/graph -I../../lib/cdt -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -Wstrict-prototypes -Wpointer-arith -Wall -ffast-math -MT gvloadimage_gd.lo -MD -MP -MF .deps/gvloadimage_gd.Tpo -c -o gvloadimage_gd.lo gvloadimage_gd.c libtool: compile: cc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../../lib/common -I../../lib/pathplan -I../../lib/gvc -I../../lib/graph -I../../lib/cdt -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -Wstrict-prototypes -Wpointer-arith -Wall -ffast-math -MT gvloadimage_gd.lo -MD -MP -MF .deps/gvloadimage_gd.Tpo -c gvloadimage_gd.c -fPIC -DPIC -o .libs/gvloadimage_gd.o gvloadimage_gd.c:26:19: error: cairo.h: No such file or directory gvloadimage_gd.c: In function 'gd_loadimage_cairo': gvloadimage_gd.c:135: error: 'cairo_t' undeclared (first use in this function) gvloadimage_gd.c:135: error: (Each undeclared identifier is reported only once gvloadimage_gd.c:135: error: for each function it appears in.) gvloadimage_gd.c:135: error: 'cr' undeclared (first use in this function) gvloadimage_gd.c:135: error: expected expression before ')' token gvloadimage_gd.c:138: error: 'cairo_surface_t' undeclared (first use in this function) gvloadimage_gd.c:138: error: 'surface' undeclared (first use in this function) gvloadimage_gd.c:148: warning: implicit declaration of function 'cairo_image_surface_create_for_data' gvloadimage_gd.c:148: error: 'CAIRO_FORMAT_ARGB32' undeclared (first use in this function) gvloadimage_gd.c:174: warning: implicit declaration of function 'cairo_save' gvloadimage_gd.c:175: warning: implicit declaration of function 'cairo_translate' gvloadimage_gd.c:178: warning: implicit declaration of function 'cairo_scale' gvloadimage_gd.c:181: warning: implicit declaration of function 'cairo_set_source_surface' gvloadimage_gd.c:182: warning: implicit declaration of function 'cairo_paint' gvloadimage_gd.c:183: warning: implicit declaration of function 'cairo_restore' gvloadimage_gd.c:185: warning: implicit declaration of function 'cairo_surface_destroy' gmake[3]: *** [gvloadimage_gd.lo] Error 1 gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/plugin/gd' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3/plugin' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.26.3' gmake: *** [all] Error 2 *** Error code 1 Stop in /usr/ports/graphics/graphviz. *** Error code 1 Stop in /usr/ports/graphics/graphviz. However, # ls -al /usr/local/include/cairo/cairo.h -r--r--r-- 1 root wheel 79860 Sep 3 09:31 /usr/local/include/cairo/cairo.h # uname -mrs FreeBSD 8.1-PRERELEASE amd64 Am I missing something, or is this a bug? -- Janos Dohanics From owner-freebsd-ports@FreeBSD.ORG Fri Sep 3 17:25:04 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DCD041065697; Fri, 3 Sep 2010 17:25:04 +0000 (UTC) (envelope-from aturetta@commit.it) Received: from mail.bestunion.it (mail.bestunion.it [85.18.201.87]) by mx1.freebsd.org (Postfix) with ESMTP id 527308FC14; Fri, 3 Sep 2010 17:25:03 +0000 (UTC) Received: from [192.168.44.66] (adsl-ull-73-0.51-151.net24.it [151.51.0.73]) (authenticated bits=0) by mail.bestunion.it (8.14.4/8.14.4) with ESMTP id o83GrB1c056422 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Fri, 3 Sep 2010 18:53:18 +0200 (CEST) (envelope-from aturetta@commit.it) Message-ID: <4C812903.4070608@commit.it> Date: Fri, 03 Sep 2010 18:57:39 +0200 From: Angelo Turetta User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.8) Gecko/20100802 Lightning/1.0b2 Thunderbird/3.1.2 MIME-Version: 1.0 To: FreeBSD - Ports Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: clamav-milter 0.96.1 at mail.bestunion.it X-Virus-Status: Clean Cc: kde@FreeBSD.org Subject: Error building kdenetwork-4.5.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2010 17:25:04 -0000 [ 45%] Building CXX object kget/transfer-plugins/bittorrent/CMakeFiles/kget_bittorrentfactory.dir/bttransfer.o In file included from /usr/local/include/torrent/torrent.h:43, from /space/usr/ports/net/kdenetwork4/work/kdenetwork-4.5.1/kget/transfer-plugins/bittorrent/bttransfer.cpp:24: /usr/local/include/torrent/download.h:43:31: error: sigc++/connection.h: No such file or directory /usr/local/include/torrent/download.h:44:34: error: sigc++/functors/slot.h: No such file or directory Thanks for any workaround... Angelo Turetta From owner-freebsd-ports@FreeBSD.ORG Fri Sep 3 18:28:02 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A287D10656C6; Fri, 3 Sep 2010 18:28:02 +0000 (UTC) (envelope-from dforsythe@gmail.com) Received: from mail-yw0-f54.google.com (mail-yw0-f54.google.com [209.85.213.54]) by mx1.freebsd.org (Postfix) with ESMTP id A09568FC19; Fri, 3 Sep 2010 18:28:01 +0000 (UTC) Received: by ywt2 with SMTP id 2so1039993ywt.13 for ; Fri, 03 Sep 2010 11:28:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:sender:received :in-reply-to:references:date:x-google-sender-auth:message-id:subject :from:to:cc:content-type; bh=uOBkMHOZgSevQgEfro2WpLYXmsjACGvIAZvB4+Du33s=; b=RSyq/U2Bl0PZuGH3YxFrljZ0Hz8iqJZGuxw4BfpzEAtuGD98TZPnXlRgbt8r7UGoaa o1RLMAd0jdlF0PhwPULRTqjWkdTnZQgyj4lRZTJJbi83//wr1in95jiaY+sNSGKVbqcd xkH08t+QwV7Huy1wiJ5VuV7Fsz65+czicdilI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; b=tlsB9sZl84SVjNJC7ie2LWsg5dtKGM9hq4iuh4ODX0fht79dubs/GCWhOy5FN1KfMF b3Np+vlVJfrr6b/nAzx+h/cdacp8LtSIsCmTI5ckencGSAvUC2b8OPOigvze6aYZxKow 4Z0uLWIxmHt39khnFJm9nihkcnJhoK7/HT1L0= MIME-Version: 1.0 Received: by 10.100.138.6 with SMTP id l6mr180895and.192.1283538479018; Fri, 03 Sep 2010 11:27:59 -0700 (PDT) Sender: dforsythe@gmail.com Received: by 10.231.59.143 with HTTP; Fri, 3 Sep 2010 11:27:58 -0700 (PDT) In-Reply-To: <20100902095219.GA47247@azathoth.lan> References: <4C6DA0FA.7080203@DataIX.net> <20100820124332.GB1786@azathoth.lan> <86lj7o7e6e.fsf@gmail.com> <20100902095219.GA47247@azathoth.lan> Date: Fri, 3 Sep 2010 11:27:58 -0700 X-Google-Sender-Auth: r2c9Bz_JD96gpv-r1ikacDq8XH0 Message-ID: From: David Forsythe To: Baptiste Daroussin Content-Type: text/plain; charset=UTF-8 Cc: Florent Thoumie , Julien Laffaye , Garrett Cooper , Tim Kientzle , Ivan Voras , freebsd-ports@freebsd.org, Anonymous Subject: Re: what next for the pkg_install rewrite X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2010 18:28:02 -0000 On Thu, Sep 2, 2010 at 2:52 AM, Baptiste Daroussin wrote: > sqlite if we goes on is BSD-like licensed so it should ne be a problem... > ... > That would be great, the json lib I use for testing purpose cjson > (http://sourceforge.net/projects/cjson/)... Okay, I'll pull both of these in when I get a chance. I might actually be able to use cjson to help with the logging I need to do in the database and in the install phase. > How hard would it be to add support for the new manifest on you libpkg which is > really great by the way :) After looking at cjson I could probably add support in a couple of hours. Some things in my lib aren't finalized though, so I wouldn't recommend spending time on it right now. > How hard would it be to allow other developers to work with you on libpkg? > separate the tasks etc. Before and during the summer it would have been pretty simple because I was working on git and hg. At the end of the summer I decided to move over to p4 until I have at least the entire current pkg system supported (and then I'll probably move the project back over to a git repo). Anyone can look at that and submit patches, but I don't want to create a communal repository until I'm "finished" with the lib. I'm in an... interesting... situation right now, I just moved and my bsd machine has no way of getting on the internet. I do have some pretty big changes in the pipeline that I haven't been able to commit yet, though (namely logging in the database and some naming convention changes), so go ahead and look, but I really wouldn't recommend touching too much for a while because a lot of stuff might change. From owner-freebsd-ports@FreeBSD.ORG Fri Sep 3 19:03:40 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D03F61065695; Fri, 3 Sep 2010 19:03:40 +0000 (UTC) (envelope-from dforsythe@gmail.com) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 35B9D8FC18; Fri, 3 Sep 2010 19:03:39 +0000 (UTC) Received: by iwn34 with SMTP id 34so2013674iwn.13 for ; Fri, 03 Sep 2010 12:03:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:sender:received :in-reply-to:references:date:x-google-sender-auth:message-id:subject :from:to:cc:content-type; bh=0Vwjc6QG/sZHe4Lakx2Hn1wjUKwLuMuZeUnFJc55Vu8=; b=b6OUmEB0BCvI2Yjt7zc4GMELhURVbEMN93tVhO8Jfp1SZzcFDhhUfKq/PogHmhv0CJ 7JC2BL+nctEHjFQmneLaw77l9sNMZ1uH9yx6jaujUdHOl8nm917gtrb8Y+DS26DTJV3e triFh6maVJoK7PMP50NQAC2d4XJz6YrIxbNA4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; b=h1Ldbh5LfwvV7fWeNjwQ7d52+Nh2uvhERl9ow/eoa2tCpt+CTufSXe2g4Nl9s20YYP SUbroRqZsherB+EoPlztUb02gyjkhz8wlFpTRjNHp5ty0Zs0VBahu0g5+Dfvy/szP+Pj aJ6iYrG8DttxhG4SstkQp0p3RdB+WBTXtBvC4= MIME-Version: 1.0 Received: by 10.231.30.76 with SMTP id t12mr1161327ibc.161.1283540619369; Fri, 03 Sep 2010 12:03:39 -0700 (PDT) Sender: dforsythe@gmail.com Received: by 10.231.59.143 with HTTP; Fri, 3 Sep 2010 12:03:39 -0700 (PDT) In-Reply-To: References: <20100819143830.GJ35140@azathoth.lan> <4C6DA0FA.7080203@DataIX.net> <20100820124332.GB1786@azathoth.lan> <86lj7o7e6e.fsf@gmail.com> Date: Fri, 3 Sep 2010 12:03:39 -0700 X-Google-Sender-Auth: k6gG-Dn6zWX-O6qKcqkrvWmJdps Message-ID: From: David Forsythe To: Ivan Voras Content-Type: text/plain; charset=UTF-8 Cc: Baptiste Daroussin , Florent Thoumie , Julien Laffaye , Garrett Cooper , Tim Kientzle , freebsd-ports@freebsd.org, Anonymous Subject: Re: what next for the pkg_install rewrite X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2010 19:03:40 -0000 On Thu, Sep 2, 2010 at 2:53 AM, Ivan Voras wrote: > > Repository format as in "ftp server layout" or something else? > Eh, format isn't really the word I needed there. I'm not really sure, I guess the whole repository *system*(?) has areas it can improve? One of the ideas I've had is basically what MacPorts does (mentioned by Tim), and another is using an index to resolve the actual location of packages (and possibly give suggestions). I'll put some stuff on the wiki if I get a chance. From owner-freebsd-ports@FreeBSD.ORG Fri Sep 3 19:05:36 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5ABAB10656D4; Fri, 3 Sep 2010 19:05:36 +0000 (UTC) (envelope-from makc@issp.ac.ru) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) by mx1.freebsd.org (Postfix) with ESMTP id CF46E8FC1D; Fri, 3 Sep 2010 19:05:35 +0000 (UTC) Received: from [80.73.162.22] [80.73.162.22:15596] (HELO/EHLO luna.dio.ru, authenticated with PLAIN) by mail.issp.ac.ru with ESMTP/inet id o83ISMka007078 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Fri, 3 Sep 2010 22:28:22 +0400 (MSD) From: Max Brazhnikov Organization: ISSP RAS To: freebsd-ports@freebsd.org Date: Fri, 3 Sep 2010 22:28:24 +0400 User-Agent: KMail/1.13.5 (FreeBSD/8.1-STABLE; KDE/4.5.1; amd64; ; ) References: <4C812903.4070608@commit.it> In-Reply-To: <4C812903.4070608@commit.it> MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <201009032228.25103.makc@issp.ac.ru> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-3.0 (mail.issp.ac.ru [77.236.34.3]); Fri, 03 Sep 2010 22:28:22 +0400 (MSD) Cc: kde@freebsd.org, Angelo Turetta Subject: Re: Error building kdenetwork-4.5.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2010 19:05:36 -0000 On Fri, 03 Sep 2010 18:57:39 +0200, Angelo Turetta wrote: > [ 45%] Building CXX object > kget/transfer-plugins/bittorrent/CMakeFiles/kget_bittorrentfactory.dir/bttr > ansfer.o In file included from /usr/local/include/torrent/torrent.h:43, > from > /space/usr/ports/net/kdenetwork4/work/kdenetwork-4.5.1/kget/transfer-plugin > s/bittorrent/bttransfer.cpp:24: > /usr/local/include/torrent/download.h:43:31: error: sigc++/connection.h: > No such file or directory > /usr/local/include/torrent/download.h:44:34: error: > sigc++/functors/slot.h: No such file or directory it seems kdenetwork4 picks up wrong includes. what does 'pkg_info -W /usr/local/include/torrent/download.h' say? Max From owner-freebsd-ports@FreeBSD.ORG Fri Sep 3 19:28:37 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A21CE10656D0 for ; Fri, 3 Sep 2010 19:28:37 +0000 (UTC) (envelope-from makc@issp.ac.ru) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) by mx1.freebsd.org (Postfix) with ESMTP id 189518FC0A for ; Fri, 3 Sep 2010 19:28:36 +0000 (UTC) Received: from [80.73.162.22] [80.73.162.22:53116] (HELO/EHLO luna.dio.ru, authenticated with PLAIN) by mail.issp.ac.ru with ESMTP/inet id o83JRVwV009001 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Fri, 3 Sep 2010 23:27:31 +0400 (MSD) From: Max Brazhnikov Organization: ISSP RAS To: kde-freebsd@kde.org, Pascal Stumpf Date: Fri, 3 Sep 2010 23:27:33 +0400 User-Agent: KMail/1.13.5 (FreeBSD/8.1-STABLE; KDE/4.5.1; amd64; ; ) References: <4C812903.4070608@commit.it> <201009032228.25103.makc@issp.ac.ru> In-Reply-To: <201009032228.25103.makc@issp.ac.ru> MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_lwUgMhqCuFJPt99" Message-Id: <201009032327.33958.makc@issp.ac.ru> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-3.0 (mail.issp.ac.ru [77.236.34.3]); Fri, 03 Sep 2010 23:27:32 +0400 (MSD) Cc: Angelo Turetta , freebsd-ports@freebsd.org Subject: Re: [kde-freebsd] Error building kdenetwork-4.5.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2010 19:28:37 -0000 --Boundary-00=_lwUgMhqCuFJPt99 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit On Fri, 3 Sep 2010 22:28:24 +0400, Max Brazhnikov wrote: > On Fri, 03 Sep 2010 18:57:39 +0200, Angelo Turetta wrote: > > [ 45%] Building CXX object > > > > kget/transfer-plugins/bittorrent/CMakeFiles/kget_bittorrentfactory.dir/bt > > tr ansfer.o In file included from > > /usr/local/include/torrent/torrent.h:43, try to build it with the patch (put it to net/kdenetwork4/files). Max --Boundary-00=_lwUgMhqCuFJPt99 Content-Type: text/plain; charset="UTF-8"; name="patch-kget__transfer-plugins__bittorrent__CMakeLists.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch-kget__transfer-plugins__bittorrent__CMakeLists.txt" --- ./kget/transfer-plugins/bittorrent/CMakeLists.txt.orig 2010-05-17 00:04:17.000000000 +0400 +++ ./kget/transfer-plugins/bittorrent/CMakeLists.txt 2010-09-03 23:11:25.423061403 +0400 @@ -1,6 +1,6 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${KDE4_ENABLE_EXCEPTIONS}") -include_directories( +include_directories(BEFORE ../../ ${LIBKTORRENT_INCLUDE_DIR} ) --Boundary-00=_lwUgMhqCuFJPt99-- From owner-freebsd-ports@FreeBSD.ORG Fri Sep 3 19:53:37 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 925501065670; Fri, 3 Sep 2010 19:53:37 +0000 (UTC) (envelope-from rfarmer@predatorlabs.net) Received: from mail-gx0-f182.google.com (mail-gx0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id 327C58FC1B; Fri, 3 Sep 2010 19:53:36 +0000 (UTC) Received: by gxk24 with SMTP id 24so1101284gxk.13 for ; Fri, 03 Sep 2010 12:53:36 -0700 (PDT) MIME-Version: 1.0 Received: by 10.101.107.8 with SMTP id j8mr702481anm.166.1283543616229; Fri, 03 Sep 2010 12:53:36 -0700 (PDT) Received: by 10.220.200.8 with HTTP; Fri, 3 Sep 2010 12:53:35 -0700 (PDT) X-Originating-IP: [71.1.133.114] In-Reply-To: <20100903130130.GA5324@current.Sisis.de> References: <20100903075925.GA3116@current.Sisis.de> <20100903083143.GA3316@current.Sisis.de> <4C80EF3C.8050509@gmail.com> <20100903130130.GA5324@current.Sisis.de> Date: Fri, 3 Sep 2010 12:53:35 -0700 Message-ID: From: Rob Farmer To: Matthias Apitz , freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Cc: Subject: Re: vmware-guestd6: error during make install X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2010 19:53:37 -0000 On Fri, Sep 3, 2010 at 06:01, Matthias Apitz wrote: > I tried to install the vmware-freebsd-tools.tar.gz directly as > VMWare.com it provides (I have compat6x already installed for some other > reason). But in vmware-freebsd-tools.tar.gz there are only kernel > modules for FreeBSD 6 and 7 and using the modules for 7 it crashes, ofc. > > Who can I get the tools installed? My EULA says: 3.4 VMware Tools. You may distribute the VMware Tools to any third party provided that (i) you only distribute the VMware Tools as a whole in object code format whether or not as part of, the Virtual Machine you create with the Software; (ii) you do not use VMware's name, logo or trademarks to market the VMware Tools, except you may refer to VMware names, logos or trademarks to indicate that the VMware Tools are compatible with or designed for use with the Software and (iii) you agree to indemnify, hold harmless, and defend VMware from and against any claims or lawsuits, including attorneys' fees, that arise or result from your use or distribution of VMware Tools. Notwithstanding the foregoing, you may distribute and modify the Open Source Software of VMware Tools; however, VMware may not provide any support, pursuant to Section 5, for such modified VMware Tools. Assuming you aren't in a US export restricted country (Cuba, Iran, North Korea, Sudan, and Syria) I should be able to give you a legal copy. This is the ISO that ships with Workstation 7.1.1 build-282343. It has kernel modules for 8.0 i386 & amd64. http://www.predatorlabs.net/dl/vmware-tools-freebsd-711.iso -- Rob Farmer From owner-freebsd-ports@FreeBSD.ORG Fri Sep 3 20:10:27 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9374010656D6; Fri, 3 Sep 2010 20:10:27 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id EE8358FC13; Fri, 3 Sep 2010 20:10:26 +0000 (UTC) Received: by iwn34 with SMTP id 34so2071474iwn.13 for ; Fri, 03 Sep 2010 13:10:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:sender:received :in-reply-to:references:date:x-google-sender-auth:message-id:subject :from:to:cc:content-type:content-transfer-encoding; bh=rMYsNHyzHJChwtb+19ejvsHtmjX8sH9wJLoGszHw32M=; b=XLNC0or05+HoTS2x9HM8H7G/4So6FfV6rlGE2/zrP+i1RCJbhWn7/wHbcvSNoUi2Cu WxaN78XpHCUtRrhRDwaQeSLX/lgA940+mQPZcAW7ncC4S1bwMqjDkP+4SWzEqjjSgiYe qwERlE3XpFB26JbquDqA959WOOhkEpPdSZ0pU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; b=Fw37tEKjFPSrKSuaDLsxv2jnhwP2gXswu3jsExnY5ky74pzo/U5Dy1VT8GeRtNXjSp 7ifkc5g5UEvCWluTy4kXbYBXaMgTRWV8uBNIUZYZyGmKTxn6CeRMTDD40tdBJ9e3zMfe xPOchUknjZ+GCHCsB0NoeT20DVJgXMDqPC/+Q= MIME-Version: 1.0 Received: by 10.231.170.13 with SMTP id b13mr1415629ibz.62.1283544626186; Fri, 03 Sep 2010 13:10:26 -0700 (PDT) Sender: baptiste.daroussin@gmail.com Received: by 10.231.205.141 with HTTP; Fri, 3 Sep 2010 13:10:26 -0700 (PDT) In-Reply-To: References: <4C6DA0FA.7080203@DataIX.net> <20100820124332.GB1786@azathoth.lan> <86lj7o7e6e.fsf@gmail.com> <20100902095219.GA47247@azathoth.lan> Date: Fri, 3 Sep 2010 20:10:26 +0000 X-Google-Sender-Auth: 2iyxAJyHOr58-UUzNurnXRZwWHc Message-ID: From: Baptiste Daroussin To: David Forsythe Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: Florent Thoumie , Julien Laffaye , Garrett Cooper , Tim Kientzle , Ivan Voras , freebsd-ports@freebsd.org, Anonymous Subject: Re: what next for the pkg_install rewrite X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2010 20:10:27 -0000 > > Before and during the summer it would have been pretty simple because > I was working on git and hg. =A0At the end of the summer I decided to > move over to p4 until I have at least the entire current pkg system > supported (and then I'll probably move the project back over to a git > repo). I think git is a good choice :) >=A0Anyone can look at that and submit patches, but I don't want > to create a communal repository until I'm "finished" with the lib. > I'm in an... interesting... situation right now, I just moved and my > bsd machine has no way of getting on the internet. =A0I do have some > pretty big changes in the pipeline that I haven't been able to commit > yet, though (namely logging in the database and some naming convention > changes), so go ahead and look, but I really wouldn't recommend > touching too much for a while because a lot of stuff might change. That's fair, you did most of the coding work, the fact that you keep the repo as yours is fair, I think we need someone to be the "master" of the code (don't know how to explain that with other words :), that is important for coherence and consistency. So before contributing code and being able to separate tasks we will have to wait for your bsd machine to get access to the internet :). That would let us the time needed to discuss all the features (and the design) that would become pkg_install2. regards, Bapt From owner-freebsd-ports@FreeBSD.ORG Fri Sep 3 20:17:24 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F17BE106564A for ; Fri, 3 Sep 2010 20:17:24 +0000 (UTC) (envelope-from Pascal.Stumpf@cubes.de) Received: from smtprelay02.ispgateway.de (smtprelay02.ispgateway.de [80.67.18.44]) by mx1.freebsd.org (Postfix) with ESMTP id B0E8F8FC12 for ; Fri, 3 Sep 2010 20:17:24 +0000 (UTC) Received: from [62.224.213.69] (helo=ikarus.local.cubes.de) by smtprelay02.ispgateway.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1OrcVJ-0003YG-HC; Fri, 03 Sep 2010 22:04:53 +0200 From: Pascal Stumpf To: Max Brazhnikov Date: Fri, 3 Sep 2010 22:04:55 +0200 User-Agent: KMail/1.13.5 (FreeBSD/8.1-PRERELEASE; KDE/4.4.5; amd64; ; ) References: <4C812903.4070608@commit.it> <201009032228.25103.makc@issp.ac.ru> <201009032327.33958.makc@issp.ac.ru> In-Reply-To: <201009032327.33958.makc@issp.ac.ru> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <201009032204.56029.Pascal.Stumpf@cubes.de> X-Df-Sender: 429867 Cc: kde-freebsd@kde.org, Angelo Turetta , freebsd-ports@freebsd.org Subject: Re: [kde-freebsd] Error building kdenetwork-4.5.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2010 20:17:25 -0000 On Friday 03 September 2010 21:27:33 Max Brazhnikov wrote: > On Fri, 3 Sep 2010 22:28:24 +0400, Max Brazhnikov wrote: > > On Fri, 03 Sep 2010 18:57:39 +0200, Angelo Turetta wrote: > > > [ 45%] Building CXX object > > > > > > kget/transfer-plugins/bittorrent/CMakeFiles/kget_bittorrentfactor > > > y.dir/bt tr ansfer.o In file included from > > > /usr/local/include/torrent/torrent.h:43, > > try to build it with the patch (put it to net/kdenetwork4/files). > > Max Yup, works. Thank you. :) From owner-freebsd-ports@FreeBSD.ORG Fri Sep 3 20:37:56 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7FF191065696 for ; Fri, 3 Sep 2010 20:37:56 +0000 (UTC) (envelope-from web@3dresearch.com) Received: from smtp.3dresearch.com (dorabella.3dresearch.com [66.167.251.2]) by mx1.freebsd.org (Postfix) with ESMTP id 503748FC0A for ; Fri, 3 Sep 2010 20:37:56 +0000 (UTC) Received: from fracasso.3dresearch.com (pool-72-95-209-5.pitbpa.east.verizon.net [72.95.209.5]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by vmail.3dresearch.com (Postfix) with ESMTP id 8238A7735F for ; Fri, 3 Sep 2010 16:37:53 -0400 (EDT) Received: from fracasso.3dresearch.com (localhost [127.0.0.1]) by fracasso.3dresearch.com (Postfix) with SMTP id 655865C98 for ; Fri, 3 Sep 2010 16:37:52 -0400 (EDT) Date: Fri, 3 Sep 2010 16:37:28 -0400 From: Janos Dohanics To: freebsd-ports@freebsd.org Message-Id: <20100903163728.7f72fe2c.web@3dresearch.com> In-Reply-To: <20100903122519.a352b86d.web@3dresearch.com> References: <20100903122519.a352b86d.web@3dresearch.com> X-Mailer: Sylpheed 3.0.2 (GTK+ 2.20.1; amd64-portbld-freebsd8.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: graphics/graphviz build error X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2010 20:37:56 -0000 On Fri, 3 Sep 2010 12:25:19 -0400 Janos Dohanics wrote: > I don't seem to be able to build graphics/graphviz: > > # make install clean > ===> Building for graphviz-2.26.3_3[...] Please ignore - builds fine after make distclean. Sorry for the noise. -- Janos Dohanics From owner-freebsd-ports@FreeBSD.ORG Fri Sep 3 21:20:20 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D4A2910656C2 for ; Fri, 3 Sep 2010 21:20:20 +0000 (UTC) (envelope-from shaun@FreeBSD.org) Received: from dione.picobyte.net (81-86-230-94.dsl.pipex.com [81.86.230.94]) by mx1.freebsd.org (Postfix) with SMTP id 5A0508FC0A for ; Fri, 3 Sep 2010 21:20:19 +0000 (UTC) Received: from charon.picobyte.net (charon.picobyte.net [IPv6:2001:770:15d::fe03]) by dione.picobyte.net (Postfix) with ESMTP id AB07BB886; Fri, 3 Sep 2010 22:14:53 +0100 (BST) Date: Fri, 3 Sep 2010 22:14:53 +0100 From: Shaun Amott To: "Julian H. Stacey" Message-ID: <20100903211452.GA71315@charon.picobyte.net> References: <201008311739.o7VHdWDY048477@fire.js.berklix.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="BXVAT5kNtrzKuDFl" Content-Disposition: inline In-Reply-To: <201008311739.o7VHdWDY048477@fire.js.berklix.net> User-Agent: Mutt/1.5.20 (FreeBSD i386) Cc: ports@freebsd.org, FreeBSD-gnats-submit@freebsd.org Subject: Re: current ports Mk make fetch calls wget fails to support schemes X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2010 21:20:20 -0000 --BXVAT5kNtrzKuDFl Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 31, 2010 at 07:39:32PM +0200, Julian H. Stacey wrote: >=20 > make fetch used to call src/ BSD licensed fetch > it now calls FSF GNU licensed wget, > You can see why it fails with=20 > cd sysutils/tarsnap ; make fetch-list >=20 > Even after one has found where=20 > Unsupported scheme > comes from & tried to work round it with make.conf assertion of > FETCH_BINARY=3D/usr/bin/fetch > as shown in bsd.port.mk > /usr/src/usr.bin/fetch is still not used. >=20 > Revert Mk invocation back to longer invoke FSF/GNU licensed > wget & instead again invoke BSD licensed src/ provided fetch, > until such time as wget might be capable of offering all > schemes BSD fetch already does. >=20 fetch is still used by ports, it's just that the tarsnap port overrides it and uses wget. The Makefile says "Workaround for bug in libfetch(3)"; perhaps it has something to do with the self-signed certificate employed on the master site. Try FETCH_CMD if you want to force the use of fetch. --=20 Shaun Amott // PGP: 0x6B387A9A "A foolish consistency is the hobgoblin of little minds." - Ralph Waldo Emerson --BXVAT5kNtrzKuDFl Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (FreeBSD) iEYEARECAAYFAkyBZUwACgkQkmhdCGs4epru2ACg2wpBThlfSL6VXfN/Cw0uando V3gAnj78lknhHzK4SyrN4jgKASFyhpoj =lWJc -----END PGP SIGNATURE----- --BXVAT5kNtrzKuDFl-- From owner-freebsd-ports@FreeBSD.ORG Sat Sep 4 06:50:26 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5D93510656AE; Sat, 4 Sep 2010 06:50:26 +0000 (UTC) (envelope-from guru@unixarea.de) Received: from ms16-1.1blu.de (ms16-1.1blu.de [89.202.0.34]) by mx1.freebsd.org (Postfix) with ESMTP id DF7318FC19; Sat, 4 Sep 2010 06:50:25 +0000 (UTC) Received: from [93.104.120.218] (helo=current.Sisis.de) by ms16-1.1blu.de with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1OrmZz-00074R-JL; Sat, 04 Sep 2010 08:50:23 +0200 Received: from current.Sisis.de (current [127.0.0.1]) by current.Sisis.de (8.14.3/8.14.3) with ESMTP id o846oOnu002322; Sat, 4 Sep 2010 08:50:24 +0200 (CEST) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by current.Sisis.de (8.14.3/8.14.3/Submit) id o846oNLI002321; Sat, 4 Sep 2010 08:50:23 +0200 (CEST) (envelope-from guru@unixarea.de) X-Authentication-Warning: current.Sisis.de: guru set sender to guru@unixarea.de using -f Date: Sat, 4 Sep 2010 08:50:23 +0200 From: Matthias Apitz To: Rob Farmer Message-ID: <20100904065023.GA2247@current.Sisis.de> Mail-Followup-To: Matthias Apitz , Rob Farmer , freebsd-questions@freebsd.org, freebsd-ports@freebsd.org References: <20100903075925.GA3116@current.Sisis.de> <20100903083143.GA3316@current.Sisis.de> <4C80EF3C.8050509@gmail.com> <20100903130130.GA5324@current.Sisis.de> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.4.2.3i X-Operating-System: FreeBSD 8.0-CURRENT (i386) X-Con-Id: 51246 X-Originating-IP: 93.104.120.218 Cc: freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: vmware-guestd6: error during make install X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthias Apitz List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2010 06:50:26 -0000 El día Friday, September 03, 2010 a las 12:53:35PM -0700, Rob Farmer escribió: > Assuming you aren't in a US export restricted country (Cuba, Iran, > North Korea, Sudan, and Syria) I should be able to give you a legal > copy. ... Rob, Thanks for this. Btw: It's a pity that I'm not in Cuba, I'm living in the cold and rainy Germany :-) Meanwhile I have updated the port emulators/open-vm-tools to version 253928 which compiles, installs and works just fine in my system. The vmware driver for Xorg gives you a lot of very high resolutions which hides all the Win shit behind the FreeBSD VM. I could also solve the sound problem. In VMware you need the driver snd_es137x. I need this for Skype. I still have to figure out how my USB video cam will work, the rest works now again as it was working in the real laptop. Thanks again for your help matthias -- Matthias Apitz t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e - w http://www.unixarea.de/ Solidarity with the zionistic pirates of Israel? Not in my name! ¿Solidaridad con los piratas sionistas de Israel? ¡No en mi nombre! From owner-freebsd-ports@FreeBSD.ORG Sat Sep 4 09:00:14 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1888B10656D1 for ; Sat, 4 Sep 2010 09:00:14 +0000 (UTC) (envelope-from paul@ifdnrg.com) Received: from ifdnrg20.ifdnrg.com (outbound.ifdnrg.com [195.66.148.241]) by mx1.freebsd.org (Postfix) with ESMTP id B31038FC0C for ; Sat, 4 Sep 2010 09:00:13 +0000 (UTC) Received: from [192.168.1.65] (188-221-77-161.zone12.bethere.co.uk [188.221.77.161]) (authenticated bits=0) by ifdnrg20.ifdnrg.com (8.14.4/8.14.3) with ESMTP id o848xi1N049688 for ; Sat, 4 Sep 2010 09:59:57 +0100 (BST) (envelope-from paul@ifdnrg.com) Message-ID: <4C820A7F.9060100@ifdnrg.com> Date: Sat, 04 Sep 2010 09:59:43 +0100 From: Paul Macdonald User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.2; en-GB; rv:1.9.2.8) Gecko/20100802 Thunderbird/3.1.2 MIME-Version: 1.0 To: ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Patch problem with nmap-5.35.d1 (solved) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2010 09:00:14 -0000 nmap-5.21_1 < needs updating (port has 5.35.d1) ===> Patching for nmap-5.35.d1 ===> Applying FreeBSD patches for nmap-5.35.d1 1 out of 1 hunks failed--saving rejects to nbase/configure.rej => Patch patch-nbase__configure failed to apply cleanly. => Patch(es) patch-Makefile.in patch-configure patch-libdnet-stripped__include__dnet__sctp.h patch-libdnet-stripped__src__eth-bsd.c applied cleanly. *** Error code 1 on 7.1 REL and a 6.2 REL ( but worked on other 7.1 REL boxes) interestingly i can't see the nbase patch file on a box that worked, on re-updating ports tree i can see this patch is removed.. so solution is to re-update ports tree if seeing same problem.. ------------------------- Paul Macdonald IFDNRG Ltd Web and video hosting ------------------------- IFDNRG 40 Maritime Street Edinburgh EH6 6SA ------------------------- From owner-freebsd-ports@FreeBSD.ORG Sat Sep 4 13:49:35 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BE49010656B5 for ; Sat, 4 Sep 2010 13:49:35 +0000 (UTC) (envelope-from edwinlculp@gmail.com) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 4C04E8FC0C for ; Sat, 4 Sep 2010 13:49:34 +0000 (UTC) Received: by bwz20 with SMTP id 20so2787364bwz.13 for ; Sat, 04 Sep 2010 06:49:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=bPpsywmN7JpBRJgO0pnh0U6PESKCpNSaIKIpUGqHmlk=; b=vQt6HeMOLSK7egeVkq7RCNX6Dxl5aTzW3zb5r9fcrjPHI9DPDlQv1jVXkfLVnYgWNb KcVJYrHbbTuKg6VZoCByJE3jy/yyNBbRua29ZVRXs2/LAOMEkCKPpuHVnyg2DrrG93Pu j5Frbb8JCTMYmlQb2gLqVyTUH1Glob3So/S84= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=U0n+RrKV5zFxB/eA5WLvSeXZ2OscrxNQk7MgQXjifSpZfIC5lcG0SyzLU0fAig2NBm 30K390dwV8WeQeTlV5zeKMYtVmzrVi9IlpvgI6dZxw/aKQHXHnd8PMQUm2YZpSh7hE94 yZEzdRTGa61SbAdGkJYWtzlM4sOAcTW+SvFoc= MIME-Version: 1.0 Received: by 10.204.98.135 with SMTP id q7mr1550041bkn.49.1283608173427; Sat, 04 Sep 2010 06:49:33 -0700 (PDT) Received: by 10.204.112.83 with HTTP; Sat, 4 Sep 2010 06:49:33 -0700 (PDT) In-Reply-To: References: Date: Sat, 4 Sep 2010 08:49:33 -0500 Message-ID: From: "Edwin L. Culp W." To: ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: Subject: Re: Strange flash issue on Current 9.0 that I am not seeing on stable 7.3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2010 13:49:35 -0000 Replying to myself. I found a "work around" and or an issue with nspluginwrapper-devel "nspluginwrapper-1.3.0_5". I simply did a pkg_deinstall nspluginwrapper-1.3.0_5 and portmaster www/nspluginwrapper and all is well. On my 7.3 installations nspluginwrapper-devel works fine. I have no idea why but if someone else has a similar problem, it might be a good idea to test the other. Thanks, ed On Fri, Sep 3, 2010 at 9:39 AM, Edwin L. Culp W. wro= te: > On 9.0-CURRENT FreeBSD 9.0-CURRENT #67: Fri Sep =A03 07:11:34 CDT 2010 I > get the following with Firefox when trying to view a youtube video: > > # firefox3 > LoadPlugin: failed to initialize shared library > /root/.mozilla/plugins/nppdf.so [Shared object "libc.so.6" not found, > required by "nppdf. > *** NSPlugin Viewer =A0*** Abort trap (core dumped) > ec.encontacto.net > /root # ERROR: NPN_GetValue() wait for reply: Connection closed > *** NSPlugin Viewer =A0*** > WARNING:(/home/jkim/new/a/nspluginwrapper-1.3.0/src/npw-viewer.c:1136):in= voke_NPN_GetValue: > assertion failed: (r) > > I get basically the same error with chrome: > > *** NSPlugin Viewer =A0*** > WARNING:(/home/jkim/new/a/nspluginwrapper-1.3.0/src/npw-viewer.c:1136):in= voke_NPN_GetValue: > assertion failed: (r) > [0903/091403:WARNING:base/debug_util_posix.cc(228)] Don't know how to do = this > [6886:175902720:1722284178:ERROR:base/native_library_linux.cc(24)] > dlopen failed when trying to open > /usr/local/lib/browser_plugins/libfl.6" not found, required by > "libflashplayer.so" > *** NSPlugin Viewer =A0*** ERROR: NPN_GetValue() wait for reply: Connecti= on closed > *** NSPlugin Viewer =A0*** > WARNING:(/home/jkim/new/a/nspluginwrapper-1.3.0/src/npw-viewer.c:1136):in= voke_NPN_GetValue: > assertion failed: (r) > > I have no problem on: > =A07.3-STABLE FreeBSD 7.3-STABLE #1117: Fri Sep =A03 05:26:11 CDT 2010 > Flash works perfectly on both firefox and chrome > > I have rebuilt all linux ports with portmaster -r =A0several times. > > It was working fine no more than a week ago but in a reboot, rebuild, > port update or something similar I have lost it completely. > > Any suggestions appreciated. > > TIA > > ed > > P.D. linux-opera works as expected. =A0The following have been rebuilt > today with portmaster -r > > =A0linux-dri-7.4_1 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 linux-= f10-fontconfig-2.6.0 > =A0 =A0 =A0 =A0 =A0linux-f10-pango-1.22.3_1 > linux-f10-alsa-lib-1.0.21_1 =A0 =A0 =A0 =A0 =A0 =A0 linux-f10-gtk2-2.14.7= _2 > =A0 =A0 =A0 =A0 linux-f10-png-1.2.37_1 > linux-f10-aspell-0.60.6 > linux-f10-hicolor-icon-theme-0.5 =A0 =A0 =A0 =A0linux-f10-sqlite3-3.5.9_1 > linux-f10-atk-1.24.0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0linux-f10-jpe= g-6b > =A0 =A0 =A0 =A0 linux-f10-tiff-3.8.2 > linux-f10-cairo-1.8.0_1 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 linux-f10-libsigc= ++20-2.2.2 > =A0 =A0 =A0 =A0 linux-f10-xorg-libs-7.4_1 > linux-f10-curl-7.19.6 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 linux-f10-libss= h2-0.18 > =A0 =A0 =A0 =A0 linux-firefox-3.6.8,1 > linux-f10-cyrus-sasl2-2.1.22 =A0 =A0 =A0 =A0 =A0 =A0linux-f10-nas-libs-1.= 9.1 > =A0 =A0 =A0 =A0 linux-libgtkembedmoz-0.0.20100806 > linux-f10-dbus-glib-0.76 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0linux-f10-nspr-4.= 7.6 > =A0 =A0 =A0 =A0 linux-opera-10.61 > linux-f10-dbus-libs-1.2.4 =A0 =A0 =A0 =A0 =A0 =A0 =A0 linux-f10-nss-3.12.= 2.0 > =A0 =A0 =A0 =A0 linux_base-f10-10_2 > linux-f10-expat-2.0.1 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 linux-f10-openl= dap-2.4.12_1 > =A0 =A0 =A0 =A0 linuxdoc-1.1_1 > linux-f10-flashplugin-10.1r82 =A0 =A0 =A0 =A0 =A0 linux-f10-openssl-0.9.8= g > =A0 =A0 =A0 =A0 opera-linuxplugins-10.61.6430 > From owner-freebsd-ports@FreeBSD.ORG Sat Sep 4 14:28:14 2010 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9455210656C6 for ; Sat, 4 Sep 2010 14:28:14 +0000 (UTC) (envelope-from mapopa@gmail.com) Received: from mail-ww0-f50.google.com (mail-ww0-f50.google.com [74.125.82.50]) by mx1.freebsd.org (Postfix) with ESMTP id 2E10A8FC1B for ; Sat, 4 Sep 2010 14:28:13 +0000 (UTC) Received: by wwb18 with SMTP id 18so764993wwb.31 for ; Sat, 04 Sep 2010 07:28:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:cc:content-type; bh=RvuuVVdJY7EYE4W+hCSuQcITp7Epy2H/WoVpq5t/Ewg=; b=OFuoSsHBpQOX7A9dshoBSOvz1E8u6LILXru8D8vOKb3Spedfk94NcEhb/+fu4pR1yQ EMhSYuO3Q3k/pFZGQq0+tGmXni01hhDxW8X6h6it50kHG14OdB+HhX8KOuPBtdQdsHt+ 4dbl5TLuquJDB4J686coXVIa9gj4LeKhwDSsI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:cc:content-type; b=oMWx/MptjnsgHEdH9W6v5I1jGo+cfneP1jZLTMr9/FG84vw5nMtt1ehhpjxllRtiCw hwyPfLJ57Wk5lVtjQa8Ishsh/sopBgm9qgyUMMKF32gKWV48rOMyg04Vrw0jSpQKJ6vC xp2ZYeR/pO81z6ayCI+FTvd8PMn5u4Whp9p10= MIME-Version: 1.0 Received: by 10.216.12.8 with SMTP id 8mr1338333wey.107.1283608902481; Sat, 04 Sep 2010 07:01:42 -0700 (PDT) Received: by 10.216.72.213 with HTTP; Sat, 4 Sep 2010 07:01:42 -0700 (PDT) Date: Sat, 4 Sep 2010 17:01:42 +0300 Message-ID: From: marius adrian popa To: ports@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1 Cc: For discussion among Firebird Developers Subject: Firebird 2.1.x and Firebird 2.5 port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2010 14:28:14 -0000 Hello i want to takeover the port maintenance for the following ports firebird20-server http://www.freshports.org/databases/firebird20-server and create the new ones for firebird2.1-server firebird2.5-server and update the port for flamerobin Could you help me with the steps that are necessary to be a maintainer of these ports? There are a lot of quiestions on howto install firebird 2.1.x from source and seems a better idea to update the main port http://forums.freebsd.org/showthread.php?t=11477&highlight=firebird http://www.reddit.com/r/BSD/comments/d95vr/firebird_21x_compiling_instructions_on_freebsd_81/ From owner-freebsd-ports@FreeBSD.ORG Sat Sep 4 18:00:23 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4E6301065672; Sat, 4 Sep 2010 18:00:23 +0000 (UTC) (envelope-from swell.k@gmail.com) Received: from mail-gy0-f182.google.com (mail-gy0-f182.google.com [209.85.160.182]) by mx1.freebsd.org (Postfix) with ESMTP id 7A2058FC16; Sat, 4 Sep 2010 18:00:22 +0000 (UTC) Received: by gyg4 with SMTP id 4so1430529gyg.13 for ; Sat, 04 Sep 2010 11:00:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:user-agent:mime-version:content-type; bh=TXnORu75WtXwqHdNknlv6dXu8tMiM6pEfQTo8FpUSQ4=; b=bzGB2Ts1qBtW2pz87nS/oJuWO/ukoD1KzxXW9ifH5yMkzzOS5MNiqLf4GI3yEZCKJm XYNp0VuCNzzBVC2IoySz1GQV8c4Pq4fGOPIFIs92XKF1L8b3SJPa0mFH6lH+1gKuYUjS W1C70a4nRTSiT/04UlW+NWPQgJLAwfsnQ7nKA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:user-agent:mime-version :content-type; b=FcgQuQSgCMZsZZKbeGGUvXWKposq2t9IaTRgBAZPMGWD/DIhnV56+Ja8zMFi17nYIR OP+pfIK8RkDJSeseQZpnrTbiFQ5CZW2EVdZbH59TGpOEo5HUUbnyDuMDmmMSzS53/m4U zk9EUb/rh+JXeg/3tRJjU0ZHYFZZN66+IeD44= Received: by 10.150.215.9 with SMTP id n9mr723649ybg.221.1283623221750; Sat, 04 Sep 2010 11:00:21 -0700 (PDT) Received: from localhost ([208.53.142.42]) by mx.google.com with ESMTPS id i4sm3922507ybd.3.2010.09.04.11.00.18 (version=SSLv3 cipher=RC4-MD5); Sat, 04 Sep 2010 11:00:21 -0700 (PDT) From: Anonymous To: jacula@freebsd.org Date: Sat, 04 Sep 2010 22:00:06 +0400 Message-ID: <86y6bh2xuh.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain Cc: pgj@freebsd.org, freebsd-ports@freebsd.org Subject: x11/stumpwm and ports/149397 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2010 18:00:23 -0000 Since the PR was handed over to you by pgj@[1] I haven't seen any activity for around a month. Do you even have an interest in the lisp port? If not or you don't have time please return it back to the pool, i.e. freebsd-ports-bugs@. [1] the reason wasn't mentioned or was it mistaken for a haskell port? From owner-freebsd-ports@FreeBSD.ORG Sat Sep 4 20:40:46 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4F1231065693 for ; Sat, 4 Sep 2010 20:40:46 +0000 (UTC) (envelope-from pali.gabor@googlemail.com) Received: from mail-qw0-f54.google.com (mail-qw0-f54.google.com [209.85.216.54]) by mx1.freebsd.org (Postfix) with ESMTP id 00FC78FC0A for ; Sat, 4 Sep 2010 20:40:44 +0000 (UTC) Received: by qwg5 with SMTP id 5so3173384qwg.13 for ; Sat, 04 Sep 2010 13:40:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:sender:received :in-reply-to:references:date:x-google-sender-auth:message-id:subject :from:to:cc:content-type; bh=xC+COBkpxl8jWzr+mCZWIIdOj9UfJCApxsub/yFNmuI=; b=t6CR8ses59GaCGQlm6yhglLzFPS0WlU7KvoSlbdLMH3Omt27yJI3KmDG6XmJ06opUI V4ZIKL0tqDh1oApCXa5orX8hi4qpoGCLDVoplm28gzq0xdOReK8gEPKpBZ0MLsyT1s0C doIOeqK6YGu5fsqdGgJpaYqXXhtqhcrOzoGHU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; b=Rp/8GJVtYKAKn676hlFjp3XyHCFQCVvvrqsOcyYCGFbBTgntIKj+lyDodBTzY7AoS2 3HxEy08I70qCWQayCzd98GluOZT5VTlxdAW6DJjLh05RwIJ7lIVdOE+aqUV6cDT6+Ok3 SaSUJFl93RYajYUVa8rDTdU2+uXfMTIcc3L7o= MIME-Version: 1.0 Received: by 10.229.189.74 with SMTP id dd10mr2107343qcb.73.1283631103669; Sat, 04 Sep 2010 13:11:43 -0700 (PDT) Sender: pali.gabor@googlemail.com Received: by 10.229.251.141 with HTTP; Sat, 4 Sep 2010 13:11:43 -0700 (PDT) In-Reply-To: <86y6bh2xuh.fsf@gmail.com> References: <86y6bh2xuh.fsf@gmail.com> Date: Sat, 4 Sep 2010 22:11:43 +0200 X-Google-Sender-Auth: 90SLG7lnw0OaHb8noegYomQ5H9A Message-ID: From: Gabor PALI To: Anonymous Content-Type: text/plain; charset=ISO-8859-1 Cc: jacula@freebsd.org, freebsd-ports@freebsd.org Subject: Re: x11/stumpwm and ports/149397 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2010 20:40:46 -0000 Hello, On Sat, Sep 4, 2010 at 8:00 PM, Anonymous wrote: > Since the PR was handed over to you by pgj@[1] I haven't seen any activity > for around a month. Do you even have an interest in the lisp port? It was assigned to jacula@ for mentoring purposes, i.e. to learn work with PRs. It is possible that he could not spend enough time on the PRs I gave him to work with. I am re-assigning your PR to my another mentee, ashish@, and he will take care of it soon. Sorry for the inconveniences. :g P.S.: It was not mistaken for a Haskell port :) From owner-freebsd-ports@FreeBSD.ORG Sat Sep 4 21:26:30 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 86EF110656C7 for ; Sat, 4 Sep 2010 21:26:30 +0000 (UTC) (envelope-from glewis@eyesbeyond.com) Received: from misty.eyesbeyond.com (gerbercreations.com [71.39.140.16]) by mx1.freebsd.org (Postfix) with ESMTP id 20C4C8FC1B for ; Sat, 4 Sep 2010 21:26:29 +0000 (UTC) Received: from misty.eyesbeyond.com (localhost.eyesbeyond.com [127.0.0.1]) by misty.eyesbeyond.com (8.14.4/8.14.4) with ESMTP id o84LQSHd015334; Sat, 4 Sep 2010 14:26:28 -0700 (PDT) (envelope-from glewis@eyesbeyond.com) Received: (from glewis@localhost) by misty.eyesbeyond.com (8.14.4/8.14.4/Submit) id o84LQRK0015333; Sat, 4 Sep 2010 14:26:27 -0700 (PDT) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Sat, 4 Sep 2010 14:26:27 -0700 From: Greg Lewis To: David Naylor Message-ID: <20100904212627.GA15260@misty.eyesbeyond.com> References: <201006251808.29467.naylor.b.david@gmail.com> <86lj7q31s8.fsf@gmail.com> <20100828213022.GA78573@misty.eyesbeyond.com> <201008291037.40908.naylor.b.david@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201008291037.40908.naylor.b.david@gmail.com> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: Anonymous , freebsd-ports@freebsd.org Subject: Re: MAKE_JOBS and openjdk6 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2010 21:26:30 -0000 On Sun, Aug 29, 2010 at 10:37:37AM +0200, David Naylor wrote: > On Saturday 28 August 2010 23:30:22 Greg Lewis wrote: > > On Sun, Aug 29, 2010 at 12:44:39AM +0400, Anonymous wrote: > > > Greg Lewis writes: > > > > I would argue that overriding a private variable is a hack (other ports > > > > doing it doesn't make it not a hack). > > > > > > You could've spoke up in ports/148754 about your concern in order for > > > portmgr@ to notice. The PR strived to be less intrusive than divorcing > > > build jobs from make jobs. Besides, I think adding more clutter to > > > Makefiles defeats purpose of having stuff in bsd.port.mk. > > > > In that case, whichever way you cut it, we're deliberately trying to > > circumvent what is in bsd.port.mk. > > The circumvention is required because bsd.port.mk assumes a certain interface > that may not be applicable for all ports. > > > > > Alternative patch attached which seems to achieve the same result from > > > > my perspective without overriding _MAKE_JOBS. > > > > > > Hardcoding kern.smp.cpus and ignoring MAKE_JOBS_SAFE/UNSAFE doesn't seem > > > like a less hacky solution. I'd argue that it's more confusing because > > > MAKE_JOBS_UNSAFE is not equal to DISABLE_MAKE_JOBS. > > > > The patch I attached (a) does not ignore MAKE_JOBS_{SAFE,UNSAFE} and (b) > > the first patch similarly uses DISABLE_MAKE_JOBS. > > > > The first patch does the following: > > > > 1. Sets MAKE_JOBS_SAFE _erroneously_ (the port is _not_ MAKE_JOBS_SAFE) > > purely so it can force the setting of MAKE_JOBS_NUMBER. > > Yes and no. The port is partially MAKE_JOBS_SAFE and is able to build some of > the code using make jobs. This is similar to python26: it is _SAFE but only a > small portion of the build actually uses more than one job which in effect > makes it the same as _UNSAFE (from a performance perspective). > > > 2. Overrides passing of -j to the make invocation by fiddling the private > > variable _MAKE_JOBS, which it has to do because of (1). > > > > The one I just provided > > > > 1. Leaves the port correctly marked as MAKE_JOBS_UNSAFE and doesn't mess > > with any private variables. > > Your attached patch does not explicitly define either MAKE_JOBS_(UN)SAFE. I > would by happy with it being defined as _UNSAFE. If there are no other > problems with your patch (see my comment at the bottom) then I'm happy for > this patch to be committed. I'd already committed a change that marked the port as MAKE_JOBS_UNSAFE, so the patch didn't include that. > There will still be issues with scripts that try some form of load balancing > when building ports but either way it will not be doing what was advertised. > Similar to python. > > > 2. Respects MAKE_JOB_NUMBER if it is set and otherwise uses the sysctl > > kern.smp.cpus, the latter being what the port _already_ does. > > > > > > Index: Makefile > > > > =================================================================== > > > > RCS file: /var/fcvs/ports/java/openjdk6/Makefile,v > > > > retrieving revision 1.28 > > > > diff -u -r1.28 Makefile > > > > --- Makefile 15 Aug 2010 05:23:06 -0000 1.28 > > > > +++ Makefile 28 Aug 2010 18:27:44 -0000 > > > > @@ -147,8 +147,14 @@ > > > > > > > > USE_DISPLAY= yes > > > > .endif > > > > > > > > -BUILD_JOBS_NUMBER!= ${SYSCTL} -n kern.smp.cpus > > > > +.if !defined(DISABLE_MAKE_JOBS) > > > > +.if defined(MAKE_JOBS_NUMBER) > > > > +BUILD_JOBS_NUMBER= ${MAKE_JOBS_NUMBER} > > > > +.else > > > > +BUILD_JOBS_NUMBER= `${SYSCTL} -n kern.smp.cpus` > > > > +.endif > > > > > > > > MAKE_ENV+= HOTSPOT_BUILD_JOBS=${BUILD_JOBS_NUMBER} > > Is it safe to pass an empty HOTSPOT_BUILD_JOBS to MAKE_ENV? (i.e. when > DISABLE_MAKE_JOBS is defined.) Good thought. I tried the build with DISABLE_MAKE_JOBS set and experienced no problems, so I think we're ok on that front. > > > > +.endif > > > > > > > > COPYDIRS= \ > > > > > > > > hotspot/src/os/linux/launcher \ I'm going to commit the change in a day or two if there are no further objections. I'll then use it as a template for changes to the other JDK ports. -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology FreeBSD : glewis@FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Sat Sep 4 21:10:56 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A7BB110656D5 for ; Sat, 4 Sep 2010 21:10:56 +0000 (UTC) (envelope-from william.dinoia@gmail.com) Received: from mail-qy0-f182.google.com (mail-qy0-f182.google.com [209.85.216.182]) by mx1.freebsd.org (Postfix) with ESMTP id 5CC5D8FC12 for ; Sat, 4 Sep 2010 21:10:55 +0000 (UTC) Received: by qyk4 with SMTP id 4so3320492qyk.13 for ; Sat, 04 Sep 2010 14:10:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:content-type :content-transfer-encoding; bh=bEFNumlxqCRIaccv8jQLRjUMNfON/k/KlGol2kpBZDA=; b=qAEWNa5Upu1iMpWaQWcZ7knbf8a/Cx6N0BtWq/WKmLdkRR7AIFaEfk3vOuvvybOIYb iAJUDxQDqqw7HkjtELdFl39PbtEVIyUUqk1R0tAX9eBOGmDZuNeAi6951yjP4hMlgKZA Pia3hnAfIw9mXAhFzY0CxQ9rj7R+X5CHd8pug= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :content-type:content-transfer-encoding; b=pe4rrizfnWhHNUhmNrhzXo8FGSO/c/9uDLd/Qv8rdC+6/1nsz3yMPwPAtGrz9Tt2sb CocHPTrtutq17VxxruMXIvUs1bgVDrh6SrSCAjjnHSeEdL6e+twmEzR/eYY3q+y5KLvH LbyGPms7kp8d0aZcq+rYxKH1yZUA9CFX8Cm/o= Received: by 10.224.19.129 with SMTP id a1mr69988qab.324.1283634655362; Sat, 04 Sep 2010 14:10:55 -0700 (PDT) Received: from M57p.local (c-174-55-35-141.hsd1.pa.comcast.net [174.55.35.141]) by mx.google.com with ESMTPS id l13sm3685065qck.19.2010.09.04.14.10.54 (version=SSLv3 cipher=RC4-MD5); Sat, 04 Sep 2010 14:10:54 -0700 (PDT) Message-ID: <4C82B5DD.5080504@gmail.com> Date: Sat, 04 Sep 2010 17:10:53 -0400 From: William DiNoia User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.8) Gecko/20100901 Lightning/1.0b2 Thunderbird/3.1.2 MIME-Version: 1.0 To: ruby@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Sat, 04 Sep 2010 21:41:38 +0000 Cc: ports@FreeBSD.org Subject: FreeBSD Port: rubygem-rails-3.0.0 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2010 21:10:56 -0000 I got an error in upgrading to rubygem-rails-3.0.0. The gem is installed but portmaster(?) returns an error... Successfully installed rails-3.0.0 1 gem installed Installing RDoc documentation for rails-3.0.0... File not found: lib *** Error code 1 Stop in /usr/ports/www/rubygem-rails. *** Error code 1 Stop in /usr/ports/www/rubygem-rails. ===>>> Installation of rubygem-rails-3.0.0 (www/rubygem-rails) failed ===>>> Aborting update From owner-freebsd-ports@FreeBSD.ORG Sat Sep 4 22:09:24 2010 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5A10310656C9 for ; Sat, 4 Sep 2010 22:09:24 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from worf.ds9.tecnik93.com (worf.ds9.tecnik93.com [81.196.207.130]) by mx1.freebsd.org (Postfix) with ESMTP id 127108FC0A for ; Sat, 4 Sep 2010 22:09:23 +0000 (UTC) Received: from it.buh.tecnik93.com (it.buh.tecnik93.com [81.196.204.98]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by worf.ds9.tecnik93.com (Postfix) with ESMTPSA id C6B7E22C5470; Sun, 5 Sep 2010 01:09:22 +0300 (EEST) Date: Sun, 5 Sep 2010 01:09:05 +0300 From: Ion-Mihai Tetcu To: marius adrian popa Message-ID: <20100905010905.70eb42ab@it.buh.tecnik93.com> In-Reply-To: References: X-Mailer: Claws Mail 3.7.6 (GTK+ 2.20.1; amd64-portbld-freebsd8.1) Mime-Version: 1.0 Content-Type: multipart/signed; micalg=PGP-SHA1; boundary="Sig_/By7s.bxQPul5IVQUJbxy3lq"; protocol="application/pgp-signature" Cc: ports@FreeBSD.org, For discussion among Firebird Developers Subject: Re: Firebird 2.1.x and Firebird 2.5 port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2010 22:09:24 -0000 --Sig_/By7s.bxQPul5IVQUJbxy3lq Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On Sat, 4 Sep 2010 17:01:42 +0300 marius adrian popa wrote: > Hello i want to takeover the port maintenance for the following ports >=20 > firebird20-server > http://www.freshports.org/databases/firebird20-server >=20 > and create the new ones for >=20 > firebird2.1-server > firebird2.5-server >=20 > and update the port for flamerobin >=20 > Could you help me with the steps that are necessary to be a maintainer > of these ports? Submit a PR with your updates, including the maintainership change. See http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/index= .html Ping me if you need help. --=20 IOnut - Un^d^dregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" FreeBSD committer -> itetcu@FreeBSD.org, PGP Key ID 057E9F8B493A297B --Sig_/By7s.bxQPul5IVQUJbxy3lq Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.16 (FreeBSD) iEYEARECAAYFAkyCw5IACgkQJ7GIuiH/oeVWLgCfb4+GenHn6bK34/hthJzGQLwV Q+wAnRQhUZKWcuuYwIxNpBwBqW7ojR5V =RMAU -----END PGP SIGNATURE----- --Sig_/By7s.bxQPul5IVQUJbxy3lq-- From owner-freebsd-ports@FreeBSD.ORG Sat Sep 4 22:58:11 2010 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E1FEA10656B5 for ; Sat, 4 Sep 2010 22:58:11 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx21.fluidhosting.com [204.14.89.4]) by mx1.freebsd.org (Postfix) with ESMTP id 70E178FC15 for ; Sat, 4 Sep 2010 22:58:11 +0000 (UTC) Received: (qmail 3501 invoked by uid 399); 4 Sep 2010 22:58:10 -0000 Received: from localhost (HELO ?192.168.0.142?) (dougb@dougbarton.us@127.0.0.1) by localhost with ESMTPAM; 4 Sep 2010 22:58:10 -0000 X-Originating-IP: 127.0.0.1 X-Sender: dougb@dougbarton.us Message-ID: <4C82CF03.3090906@FreeBSD.org> Date: Sat, 04 Sep 2010 15:58:11 -0700 From: Doug Barton Organization: http://SupersetSolutions.com/ User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.2.8) Gecko/20100830 Thunderbird/3.1.2 MIME-Version: 1.0 To: William DiNoia References: <4C82B5DD.5080504@gmail.com> In-Reply-To: <4C82B5DD.5080504@gmail.com> X-Enigmail-Version: 1.1.2 OpenPGP: id=1A1ABC84 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@FreeBSD.org, ruby@FreeBSD.org Subject: Re: FreeBSD Port: rubygem-rails-3.0.0 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2010 22:58:12 -0000 On 09/04/2010 14:10, William DiNoia wrote: > I got an error in upgrading to rubygem-rails-3.0.0. The gem is installed > but portmaster(?) returns an error... > > Successfully installed rails-3.0.0 > 1 gem installed > Installing RDoc documentation for rails-3.0.0... > File not found: lib > *** Error code 1 Those (and subsequent) are errors from the port, not portmaster, FYI. Doug -- Improve the effectiveness of your Internet presence with a domain name makeover! http://SupersetSolutions.com/ Computers are useless. They can only give you answers. -- Pablo Picasso