From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 05:08:49 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 74EA4122; Sun, 3 Mar 2013 05:08:49 +0000 (UTC) (envelope-from rsimmons0@gmail.com) Received: from mail-ee0-f42.google.com (mail-ee0-f42.google.com [74.125.83.42]) by mx1.freebsd.org (Postfix) with ESMTP id DD4943F3; Sun, 3 Mar 2013 05:08:48 +0000 (UTC) Received: by mail-ee0-f42.google.com with SMTP id b47so3291066eek.29 for ; Sat, 02 Mar 2013 21:08:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:date:message-id:subject:from:to :content-type; bh=j0ttpSVHrncNnb31ZCzE1NON7MSa/t+7/vINlZAGqCo=; b=YPjQ8MbFpkYIlU2KX0vuvMwWpYuijsDUa+IMF8V3ZItg/T3HrovUwxHNMLnMzpSWj5 8OuFG0SwrxF96U+m4eFMwX+EPW21GBCT/d8wg4Y+jY9RUKuwXpUBYehAsga0qkJlA6sY IukabT93OxaSEiAe9q5NGfkVlKWbQXYE4OoRZJMhxaMXRE2GKV5g3QFO5y4pj/MCXf/J 71rEyLejGP5wjnVFfaIVz/oiIv2CVaF9CEOk4BAVAgbwsGYkpf/x52h1+1qqd5VvoXUT rbAstlpq0AygpZcQXaur+aAuCMXZtnF26g0hoEVYhdIwYeBizeFfGaijCYhlhnKWGNgE juNQ== MIME-Version: 1.0 X-Received: by 10.14.3.133 with SMTP id 5mr44071140eeh.43.1362287321701; Sat, 02 Mar 2013 21:08:41 -0800 (PST) Received: by 10.14.98.65 with HTTP; Sat, 2 Mar 2013 21:08:41 -0800 (PST) Date: Sun, 3 Mar 2013 00:08:41 -0500 Message-ID: Subject: Python libraries moved From: Robert Simmons To: freebsd-python@freebsd.org, freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 05:08:49 -0000 It looks like a port revision made a few hours ago has broken firefox (and most likely a bunch of other ports). In the makefile for firefox, it has the following checks for dependencies: BUILD_DEPENDS= nspr>=4.9.4:${PORTSDIR}/devel/nspr \ nss>=3.14.1:${PORTSDIR}/security/nss \ sqlite3>=3.7.14.1:${PORTSDIR}/databases/sqlite3 \ ${PYTHON_SITELIBDIR}/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3 \ As you can see, it looks for _sqlite3.so in ${PYTHON_SITELIBDIR} which points to the old location for this library. The revision to python and its libraries has moved the location of these libraries to lib-dynload This is the revision in question: http://svnweb.freebsd.org/ports?view=revision&revision=313167 This has broken firefox and most likely all other ports that look for libraries in ${PYTHON_SITELIBDIR} From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 06:10:49 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id C0745B95; Sun, 3 Mar 2013 06:10:49 +0000 (UTC) (envelope-from miwi@bsdhash.org) Received: from bsdhash.org (bsdhash.org [94.23.250.27]) by mx1.freebsd.org (Postfix) with ESMTP id 760AE746; Sun, 3 Mar 2013 06:10:49 +0000 (UTC) Received: by bsdhash.org (Postfix, from userid 1002) id 86BA451090; Sun, 3 Mar 2013 14:10:42 +0800 (MYT) Date: Sun, 3 Mar 2013 14:10:42 +0800 From: Martin Wilke To: Robert Simmons Subject: Re: Python libraries moved Message-ID: <20130303061042.GG50408@bsdhash.org> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; x-action=pgp-signed In-Reply-To: X-Editor: Vim http://www.vim.org/ X-Mailer: Mutt http://www.mutt.org/ User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-ports@freebsd.org, freebsd-python@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Martin Wilke List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 06:10:49 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Sun, Mar 03, 2013 at 12:08:41AM -0500, Robert Simmons wrote: > It looks like a port revision made a few hours ago has broken firefox > (and most likely a bunch of other ports). In the makefile for > firefox, it has the following checks for dependencies: > > BUILD_DEPENDS= nspr>=4.9.4:${PORTSDIR}/devel/nspr \ > nss>=3.14.1:${PORTSDIR}/security/nss \ > sqlite3>=3.7.14.1:${PORTSDIR}/databases/sqlite3 \ > > ${PYTHON_SITELIBDIR}/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3 \ > > As you can see, it looks for _sqlite3.so in ${PYTHON_SITELIBDIR} which > points to the old location for this library. The revision to python > and its libraries has moved the location of these libraries to > lib-dynload > > This is the revision in question: > http://svnweb.freebsd.org/ports?view=revision&revision=313167 > > This has broken firefox and most likely all other ports that look for > libraries in ${PYTHON_SITELIBDIR} This is fixed please update your portstree. - - Martin > _______________________________________________ > 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" > - -- +-----------------oOO--(_)--OOo-------------------------+ With best Regards, Martin Wilke (miwi_(at)_FreeBSD.org) Mess with the Best, Die like the Rest -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlEy6WEACgkQdLJIhLHm/OlXlwCfRXWOPSk2cJ725IjYx9jeEy1+ Pb8AoL34Lr6ffYhsMeQgU8SreN8U6P4+ =3TVO -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 06:34:01 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id A67F3E22; Sun, 3 Mar 2013 06:34:01 +0000 (UTC) (envelope-from rsimmons0@gmail.com) Received: from mail-ee0-f45.google.com (mail-ee0-f45.google.com [74.125.83.45]) by mx1.freebsd.org (Postfix) with ESMTP id E98FB7C4; Sun, 3 Mar 2013 06:34:00 +0000 (UTC) Received: by mail-ee0-f45.google.com with SMTP id b57so3153756eek.4 for ; Sat, 02 Mar 2013 22:33:54 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:content-type; bh=zNl4MlFxfS79xfXDDjl1AeSkN02mHF1PY9+w2FXtcos=; b=jXp6wfu8/aorX0o1GVResgLNmMvEio9/U2ysVkZeC172cEBFKkW0R8KQ0Z0Qqn1AlO zVGRr/95sThSrTl2CdN/c3EuAm4AXf7fAE6HB5e8fvlmmFNOabL+prg60+pvctEdQH2e HZlwysAuzuLGgUd8tq4JjLWUj490Gn4IoLIS8MITzbkKbnhLHmsPWtIA5r8PFatItMbs 1SqEJlP+y8BuwAi7YwxW7hi8ZtExpJCanFqrpeRd28xbZB7ND6azK0ljoc9U5/kkSueb QkCWPCtzx38EmjG/1gTuv8lUN4i6Onh+LAmVAE27ax720qVscW6T0w8Tdphpbbz8GwQI u3+Q== MIME-Version: 1.0 X-Received: by 10.14.179.5 with SMTP id g5mr45135641eem.41.1362292434075; Sat, 02 Mar 2013 22:33:54 -0800 (PST) Received: by 10.14.98.65 with HTTP; Sat, 2 Mar 2013 22:33:53 -0800 (PST) In-Reply-To: <20130303061042.GG50408@bsdhash.org> References: <20130303061042.GG50408@bsdhash.org> Date: Sun, 3 Mar 2013 01:33:53 -0500 Message-ID: Subject: Re: Python libraries moved From: Robert Simmons To: freebsd-python@freebsd.org, freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 06:34:01 -0000 Sorry, what was the change you made? On Sun, Mar 3, 2013 at 1:10 AM, Martin Wilke wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > On Sun, Mar 03, 2013 at 12:08:41AM -0500, Robert Simmons wrote: >> It looks like a port revision made a few hours ago has broken firefox >> (and most likely a bunch of other ports). In the makefile for >> firefox, it has the following checks for dependencies: >> >> BUILD_DEPENDS= nspr>=4.9.4:${PORTSDIR}/devel/nspr \ >> nss>=3.14.1:${PORTSDIR}/security/nss \ >> sqlite3>=3.7.14.1:${PORTSDIR}/databases/sqlite3 \ >> >> ${PYTHON_SITELIBDIR}/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3 \ >> >> As you can see, it looks for _sqlite3.so in ${PYTHON_SITELIBDIR} which >> points to the old location for this library. The revision to python >> and its libraries has moved the location of these libraries to >> lib-dynload >> >> This is the revision in question: >> http://svnweb.freebsd.org/ports?view=revision&revision=313167 >> >> This has broken firefox and most likely all other ports that look for >> libraries in ${PYTHON_SITELIBDIR} > > This is fixed please update your portstree. > > - - Martin > >> _______________________________________________ >> 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" >> > > - -- > +-----------------oOO--(_)--OOo-------------------------+ > With best Regards, > Martin Wilke (miwi_(at)_FreeBSD.org) > > > Mess with the Best, Die like the Rest > > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v2.0.19 (FreeBSD) > > iEYEARECAAYFAlEy6WEACgkQdLJIhLHm/OlXlwCfRXWOPSk2cJ725IjYx9jeEy1+ > Pb8AoL34Lr6ffYhsMeQgU8SreN8U6P4+ > =3TVO > -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 08:19:13 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 4F5B9617; Sun, 3 Mar 2013 08:19:13 +0000 (UTC) (envelope-from rsimmons0@gmail.com) Received: from mail-ee0-f52.google.com (mail-ee0-f52.google.com [74.125.83.52]) by mx1.freebsd.org (Postfix) with ESMTP id B870EA45; Sun, 3 Mar 2013 08:19:12 +0000 (UTC) Received: by mail-ee0-f52.google.com with SMTP id b15so3189890eek.11 for ; Sun, 03 Mar 2013 00:19:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:content-type; bh=0FbHtwYpYE/nVYXu8OykyWcC2hW7Hu1RcUM+tsmN6Xw=; b=qfBfsf3U97gTUN2AEnBYODFRJq/YllNlnABE40iYBzCUI+aBEH15b05SgS0Yc4ssag ZfPPRYwVp63d6G0YVwcEqsPd3Hk2G5jM/BbTZMhSpuLgjhII1hHe8K1ImIe/ereSPZx8 IubVtbAyHK14n8fq0KBRE49w3Thcquv1RVLGXf8yTCi3u2+VBR4pHO+D9kqlXj+ld8h0 MWe0RYBU1ahJ3et3GfooWH34PnAICsVpaRxHuJ0NPpnSiCrsWjon1jtRHb/quYdbtZsa Ufve+V6v+Gt7GG4S4eGBTQw34wEUlukW2xB+SdCFhAkouAQMVwrg9iWdYXvMYYUzNlpr Ew8Q== MIME-Version: 1.0 X-Received: by 10.14.210.8 with SMTP id t8mr45841827eeo.35.1362298745715; Sun, 03 Mar 2013 00:19:05 -0800 (PST) Received: by 10.14.98.65 with HTTP; Sun, 3 Mar 2013 00:19:05 -0800 (PST) In-Reply-To: <20130303061042.GG50408@bsdhash.org> References: <20130303061042.GG50408@bsdhash.org> Date: Sun, 3 Mar 2013 03:19:05 -0500 Message-ID: Subject: Re: Python libraries moved From: Robert Simmons To: freebsd-python@freebsd.org, freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 08:19:13 -0000 Ports tree updated, but it is still a problem. I don't see anything that was checked in recently that mentions this problem. On Sun, Mar 3, 2013 at 1:10 AM, Martin Wilke wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > On Sun, Mar 03, 2013 at 12:08:41AM -0500, Robert Simmons wrote: >> It looks like a port revision made a few hours ago has broken firefox >> (and most likely a bunch of other ports). In the makefile for >> firefox, it has the following checks for dependencies: >> >> BUILD_DEPENDS= nspr>=4.9.4:${PORTSDIR}/devel/nspr \ >> nss>=3.14.1:${PORTSDIR}/security/nss \ >> sqlite3>=3.7.14.1:${PORTSDIR}/databases/sqlite3 \ >> >> ${PYTHON_SITELIBDIR}/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3 \ >> >> As you can see, it looks for _sqlite3.so in ${PYTHON_SITELIBDIR} which >> points to the old location for this library. The revision to python >> and its libraries has moved the location of these libraries to >> lib-dynload >> >> This is the revision in question: >> http://svnweb.freebsd.org/ports?view=revision&revision=313167 >> >> This has broken firefox and most likely all other ports that look for >> libraries in ${PYTHON_SITELIBDIR} > > This is fixed please update your portstree. > > - - Martin > >> _______________________________________________ >> 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" >> > > - -- > +-----------------oOO--(_)--OOo-------------------------+ > With best Regards, > Martin Wilke (miwi_(at)_FreeBSD.org) > > > Mess with the Best, Die like the Rest > > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v2.0.19 (FreeBSD) > > iEYEARECAAYFAlEy6WEACgkQdLJIhLHm/OlXlwCfRXWOPSk2cJ725IjYx9jeEy1+ > Pb8AoL34Lr6ffYhsMeQgU8SreN8U6P4+ > =3TVO > -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 08:49:57 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 3E25298E for ; Sun, 3 Mar 2013 08:49:57 +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 9C719AD7 for ; Sun, 3 Mar 2013 08:49:56 +0000 (UTC) Received: from [46.244.230.245] (helo=localhost.my.domain) by ms16-1.1blu.de with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1UC4cE-0002pP-BL for freebsd-ports@freebsd.org; Sun, 03 Mar 2013 09:49:54 +0100 Received: from localhost.my.domain (localhost [127.0.0.1]) by localhost.my.domain (8.14.4/8.14.3) with ESMTP id r238nqqK007176 for ; Sun, 3 Mar 2013 09:49:52 +0100 (CET) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by localhost.my.domain (8.14.4/8.14.3/Submit) id r238nq0A007175 for freebsd-ports@freebsd.org; Sun, 3 Mar 2013 09:49:52 +0100 (CET) (envelope-from guru@unixarea.de) X-Authentication-Warning: localhost.my.domain: guru set sender to guru@unixarea.de using -f Date: Sun, 3 Mar 2013 09:49:51 +0100 From: Matthias Apitz To: freebsd-ports@freebsd.org Subject: Re: FreeBSD port for redirecting printer Message-ID: <20130303084951.GA2560@tinyCurrent> References: <20130226180645.GA1161@tiny.Sisis.de> <20130226183646.GA2351@tiny.Sisis.de> <20130227115646.GA1821@tiny.Sisis.de> <20130301125152.GA1859@tiny.Sisis.de> <20130301151434.GA2249@tiny.Sisis.de> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20130301151434.GA2249@tiny.Sisis.de> X-Operating-System: FreeBSD 9.0-CURRENT r214444 (i386) User-Agent: Mutt/1.5.21 (2010-09-15) X-Con-Id: 51246 X-Con-U: 0-guru X-Originating-IP: 46.244.230.245 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 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: Sun, 03 Mar 2013 08:49:57 -0000 El día Friday, March 01, 2013 a las 04:14:34PM +0100, Matthias Apitz escribió: > ok, at the moment only the CUPS filter do what we want directly from an > UTF-8 test file (q.e.d.) To be honestly, when we started some years ago to port our library automation system from ISO 8859-1 to UTF-8 support (in all layers, database, servers and application frontends) we bothered a lot with UTF-8 support in all affected areas, as well in print-outs of all type of letters, listings, statistics etc. A good starting point to get understanding for all those aspects is the UTF-8/Unicode FAQ for UNIX: http://www.cl.cam.ac.uk/~mgk25/unicode.html There is as well a chapter about printing which points to CUPS. The supported languages (Codepoints) in the provided fonts are still very limited, but extendable and open. matthias -- Matthias Apitz | /"\ ASCII Ribbon Campaign: www.asciiribbon.org E-mail: guru@unixarea.de | \ / - No HTML/RTF in E-mail WWW: http://www.unixarea.de/ | X - No proprietary attachments phone: +49-170-4527211 | / \ - Respect for open standards From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 08:58:01 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id A7C9ADF5; Sun, 3 Mar 2013 08:58:01 +0000 (UTC) (envelope-from kron24@gmail.com) Received: from mail-ea0-x234.google.com (mail-ea0-x234.google.com [IPv6:2a00:1450:4013:c01::234]) by mx1.freebsd.org (Postfix) with ESMTP id DFC1BB0E; Sun, 3 Mar 2013 08:58:00 +0000 (UTC) Received: by mail-ea0-f180.google.com with SMTP id c1so541237eaa.25 for ; Sun, 03 Mar 2013 00:58:00 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=rYVkoNk55RQ3RD8e36LOn0r1UQ+u5Wl0v6A44Ojvk+8=; b=aeGbRdjHiv+itTlNbVNzlc1qQUiueUbpfiJCeryBsJIhR42cVMBHfBb33qKz2beO0W gQSacrQgV30fIM/LPvUDViGFKfk0qbL5aNTJHuSPhHOrPngr9rp1fhLwpRv/ZK+38sGW KOVBvGz5iPRp8nDusMajeNw6EDj15KekKyKEHMpLfbPvXAztAXVDa7pB1UzgjNJzMT4s /PBzdR/dW0UsCier7l84QFxh/qrPC1pIWGVcX9nb3phrwg00wJO5oSqW+bhS+v2a4unl CXOUwNbpZFmGrEizM3tk0oES2shep55Yw3Zj1oMUH9FbA5bwO7+zeKf65xyaG4GRjRsQ JZFQ== X-Received: by 10.15.34.198 with SMTP id e46mr45784627eev.27.1362300677218; Sun, 03 Mar 2013 00:51:17 -0800 (PST) Received: from nbvk.local (uidzr185150.sattnet.cz. [212.96.185.150]) by mx.google.com with ESMTPS id 46sm26217341eea.3.2013.03.03.00.51.15 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 03 Mar 2013 00:51:16 -0800 (PST) Message-ID: <51330F03.5060700@gmail.com> Date: Sun, 03 Mar 2013 09:51:15 +0100 From: kron User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130225 Thunderbird/17.0.3 MIME-Version: 1.0 To: glewis@FreeBSD.org, freebsd-ports@freebsd.org Subject: Re: please update eclipse and eclipse-devel to remove libxul19 [was: please update java/eclipse to www/libxul] References: <512B893D.4020408@gmail.com> <512DAEF6.5070005@gmail.com> In-Reply-To: <512DAEF6.5070005@gmail.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 08:58:01 -0000 On 2013/02/27 08:00, kron wrote: > On 2013/02/26 00:06, Ronald Klop wrote: >> On Mon, 25 Feb 2013 16:54:37 +0100, kron wrote: >> >>> Hi there, >>> >>> may I ask any of committers to process Jimmy Kelley's patch >>> (ports/174846)? The patch works for me. >>> >>> Eclipse is still on www/libxul19 while www/libxul has been >>> the default for more than 5 months. Both libxuls cannot be >>> installed together - those who need other ports depending >>> on www/libxul are simply out of luck. >>> >>> >>> Thanks in advance >>> Oli >> >> I just tested eclipse-devel with the (other) patch and it works for me too. >> >> Ronald. > > Since me and Roland haven't attracted any attention > at freebsd-eclipse@ I'm moving this to freebsd-ports@. > The PRs at hand are ports/174846 and ports/175826. > > May we ask committers to process the patches? > > TIA > Oli I've just noticed glewis@ has committed the patch of 174846. Thank you very much, sir! Dare I ask to commit the same in eclipse-devel (ports/175826)? TIA Oli From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 09:08:09 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id A7E8E2D4; Sun, 3 Mar 2013 09:08:09 +0000 (UTC) (envelope-from lwhsu.freebsd@gmail.com) Received: from mail-pb0-f52.google.com (mail-pb0-f52.google.com [209.85.160.52]) by mx1.freebsd.org (Postfix) with ESMTP id 59745B4C; Sun, 3 Mar 2013 09:08:09 +0000 (UTC) Received: by mail-pb0-f52.google.com with SMTP id ma3so2529199pbc.11 for ; Sun, 03 Mar 2013 01:08:03 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=H7SiKmrAlB3oYWOxDBYXcymJ5Sm5XqCHiA2vtaDaOmk=; b=ZIAizC2qcqCFwpqR4sySL8zBJq5k/oTmv+00nOt0+YNzx5pZskgXFpCINzhgck6y3I hHxTzGUsZnrCgS5YTpJYXq5KHdbd5iQh2XSsR/xTz+ZQMHcaxXX7pRetcx2PsIvxc1Ky xjPg92II5WkAn/wmcfgZOX9Pg6HYrw8BHHQMGV/7nNvL1e8VJ+7zlXss8f9MyCLJabHF SHdKMrPxLX/2n2a+n/awQ1oYcUf/OAWA9oLV/y+3RciHXlUaCnNYRrzgWI/yL8HApEWS SWlIcMy/cdK8P/oMNWHh/WHlAhlm3EOPCO1oA9cv6S2Oo7GZY9pkHqaQARe5L4jR45S1 cAEg== MIME-Version: 1.0 X-Received: by 10.68.241.102 with SMTP id wh6mr23035076pbc.150.1362301683674; Sun, 03 Mar 2013 01:08:03 -0800 (PST) Sender: lwhsu.freebsd@gmail.com Received: by 10.68.158.75 with HTTP; Sun, 3 Mar 2013 01:08:03 -0800 (PST) In-Reply-To: References: <20130303061042.GG50408@bsdhash.org> Date: Sun, 3 Mar 2013 17:08:03 +0800 X-Google-Sender-Auth: 0VTW08bwxkY8z1RUr4ko9gRsYbc Message-ID: Subject: Re: Python libraries moved From: Li-Wen Hsu To: Robert Simmons Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: "freebsd-ports@freebsd.org" , "freebsd-python@freebsd.org" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 09:08:09 -0000 I'm terribly sorry about this, I'm walking through the tree and will fix the breakage soonest as possible. On Sunday, March 3, 2013, Robert Simmons wrote: > Ports tree updated, but it is still a problem. I don't see anything > that was checked in recently that mentions this problem. > > On Sun, Mar 3, 2013 at 1:10 AM, Martin Wilke > > wrote: > > -----BEGIN PGP SIGNED MESSAGE----- > > Hash: SHA1 > > > > On Sun, Mar 03, 2013 at 12:08:41AM -0500, Robert Simmons wrote: > >> It looks like a port revision made a few hours ago has broken firefox > >> (and most likely a bunch of other ports). In the makefile for > >> firefox, it has the following checks for dependencies: > >> > >> BUILD_DEPENDS= nspr>=4.9.4:${PORTSDIR}/devel/nspr \ > >> nss>=3.14.1:${PORTSDIR}/security/nss \ > >> sqlite3>=3.7.14.1:${PORTSDIR}/databases/sqlite3 \ > >> > >> ${PYTHON_SITELIBDIR}/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3 \ > >> > >> As you can see, it looks for _sqlite3.so in ${PYTHON_SITELIBDIR} which > >> points to the old location for this library. The revision to python > >> and its libraries has moved the location of these libraries to > >> lib-dynload > >> > >> This is the revision in question: > >> http://svnweb.freebsd.org/ports?view=revision&revision=313167 > >> > >> This has broken firefox and most likely all other ports that look for > >> libraries in ${PYTHON_SITELIBDIR} > > > > This is fixed please update your portstree. > > > > - - Martin > > > >> _______________________________________________ > >> 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 > " > >> > > > > - -- > > +-----------------oOO--(_)--OOo-------------------------+ > > With best Regards, > > Martin Wilke (miwi_(at)_FreeBSD.org) > > > > > > Mess with the Best, Die like the Rest > > > > > > -----BEGIN PGP SIGNATURE----- > > Version: GnuPG v2.0.19 (FreeBSD) > > > > iEYEARECAAYFAlEy6WEACgkQdLJIhLHm/OlXlwCfRXWOPSk2cJ725IjYx9jeEy1+ > > Pb8AoL34Lr6ffYhsMeQgU8SreN8U6P4+ > > =3TVO > > -----END PGP SIGNATURE----- > _______________________________________________ > 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 > " > -- Li-Wen Hsu http://lwhsu.org From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 10:32:30 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 53058D9D; Sun, 3 Mar 2013 10:32:30 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [188.252.31.196]) by mx1.freebsd.org (Postfix) with ESMTP id CB62FE5C; Sun, 3 Mar 2013 10:32:29 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5) with ESMTP id r23AWI8j034133; Sun, 3 Mar 2013 11:32:18 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5/Submit) with ESMTP id r23AWIlu034130; Sun, 3 Mar 2013 11:32:18 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 3 Mar 2013 11:32:18 +0100 (CET) From: Wojciech Puchar To: Chris Rees Subject: Re: PDF viewer for "editable" PDFs In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Sun, 03 Mar 2013 11:32:18 +0100 (CET) Cc: FreeBSD Mailing List X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 10:32:30 -0000 > > I believe evince supports form filling of PDFs, but I don't know if > it's a little heavyweight for you. > it's actually OK. i will test it further but seems fine > It's definitely an improvement on "Adobe Reader". it's hard to imagine something worse. > > Chris > > http://en.wikipedia.org/wiki/List_of_PDF_software#Viewers > > From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 10:33:20 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 31B5FE4E for ; Sun, 3 Mar 2013 10:33:20 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [188.252.31.196]) by mx1.freebsd.org (Postfix) with ESMTP id 963A4E6B for ; Sun, 3 Mar 2013 10:33:19 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5) with ESMTP id r23AX74B034155; Sun, 3 Mar 2013 11:33:07 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5/Submit) with ESMTP id r23AX6Zr034152; Sun, 3 Mar 2013 11:33:07 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 3 Mar 2013 11:33:06 +0100 (CET) From: Wojciech Puchar To: Lowell Gilbert Subject: Re: PDF viewer for "editable" PDFs In-Reply-To: <44sj4dzsop.fsf@lowell-desk.lan> Message-ID: References: <44sj4dzsop.fsf@lowell-desk.lan> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Sun, 03 Mar 2013 11:33:07 +0100 (CET) Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 10:33:20 -0000 > > The annoying situation is when the PDF file isn't really designed for PDF wasn't designed for editing from the first place. But Adobe decided to f..k up their own standard and added extensions to create PDF with forms. From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 11:30:58 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 4AAD2822 for ; Sun, 3 Mar 2013 11:30:58 +0000 (UTC) (envelope-from jerry@seibercom.net) Received: from mail-yh0-x233.google.com (mail-yh0-x233.google.com [IPv6:2607:f8b0:4002:c01::233]) by mx1.freebsd.org (Postfix) with ESMTP id C1209FCA for ; Sun, 3 Mar 2013 11:30:57 +0000 (UTC) Received: by mail-yh0-f51.google.com with SMTP id q1so667503yhf.38 for ; Sun, 03 Mar 2013 03:30:56 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=seibercom.net; s=google; h=x-received:date:from:to:subject:message-id:in-reply-to:references :reply-to:organization:x-mailer:face:mime-version:content-type :content-transfer-encoding; bh=YW8XQgmEIJLVZ9jJiooFkKAXZNA9J1KwFxNsoKBLY18=; b=kdHKTkJTibmACy6ueQbd+g3iajyuj4E5ajGQ/If91L7M8qU1wkj+aehVMGxcnx1Qy/ p9IUtqxeQ1IQ8zu8hxw+aiVE6D2/tcW2z2l5FxK0SoBf8yZ6OxXq9eHlM+duTBgezrbF tzlEQAEx4MUvjI1rO51YFCW6eYBoWgfdCJIzo= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:date:from:to:subject:message-id:in-reply-to:references :reply-to:organization:x-mailer:face:mime-version:content-type :content-transfer-encoding:x-gm-message-state; bh=YW8XQgmEIJLVZ9jJiooFkKAXZNA9J1KwFxNsoKBLY18=; b=VLj7n6GGG3pYR3W0wZtEisnzzYf0cY4rbFtExzghmRcMZY5l8KDG3Tvo01YWDPYLJH 5q9bSXxvUMWt5bV7jDxmzth84vQtFLS1ws+GpRAN0I7UMhIEIiWG4A8OlCG8Zdeh2+mS ijkBX1TDk3dNr0sdUuRZM94QkBIUbRUDYofAGS6EIJomlCRerpZRv5VUj/KQz/LoD+nu jjlmo88NW+Ij1KXuymRK+/s5vEse0bb1ivzcvNduNYPWV0vl+w7xZT1/jzfAGMPG0YPP Gw3DnlLbfr1ZOxXdO7UYxu6eOZZ9htPYZ+a0H7VEmmHNeu1KY7LiUZPnvKX8+xEP1QwI vioA== X-Received: by 10.236.167.129 with SMTP id i1mr11519892yhl.50.1362310256274; Sun, 03 Mar 2013 03:30:56 -0800 (PST) Received: from scorpio.seibercom.net (cpe-076-182-104-150.nc.res.rr.com. [76.182.104.150]) by mx.google.com with ESMTPS id l24sm25012169yhc.15.2013.03.03.03.30.55 (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 03 Mar 2013 03:30:55 -0800 (PST) Received: from scorpio (localhost [127.0.0.1]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: jerry@scorpio.seibercom.net) by scorpio.seibercom.net (Postfix) with ESMTPSA id 3ZJhy62V6Sz2CG47 for ; Sun, 3 Mar 2013 06:30:54 -0500 (EST) Date: Sun, 3 Mar 2013 06:30:53 -0500 From: Jerry To: freebsd-ports@freebsd.org Subject: Re: PDF viewer for "editable" PDFs Message-ID: <20130303063053.585a4aea@scorpio> In-Reply-To: References: Organization: seibercom.net X-Mailer: Claws Mail 3.9.0 (GTK+ 2.24.6; amd64-portbld-freebsd8.3) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAHlBMVEUAAABYRlwJCw4FAgAIBwKprDkBAQFQLR0BAgCir7VRttp8AAACAUlEQVQ4jZWUTYvbMBCGTVl8V2hX6Gg5G5FbWQdBj0lEfE7BhN4cyzi5Wt1E5L70roWy6N92xok/skkP+5IYrMcz78xIduDWpNM3vFzuA/jX5EY1AI6KHFwW/CzFuQAwqUBbV12p+CzIh6Awq7sg33pn5D64SQXAexffeuQlA/L35RrkaB551OjGfP/cAO8mCNaDcgvfky5ijoD0pAXlCQCnljiAjsJD9Ax05Ko5sZxbnLQcmM+dZg5IjREfZrWIHK0JuwU68pAGwHvfRxBundRzTxxz3r9dNUikPsEihjz2Dc4kjp1hKsJGuot4EDxaxzMoC7XqhxhOSfZrTS6gSX1JVdjp+o1PvWfekXgw3WL0g70nDEwA0H0HQsEZc8sTmFMTkWUfYWC/vdR1zQy3xLQgLwzu90QnlnFLjeiGWBjwhb4Sa42IqOg2qqS4O1/zhKokFUb1Q8Rj4Eb69WVflXEehJ35DgChVTE5n50eaGyMLOfH8AOodoSM4PVYAQgQdBulOa+knklYks3vAuQ+uX492lTl+A+e8qBV2AKoXalVKFfyuUp0pUp1ARaUHh82lv9MN+Ig7CZtgE6FNYvjlywT2VP2dMgOG46gTIWcqdfvuwyXNz0oMJNd/N5lh1YNiJt19ADTUo3VuFSNeQwVqRSrGjSCp53fk2g+Mvfk/gfoPxHeUS8MH9vRAAAAAElFTkSuQmCC Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Gm-Message-State: ALoCoQnA3IkBOyLp9w3/61kP+m/g5nYBOueUSl8zQ2xUXLl+LRVDl8IKS7JjMHCgbKL0JAf4kyyR X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: freebsd-ports@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 11:30:58 -0000 On Sun, 3 Mar 2013 11:32:18 +0100 (CET) Wojciech Puchar articulated: > > It's definitely an improvement on "Adobe Reader". > > it's hard to imagine something worse. On FreeBSD, I would agree. If you can even get Adobe Reader to work at all it is a miracle. However, on n MS Windows system, I have had excellent results which is why I usually delegate my PDF work to Windows. -- Jerry â™” Disclaimer: off-list followups get on-list replies or get ignored. Please do not ignore the Reply-To header. __________________________________________________________________ From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 11:31:52 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id A25C88C4 for ; Sun, 3 Mar 2013 11:31:52 +0000 (UTC) (envelope-from jerry@seibercom.net) Received: from mail-gg0-x22f.google.com (mail-gg0-x22f.google.com [IPv6:2607:f8b0:4002:c02::22f]) by mx1.freebsd.org (Postfix) with ESMTP id 29CC0FDA for ; Sun, 3 Mar 2013 11:31:52 +0000 (UTC) Received: by mail-gg0-f175.google.com with SMTP id l1so671209ggn.6 for ; Sun, 03 Mar 2013 03:31:51 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=seibercom.net; s=google; h=x-received:date:from:to:subject:message-id:in-reply-to:references :reply-to:organization:x-mailer:face:mime-version:content-type :content-transfer-encoding; bh=wguIF7XxB7QMHUM5TYURUC4ihI3H/l3TP/zMwPN5zVk=; b=er7FALWphdkXUKysT3OEBDRZNqpAXbaiH17lojvYeBfqubh1sMIZsWn3QvjsamVFTL R69r93JVWDKZuopUpuQ/W4cWzNv2Ak2nMh9C+dU/2LaLKCM9ewV9Wvwjy1+WlVjn5Utf 5OUaCQWXPaxwRisnpLovb6hA4PPxHgZIq862Y= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:date:from:to:subject:message-id:in-reply-to:references :reply-to:organization:x-mailer:face:mime-version:content-type :content-transfer-encoding:x-gm-message-state; bh=wguIF7XxB7QMHUM5TYURUC4ihI3H/l3TP/zMwPN5zVk=; b=UNqHj6VP1nKbSGzjoV0Yw9ta3oqKrQmziQDV5t/ElGlK26YJVGaBwbLU6o9gRkTCt2 afnIBRn6YxnkONuCEhIVqpBj3YlVPeVyfRqN0uZiPG4bxA4MdPCW8cKTHGB16C16DNLf 3my//dfgn77Q7v7TMYlTV/k/UsyL0pk4X+Pnv9fHGL1NqrQ762pDi1Y8j3c5hbcuHIZn oeUIKWgZD1Qiid/suqWGgZrKX+I+kq+Stq4HZ6ISY/aWOAx0amIE4PiPgrVHYTg934+C NYqyr4+9rVdvOZULUNCpmotezmjhBIWxvWz+UPkh9w7rTHJEUf5ym38h4dt3kBDRRJM/ F52w== X-Received: by 10.236.123.109 with SMTP id u73mr11749415yhh.108.1362310311666; Sun, 03 Mar 2013 03:31:51 -0800 (PST) Received: from scorpio.seibercom.net (cpe-076-182-104-150.nc.res.rr.com. [76.182.104.150]) by mx.google.com with ESMTPS id s74sm29150986yhh.5.2013.03.03.03.31.50 (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 03 Mar 2013 03:31:51 -0800 (PST) Received: from scorpio (localhost [127.0.0.1]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: jerry@scorpio.seibercom.net) by scorpio.seibercom.net (Postfix) with ESMTPSA id 3ZJhzB2CzBz2CG4D for ; Sun, 3 Mar 2013 06:31:50 -0500 (EST) Date: Sun, 3 Mar 2013 06:31:50 -0500 From: Jerry To: freebsd-ports@freebsd.org Subject: Re: PDF viewer for "editable" PDFs Message-ID: <20130303063150.572a4672@scorpio> In-Reply-To: References: <44sj4dzsop.fsf@lowell-desk.lan> Organization: seibercom.net X-Mailer: Claws Mail 3.9.0 (GTK+ 2.24.6; amd64-portbld-freebsd8.3) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAHlBMVEUAAABYRlwJCw4FAgAIBwKprDkBAQFQLR0BAgCir7VRttp8AAACAUlEQVQ4jZWUTYvbMBCGTVl8V2hX6Gg5G5FbWQdBj0lEfE7BhN4cyzi5Wt1E5L70roWy6N92xok/skkP+5IYrMcz78xIduDWpNM3vFzuA/jX5EY1AI6KHFwW/CzFuQAwqUBbV12p+CzIh6Awq7sg33pn5D64SQXAexffeuQlA/L35RrkaB551OjGfP/cAO8mCNaDcgvfky5ijoD0pAXlCQCnljiAjsJD9Ax05Ko5sZxbnLQcmM+dZg5IjREfZrWIHK0JuwU68pAGwHvfRxBundRzTxxz3r9dNUikPsEihjz2Dc4kjp1hKsJGuot4EDxaxzMoC7XqhxhOSfZrTS6gSX1JVdjp+o1PvWfekXgw3WL0g70nDEwA0H0HQsEZc8sTmFMTkWUfYWC/vdR1zQy3xLQgLwzu90QnlnFLjeiGWBjwhb4Sa42IqOg2qqS4O1/zhKokFUb1Q8Rj4Eb69WVflXEehJ35DgChVTE5n50eaGyMLOfH8AOodoSM4PVYAQgQdBulOa+knklYks3vAuQ+uX492lTl+A+e8qBV2AKoXalVKFfyuUp0pUp1ARaUHh82lv9MN+Ig7CZtgE6FNYvjlywT2VP2dMgOG46gTIWcqdfvuwyXNz0oMJNd/N5lh1YNiJt19ADTUo3VuFSNeQwVqRSrGjSCp53fk2g+Mvfk/gfoPxHeUS8MH9vRAAAAAElFTkSuQmCC Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Gm-Message-State: ALoCoQlZTxHuqk2Szq29dtFklWT3muVoIQAWt7YbBMFWgyOlAsxQ0t/Q9DEpAI/n311GM5tBLVEY X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: freebsd-ports@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 11:31:52 -0000 On Sun, 3 Mar 2013 11:33:06 +0100 (CET) Wojciech Puchar articulated: > PDF wasn't designed for editing from the first place. But Adobe > decided to f..k up their own standard and added extensions to create > PDF with forms. *Citation needed -- Jerry â™” Disclaimer: off-list followups get on-list replies or get ignored. Please do not ignore the Reply-To header. __________________________________________________________________ From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 11:54:05 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 9F5DCB78 for ; Sun, 3 Mar 2013 11:54:05 +0000 (UTC) (envelope-from yerenkow@gmail.com) Received: from mail-pb0-f51.google.com (mail-pb0-f51.google.com [209.85.160.51]) by mx1.freebsd.org (Postfix) with ESMTP id 7CE38119 for ; Sun, 3 Mar 2013 11:54:05 +0000 (UTC) Received: by mail-pb0-f51.google.com with SMTP id un15so2544335pbc.24 for ; Sun, 03 Mar 2013 03:53:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:content-type; bh=38QGAdABuZwfWuXsvjN5HdwMJ+i+R7r7/I5D8FSFe+4=; b=ToTIkkblZJDLg6KJA3Q89yw0rxv+cr1PNS/tyltQjO/BjgZWnBixjHZkMvqIsLk3I8 yPkmYgTZZEZ2A2k9kNxkeSW04ASqZ7eHdLkcddsJI9DRDu+dbTzJ1Ow/byd0W7uDPfDm XR3bc/0w6Lm9724tuPlkqwQp98DVqNPS9UlxXiPEH1JdckDnf3KnwgMFSq4IivJz7kYU 5wU0NfxNP+9+rusp/ATfvQCFNlZ+LjOcIi+/qvSccCmIQMzTffuzqL3RY4msmcRyH/br zROetiJLcxM08Bn4EzEgZMhpEm3hKXXefwf1oJ+KTcPNM7Vxsuj1CmKlVpVclfqjXCT4 jF1Q== MIME-Version: 1.0 X-Received: by 10.68.35.6 with SMTP id d6mr23588449pbj.167.1362311639116; Sun, 03 Mar 2013 03:53:59 -0800 (PST) Received: by 10.68.36.69 with HTTP; Sun, 3 Mar 2013 03:53:59 -0800 (PST) In-Reply-To: <20130303063150.572a4672@scorpio> References: <44sj4dzsop.fsf@lowell-desk.lan> <20130303063150.572a4672@scorpio> Date: Sun, 3 Mar 2013 13:53:59 +0200 Message-ID: Subject: Re: PDF viewer for "editable" PDFs From: Alexander Yerenkow To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 11:54:05 -0000 Of course, it's pretty offtopic, but in my knowing there's no other office format allowing to send to someone some form to fill. Read-only form. With "required" fields. Not everyone in this world stuck with console and some vim or even cat && echo :) There was PDF, which was pretty read-only (for most users), so Abobo decided to create fillable versions. So you can blame software giant, format, but this side of usage is not useless. -- Regards, Alexander Yerenkow From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 12:37:58 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id F2D9D671 for ; Sun, 3 Mar 2013 12:37:58 +0000 (UTC) (envelope-from rde@tavi.co.uk) Received: from kipling.tavi.co.uk (kipling.tavi.co.uk [81.187.145.130]) by mx1.freebsd.org (Postfix) with ESMTP id 9F4763C8 for ; Sun, 3 Mar 2013 12:37:58 +0000 (UTC) Received: from raksha.tavi.co.uk (raksha.tavi.co.uk [81.187.145.139]) by kipling.tavi.co.uk (Postfix) with ESMTP id 9727DC942F for ; Sun, 3 Mar 2013 12:37:45 +0000 (GMT) Date: Sun, 3 Mar 2013 12:37:45 +0000 From: Bob Eager To: freebsd-ports@freebsd.org Subject: Re: PDF viewer for "editable" PDFs Message-ID: <20130303123745.313bc267@raksha.tavi.co.uk> In-Reply-To: <20130303063053.585a4aea@scorpio> References: <20130303063053.585a4aea@scorpio> X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.6; i386-portbld-freebsd8.3) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAMFBMVEUwXjFLc0vD0cS7y7zw9PDZ4tkWSRaVrZZ+m39qi2tXfVj////7+/utwK4IPggAOAAJUUA7AAABKklEQVQ4jWPYjQMwDFYJp0NKEKCNJmEf9h8CsimXiL2e33s3/e7F7K2Cs3f3dCMkQkMKj4YuCY3K3iR+e7fMaiSjvkX0/5cFGrWpe2uLzOpaExUVqMS/8PX/Re5ey960OLBTZpFA8+IlSBKPQ92zNyUUBsosN58uIY0k8f+/ONCoYytkVuhWzVwNkYiYbqk5M3NmOVBi41YZ8RsGF7shEtFb5KJ3r969CyixM7OTPeFUxG2IxLO8/9/SvqXlc+/x3h295YzLlj2nIRJQj//nRvc5TEIal8RsXBLVuCQwIgoq/u80DomP6HEOk/iOS+IJLonZOCT+ReOQ+Lkbh0QKLonbOCR+7MYhsRqHBJrVcIl/1TgklqKLQyQ+tGKIgyQOqXpjig94diZRAgAXmDX6jyWafAAAAABJRU5ErkJggg====== Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 12:37:59 -0000 On Sun, 3 Mar 2013 06:30:53 -0500 Jerry wrote: > On Sun, 3 Mar 2013 11:32:18 +0100 (CET) > Wojciech Puchar articulated: > > > > It's definitely an improvement on "Adobe Reader". > > > > it's hard to imagine something worse. > > On FreeBSD, I would agree. If you can even get Adobe Reader to work at > all it is a miracle. However, on n MS Windows system, I have had > excellent results which is why I usually delegate my PDF work to > Windows. > I find it quite appallingly bloated. I too tend to use Windows for PDFs, but use Foxit Reader. From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 13:49:58 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id D8A487C9 for ; Sun, 3 Mar 2013 13:49:58 +0000 (UTC) (envelope-from portscout@portscout.freebsd.org) Received: from null.zi0r.com (null.zi0r.com [71.245.171.204]) by mx1.freebsd.org (Postfix) with ESMTP id 809EE822 for ; Sun, 3 Mar 2013 13:49:58 +0000 (UTC) Received: from null.zi0r.com (localhost [127.0.0.1]) by null.zi0r.com (8.14.5/8.14.5) with ESMTP id r23DnqiS079826 for ; Sun, 3 Mar 2013 08:49:52 -0500 (EST) (envelope-from portscout@null.zi0r.com) Received: (from portscout@localhost) by null.zi0r.com (8.14.5/8.14.5/Submit) id r23DnqgW079610; Sun, 3 Mar 2013 08:49:52 -0500 (EST) (envelope-from portscout) Message-Id: <201303031349.r23DnqgW079610@null.zi0r.com> MIME-Version: 1.0 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain Date: Sun, 3 Mar 2013 08:49:52 -0500 From: portscout@portscout.freebsd.org To: ports@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 13:49:58 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/ports@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ archivers/advancecomp | 1.15 | 1.16 ------------------------------------------------+-----------------+------------ comms/ser2net | 2.7 | 2.8 ------------------------------------------------+-----------------+------------ devel/gnustep-make | 2.6.2 | 2.6.3 ------------------------------------------------+-----------------+------------ multimedia/gmtk | 1.0.7 | 1.0.8 ------------------------------------------------+-----------------+------------ multimedia/gnome-mplayer | 1.0.7 | 1.0.8 ------------------------------------------------+-----------------+------------ multimedia/oggvideotools | 0.8a | 0.8 ------------------------------------------------+-----------------+------------ textproc/py-jaxml | 3.02 | 10.00 ------------------------------------------------+-----------------+------------ www/gecko-mediaplayer | 1.0.7 | 1.0.8 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt If wish to stop receiving portscout reminders, please contact portscout@portscout.freebsd.org Thanks. From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 15:34:33 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 642FADBA; Sun, 3 Mar 2013 15:34:33 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-ie0-x233.google.com (mail-ie0-x233.google.com [IPv6:2607:f8b0:4001:c03::233]) by mx1.freebsd.org (Postfix) with ESMTP id 06BA9C2C; Sun, 3 Mar 2013 15:34:32 +0000 (UTC) Received: by mail-ie0-f179.google.com with SMTP id k11so5221748iea.38 for ; Sun, 03 Mar 2013 07:34:32 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=RgstAf3HeMqKF44LZdvNOPigcNJOFreQKqv2gZYhYeQ=; b=RsxGybYyTuT65wSzkvrXPPNE+YKagAli82ru0rblqmc+31/9n8WwOLWYD3pArm1Hc6 nzeG49LbOR+qjYIA0CVVPZCBJ2DN29IYf5Xr8RoNYZ6N3vBIKHSHFYhvIMz+s2E7p7FP FQMX4qEufeVKlVsaguzVwBJ55kDPpm7Y6uyGFFqoapK9L8CJ3QoDdvUXXbvrkoZt1Lq5 6djQSXbW1wnIlSfuElhCQx81pIRPzPfIv/eKgFqzLrXH/jmcq6ctYrVQAanaTTv6i2De IWuSr2mt5c1TwiFsaNXaXINOIj9XOtKzhMYHkTBVhboeWbR087e4xdfC9vQU1WRTKQtX SVEA== X-Received: by 10.50.53.180 with SMTP id c20mr357129igp.15.1362324872514; Sun, 03 Mar 2013 07:34:32 -0800 (PST) MIME-Version: 1.0 Sender: utisoft@gmail.com Received: by 10.64.63.12 with HTTP; Sun, 3 Mar 2013 07:34:02 -0800 (PST) In-Reply-To: <201303011212.r21CC5Ob061721@mech-cluster241.men.bris.ac.uk> References: <20130301.054435.1568838937885825253.hrs@allbsd.org> <201303011212.r21CC5Ob061721@mech-cluster241.men.bris.ac.uk> From: Chris Rees Date: Sun, 3 Mar 2013 15:34:02 +0000 X-Google-Sender-Auth: gYCY2MBzFCiMER5k0IXWZEW6620 Message-ID: Subject: Re: CFT: texlive ports To: Anton Shterenlikht Content-Type: text/plain; charset=ISO-8859-1 Cc: "ports@freebsd.org" , Hiroto Kagotani X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 15:34:33 -0000 On 1 March 2013 12:12, Anton Shterenlikht wrote: > Date: Fri, 01 Mar 2013 05:44:35 +0900 (JST) > Subject: Re: CFT: texlive ports > From: Hiroki Sato > > http://people.allbsd.org/~hrs/FreeBSD/texlive-20130301-1.tar.gz > > Built fine on ia64 -current. > Built simple latex documents with it, seems fine. > Built my dissertation using LyX 2.0 and TeX Live using these ports, worked perfectly. Thanks very much! Chris From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 15:49:36 2013 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 03B052B9 for ; Sun, 3 Mar 2013 15:49:36 +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 7ECC3D2B for ; Sun, 3 Mar 2013 15:49:35 +0000 (UTC) Received: from misty.eyesbeyond.com (localhost.eyesbeyond.com [127.0.0.1]) by misty.eyesbeyond.com (8.14.5/8.14.5) with ESMTP id r23FnSWF024095; Sun, 3 Mar 2013 07:49:33 -0800 (PST) (envelope-from glewis@eyesbeyond.com) Received: (from glewis@localhost) by misty.eyesbeyond.com (8.14.5/8.14.5/Submit) id r23FnRsL024094; Sun, 3 Mar 2013 07:49:27 -0800 (PST) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Sun, 3 Mar 2013 07:49:27 -0800 From: Greg Lewis To: kron Subject: Re: please update eclipse and eclipse-devel to remove libxul19 [was: please update java/eclipse to www/libxul] Message-ID: <20130303154927.GB76790@misty.eyesbeyond.com> References: <512B893D.4020408@gmail.com> <512DAEF6.5070005@gmail.com> <51330F03.5060700@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <51330F03.5060700@gmail.com> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-ports@FreeBSD.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 15:49:36 -0000 On Sun, Mar 03, 2013 at 09:51:15AM +0100, kron wrote: > On 2013/02/27 08:00, kron wrote: > > On 2013/02/26 00:06, Ronald Klop wrote: > >> On Mon, 25 Feb 2013 16:54:37 +0100, kron wrote: > >> > >>> Hi there, > >>> > >>> may I ask any of committers to process Jimmy Kelley's patch > >>> (ports/174846)? The patch works for me. > >>> > >>> Eclipse is still on www/libxul19 while www/libxul has been > >>> the default for more than 5 months. Both libxuls cannot be > >>> installed together - those who need other ports depending > >>> on www/libxul are simply out of luck. > >>> > >>> > >>> Thanks in advance > >>> Oli > >> > >> I just tested eclipse-devel with the (other) patch and it works for me too. > >> > >> Ronald. > > > > Since me and Roland haven't attracted any attention > > at freebsd-eclipse@ I'm moving this to freebsd-ports@. > > The PRs at hand are ports/174846 and ports/175826. > > > > May we ask committers to process the patches? > > > > TIA > > Oli > > I've just noticed glewis@ has committed the patch of 174846. > Thank you very much, sir! Dare I ask to commit the same in > eclipse-devel (ports/175826)? I actually committed 175826 before committing 174846, so if you update your ports tree you should get that too :). -- 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 Sun Mar 3 17:53:46 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id DA7D4422 for ; Sun, 3 Mar 2013 17:53:46 +0000 (UTC) (envelope-from kron24@gmail.com) Received: from mail-ea0-x22a.google.com (mail-ea0-x22a.google.com [IPv6:2a00:1450:4013:c01::22a]) by mx1.freebsd.org (Postfix) with ESMTP id 4B71E169 for ; Sun, 3 Mar 2013 17:53:46 +0000 (UTC) Received: by mail-ea0-f170.google.com with SMTP id a11so625726eaa.15 for ; Sun, 03 Mar 2013 09:53:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=2dWEiJecWS3ulYB1lLWGRPRcy/YdPavFjqOVrDKwjik=; b=wYGoQOn4t1owBMx07vTs5tx5q7iQhioxhgxsfGK5wMOveiYAN8WfsQ9+TLaX5N4kb6 O+Y/iyd7eZNj9MH6W2k0TzxJzTFbNzMahdlMerti1DdVFWrJq+nu4/Uy/keyeeO8beNZ OuZ4cQEQaDQYQOwM54hJxh1k0UfXv7zDM0WmGy+7mFou3sAQ4PqhDFiDl0wJqTqZ/bkA 7+r62Iopjwv7X1MQiGFYi0g/7wC1guPG1wkSMBdLx6w0N51PGcf82FfwzKM4CpzPDHxL XTmLgPtUre5+oFEcgOEzdr+RFoNLcCV83fMtz0YiT6LZiQt5iy+0E7gAxxVCHo8w0u4U aAFw== X-Received: by 10.14.3.133 with SMTP id 5mr49791721eeh.43.1362333224877; Sun, 03 Mar 2013 09:53:44 -0800 (PST) Received: from nbvk.local (uidzr185150.sattnet.cz. [212.96.185.150]) by mx.google.com with ESMTPS id o3sm27969241eem.15.2013.03.03.09.53.43 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 03 Mar 2013 09:53:44 -0800 (PST) Message-ID: <51338E27.6010905@gmail.com> Date: Sun, 03 Mar 2013 18:53:43 +0100 From: kron User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130225 Thunderbird/17.0.3 MIME-Version: 1.0 To: Greg Lewis Subject: Re: please update eclipse and eclipse-devel to remove libxul19 [was: please update java/eclipse to www/libxul] References: <512B893D.4020408@gmail.com> <512DAEF6.5070005@gmail.com> <51330F03.5060700@gmail.com> <20130303154927.GB76790@misty.eyesbeyond.com> In-Reply-To: <20130303154927.GB76790@misty.eyesbeyond.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-ports@FreeBSD.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 17:53:46 -0000 On 2013/03/03 16:49, Greg Lewis wrote: >>> Since me and Roland haven't attracted any attention >>> at freebsd-eclipse@ I'm moving this to freebsd-ports@. >>> The PRs at hand are ports/174846 and ports/175826. >>> >>> May we ask committers to process the patches? >>> >>> TIA >>> Oli >> >> I've just noticed glewis@ has committed the patch of 174846. >> Thank you very much, sir! Dare I ask to commit the same in >> eclipse-devel (ports/175826)? > > I actually committed 175826 before committing 174846, so if you update > your ports tree you should get that too :). Thanks! Oli From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 18:49:37 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id C1A3485A for ; Sun, 3 Mar 2013 18:49:37 +0000 (UTC) (envelope-from bah@bananmonarki.se) Received: from feeder.usenet4all.se (1-1-1-38a.far.sth.bostream.se [82.182.32.53]) by mx1.freebsd.org (Postfix) with ESMTP id 170AA2A3 for ; Sun, 3 Mar 2013 18:49:36 +0000 (UTC) Received: from kw.news4all.se (usenet4all.se [82.182.32.53]) by feeder.usenet4all.se (8.13.1/8.13.1) with ESMTP id r23InQ0Z052483; Sun, 3 Mar 2013 19:49:27 +0100 (CET) (envelope-from bah@bananmonarki.se) Message-ID: <51339B2F.90105@bananmonarki.se> Date: Sun, 03 Mar 2013 19:49:19 +0100 From: Bernt Hansson User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: freebsd-ports@freebsd.org Subject: Re: PDF viewer for "editable" PDFs References: <44sj4dzsop.fsf@lowell-desk.lan> <20130303063150.572a4672@scorpio> In-Reply-To: <20130303063150.572a4672@scorpio> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Jerry X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 18:49:37 -0000 2013-03-03 12:31, Jerry skrev: > On Sun, 3 Mar 2013 11:33:06 +0100 (CET) > Wojciech Puchar articulated: > >> PDF wasn't designed for editing from the first place. But Adobe >> decided to f..k up their own standard and added extensions to create >> PDF with forms. > > *Citation needed > >> PDF wasn't designed for editing from the first place. But Adobe >> decided to f..k up their own standard and added extensions to create >> PDF with forms. From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 20:23:59 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 485DA2D7 for ; Sun, 3 Mar 2013 20:23:59 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [188.252.31.196]) by mx1.freebsd.org (Postfix) with ESMTP id BA70F787 for ; Sun, 3 Mar 2013 20:23:58 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5) with ESMTP id r23KNe3B089635 for ; Sun, 3 Mar 2013 21:23:40 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5/Submit) with ESMTP id r23KNeu7089632 for ; Sun, 3 Mar 2013 21:23:40 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 3 Mar 2013 21:23:40 +0100 (CET) From: Wojciech Puchar To: freebsd-ports@freebsd.org Subject: Re: PDF viewer for "editable" PDFs In-Reply-To: <20130303063053.585a4aea@scorpio> Message-ID: References: <20130303063053.585a4aea@scorpio> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Sun, 03 Mar 2013 21:23:41 +0100 (CET) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 20:23:59 -0000 >> it's hard to imagine something worse. > > On FreeBSD, I would agree. If you can even get Adobe Reader to work at > all it is a miracle. acroread9 from ports. after starting OK it idles, then after like 10 seconds it spawns separate process that use 100% CPU and do no idea what. Doesn't seem like a bug, but a feature. For adobe of course, not us. From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 20:24:23 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id AA78A368 for ; Sun, 3 Mar 2013 20:24:23 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [188.252.31.196]) by mx1.freebsd.org (Postfix) with ESMTP id 2FA83791 for ; Sun, 3 Mar 2013 20:24:22 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5) with ESMTP id r23KOC9J089646; Sun, 3 Mar 2013 21:24:12 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5/Submit) with ESMTP id r23KOCR3089643; Sun, 3 Mar 2013 21:24:12 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 3 Mar 2013 21:24:12 +0100 (CET) From: Wojciech Puchar To: Alexander Yerenkow Subject: Re: PDF viewer for "editable" PDFs In-Reply-To: Message-ID: References: <44sj4dzsop.fsf@lowell-desk.lan> <20130303063150.572a4672@scorpio> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Sun, 03 Mar 2013 21:24:12 +0100 (CET) Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 20:24:23 -0000 > Of course, it's pretty offtopic, but in my knowing there's no other office > format allowing to send to someone some form to fill. Read-only form. With > "required" fields. how about HTML? From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 20:24:54 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id EC5223FB for ; Sun, 3 Mar 2013 20:24:54 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [188.252.31.196]) by mx1.freebsd.org (Postfix) with ESMTP id 6FE0979C for ; Sun, 3 Mar 2013 20:24:54 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5) with ESMTP id r23KOhEv089657; Sun, 3 Mar 2013 21:24:43 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5/Submit) with ESMTP id r23KOhkq089654; Sun, 3 Mar 2013 21:24:43 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 3 Mar 2013 21:24:43 +0100 (CET) From: Wojciech Puchar To: Bob Eager Subject: Re: PDF viewer for "editable" PDFs In-Reply-To: <20130303123745.313bc267@raksha.tavi.co.uk> Message-ID: References: <20130303063053.585a4aea@scorpio> <20130303123745.313bc267@raksha.tavi.co.uk> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Sun, 03 Mar 2013 21:24:43 +0100 (CET) Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 20:24:55 -0000 >> Windows. >> > > I find it quite appallingly bloated. I too tend to use Windows for > PDFs, but use Foxit Reader. in windows it is usable but slow. Still - it doesn't take 100% CPU when idle. From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 20:26:50 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 793474A0 for ; Sun, 3 Mar 2013 20:26:50 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [188.252.31.196]) by mx1.freebsd.org (Postfix) with ESMTP id DF7657B2 for ; Sun, 3 Mar 2013 20:26:49 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5) with ESMTP id r23KQdsv089671 for ; Sun, 3 Mar 2013 21:26:39 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5/Submit) with ESMTP id r23KQd3I089668 for ; Sun, 3 Mar 2013 21:26:39 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 3 Mar 2013 21:26:38 +0100 (CET) From: Wojciech Puchar To: freebsd-ports@freebsd.org Subject: X11 - geode driver Message-ID: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Greylist: Sender passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Sun, 03 Mar 2013 21:26:39 +0100 (CET) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 20:26:50 -0000 anyone knows a patch or alternative driver for geode (wyse S50, Natsemi Geode 5535) that works well. There are none from ports, but i downloaded latest geode sources from x.org, compiled without problems and it runs. But performance is just a bit better than with acceleration off, sometimes even worse. Xorg.log reports no errors and full acceleration. From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 20:29:00 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 3D7FC6BE for ; Sun, 3 Mar 2013 20:29:00 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [188.252.31.196]) by mx1.freebsd.org (Postfix) with ESMTP id BCDE77DF for ; Sun, 3 Mar 2013 20:28:59 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5) with ESMTP id r23KSmL4089683; Sun, 3 Mar 2013 21:28:48 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5/Submit) with ESMTP id r23KSmUn089680; Sun, 3 Mar 2013 21:28:48 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 3 Mar 2013 21:28:48 +0100 (CET) From: Wojciech Puchar To: Christian Weisgerber Subject: Re: Firefox 19 vs large images In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Sun, 03 Mar 2013 21:28:49 +0100 (CET) Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 20:29:00 -0000 > Viewing large images has become cumbersome with the switch from > Firefox 18 to 19. Am I the only one to notice this? sorry if it is not an answer you like, but just stick with older firefox. Version 10.0.0...-esr from older ports seems fine. later is plain terrible. And i don't see a problems with viewing webpages related to older version, at least they are very rare. This software seems to get more and more bloated and useless with every release. Worse there are no really alternatives From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 20:45:23 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 9125FE91 for ; Sun, 3 Mar 2013 20:45:23 +0000 (UTC) (envelope-from yerenkow@gmail.com) Received: from mail-pa0-f48.google.com (mail-pa0-f48.google.com [209.85.220.48]) by mx1.freebsd.org (Postfix) with ESMTP id 58D6091D for ; Sun, 3 Mar 2013 20:45:23 +0000 (UTC) Received: by mail-pa0-f48.google.com with SMTP id hz10so2733751pad.7 for ; Sun, 03 Mar 2013 12:45:17 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=CX1jqlJqMZXez9EEo3mpsA0xM8XCEjKr8xZG5ShiAaM=; b=q7th8M5NNqDQynKcTtVthUL5T8udBrHSgGqFHcut+RncFx4U7Kq/OZ9N82LeKLa9qX kyuZpcJloRwXCYpN9PoZFEVmBFc+YLXyPuTj6pBrjWgfMuzJM67kZ4VF4TX8lxzILzsO jlCAqMjszlLDZi3utyogmnHoQtxzkogWGN9EINu+bJmEx4sA1r+0NRxIErgSv7W30sDq 5Reoukn6AkTC4sTijRDBLQqtXDWnXm6Xm8BmtAf4xAzPoWBjKHyB2LWSByQhWIcbPS2X xuqlo305Q6k7Cg7mzWaFYttUta7QIyp0oN70bUBoCVa9UNvk+F5A3rOL0a1GcKIvauKy jIlA== MIME-Version: 1.0 X-Received: by 10.66.147.234 with SMTP id tn10mr28891267pab.21.1362343517684; Sun, 03 Mar 2013 12:45:17 -0800 (PST) Received: by 10.68.36.69 with HTTP; Sun, 3 Mar 2013 12:45:17 -0800 (PST) In-Reply-To: References: <44sj4dzsop.fsf@lowell-desk.lan> <20130303063150.572a4672@scorpio> Date: Sun, 3 Mar 2013 22:45:17 +0200 Message-ID: Subject: Re: PDF viewer for "editable" PDFs From: Alexander Yerenkow To: Wojciech Puchar Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 20:45:23 -0000 2013/3/3 Wojciech Puchar > Of course, it's pretty offtopic, but in my knowing there's no other office >> format allowing to send to someone some form to fill. Read-only form. With >> "required" fields. >> > > how about HTML? > If you are serious - you just can't easily make HTML for fitting A4 page; you can't easily compose form to fill; you can't send it in RO (of course, I know that nothing is really RO, but relatively RO); you need to some action solver when user fill in form and tries to "apply" (PDF viewer will just simply and user-friendly ask where to save filled form, which could be sent back). You can't check with what program this HTML will be tried to open/fill. Any of this partial task could be done, but in complex - that would be just inefficient way of misusing HTML. So, PDF forms is great for strict data exchanging between companies/offices/users, although not widespread (somehow, it failed). And if you just trolling me - I'm not buying :) P.S. Let's close this offtopic anyway. -- Regards, Alexander Yerenkow From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 21:36:11 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 95CB4FDF for ; Sun, 3 Mar 2013 21:36:11 +0000 (UTC) (envelope-from lists@opsec.eu) Received: from home.opsec.eu (home.opsec.eu [IPv6:2001:14f8:200::1]) by mx1.freebsd.org (Postfix) with ESMTP id 5A68DA8C for ; Sun, 3 Mar 2013 21:36:11 +0000 (UTC) Received: from pi by home.opsec.eu with local (Exim 4.80.1 (FreeBSD)) (envelope-from ) id 1UCGZi-000PKi-GP; Sun, 03 Mar 2013 22:36:06 +0100 Date: Sun, 3 Mar 2013 22:36:06 +0100 From: Kurt Jaeger To: Christian Weisgerber Subject: Re: Firefox 19 vs large images Message-ID: <20130303213606.GF8239@home.opsec.eu> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 21:36:11 -0000 Hi! > Viewing large images has become cumbersome with the switch from > Firefox 18 to 19. Am I the only one to notice this? > > Wikipedia's high-resolution pictures of the day are great for this: > https://upload.wikimedia.org/wikipedia/commons/e/e9/Bison_skull_pile_edit.jpg I have the same problem with 17.0.1 on 9.1-amd64. -- pi@opsec.eu +49 171 3101372 7 years to go ! From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 22:03:45 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 4E83B8B2 for ; Sun, 3 Mar 2013 22:03:45 +0000 (UTC) (envelope-from john@theusgroup.com) Received: from theusgroup.com (theusgroup.com [64.122.243.222]) by mx1.freebsd.org (Postfix) with ESMTP id 34449B5A for ; Sun, 3 Mar 2013 22:03:45 +0000 (UTC) To: freebsd-ports@freebsd.org Subject: Re: Firefox 19 vs large images In-reply-to: <20130303213606.GF8239@home.opsec.eu> References: <20130303213606.GF8239@home.opsec.eu> Comments: In-reply-to Kurt Jaeger message dated "Sun, 03 Mar 2013 22:36:06 +0100." Date: Sun, 03 Mar 2013 14:03:44 -0800 From: John Message-Id: <20130303220344.C66D91FC@server.theusgroup.com> X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 22:03:45 -0000 >Hi! > >> Viewing large images has become cumbersome with the switch from >> Firefox 18 to 19. Am I the only one to notice this? >> >> Wikipedia's high-resolution pictures of the day are great for this: >> https://upload.wikimedia.org/wikipedia/commons/e/e9/Bison_skull_pile_edit.jp >g > >I have the same problem with 17.0.1 on 9.1-amd64. I'm seeing it with 18.0.2 on amd64 with 9.1-stable r247548 John Theus TheUsGroup.com From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 22:16:24 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 59C65B75 for ; Sun, 3 Mar 2013 22:16:24 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [188.252.31.196]) by mx1.freebsd.org (Postfix) with ESMTP id D3D94BFA for ; Sun, 3 Mar 2013 22:16:23 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5) with ESMTP id r23MGEYr001671; Sun, 3 Mar 2013 23:16:14 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5/Submit) with ESMTP id r23MGENB001668; Sun, 3 Mar 2013 23:16:14 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 3 Mar 2013 23:16:14 +0100 (CET) From: Wojciech Puchar To: Alexander Yerenkow Subject: Re: PDF viewer for "editable" PDFs In-Reply-To: Message-ID: References: <44sj4dzsop.fsf@lowell-desk.lan> <20130303063150.572a4672@scorpio> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Sun, 03 Mar 2013 23:16:14 +0100 (CET) Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 22:16:24 -0000 > And if you just trolling me - I'm not buying :) > > P.S. Let's close this offtopic anyway. fine From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 22:19:23 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id C32B1DD8 for ; Sun, 3 Mar 2013 22:19:23 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [188.252.31.196]) by mx1.freebsd.org (Postfix) with ESMTP id 3C2B0C1B for ; Sun, 3 Mar 2013 22:19:23 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5) with ESMTP id r23MJEop001698; Sun, 3 Mar 2013 23:19:14 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5/Submit) with ESMTP id r23MJEjn001695; Sun, 3 Mar 2013 23:19:14 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 3 Mar 2013 23:19:14 +0100 (CET) From: Wojciech Puchar To: John Subject: Re: Firefox 19 vs large images In-Reply-To: <20130303220344.C66D91FC@server.theusgroup.com> Message-ID: References: <20130303213606.GF8239@home.opsec.eu> <20130303220344.C66D91FC@server.theusgroup.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Sun, 03 Mar 2013 23:19:14 +0100 (CET) Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 22:19:23 -0000 >>> Wikipedia's high-resolution pictures of the day are great for this: >>> https://upload.wikimedia.org/wikipedia/commons/e/e9/Bison_skull_pile_edit.jp >> g >> >> I have the same problem with 17.0.1 on 9.1-amd64. > > I'm seeing it with 18.0.2 on amd64 with 9.1-stable r247548 > firefox 17.0.3 on FreeBSD 9-latest from svn, amd64 Worked just fine, took few seconds to load on intel atom D525 my /etc/make.conf WITH_GCC=yes # #few other things that doesn't matter for firefox # WITH_NEW_XORG=true #.... PERL_VERSION=5.14.2 From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 22:31:31 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 5DBE3104 for ; Sun, 3 Mar 2013 22:31:31 +0000 (UTC) (envelope-from lists@opsec.eu) Received: from home.opsec.eu (home.opsec.eu [IPv6:2001:14f8:200::1]) by mx1.freebsd.org (Postfix) with ESMTP id 14241CC7 for ; Sun, 3 Mar 2013 22:31:31 +0000 (UTC) Received: from pi by home.opsec.eu with local (Exim 4.80.1 (FreeBSD)) (envelope-from ) id 1UCHRK-000PQt-52; Sun, 03 Mar 2013 23:31:30 +0100 Date: Sun, 3 Mar 2013 23:31:30 +0100 From: Kurt Jaeger To: Wojciech Puchar Subject: Re: Firefox 19 vs large images Message-ID: <20130303223130.GG8239@home.opsec.eu> References: <20130303213606.GF8239@home.opsec.eu> <20130303220344.C66D91FC@server.theusgroup.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 22:31:31 -0000 Hi! > >>> Wikipedia's high-resolution pictures of the day are great for this: > >>> https://upload.wikimedia.org/wikipedia/commons/e/e9/Bison_skull_pile_edit.jp > >> g > >> > >> I have the same problem with 17.0.1 on 9.1-amd64. > > > > I'm seeing it with 18.0.2 on amd64 with 9.1-stable r247548 > > > firefox 17.0.3 on FreeBSD 9-latest from svn, amd64 > > Worked just fine, took few seconds to load on intel atom D525 If I click on the picture, firefox enlarges it to its original resolution. Only then can the effect be seen. Can you click on it without problems ? -- pi@opsec.eu +49 171 3101372 7 years to go ! From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 01:38:16 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 3C950BD7 for ; Mon, 4 Mar 2013 01:38:16 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-wi0-f176.google.com (mail-wi0-f176.google.com [209.85.212.176]) by mx1.freebsd.org (Postfix) with ESMTP id D1B94257 for ; Mon, 4 Mar 2013 01:38:15 +0000 (UTC) Received: by mail-wi0-f176.google.com with SMTP id hm14so1365292wib.3 for ; Sun, 03 Mar 2013 17:38:09 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=x-received:mime-version:from:date:message-id:subject:to :content-type; bh=tuMoJR9uw+AigMrR2DIPQS56Z1T5sKsIQH6WJwUgMlk=; b=POrmTfJU8CwNtIHFuGfDIbgKnuToypzNcdptII2pIVmZAxsiiukq5lTYBFSkoMhv8U uDp9irPJcdVleXF8cvdDNWr3Y/Gfz2/nuHQIsYhUoXdO3Imuvo2z4np2LucvvPryCMAE JdIhcs8ipZfiO1iP51LM2juWcx8FlEMX850Q4= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:mime-version:from:date:message-id:subject:to :content-type:x-gm-message-state; bh=tuMoJR9uw+AigMrR2DIPQS56Z1T5sKsIQH6WJwUgMlk=; b=NPW4yZZsccBkO3RgU5LfkDQOqHWnJhBrFi0zbboY0vlK/JCFcg/2hRSghylU/K5wrO rz/7mdAHlBXuZvVLmpkByVqDFOaEBM8DC1ZHQ78tBhdZQM3Kk7ohQ66lyd8j0yMPQG9h 9912wiXJlgdeUXrL641Opo/gDdeMQDPb7GUtZR0Bc/KnW78w/hBjoUSYWTtNEZqXsxNp kHoIeZr1xIXFh2pZhDeimesUb2wA5+BpRSulEBFnuXilqdqkS0+tW1aDq3tMUqUKGqRH rx7ZFgXh5a2YrzDenKkX5EJ9bP0O853WfTFWxtFzkDI/Jk7FZ3hxd72gDFC6p9V4XmqB xFXA== X-Received: by 10.180.8.4 with SMTP id n4mr8504394wia.13.1362361088906; Sun, 03 Mar 2013 17:38:08 -0800 (PST) MIME-Version: 1.0 Received: by 10.194.44.130 with HTTP; Sun, 3 Mar 2013 17:37:38 -0800 (PST) From: Eitan Adler Date: Sun, 3 Mar 2013 20:37:38 -0500 Message-ID: Subject: Using RUN_DEPENDS := ${BUILD_DEPENDS} is now a bug To: FreeBSD Ports Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQkWDnXr02r4tHYmPxlwYI1/kWML3CXoDZOxAjVU8FqvYM6jEyXQy+DIspnqklqK2A0DYFl8 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 01:38:16 -0000 Some time ago ("2012-01-21 17:40:15 UTC") I committed a change which converted all uses of BUILD_DEPENDS= ${RUN_DEPENDS} to BUILD_DEPENDS:= ${RUN_DEPENDS} Writing: ==== At the moment 1385 ports use BUILD_DEPENDS= ${RUN_DEPENDS} and 450 ports use BUILD_DEPENDS:= ${RUN_DEPENDS}. This patch fixes ports that are currently broken. This is a temporary measure until we organically stop using := or someone(s) spend a lot of time changing all the ports over. Explicit duplication > := > = and this just moves ports one step to the left ==== With the introduction of devel/ccache support this is now a more critical issue: ports that use BUILD_DEPENDS:= ${RUN_DEPENDS} are buggy. Set WITH_CCACHE_BUILD=yes in /etc/make.conf and observe [10046 eitan@gravity (100)% ...n/fbsd/ports/editors/led ]%make run-depends-list /usr/ports/lang/perl5.14 [10047 eitan@gravity (100)% ...n/fbsd/ports/editors/led ]%vim Makefile # add "RUN_DEPENDS := ${BUILD_DEPENDS} [10048 eitan@gravity (100)% ...n/fbsd/ports/editors/led ]%make run-depends-list /usr/ports/devel/ccache /usr/ports/lang/perl5.14 Ports should *not* assume that BUILD_DEPENDS is clear when initiated and ports should explicitly duplicate RUN_DEPENDS. This also reduces the chance of making an error should BUILD_DEPENDS change to be inconsistent with BUILD_DEPENDS. -- Eitan Adler From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 02:04:07 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 874532A8 for ; Mon, 4 Mar 2013 02:04:07 +0000 (UTC) (envelope-from jbeich@tormail.org) Received: from outgoing.tormail.org (outgoing.tormail.org [82.221.96.22]) by mx1.freebsd.org (Postfix) with ESMTP id 41C52305 for ; Mon, 4 Mar 2013 02:04:07 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=internal.tormail.org) by outgoing.tormail.org with esmtp (Exim 4.72) (envelope-from ) id 1UCKl3-0003Km-9x; Mon, 04 Mar 2013 05:04:05 +0300 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tormail.org; s=tm; h=Message-Id:X-TorMail-User:Content-Type:MIME-Version:References:Date:In-Reply-To:Subject:Cc:To:From; bh=l9Y0L0bLhNK91YScoT0xcXsCk4THOqoDPrkRvQvkeDQ=; b=Oz8uAdF+P9pfjiwhsInMq+Rd6evxoe6EpaWdMPulxJfB1qRJB/J0A798yrzCPscT2JEXyF2OTb00qX4jXw3fQo2YF/w+WC5I7sZI/NdCPfhsU6wyTGBNZ6KTfBM8TAoCF2amwERcA/YTv+6NhuuJv9cFyAdIaOiUtXUbRSGPw5Y=; Received: from jbeich by internal.tormail.org with local (Exim 4.63) (envelope-from ) id 1UCKiq-0009dc-RX; Mon, 04 Mar 2013 02:01:52 +0000 From: Jan Beich To: naddy@mips.inka.de (Christian Weisgerber) Subject: Re: Firefox 19 vs large images In-Reply-To: (Christian Weisgerber's message of "Sat, 2 Mar 2013 17:53:36 +0000 (UTC)") Date: Sun, 03 Mar 2013 21:48:48 -0400 References: MIME-Version: 1.0 Content-Type: text/plain X-TorMail-User: jbeich Message-Id: <1UCKiq-0009dc-RX@internal.tormail.org> Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 02:04:07 -0000 naddy@mips.inka.de (Christian Weisgerber) writes: > Viewing large images has become cumbersome with the switch from > Firefox 18 to 19. Am I the only one to notice this? > > Wikipedia's high-resolution pictures of the day are great for this: > https://upload.wikimedia.org/wikipedia/commons/e/e9/Bison_skull_pile_edit.jpg Try setting MOZ_DISABLE_IMAGE_OPTIMIZE=1 in environ(7) or disabling gfx.xrender.enabled in about:config. From owner-freebsd-ports@FreeBSD.ORG Sun Mar 3 20:03:21 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 7BDE7E49; Sun, 3 Mar 2013 20:03:21 +0000 (UTC) (envelope-from cschuber@gmail.com) Received: from mail-ie0-x22f.google.com (mail-ie0-x22f.google.com [IPv6:2607:f8b0:4001:c03::22f]) by mx1.freebsd.org (Postfix) with ESMTP id 495FE70C; Sun, 3 Mar 2013 20:03:21 +0000 (UTC) Received: by mail-ie0-f175.google.com with SMTP id c12so5282893ieb.6 for ; Sun, 03 Mar 2013 12:03:21 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:x-rim-org-msg-ref-id:message-id:reply-to:x-priority :sensitivity:importance:subject:to:cc:from:date:content-type :mime-version; bh=vLZfoYu6RObMB6hgZ9aCon4660YpEr3VZmbd7cExUDM=; b=UD/MD+r0ZVNlq/idryehliYu/Q6q8E44fQ2qv4eHP0aRjjbdTowN1QtXk72tTDKgmX 75BvDM9J6obeMZy6kypQmlfT/54RkGE7cQmnqkdjSK12jTMPkI1Km6M34MC2CMviszdo RihhhSh/GlAtSy8YoYnMn1R8BA9p9x78JGV2UwXAe2Xx1NstWPc/+sne6XYLbQeEGPwn CrlaXnLuMbpY0mBR6UoKPDU6R7oeD9QjkJksay1NKftfU3vHLCs2KNCFk/EFPXvFJYVU VQe+g7HuAtYXDWSMvijZUa7FLz3bK/xCYVszu/xsC4RyPkxySnHWIBR0WRm3zqBWWoCi 2dBQ== X-Received: by 10.42.98.76 with SMTP id r12mr21928069icn.10.1362341001062; Sun, 03 Mar 2013 12:03:21 -0800 (PST) Received: from 172.29.216.205 (bda-74-82-85-121.bis6.us.blackberry.com. [74.82.85.121]) by mx.google.com with ESMTPS id uq1sm6825818igc.5.2013.03.03.12.03.19 (version=TLSv1 cipher=RC4-SHA bits=128/128); Sun, 03 Mar 2013 12:03:20 -0800 (PST) X-rim-org-msg-ref-id: 106958558 Message-ID: <106958558-1362340997-cardhu_decombobulator_blackberry.rim.net-1389591408-@b2.c23.bise6.blackberry> X-Priority: Normal Sensitivity: Normal Importance: Normal Subject: Distfiles at komquats.com To: freebsd-ports@freebsd.org From: "Cy Schubert" Date: Sun, 3 Mar 2013 20:03:17 +0000 Content-Type: text/plain MIME-Version: 1.0 X-Mailman-Approved-At: Mon, 04 Mar 2013 03:12:49 +0000 Cc: cy@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: cschuber@gmail.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 20:03:21 -0000 Just a heads up that distfiles hosted on komquats.com will be unavailable today until I update my apache server, when I get to a computer later today. ~cy small keyboard in use. From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 03:41:27 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id D2C1EC60 for ; Mon, 4 Mar 2013 03:41:27 +0000 (UTC) (envelope-from dave-lists-freebsd-ports@weller-fahy.com) Received: from tigger.weller-fahy.com (sinecure.xen.prgmr.com [71.19.148.52]) by mx1.freebsd.org (Postfix) with ESMTP id 9B7EC940 for ; Mon, 4 Mar 2013 03:41:27 +0000 (UTC) Received: (qmail 19592 invoked from network); 3 Mar 2013 19:34:45 -0800 Received: from unknown (HELO weller-fahy.com) (dave@weller-fahy.com@65.185.146.208) by tigger.weller-fahy.com with AES256-SHA encrypted SMTP; 3 Mar 2013 19:34:45 -0800 Date: Sun, 3 Mar 2013 22:33:38 -0500 From: "David J. Weller-Fahy" To: freebsd-ports@freebsd.org Subject: Re: Failure to build gettext Message-ID: <20130304033338.GA18054@weller-fahy.com> Mail-Followup-To: freebsd-ports@freebsd.org References: <20130222015655.GB1245@weller-fahy.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="k+w/mQv8wyuph6w0" Content-Disposition: inline In-Reply-To: <20130222015655.GB1245@weller-fahy.com> User-Agent: Mutt/1.5.21+149 (4c16c0d1ba9e) (2012-12-30) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 03:41:27 -0000 --k+w/mQv8wyuph6w0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable * David J. Weller-Fahy [2013-02-= 21 21:05 -0500]: > I'm currently unable to build gettext from ports Apologies: this was a local error. At some point in converting from source upgrades to freebsd-update, some header files went missing. A rebuildworld cycle using known-good sources from the release CD, followed by an svn update to sources and second rebuildworld cycle fixed the problem. Regards, --=20 dave [ please don't CC me ] --k+w/mQv8wyuph6w0 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.13 (FreeBSD) iD8DBQFRNBYSzahokXOb2UwRAtPIAJwLsrPPLSe8cfw3JMHfK7AAfGi28wCgsBCr Eg/eXxnIAZw5zYcOQfhUp40= =coZ1 -----END PGP SIGNATURE----- --k+w/mQv8wyuph6w0-- From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 05:28:55 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 7A674A3E for ; Mon, 4 Mar 2013 05:28:55 +0000 (UTC) (envelope-from wblock@wonkity.com) Received: from wonkity.com (wonkity.com [67.158.26.137]) by mx1.freebsd.org (Postfix) with ESMTP id 30297CEE for ; Mon, 4 Mar 2013 05:28:53 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.6/8.14.6) with ESMTP id r245SriV009198; Sun, 3 Mar 2013 22:28:53 -0700 (MST) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.6/8.14.6/Submit) with ESMTP id r245Sqke009195; Sun, 3 Mar 2013 22:28:52 -0700 (MST) (envelope-from wblock@wonkity.com) Date: Sun, 3 Mar 2013 22:28:52 -0700 (MST) From: Warren Block To: Jan Beich Subject: Re: Firefox 19 vs large images In-Reply-To: <1UCKiq-0009dc-RX@internal.tormail.org> Message-ID: References: <1UCKiq-0009dc-RX@internal.tormail.org> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.7 (wonkity.com [127.0.0.1]); Sun, 03 Mar 2013 22:28:53 -0700 (MST) Cc: Christian Weisgerber , freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 05:28:55 -0000 On Sun, 3 Mar 2013, Jan Beich wrote: > naddy@mips.inka.de (Christian Weisgerber) writes: > >> Viewing large images has become cumbersome with the switch from >> Firefox 18 to 19. Am I the only one to notice this? >> >> Wikipedia's high-resolution pictures of the day are great for this: >> https://upload.wikimedia.org/wikipedia/commons/e/e9/Bison_skull_pile_edit.jpg > > Try setting MOZ_DISABLE_IMAGE_OPTIMIZE=1 in environ(7) or That seems to eliminate the lag for me. (Very limited testing.) > disabling gfx.xrender.enabled in about:config. This did not. From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 06:14:23 2013 Return-Path: Delivered-To: ports@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 2A607438; Mon, 4 Mar 2013 06:14:23 +0000 (UTC) Date: Mon, 4 Mar 2013 06:14:23 +0000 From: Alexey Dokuchaev To: meta Subject: Re: net-im/hotot fetch failure (size mismatch) Message-ID: <20130304061423.GA79639@FreeBSD.org> References: MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 06:14:23 -0000 On Fri, Mar 01, 2013 at 12:35:56PM +0900, meta wrote: > net-im/hotot fails to fetch. I'm not sure which is correct distinfo > vs actual but please see it. should be fixed in r313393, thanks for reporting! ./danfe From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 09:12:00 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id E4BA5128 for ; Mon, 4 Mar 2013 09:12:00 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [188.252.31.196]) by mx1.freebsd.org (Postfix) with ESMTP id D60EC79F for ; Mon, 4 Mar 2013 09:06:33 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5) with ESMTP id r2496MKk007015; Mon, 4 Mar 2013 10:06:22 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5/Submit) with ESMTP id r2496MPO007012; Mon, 4 Mar 2013 10:06:22 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Mon, 4 Mar 2013 10:06:22 +0100 (CET) From: Wojciech Puchar To: Kurt Jaeger Subject: Re: Firefox 19 vs large images In-Reply-To: <20130303223130.GG8239@home.opsec.eu> Message-ID: References: <20130303213606.GF8239@home.opsec.eu> <20130303220344.C66D91FC@server.theusgroup.com> <20130303223130.GG8239@home.opsec.eu> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Mon, 04 Mar 2013 10:06:22 +0100 (CET) Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 09:12:01 -0000 >> Worked just fine, took few seconds to load on intel atom D525 > > If I click on the picture, firefox enlarges it to its > original resolution. Only then can the effect be seen. > > Can you click on it without problems ? yes. no problems. quite large and displays/scrolls fine. From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 09:17:01 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 09CC1378 for ; Mon, 4 Mar 2013 09:17:01 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [188.252.31.196]) by mx1.freebsd.org (Postfix) with ESMTP id 6F2F17A5 for ; Mon, 4 Mar 2013 09:07:01 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5) with ESMTP id r2496pmE007021; Mon, 4 Mar 2013 10:06:52 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5/Submit) with ESMTP id r2496pWr007018; Mon, 4 Mar 2013 10:06:51 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Mon, 4 Mar 2013 10:06:51 +0100 (CET) From: Wojciech Puchar To: Jan Beich Subject: Re: Firefox 19 vs large images In-Reply-To: <1UCKiq-0009dc-RX@internal.tormail.org> Message-ID: References: <1UCKiq-0009dc-RX@internal.tormail.org> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Mon, 04 Mar 2013 10:06:52 +0100 (CET) Cc: Christian Weisgerber , freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 09:17:01 -0000 >> https://upload.wikimedia.org/wikipedia/commons/e/e9/Bison_skull_pile_edit.jpg > > Try setting MOZ_DISABLE_IMAGE_OPTIMIZE=1 in environ(7) or > disabling gfx.xrender.enabled in about:config. i don't have to do any of that. From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 10:21:16 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 3182F249 for ; Mon, 4 Mar 2013 10:21:16 +0000 (UTC) (envelope-from list_freebsd@bluerosetech.com) Received: from rush.bluerosetech.com (rush.bluerosetech.com [199.48.134.58]) by mx1.freebsd.org (Postfix) with ESMTP id F2AFEA80 for ; Mon, 4 Mar 2013 10:21:15 +0000 (UTC) Received: from chombo.houseloki.net (montesse-2-pt.tunnel.tserv3.fmt2.ipv6.he.net [IPv6:2001:470:1f04:19b9::2]) by rush.bluerosetech.com (Postfix) with ESMTPSA id A65B911434 for ; Mon, 4 Mar 2013 02:21:07 -0800 (PST) Received: from [127.0.0.1] (ivo.houseloki.net [10.9.70.20]) by chombo.houseloki.net (Postfix) with ESMTPSA id 6C9759D4 for ; Mon, 4 Mar 2013 02:21:05 -0800 (PST) Message-ID: <51347590.4090201@bluerosetech.com> Date: Mon, 04 Mar 2013 02:21:04 -0800 From: Darren Pilgrim User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:17.0) Gecko/20130107 Thunderbird/17.0.2 MIME-Version: 1.0 To: FreeBSD Mailing List Subject: pkgng info command: -d overrides -r? Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 10:21:16 -0000 With pkg_info, I can get a list of ports requiring and depended on by a given port by doing `pkg_info -rR`. In pkgNG, the equivalent would be `pkg info -dr`, but there appears to be a problem giving -d and -r at the same time. For example: # pkg info -r postgresql-client-9.2.3 postgresql-client-9.2.3 is required by: postgresql-server-9.2.3 # pkg info -d postgresql-client-9.2.3 postgresql-client-9.2.3 depends on: pkgconf-0.8.9 libiconv-1.14 libxml2-2.7.8_5 gettext-0.18.1.1 So the output of -dr should be something like this: # pkg info -dr postgresql-client-9.2.3 postgresql-client-9.2.3 depends on: pkgconf-0.8.9 libiconv-1.14 libxml2-2.7.8_5 gettext-0.18.1.1 postgresql-client-9.2.3 is required by: postgresql-server-9.2.3 But instead I get this: # pkg info -dr postgresql-client-9.2.3 postgresql-client-9.2.3 depends on: pkgconf-0.8.9 libiconv-1.14 libxml2-2.7.8_5 gettext-0.18.1.1 # pkg info -rd postgresql-client-9.2.3 postgresql-client-9.2.3 depends on: pkgconf-0.8.9 libiconv-1.14 libxml2-2.7.8_5 gettext-0.18.1.1 It looks like pkg ignores -r if -d is given, but the two shouldn't be exclusive. Am I missing something? From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 11:06:03 2013 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id EA9FFCBF for ; Mon, 4 Mar 2013 11:06:03 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id CFD8CDBC for ; Mon, 4 Mar 2013 11:06:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r24B63pd037845 for ; Mon, 4 Mar 2013 11:06:03 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r24B63jr037843 for freebsd-ports@FreeBSD.org; Mon, 4 Mar 2013 11:06:03 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 4 Mar 2013 11:06:03 GMT Message-Id: <201303041106.r24B63jr037843@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 Subject: Current unassigned ports problem reports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 11:06:04 -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/176634 New port: sysutils/ptools Ptools is a toolset based on o ports/176633 [PATCH] security/pam_yubico: update to 2.13 o ports/176630 devel/libopensync update and maintainer change o ports/176626 www/apache22-peruser-mpm fails to build o ports/176625 New Port: ports-mgmt/prhistory-sync-perl Sync GNATS PR o ports/176615 New port: deskutils/cairo-dock3, Cairo-Dock is a light o ports/176613 New port: devel/libgdbmgr, vim interface to gdb o ports/176598 [PATCH] chinese/qterm: update to 0.5.12, take maintain f ports/176587 [PATCH] mail/dcc-dccd: syntax error in makefile; break f ports/176497 print/utopia tries to install file in /usr/share o ports/176489 sysutils/salt: salt_minion freebsdpkg module fails to o ports/176480 [NEW PORT] x11-wm/compton: Compton is a compositor for o ports/176468 www/sams can not use the mask /32, with authorization o ports/176456 NEW PORT: lang/jsawk - Command-line JSON parser o ports/176445 New port: audio/icecast-kh Streaming mp3/ogg-vorbis au s ports/176442 Port files with double-colons cannot exist on FAT part f ports/176439 net/fping: Possible Fping incompatibility with FreeBSD f ports/176438 net-mgmt/nrpe2 consuming cpu when handling new connect o ports/176429 New Port: sysutils/ori - Ori Distributed File System f ports/176423 audio/clementine-player: always needs two starts f ports/176421 [NEW PORT] benchmarks/thrulay-hd: Extended version of f ports/176383 sysutils/ipmitool cannot connect over SOL o ports/176382 ports dependencies not being recorded o ports/176378 [PATCH] Fix several typos in the ports tree o ports/176377 New port: sysutils/cbsd Yet another FreeBSD Jail Manag o ports/176352 ports rebuilds unneeded packages o ports/176290 Utilize sf.net CDN f ports/176223 feature request - ports/net/quagga o ports/176195 [PATCH] games/cre: Set NO_WRKSUBDIR and BUILD_WRKSRC i o ports/176180 mail/mailman broken without NLS f ports/176178 Implement upstream fix where multiple net/iaxmodem ins f ports/176172 graphics/povray37: /usr/local/bin/ld: disp_sdl.o: unde o ports/176130 New port: www/cakephp23 f ports/176106 net-mgmt/collectd5 port update o ports/176103 [MAINTAINER] devel/gdb: Adding an option to disable TU o ports/176096 [NEW PORT] www/xibo-server: Xibo - Digital Signage (se o ports/176095 [NEW PORT] www/zikula: MVC web application framework ( f ports/176080 multimedia/xbmc uses external ffmpeg for part of build o ports/176047 ports: graphics/ImageMagick: -delay option spurious me f ports/176044 ports: print/ghostview (1.5_3) segfault/coredump f ports/176016 devel/libftdi LIB_DEPENDS for boost_system.4, current f ports/176012 irc/inspircd fails to detect OpenSSL in base running r o ports/176011 [patch] update devel/boehm-gc from 7.1 to 7.2d f ports/175993 new port net-mgmt/ostinato f ports/175987 audio/clementine-player 1.1.0_1 - album art not displ o ports/175947 [NEW PORT] www/sogo: Groupware server with a focus on o ports/175946 [NEW PORT] devel/sope: An extensive set of GNUstep web f ports/175944 [PATCH] x11-wm/obmenu: OptionsNG, changed Makefile, De f ports/175936 [NEW PORT] x11-wm/lxmed: LXDE Main Menu Editor f ports/175868 security/nessus-libnasl: nasl_crypto.c:25:10: fatal er f ports/175813 [patch] mail/dovecot2 doesn't detect libstemmer or ext f ports/175798 FreeBSD 10 unable to build sysutils/fusefs-kmod f ports/175772 Update to finance/php-tclink o ports/175748 New port: www/your-freedom A SOCKS proxy application f ports/175733 devel/libatomic_ops: Segmentation fault : install - o ports/175723 postfix+dovecot+ldap_sasl marked BROKEN f ports/175656 [patch] databases/sqlite3: update to 3.7.15.2 o ports/175620 New port: devel/bashdb, Bash debugger o ports/175612 New port: devel/remake version of GNU make utility th f ports/175611 sysutils/zfs-periodic package do not enable cron to ho f ports/175534 [patch] net-mgmt/rackmonkey: Fix a redirect o ports/175527 security/expiretable doesn't work in FreeBSD 9.x f ports/175523 pkgng: mail/dovecot2-pigeonhole conflicts with mail/do f ports/175429 audio/clementine-player: build error o ports/175385 dns/fastresolve does not compile o ports/175337 New port: devel/pecl-parsekit - static analysis f ports/175316 multimedia/xbmc 12.0.rc3 build error o ports/175308 [NEW PORT] graphics/linux-f10-sdl_ttf: SDL graphics dr o ports/175307 [NEW PORT] graphics/linux-f10-sdl_gfx: SDL graphics dr o ports/175274 [NEW PORT] audio/linux-f10-libsndfile: Reading and wri o ports/175266 port audio/libmtp is miscategorized: it should be sysu o ports/175234 update multimedia/qmmp, multimedia/qmmp-plugin-pack o ports/175233 devel/boehm-gc: GC does not scan static roots in share o ports/175229 x11-toolkit/swt-devel fails o ports/175219 www/yabb upgrade f ports/175121 devel/buildapp does not produce executable file o ports/175113 devel/freeocl: Port revision PORTREVISION=1 f ports/175107 devel/opencl: bug in CL/cl_ext.h (upstream): o ports/175068 [PATCH] net/proxychains: update to 4.4, take maintaine o ports/175063 maintainer update: sysutils/torque f ports/174996 patch for multimedia/xbmc headless mode o ports/174988 New port: net/tclsoap o ports/174960 sysutils/fusefs-ntfs mkntfs fails because of "no block o ports/174951 [PATCH] games/vamos: added OptionsNG, icon, desktop en o ports/174947 [new port] ftp/php5-dav, php5 webdav module, allowing o ports/174940 [new port]: misc/valspeak, a filter that converts Engl o ports/174939 audio/timidity++*: fix LDFLAGS o ports/174911 [PATCH] cad/leocad: update to 0.79.1, take maintainers o ports/174901 [NEW PORT] cad/ldraw: LDraw parts library f ports/174898 graphics/openimageio: pkg: (openimageio-1.1.2) /usr/lo o ports/174883 databases/grass: cut: ../dist.amd64-portbld-freebsd10. o ports/174870 [PATCH] cad/qfsm: Changed comment, options, do-install f ports/174867 irc/unreal: Port Update to UnrealIRCD o ports/174844 [PATCH] cad/electric-ng: update to 9.03, take maintain o ports/174841 graphics/sane-frontends fails to build o ports/174815 [PATCH] print/cups-base: Fixed 3 fatal errors, icons, f ports/174798 audio/soundtracker: request to add system menu item/en o ports/174795 x11-toolskits/open-motif: Installing open-motif-2.3.4. s ports/174788 www/squid32 fails to build when heimdal 1.5.2 installe f ports/174764 [patch] upgrade databases/postgis to 1.5.8 (fixes comp f ports/174753 change to devel/boost-libs causes adverse effects o ports/174750 [NEW PORT] games/rocksndiamonds-data: Additional Playe o ports/174747 [NEW PORT] games/rnd_jue: Colorful Boulderdash'n'Emera o ports/174746 Segmentation fault in security/prelude-lml o ports/174705 New port: devel/php5-ice o ports/174667 [new port] sysutils/ksysguardd3 (KDE3 ksysguardd) o ports/174655 japanese/mutt-devel: mutt ja patch new version release o ports/174647 [NEW PORT] net/infinispan: Open source highly scalable f ports/174590 sysutils/bsdadminscripts : install broken f ports/174583 devel/libreadline-java: patch for UTF8 support o ports/174567 [PATCH]: Fix mxml linking on amd64 f ports/174553 editors/tea fails to upgrade from 'tea-33.3.0' to 'tea f ports/174487 mail/notmuch fails to build during portupgrade o ports/174482 [PATCH]: x11/slim Fix PAM error handling o ports/174368 New port: lang/nimrod The Nimrod programming language. o ports/174308 [bsd.database.mk] cyrus-sasl-2.1.25_2 will not compile f ports/174303 [PATCH] Update devel/libgta to version 1.0.4 o ports/174289 net/ssvnc build fails - configure: error: /usr/bin/cpp f ports/174237 databases/php5-redis - zAdd does not set the correct s f ports/174153 emulators/fceux: update to 2.2.0 f ports/174149 net-mgmt/nfdump configure fails o ports/174131 net/citrix_ica: Update port to 12.0.0.189834 f ports/174129 [Maintainer-Update] print/cups-bjnp to latest f ports/174118 graphics/pecl-gmagick o ports/174099 [PATCH] misc/wmweather+: update to 2.13, take maintain o ports/174069 [PATCH] misc/explosions: OptionsNG, added categories, o ports/174057 [PATCH] misc/cmatrix: OptionsNG, added license, mtx.pc o ports/174055 Default Linux ALSA configuration update request o ports/174022 [PATCH] games/gnurobots: Added OptionsNG, license, des f ports/174018 Can't disable security/sshguard -b option o ports/174015 [PATCH] finance/venice: update to 0.751beta, take main o ports/173998 textproc/xalan-c from version 1.10 to 1.11 o ports/173996 net-mgmt/p5-Cflow: add support for net-mgmt/flow-tools o ports/173910 [PATCH] games/robocode: update to 1.7.4.4, take mainta o ports/173888 [NEW PORT] games/sudoku-sensei: Enjoy playing with Sud o ports/173882 [PATCH] games/xsc: Changed Comment, added Deskop entri o ports/173881 [NEW PORT] games/vodovod: Cross-platform pipe connecti o ports/173880 [PATCH] games/pipenightdreams: Added Portdoss, Desktop o ports/173875 [PATCH] games/cuyo: update to 2.0.0,1, Added License, f ports/173858 sysutils/bsdadminscripts installs pkg_libchk that does o ports/173751 [PATCH] multimedia/gxmms update to 0.3.0 o ports/173750 [PATCH] multimedia/motion fix bktr o ports/173743 Fix build problem for mplayer/mencoder when DEBUG opti f ports/173726 [patch] games/stonesoup f ports/173638 net-mgmt/nagios_plugins [PATCH] Revised check_ircd.pl f ports/173624 net/quagga bgpd man page missing option "--no_kernel" o ports/173615 textproc/db2latex 0.8p1_1 has bad xls [patch] o ports/173581 new port submission, security/sagan f ports/173543 net/ucarp / vlan interfaces o ports/173542 [PATCH] graphics/fracplanet: take maintainership, Make o ports/173534 [NEW PORT] games/wizznic: Implementation of the arcade o ports/173505 java/java3d does not compile f ports/173490 www/squid32 - missing kerberos helper f ports/173489 [PATCH] databases/mysqltuner: [SUMMARIZE CHANGES] o ports/173464 [PATCH] emulators/linux-pete-mesagpu: update to 1.77, o ports/173463 [PATCH] emulators/linux-peops-softgpu: update to 1.18, o ports/173462 [PATCH] emulators/linux-pete-xgl2gpu: update to 2.9, t o ports/173457 [NEW PORT] games/edgar: 2D platform game with a persis o ports/173438 lang/tuareg-mode.el o ports/173436 [MAINTAINER] games/mopesnake: Makefile changed, added o ports/173431 [MAINTAINER] games/madbomber: Makefile changed, added o ports/173427 [MAINTAINER] games/iceicepenguin: Makefile changed, ad f ports/173412 failed to install lang/gnat-aux o ports/173397 [MAINTAINER] games/defendguin: Makefile changed, added f ports/173369 math/gnuplot+: avoid conflicts with math/gnuplot o ports/173368 [PATCH] games/glmaze: OptionsNG, changed Makefile, add o ports/173356 [MAINTAINER] games/blockrage: Changed Makefile, added o ports/173355 [MAINTAINER] games/black-box: Makefile changed, added o ports/173354 [MAINTAINER] games/barbie_seahorse_adventures: Makefil o ports/173352 [PATCH] games/gtkatlantic: OptionsNG, changed Makefile o ports/173351 [PATCH] games/4stattack: OptionsNG, Makefile simplifie o ports/173350 [PATCH] games/ppracer: OptionsNG, Makefile changed, ta o ports/173347 [MAINTAINER] games/BillardGL: Changed Makefile, added o ports/173346 [MAINTAINER] games/netwalk: Changed Makefile, added De o ports/173345 [MAINTAINER] games/nelly: Changed Makefile, nelly.in, o ports/173335 [PATCH] games/xarchon: OptionsNG, changed Makefile, pk o ports/173314 [PATCH] graphics/comix: OptionsNG, changed Makefile, p o ports/173282 New port: security/keepassx2 Cross Platform Password M o ports/173271 [MAINTAINER] games/kye: Fixed distfiles for Distilator o ports/173241 devel/pmd fails to install f ports/173230 sysutils/parallel 20121022 complains about defined(@ar o ports/173194 [new port] java/eclipse-birt: BIRT plugin for Eclipse f ports/173191 lang/squeak: invalid dependency. o ports/173188 [PATCH] games/wordplay: Makefile changed, OptionsNG, t o ports/173184 [PATCH] games/abe: Makefile changed, removed pkg-plist o ports/173179 [PATCH] games/aop: Makefile changed, OptionsNG, take m o ports/173079 [NEW PORT] databases/pyspatialite Python interface to o kern/173030 [atf] [patch] emulators/open-vm-tools: fix clang compi o ports/173021 [NEW PORT] www/jetspeed2: Open Source Portal, written o ports/172981 [NEW PORT] devel/allegro-devel5: Cross-platform librar o ports/172967 [restore port] www/asterisk-gui for asterisk 1.6 to as o ports/172950 [PATCH] irc/psybnc update to 2.4-BETA1 o ports/172944 [NEW PORT] games/oneisenough: Economic development in o ports/172917 textproc/syck: LuaYAML-Testcases test-suite for lua ex o ports/172863 [NEW PORT] net/pjsip: Multimedia communication library f ports/172837 lang/swi-pl compiles with databases/libiodbc f ports/172800 [PATCH] fix build/install for audio/hydrogen f ports/172750 graphics/luminance does not compile if graphics/libraw f ports/172713 ports-mgmt/portbuilder hangs building x11/xorg on i386 f ports/172595 New port: net-p2p/pushpoold bitcoin push-mining pool s f ports/172441 chinese/fcitx should be in 'textproc' instead of 'chin o ports/172439 [New Port] chinese/fcitx-table-yonh: Pinyin-like input o ports/172361 lang/gnustep-base fail to configure with clang f ports/172353 multimedia/mencoder does not build with clang on amd64 f ports/172272 www/speedtest-mini - port not working o ports/172168 [new port] comms/libdlo: the basis for the DisplayPort f ports/172141 [PATCH] deskutils/q4wine: update to 0.121, OptionsNG, f ports/172139 www/squid31 f ports/171950 devel/tnt: include/tnt/tnt_sparse_matrix_csr.h:97:3: e o ports/171945 sysutils/fusefs-smbnetfs crash since fusefs-libs updat o ports/171932 wrong excutable program installed in ports/biology/mop o ports/171921 New port: devel/ocltools: f ports/171917 databases/mantis: Database query failed. Error receive o ports/171903 net-mgmt/observium port should only provide dependenci f ports/171893 [BUG] sysutils/ezjail: ezjail_admin update -b (Cannot f ports/171886 [PATCH] multimedia/gpac-mp4box: [SUMMARIZE CHANGES] f ports/171878 textproc/libsphinxclient port is incompatible with sph o ports/171870 [NEW PORT] games/visualspell: Challenges players to us o ports/171869 [NEW PORT] games/multiplik12: Educational game for lea f ports/171868 [new port] net/remotebox: Open Source VirtualBox Clien o ports/171855 [NEW PORT] net-mgmt/node-statsd - Simple daemon for ea f ports/171850 Misleading pkg install option in sysutils/fusefs-kmod f ports/171849 databases/postgis: port switches compiler! GCC -> CLAN f ports/171818 Please add option for Python-integration to sysutils/b o ports/171801 [patch] www/sams: Problem with creating MySQL database o ports/171792 patch: allow games/xmille to select starting player ra o ports/171760 New port: cad/sweethome3d o ports/171735 [NEW PORT] editors/py31-loook-devel: Simple Python too o ports/171734 [NEW PORT] editors/py27-loook: Simple Python tool that o ports/171675 [NEW PORT] games/cocos2d: Framework for building 2D ga o ports/171605 net-mgmt/netams 3.4.5 compilation error o ports/171603 [NEW PORT] games/py27-dcross: Blocks fall from the top o ports/171602 [NEW PORT] games/py27-cargocarrier: Collect cargo crat o ports/171576 [NEW PORT] games/py27-bombz: Simple 2D puzzle game wit o ports/171559 [NEW PORT] games/airstrike: 2d biplane dogfight game o ports/171552 [NEW PORT] games/traingame: Game about Trains f ports/171539 [patch] net-mgmt/nrpe2 small fixes o ports/171510 sysutils/dvd+rw-tools package doesn't work. o ports/171392 [NEW PORT] games/py27-super_mario_bros_python: Clone o o ports/171391 [NEW PORT] games/py27-pytowerdefense: Tower Defense Ga f ports/171338 both databases/mariadb-scripts and databases/mariadb-s o ports/171332 [NEW PORT] games/py27-pythonsudoku: Text and graphical o ports/171323 [NEW PORT] games/hitori: Logic game similar to Sudoku o ports/171236 [NEW PORT] games/schwarzweiss: Tank game for 2 players f ports/171231 audio/clementine-player starts only at the second time o ports/171224 [NEW PORT] games/bouncy: You are a hungry rabbit. Eat o ports/171176 new port: net/winexe f ports/171160 sysutils/loganalyzer depends on php5 o ports/171149 new port: textproc/imsettings - a framework manages in o ports/171106 New Port: net/jdownloader - Download manager (java) f ports/171079 graphics/rawtherapee hangs x11 o ports/171019 [new port] science/isis3: USGS ISIS3 planetary mapping o ports/171017 [new port] astro/cspice: New scientific port: NASA/NAI f ports/170882 sysutils/bacula-server - Feature Request - Change sysc o ports/170819 New port: net-mgmt/UniFi UniFi Wireless Controller o ports/170695 sysutils/fusefs-ntfs - instant reboot when mv from UFS o ports/170662 [NEW PORT] devel/pymunk: A easy-to-use pythonic 2d phy o ports/170661 [NEW PORT] graphics/py27-pyglet-devel: Cross-platform f ports/170542 sysutils/bsdadminscripts does not build correctly in m f ports/170537 devel/libftdi seems broken on i386 and amd64 o ports/170490 fix port: math/proofgeneral o ports/170448 [NEW PORT] devel/allegro5: Allegro 5 is a game program f ports/170381 x11/slim window manager gives dbus errors starting xfc f ports/170366 lang/libobjc2: update to 1.6.1 f ports/170339 www/node: segmentation violation in v8::internal::Hand o ports/170241 [PATCH] devel/libftdi: upgrade to 0.20 and fix automak f ports/170186 Update sysutils/modules to version 3.2.9 f ports/170100 astro/orsa: version 0.7.0 in ports hopelessly outdated o ports/170000 emulators/vmware-tools6: Can not install VMware Tools o ports/169741 [new port] devel/visualparadigm f ports/169716 net-mgmt/ndpmon several problems with build and instal o ports/169628 sysutils/devcpu-data f ports/169521 astro/weatherspect: Exiting with SIGUse of uninitializ o ports/169371 port graphics/sane-backends segfaults f ports/169333 [PATCH] sysutils/syslog-ng2: move sample config to EXA f ports/169322 New port: net/armsd: SMFv2/ARMS Service Adapter daemon f ports/169165 sysutils/fusefs-kmod: calling fchown(2) on sshfs files f ports/168935 www/firefox-remote shares PORTNAME with www/firefox o ports/168926 Second '59.xxx' out of range 0..59 at security/snort-r o ports/168861 devel/tkcvs: tkdiff no longer runs correctly o ports/168647 Remove trailing spaces from all ports-related files f ports/168407 [patch] lang/gauche: update to 0.9.3.2, unbreak o ports/168404 [NEW PORT] databases/dev-sqlite3: This is a developmen o ports/168328 [REPOCOPY] devel/codeblocks --> devel/codeblocks-devel f ports/168319 graphics/qiviewer: Not displaying image jpeg o ports/168114 [NEW PORT] games/duckmaze: A game about a duck that is o ports/167759 [New Ports] x11-wm/e17-modules-ecomorph and x11-wm/eco f ports/167691 security/heimdal: problem compiling kerberos/heimdal f ports/167090 sysutils/ezjail: Invalid command line option in ezjail o ports/167042 New port: net-p2p/tahoe-lafs f ports/167031 security/heimdal ignore environment after process call f ports/166987 net/nss_ldap: ports/152982 causes nss_ldap to not func o ports/166826 New port: misc/libphidget The driver for Phidgets devi o ports/166812 New port: mail/bounceHammer f ports/166522 lang/f77: Fortran 77 compiler always exits with error o ports/166006 Problem with postfix and mail/mailman integration f ports/166004 www/squid31 3.1.19 crashes on first request f ports/165672 sysutils/bacula-server doesn't install all symlinks ne o ports/165586 New port german/lx-office-erp, sql-ledger fork with ex o ports/165565 New port: www/mod_auth_token Token-based authenticatio o ports/164306 update mail/mailagent to 3.1.77 and utmpx fix o ports/164197 smsd(comms/smstools3) doesn't read some configurations o ports/164060 net/ucarp doesn't work on FreeBSD 9.0-PRERELEASE o ports/163955 input packet for interface are counted twice o ports/163850 New port: cad/linux-bricscad f ports/163126 security/sshguard changed from syslog.conf to daemon b o ports/162045 print/ghostview 1.5_2 coredumps on certain files o ports/161578 devel/strace is not working f ports/161278 net/dante: getoutaddr(): address [...] selected, but n o ports/158983 [NEW PORT] devel/pecl-dtrace: PHP DTrace provider o ports/157107 conflict between mail/p5-Mail-SPF and mail/libspf2 o ports/156834 New port: games/fairymax-devel latest version of games f ports/154352 [patch] multimedia/xmms: update using desktop and mime o ports/151747 new port: emulators/wine-fbsd64: request for (a variat o i386/138737 [endian] [patch] Patch for bswap64(9) operation on IA 315 problems total. From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 11:19:51 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 2C5F8E84 for ; Mon, 4 Mar 2013 11:19:51 +0000 (UTC) (envelope-from ml@netfence.it) Received: from smtp.eutelia.it (mp1-smtp-5.eutelia.it [62.94.10.165]) by mx1.freebsd.org (Postfix) with ESMTP id DD16910BF for ; Mon, 4 Mar 2013 11:19:50 +0000 (UTC) Received: from ns2.biolchim.it (ip-188-188.sn2.eutelia.it [83.211.188.188]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.eutelia.it (Eutelia) with ESMTP id 0E94F14ED6B for ; Mon, 4 Mar 2013 11:51:17 +0100 (CET) Received: from soth.ventu (adsl-ull-238-253.41-151.net24.it [151.41.253.238]) (authenticated bits=0) by ns2.biolchim.it (8.14.6/8.14.6) with ESMTP id r24Ap9b2005225 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL) for ; Mon, 4 Mar 2013 11:51:12 +0100 (CET) (envelope-from ml@netfence.it) Received: from alamar.ventu (alamar.ventu [10.1.2.18]) by soth.ventu (8.14.6/8.14.5) with ESMTP id r24Ap1Cv079725 for ; Mon, 4 Mar 2013 11:51:01 +0100 (CET) (envelope-from ml@netfence.it) Message-ID: <51347C95.8020600@netfence.it> Date: Mon, 04 Mar 2013 11:51:01 +0100 From: Andrea Venturoli User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: freebsd-ports@freebsd.org Subject: YModem terminal emulator Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.73 X-Scanned-By: MIMEDefang 2.73 on 10.1.2.13 X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (ns2.biolchim.it [192.168.2.203]); Mon, 04 Mar 2013 11:51:12 +0100 (CET) X-Spam-Score: 5.118 (*****) BAYES_50, RCVD_IN_PBL, RCVD_IN_SORBS_DUL, RDNS_DYNAMIC X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 11:19:51 -0000 Hello. I need a terminal emulator able to send a file over a USB/serial line, using YModem. So far I tried: a) cutecom When I press "Send file..." and pick, I get > Object::connect: No such signal QProgressDialog::cancelled() in /usr/ports/comms/cutecom/work/cutecom-0.20.0/qcppdialogimpl.cpp:394 > Object::connect: (receiver name: 'CuteCommDlg') b) minicom I get: > minicom: cannot open /dev/cuaU0: Permission denied I also tried /dev/ttyU0, but message is the same. I even tried running this as root, but I still get "Permission denied" :-O Any hint on these? Any other port I can try? bye & Thanks av. From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 11:40:42 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id D4090867; Mon, 4 Mar 2013 11:40:42 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-we0-x233.google.com (mail-we0-x233.google.com [IPv6:2a00:1450:400c:c03::233]) by mx1.freebsd.org (Postfix) with ESMTP id 503F311F5; Mon, 4 Mar 2013 11:40:42 +0000 (UTC) Received: by mail-we0-f179.google.com with SMTP id p43so4307159wea.38 for ; Mon, 04 Mar 2013 03:40:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:sender:date:from:to:cc:subject:message-id:references :mime-version:content-type:content-disposition:in-reply-to :user-agent; bh=waalHyjd/udnO1xFFBmb3nm5mQp6/0gC8AxEvoV+OSk=; b=zREs3jBj9FFWQX87n2QwdgVFcc4gkoCafwuOczLgJXRG78FSnbrGTss+BMm8EAzyhi ZCfJRPVKZVh97XtcrPlOHMru1U66Ex5aDXEl/50h/3z7BgM9wXiGeHctzt9XmmV1F+By /4MbG1Hvax9yKU2xzGyQ3vLsYnxJM01ekTFAw1ZkXNo8IjZAjRQMlddgjbtfgW8TLm4E DszHaOUkrApzzIr42YN8ZQVbfwDfvBO1fnx45L07itn+7Kl1McTWXun/XjKqQMaq05wl RTsdDU/CFWOngUYrinN3syfZOO9uJwGVhFCGGI4vs/A1+Zwe9eeqv/bIY3m5rTMVnYbo gYsA== X-Received: by 10.180.79.6 with SMTP id f6mr10730572wix.26.1362397241601; Mon, 04 Mar 2013 03:40:41 -0800 (PST) Received: from ithaqua.etoilebsd.net (ithaqua.etoilebsd.net. [37.59.37.188]) by mx.google.com with ESMTPS id n2sm13560281wiy.6.2013.03.04.03.40.39 (version=TLSv1 cipher=RC4-SHA bits=128/128); Mon, 04 Mar 2013 03:40:40 -0800 (PST) Sender: Baptiste Daroussin Date: Mon, 4 Mar 2013 12:40:38 +0100 From: Baptiste Daroussin To: Darren Pilgrim Subject: Re: pkgng info command: -d overrides -r? Message-ID: <20130304114037.GJ64570@ithaqua.etoilebsd.net> References: <51347590.4090201@bluerosetech.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="iRjOs3ViPWHdlw/I" Content-Disposition: inline In-Reply-To: <51347590.4090201@bluerosetech.com> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: pkg@FreeBSD.org, FreeBSD Mailing List X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 11:40:42 -0000 --iRjOs3ViPWHdlw/I Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable CCed to pkg@FreeBSD.org where the discussion deserves to be :) On Mon, Mar 04, 2013 at 02:21:04AM -0800, Darren Pilgrim wrote: > With pkg_info, I can get a list of ports requiring and depended on by a= =20 > given port by doing `pkg_info -rR`. In pkgNG, the equivalent would be=20 > `pkg info -dr`, but there appears to be a problem giving -d and -r at=20 > the same time. For example: >=20 > # pkg info -r postgresql-client-9.2.3 > postgresql-client-9.2.3 is required by: > postgresql-server-9.2.3 >=20 > # pkg info -d postgresql-client-9.2.3 > postgresql-client-9.2.3 depends on: > pkgconf-0.8.9 > libiconv-1.14 > libxml2-2.7.8_5 > gettext-0.18.1.1 >=20 > So the output of -dr should be something like this: > # pkg info -dr postgresql-client-9.2.3 > postgresql-client-9.2.3 depends on: > pkgconf-0.8.9 > libiconv-1.14 > libxml2-2.7.8_5 > gettext-0.18.1.1 > postgresql-client-9.2.3 is required by: > postgresql-server-9.2.3 >=20 > But instead I get this: >=20 > # pkg info -dr postgresql-client-9.2.3 > postgresql-client-9.2.3 depends on: > pkgconf-0.8.9 > libiconv-1.14 > libxml2-2.7.8_5 > gettext-0.18.1.1 >=20 > # pkg info -rd postgresql-client-9.2.3 > postgresql-client-9.2.3 depends on: > pkgconf-0.8.9 > libiconv-1.14 > libxml2-2.7.8_5 > gettext-0.18.1.1 >=20 > It looks like pkg ignores -r if -d is given, but the two shouldn't be=20 > exclusive. Am I missing something? No you are missing nothing in fact we haven't handled yet options multual exclusion. I haven't thought that anyway one will do a pkg info -rd so I didn't test w= hat could be happening here :) thanks for reporting, definitly something to work on, don't know yet what s= hould be done here: either say "hey you can't pass -r and -d at the same time" which would be t= he easy fix :) or output things like you suggested which will be less easy regards, Bapt --iRjOs3ViPWHdlw/I Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlE0iDQACgkQ8kTtMUmk6ExyYwCgmTC2wkECbXf5qW/jsEIHLNxF vOAAniQbSrytWSr/OPOwyf2l9W8gcaxP =gY9Y -----END PGP SIGNATURE----- --iRjOs3ViPWHdlw/I-- From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 11:50:00 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 35838D4C for ; Mon, 4 Mar 2013 11:50:00 +0000 (UTC) (envelope-from mailnull@mips.inka.de) Received: from mail-in-04.arcor-online.net (mail-in-04.arcor-online.net [151.189.21.44]) by mx1.freebsd.org (Postfix) with ESMTP id E515E1257 for ; Mon, 4 Mar 2013 11:49:59 +0000 (UTC) Received: from mail-in-13-z2.arcor-online.net (mail-in-13-z2.arcor-online.net [151.189.8.30]) by mx.arcor.de (Postfix) with ESMTP id 3DAC3AAE4A for ; Mon, 4 Mar 2013 12:49:52 +0100 (CET) Received: from mail-in-17.arcor-online.net (mail-in-17.arcor-online.net [151.189.21.57]) by mail-in-13-z2.arcor-online.net (Postfix) with ESMTP id 38D0814B5A2 for ; Mon, 4 Mar 2013 12:49:52 +0100 (CET) Received: from lorvorc.mips.inka.de (dslb-092-075-192-112.pools.arcor-ip.net [92.75.192.112]) by mail-in-17.arcor-online.net (Postfix) with ESMTPS id 17569CBC48 for ; Mon, 4 Mar 2013 12:49:52 +0100 (CET) X-DKIM: Sendmail DKIM Filter v2.8.2 mail-in-17.arcor-online.net 17569CBC48 Received: from lorvorc.mips.inka.de (localhost [127.0.0.1]) by lorvorc.mips.inka.de (8.14.6/8.14.3) with ESMTP id r24BnpMN080569 for ; Mon, 4 Mar 2013 12:49:51 +0100 (CET) (envelope-from mailnull@lorvorc.mips.inka.de) Received: (from mailnull@localhost) by lorvorc.mips.inka.de (8.14.6/8.14.6/Submit) id r24BnpeR080568 for freebsd-ports@freebsd.org; Mon, 4 Mar 2013 12:49:51 +0100 (CET) (envelope-from mailnull) From: naddy@mips.inka.de (Christian Weisgerber) Subject: Re: Firefox 19 vs large images Date: Mon, 4 Mar 2013 11:49:51 +0000 (UTC) Message-ID: References: <1UCKiq-0009dc-RX@internal.tormail.org> Originator: naddy@mips.inka.de (Christian Weisgerber) To: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 11:50:00 -0000 Jan Beich wrote: > Try setting MOZ_DISABLE_IMAGE_OPTIMIZE=1 in environ(7) or > disabling gfx.xrender.enabled in about:config. Bingo! Either one of these fixes the problem for me. (You have to restart Firefox after toggling gfx.xrender.enabled.) -- Christian "naddy" Weisgerber naddy@mips.inka.de From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 12:20:03 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 9073C95D; Mon, 4 Mar 2013 12:20:03 +0000 (UTC) (envelope-from ruM1cRO@yandex.ru) Received: from forward18.mail.yandex.net (forward18.mail.yandex.net [IPv6:2a02:6b8:0:1402::3]) by mx1.freebsd.org (Postfix) with ESMTP id DF2F7159C; Mon, 4 Mar 2013 12:20:02 +0000 (UTC) Received: from web20g.yandex.ru (web20g.yandex.ru [95.108.253.229]) by forward18.mail.yandex.net (Yandex) with ESMTP id 4CC821781912; Mon, 4 Mar 2013 16:20:01 +0400 (MSK) Received: from 127.0.0.1 (localhost.localdomain [127.0.0.1]) by web20g.yandex.ru (Yandex) with ESMTP id B6B426A2803F; Mon, 4 Mar 2013 16:20:00 +0400 (MSK) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1362399601; bh=zIz1eYVdaBq3Q8mKt4jAZG2mF1PSJMGEj6IBbUEtmoc=; h=From:To:Cc:Subject:Date; b=jAXHidoS38amwi9UNI5kHzGGGPde1dguor0Mebcw7qm5E6GTcqiLqO8OgBG+vusFB 7oz+Poh5i/IcJiGltUGgsZuVxAABcQhtaDHyAjDQAnFhgTkAkKOO35ia7X8kyumnaG meMV0Jyu17qvzAuI0ad7hq2Q23FEViQKkIiiVyHs= Received: from m1cro.park.rambler.ru (m1cro.park.rambler.ru [81.19.91.77]) by web20g.yandex.ru with HTTP; Mon, 04 Mar 2013 16:20:00 +0400 From: Ilya Envelope-From: ruM1cRO@yandex.ru To: "freebsd-ports@freebsd.org" Subject: Dialog4ports ready for testing. MIME-Version: 1.0 Message-Id: <691251362399600@web20g.yandex.ru> X-Mailer: Yamail [ http://yandex.ru ] 5.0 Date: Mon, 04 Mar 2013 16:20:00 +0400 Content-Transfer-Encoding: 7bit Content-Type: text/plain Cc: "bapt@freebsd.org" , Eitan Adler , Alexey Dokuchaev X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 12:20:03 -0000 Hi Folks, New dialog4ports ready for testing and we need you! :) What we already have: - Check/Radio button, - Pretty delimiter, - Finding lines for first symbol, - Dynamic width/height size(for default width = 80), - Full compatibility :) Screenshot: http://m1cro.tk/dialog4ports/d4p.png What will be added: - Help box with f1 and ctrl+e hotkeys(in progress), - Smart selection. How you can test it? If you have FreeBSD > 9 you just need: - Download: fetch https://bitbucket.org/m1cro/d4p/get/55f145017b25.zip or take it from https://bitbucket.org/m1cro/d4p tag: alphatesting - Unzip: tar -zxvf 55f145017b25.zip - Build and install: make && make install - Apply patch on Mk: fetch -qo- http://m1cro.tk/dialog4ports/bsd.port.mk-newdialog.diff | patch -d /usr/ports/Mk (don't forget do a backup :)) - and start using it ;) If your Freebsd < 9: - you need install devel/cdialog - all other steps from FreeBSD > 9 ;) If you found bug/issue/have a problem: - Please write to me: rum1cro@yandex.ru - or write to me in irc: efnet #bsdports/#d4p M1cRO - or create issue in repository: https://bitbucket.org/m1cro/d4p/issues?status=new&status=open I'll be happy for all response! Have a nice day ;) -- With Best Regards, Ilya A. Arkhipov From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 13:05:02 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 4FA27560; Mon, 4 Mar 2013 13:05:02 +0000 (UTC) (envelope-from c.kworr@gmail.com) Received: from mail-bk0-f43.google.com (mail-bk0-f43.google.com [209.85.214.43]) by mx1.freebsd.org (Postfix) with ESMTP id B9762174C; Mon, 4 Mar 2013 13:05:01 +0000 (UTC) Received: by mail-bk0-f43.google.com with SMTP id jm19so2349607bkc.16 for ; Mon, 04 Mar 2013 05:04:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=gDN0ZNxGFfE+lDFUBrTGgpP1lguyfhXLt9KlzgAHCRg=; b=mkTRbbTfqB/cAjv7UF5pgtlOmXXFHNzGT/D/GAX57HyyW4pYaepm8LctI4ami34BEd an0tYEvngz5gE5ZpiOwbXHIHS/Ob8vvh76nf7yfzXBwVKMw3wuscvU26UTRQhI9sXPDE rULYVU3lmci4z4GtiyMxmWdIFkssnRLhJxmre+1cYT0xFz5M61Urxg1L4/SjcQ8iWMzW p7I+vMEPud0R/0udCMQnSP1qRikC1w8vpt3Awe9kELlUldzfxDdFE1u4WJc5+T/jFjsV 8PzQOSestXYT44TGnGQtHKQ3sEQREMIwAtPpy87WBtcZPFWfHzIXsjHqsHvLqNLwRGP6 ruRw== X-Received: by 10.204.130.85 with SMTP id r21mr7516102bks.46.1362402294925; Mon, 04 Mar 2013 05:04:54 -0800 (PST) Received: from [192.168.1.128] ([91.196.229.122]) by mx.google.com with ESMTPS id gi19sm5767397bkc.2.2013.03.04.05.04.53 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 04 Mar 2013 05:04:54 -0800 (PST) Message-ID: <51349BF3.9060101@gmail.com> Date: Mon, 04 Mar 2013 15:04:51 +0200 From: Volodymyr Kostyrko User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:19.0) Gecko/20100101 Firefox/19.0 SeaMonkey/2.16 MIME-Version: 1.0 To: gahr@FreeBSD.org Subject: Re: openfire upgrade to 3.8 References: <512CC60E.9050005@vizion2000.net> <20130228094300.GT8101@gahrfit.gahr.ch> <512F6C1B.8070106@gmail.com> <20130228154131.GV8101@gahrfit.gahr.ch> In-Reply-To: <20130228154131.GV8101@gahrfit.gahr.ch> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 13:05:02 -0000 28.02.2013 17:41, Pietro Cerutti: > On 2013-Feb-28, 16:39, Volodymyr Kostyrko wrote: >> 28.02.2013 11:43, Pietro Cerutti: >>> On 2013-Feb-26, 06:26, David Southwell wrote: >>>> Hi >>> Hello David, >>> >>>> Any chance of an upgrade for openfire to .3.8 >>>> >>>> There are some bugs in 3.7 which have been fixed for 3.8 >>> >>> I was waiting for 3.8.1, which was supposed to be released a couple of >>> days after 3.8 and solve a couple of issues, but since it hasn't >>> arrived yet, I've just committed the update to 3.8. >> >> Thank you for update. But how can I uninstall all bundled plugins? Or >> can I just skip plugin installation? > > Good idea. I just committed an update that adds an option to turn off > the installation of the bundled plugins. Just run 'make config' and > uncheck the PLUGINS options. Then reinstall. > Fails to start WITHOUT_PLUGINS for me: /usr/local/bin/java -server -jar -Xmx256M -Dopenfire.lib.dir=/usr/local/share/java/openfire/lib -DopenfireHome=/usr/local/share/java/openfire /usr/local/share/java/openfire/lib/startup.jar Exception in thread "main" java.lang.NoClassDefFoundError: org/jivesoftware/util/Log at org.jivesoftware.openfire.starter.ServerStarter.start(ServerStarter.java:104) at org.jivesoftware.openfire.starter.ServerStarter.main(ServerStarter.java:58) Caused by: java.lang.ClassNotFoundException: org.jivesoftware.util.Log at java.net.URLClassLoader$1.run(URLClassLoader.java:366) at java.net.URLClassLoader$1.run(URLClassLoader.java:355) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:354) at java.lang.ClassLoader.loadClass(ClassLoader.java:423) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308) at java.lang.ClassLoader.loadClass(ClassLoader.java:356) ... 2 more Full version works like a charm. While I'm here: http://community.igniterealtime.org/message/227216 I hit this one too, tracing the start script I see: + _run_rc_doit 'openfire_stop ' + debug 'run_rc_command: doit: openfire_stop ' + eval 'openfire_stop ' + openfire_stop + check_pidfile /var/run/openfire.pid COPYRIGHT bin boot compat compat.old dev entropy etc home lib libexec limb0 media mnt proc rescue root sbin slim.core sys tmp usr var var.new + _pidfile=/var/run/openfire.pid + _procname=COPYRIGHT That looks like my root directory! :) -- Sphinx of black quartz, judge my vow. From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 13:42:31 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id EAE1611C for ; Mon, 4 Mar 2013 13:42:31 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from cpanel09.rubas.ch (cpanel09.rubas.ch [195.182.222.79]) by mx1.freebsd.org (Postfix) with ESMTP id AACA418C2 for ; Mon, 4 Mar 2013 13:42:31 +0000 (UTC) Received: from 98-41.199-178.cust.bluewin.ch ([178.199.41.98]:58653 helo=gahrfit.gahr.ch) by cpanel09.rubas.ch with esmtpsa (TLSv1:DHE-RSA-AES256-SHA:256) (Exim 4.80) (envelope-from ) id 1UCVep-002QQ6-3X; Mon, 04 Mar 2013 14:42:24 +0100 Date: Mon, 4 Mar 2013 14:42:20 +0100 From: Pietro Cerutti To: Volodymyr Kostyrko Subject: Re: openfire upgrade to 3.8 Message-ID: <20130304134219.GD59378@gahrfit.gahr.ch> References: <512CC60E.9050005@vizion2000.net> <20130228094300.GT8101@gahrfit.gahr.ch> <512F6C1B.8070106@gmail.com> <20130228154131.GV8101@gahrfit.gahr.ch> <51349BF3.9060101@gmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="y2zxS2PfCDLh6JVG" Content-Disposition: inline In-Reply-To: <51349BF3.9060101@gmail.com> X-PGP-Key: 0x9571F78E X-PGP-Fingerprint: 1203 92B5 3919 AF84 9B97 28D6 C0C2 6A98 9571 F78E User-Agent: Mutt/1.5.21 (2010-09-15) X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - cpanel09.rubas.ch X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - FreeBSD.org X-Get-Message-Sender-Via: cpanel09.rubas.ch: authenticated_id: gahr@gahr.ch Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: gahr@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 13:42:32 -0000 --y2zxS2PfCDLh6JVG Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2013-Mar-04, 15:04, Volodymyr Kostyrko wrote: > 28.02.2013 17:41, Pietro Cerutti: > > On 2013-Feb-28, 16:39, Volodymyr Kostyrko wrote: > >> 28.02.2013 11:43, Pietro Cerutti: > >>> On 2013-Feb-26, 06:26, David Southwell wrote: > >>>> Hi > >>> Hello David, > >>> > >>>> Any chance of an upgrade for openfire to .3.8 > >>>> > >>>> There are some bugs in 3.7 which have been fixed for 3.8 > >>> > >>> I was waiting for 3.8.1, which was supposed to be released a couple of > >>> days after 3.8 and solve a couple of issues, but since it hasn't > >>> arrived yet, I've just committed the update to 3.8. > >> > >> Thank you for update. But how can I uninstall all bundled plugins? Or > >> can I just skip plugin installation? > > > > Good idea. I just committed an update that adds an option to turn off > > the installation of the bundled plugins. Just run 'make config' and > > uncheck the PLUGINS options. Then reinstall. > > >=20 > Fails to start WITHOUT_PLUGINS for me: >=20 > /usr/local/bin/java -server -jar -Xmx256M=20 > -Dopenfire.lib.dir=3D/usr/local/share/java/openfire/lib=20 > -DopenfireHome=3D/usr/local/share/java/openfire=20 > /usr/local/share/java/openfire/lib/startup.jar > Exception in thread "main" java.lang.NoClassDefFoundError:=20 > org/jivesoftware/util/Log > at=20 > org.jivesoftware.openfire.starter.ServerStarter.start(ServerStarter.java:= 104) > at=20 > org.jivesoftware.openfire.starter.ServerStarter.main(ServerStarter.java:5= 8) > Caused by: java.lang.ClassNotFoundException: org.jivesoftware.util.Log > at java.net.URLClassLoader$1.run(URLClassLoader.java:366) > at java.net.URLClassLoader$1.run(URLClassLoader.java:355) > at java.security.AccessController.doPrivileged(Native Method) > at java.net.URLClassLoader.findClass(URLClassLoader.java:354) > at java.lang.ClassLoader.loadClass(ClassLoader.java:423) > at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308) > at java.lang.ClassLoader.loadClass(ClassLoader.java:356) > ... 2 more >=20 > Full version works like a charm. Thanks for the report. Are you able to identify the missing file? > While I'm here: >=20 > http://community.igniterealtime.org/message/227216 >=20 > I hit this one too, tracing the start script I see: >=20 > + _run_rc_doit 'openfire_stop ' > + debug 'run_rc_command: doit: openfire_stop ' > + eval 'openfire_stop ' > + openfire_stop > + check_pidfile /var/run/openfire.pid COPYRIGHT bin boot compat=20 > compat.old dev entropy etc home lib libexec limb0 media mnt proc rescue= =20 > root sbin slim.core sys tmp usr var var.new > + _pidfile=3D/var/run/openfire.pid > + _procname=3DCOPYRIGHT >=20 > That looks like my root directory! :) Yeah, looks like it. I can't reproduce it here: + _run_rc_doit 'openfire_stop ' + debug 'run_rc_command: doit: openfire_stop ' + eval 'openfire_stop ' + openfire_stop + check_pidfile /var/run/openfire.pid '*/usr/local/openjdk7/bin/java*' + _pidfile=3D/var/run/openfire.pid + _procname=3D'*/usr/local/openjdk7/bin/java*' + _interpreter=3D'' what's your uname -a ? --=20 Pietro Cerutti The FreeBSD Project gahr@FreeBSD.org PGP Public Key: http://gahr.ch/pgp --y2zxS2PfCDLh6JVG Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlE0pLsACgkQwMJqmJVx9443KgCg4fP+rfVhn9qrpJip+0bNW3Nh bb0AoLmwRZUAL7q2Y3dZonF6S4P+grMc =CtPV -----END PGP SIGNATURE----- --y2zxS2PfCDLh6JVG-- From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 14:26:31 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 894F9BAD for ; Mon, 4 Mar 2013 14:26:31 +0000 (UTC) (envelope-from portscout@portscout.freebsd.org) Received: from null.zi0r.com (null.zi0r.com [71.245.171.204]) by mx1.freebsd.org (Postfix) with ESMTP id 4B7AD1D3D for ; Mon, 4 Mar 2013 14:26:31 +0000 (UTC) Received: from null.zi0r.com (localhost [127.0.0.1]) by null.zi0r.com (8.14.5/8.14.5) with ESMTP id r24EQPQ1087459 for ; Mon, 4 Mar 2013 09:26:25 -0500 (EST) (envelope-from portscout@null.zi0r.com) Received: (from portscout@localhost) by null.zi0r.com (8.14.5/8.14.5/Submit) id r24EQPQb087200; Mon, 4 Mar 2013 09:26:25 -0500 (EST) (envelope-from portscout) Message-Id: <201303041426.r24EQPQb087200@null.zi0r.com> MIME-Version: 1.0 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain Date: Mon, 4 Mar 2013 09:26:25 -0500 From: portscout@portscout.freebsd.org To: ports@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 14:26:31 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/ports@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ net/x2goclient | 4.0.0.3 | 4.0.0.4 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt If wish to stop receiving portscout reminders, please contact portscout@portscout.freebsd.org Thanks. From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 14:42:34 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 89329DD6; Mon, 4 Mar 2013 14:42:34 +0000 (UTC) (envelope-from c.kworr@gmail.com) Received: from mail-bk0-f45.google.com (mail-bk0-f45.google.com [209.85.214.45]) by mx1.freebsd.org (Postfix) with ESMTP id DD62B1E01; Mon, 4 Mar 2013 14:42:33 +0000 (UTC) Received: by mail-bk0-f45.google.com with SMTP id i18so2428824bkv.18 for ; Mon, 04 Mar 2013 06:42:27 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=kW56dEBX/l7DFbe4c9TGMRvGBbXRuV7kyIqrrBz0eJ4=; b=Lra8OmYm+RTiGpr8EvcsDjqjc238ai6on/8Q3I3pxJVeSQk51yZ7y9+D9mUM9Nmti0 mBQtFysusKny5qxlMc8RKbV54Vzq9kp+OCoVJdFLTQEack0u88SlDg7quLUFjEzFtxzv OjN7e/5Y7pL98uGOtGglMZfjmYalY6xfPXHbH+DCBGWr5LHS6uZ1wgeRZ+jtHHwA9Xg7 H8GqicZ0xsdtt4tofUE26q//8FyWGeTrCvyN3GAvuWTGXoax42HVJUlhcCC4yXvcn/MW mbC9CjwQPJKnshpRb5aIpGCE0rk8Vy9EmX64sFsofZdJQSQSs5wa1KuvJK1IPxBqEdyE 7lhQ== X-Received: by 10.204.147.18 with SMTP id j18mr7420457bkv.2.1362408147180; Mon, 04 Mar 2013 06:42:27 -0800 (PST) Received: from [192.168.1.128] ([91.196.229.122]) by mx.google.com with ESMTPS id fs20sm5907201bkc.8.2013.03.04.06.42.25 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 04 Mar 2013 06:42:26 -0800 (PST) Message-ID: <5134B2CF.8020805@gmail.com> Date: Mon, 04 Mar 2013 16:42:23 +0200 From: Volodymyr Kostyrko User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:19.0) Gecko/20100101 Firefox/19.0 SeaMonkey/2.16 MIME-Version: 1.0 To: gahr@FreeBSD.org Subject: Re: openfire upgrade to 3.8 References: <512CC60E.9050005@vizion2000.net> <20130228094300.GT8101@gahrfit.gahr.ch> <512F6C1B.8070106@gmail.com> <20130228154131.GV8101@gahrfit.gahr.ch> <51349BF3.9060101@gmail.com> <20130304134219.GD59378@gahrfit.gahr.ch> In-Reply-To: <20130304134219.GD59378@gahrfit.gahr.ch> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 14:42:34 -0000 04.03.2013 15:42, Pietro Cerutti: >> While I'm here: >> >> http://community.igniterealtime.org/message/227216 >> >> I hit this one too, tracing the start script I see: >> >> + _run_rc_doit 'openfire_stop ' >> + debug 'run_rc_command: doit: openfire_stop ' >> + eval 'openfire_stop ' >> + openfire_stop >> + check_pidfile /var/run/openfire.pid COPYRIGHT bin boot compat >> compat.old dev entropy etc home lib libexec limb0 media mnt proc rescue >> root sbin slim.core sys tmp usr var var.new >> + _pidfile=/var/run/openfire.pid >> + _procname=COPYRIGHT >> >> That looks like my root directory! :) > > Yeah, looks like it. I can't reproduce it here: > > + _run_rc_doit 'openfire_stop ' > + debug 'run_rc_command: doit: openfire_stop ' > + eval 'openfire_stop ' > + openfire_stop > + check_pidfile /var/run/openfire.pid '*/usr/local/openjdk7/bin/java*' > + _pidfile=/var/run/openfire.pid > + _procname='*/usr/local/openjdk7/bin/java*' > + _interpreter='' > > what's your uname -a ? > FreeBSD ar1l0u 9.1-STABLE FreeBSD 9.1-STABLE #4 r247534M: Fri Mar 1 10:48:37 EET 2013 arcade@ar1l0u:/usr/obj/usr/src/sys/MINIMAL amd64 -- Sphinx of black quartz, judge my vow. From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 15:04:48 2013 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id E264055B for ; Mon, 4 Mar 2013 15:04:48 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: from portsindexbuild.ysv.FreeBSD.org (portsindexbuild.ysv.freebsd.org [IPv6:2001:1900:2254:206a::16:6601]) by mx1.freebsd.org (Postfix) with ESMTP id BE9161EF1 for ; Mon, 4 Mar 2013 15:04:48 +0000 (UTC) Received: from indexbuild (uid 5020) (envelope-from indexbuild@FreeBSD.org) id 1b1565 by portsindexbuild.ysv.FreeBSD.org (DragonFly Mail Agent v0.7); Mon, 04 Mar 2013 15:04:48 +0000 To: ports@FreeBSD.org Subject: INDEX build failed for 7.x Date: Mon, 04 Mar 2013 15:04:48 +0000 Message-Id: <5134b810.1b1565.3a60ff0b@portsindexbuild.ysv.FreeBSD.org> From: X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 15:04:48 -0000 INDEX build failed with errors: Generating INDEX-7 - please wait.. Done. make_index: linux-opera-devel-12.00_5: no entry for /usr/ports/textproc/linux-aspell Committers on the hook: rene rm tota Most recent SVN update was: Updating '.': U net/R-cran-twitteR/Makefile U net/R-cran-twitteR/distinfo U net/R-cran-twitteR/pkg-descr U MOVED D textproc/linux-aspell U textproc/Makefile U devel/py-boto/pkg-plist U devel/py-boto/Makefile U devel/py-boto/distinfo U graphics/R-cran-ggplot2/Makefile U graphics/R-cran-ggplot2/distinfo Updated to revision 313409. From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 15:18:19 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 9D6BC93C for ; Mon, 4 Mar 2013 15:18:19 +0000 (UTC) (envelope-from papowell@astart.com) Received: from astart2.astart.com (99-111-96-109.uvs.sndgca.sbcglobal.net [99.111.96.109]) by mx1.freebsd.org (Postfix) with ESMTP id 28DF71FBC for ; Mon, 4 Mar 2013 15:18:18 +0000 (UTC) Received: from laptop_83.private (localhost [127.0.0.1]) by astart2.astart.com (8.14.4/8.14.4) with ESMTP id r24FE8ZI028957 for ; Mon, 4 Mar 2013 07:14:08 -0800 (PST) (envelope-from papowell@astart.com) Message-ID: <5134BA44.8020604@astart.com> Date: Mon, 04 Mar 2013 07:14:12 -0800 From: Patrick Powell Organization: Astart Technologies User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:14.0) Gecko/20120807 Thunderbird/14.0 MIME-Version: 1.0 To: freebsd-ports@freebsd.org Subject: Re: YModem terminal emulator References: <51347C95.8020600@netfence.it> In-Reply-To: <51347C95.8020600@netfence.it> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: papowell@astart.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 15:18:19 -0000 On 03/04/13 02:51, Andrea Venturoli wrote: > Hello. > > I need a terminal emulator able to send a file over a USB/serial line, > using YModem. > > So far I tried: > a) cutecom > > When I press "Send file..." and pick, I get >> Object::connect: No such signal QProgressDialog::cancelled() in >> /usr/ports/comms/cutecom/work/cutecom-0.20.0/qcppdialogimpl.cpp:394 >> Object::connect: (receiver name: 'CuteCommDlg') > > > > b) minicom > > I get: > > minicom: cannot open /dev/cuaU0: Permission denied > > I also tried /dev/ttyU0, but message is the same. > I even tried running this as root, but I still get "Permission denied" > :-O > > > > > Any hint on these? > Any other port I can try? > > bye & Thanks > av. > _______________________________________________ > 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" > I run into this a lot when I use USB serial devices. Try using: ls /dev/cu* and see what devices you have. For examle: server:{15} # ls /dev/cu* /dev/cuau0 /dev/cuau0.init /dev/cuau0.lock /dev/cuau1 /dev/cuau1.init /dev/cuau1.lock Note that the device is /dev/cuau0 not /dev/cauU0 -- Patrick Powell Astart Technologies papowell@astart.com 1530 Jamacha Road, Suite X, Network and System El Cajon, CA 92019 Consulting 858-874-6543 Web Site: www.astart.com From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 15:36:47 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 1128033C for ; Mon, 4 Mar 2013 15:36:47 +0000 (UTC) (envelope-from ml@netfence.it) Received: from smtp.eutelia.it (mp1-smtp-2.eutelia.it [62.94.10.162]) by mx1.freebsd.org (Postfix) with ESMTP id BF79E18D for ; Mon, 4 Mar 2013 15:36:46 +0000 (UTC) Received: from ns2.biolchim.it (ip-188-188.sn2.eutelia.it [83.211.188.188]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.eutelia.it (Eutelia) with ESMTP id CFFAECA419 for ; Mon, 4 Mar 2013 16:36:38 +0100 (CET) Received: from soth.ventu (adsl-ull-238-253.41-151.net24.it [151.41.253.238]) (authenticated bits=0) by ns2.biolchim.it (8.14.6/8.14.6) with ESMTP id r24FaYmH053507 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL) for ; Mon, 4 Mar 2013 16:36:35 +0100 (CET) (envelope-from ml@netfence.it) Received: from alamar.ventu (alamar.ventu [10.1.2.18]) by soth.ventu (8.14.6/8.14.5) with ESMTP id r24FaQMe036117 for ; Mon, 4 Mar 2013 16:36:26 +0100 (CET) (envelope-from ml@netfence.it) Message-ID: <5134BF7A.4070302@netfence.it> Date: Mon, 04 Mar 2013 16:36:26 +0100 From: Andrea Venturoli User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: freebsd-ports@freebsd.org Subject: Re: YModem terminal emulator References: <51347C95.8020600@netfence.it> <5134BA44.8020604@astart.com> In-Reply-To: <5134BA44.8020604@astart.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.73 X-Scanned-By: MIMEDefang 2.73 on 10.1.2.13 X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (ns2.biolchim.it [192.168.2.203]); Mon, 04 Mar 2013 16:36:35 +0100 (CET) X-Spam-Score: 5.118 (*****) BAYES_50, RCVD_IN_PBL, RCVD_IN_SORBS_DUL, RDNS_DYNAMIC X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 15:36:47 -0000 On 03/04/13 16:14, Patrick Powell wrote: > I run into this a lot when I use USB serial devices. Try using: > ls /dev/cu* > and see what devices you have. For examle: > > server:{15} # ls /dev/cu* > /dev/cuau0 /dev/cuau0.init /dev/cuau0.lock /dev/cuau1 > /dev/cuau1.init /dev/cuau1.lock > > Note that the device is /dev/cuau0 not /dev/cauU0 > Thanks for your answer. In the end I was able to accomplish my task by removing the suid flag from minicom. bye av. From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 15:41:34 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id B799C550 for ; Mon, 4 Mar 2013 15:41:34 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id A0FDD1D8 for ; Mon, 4 Mar 2013 15:41:34 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r24FfYcb092848 for ; Mon, 4 Mar 2013 15:41:34 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r24FfYrB092847 for ports@freebsd.org; Mon, 4 Mar 2013 15:41:34 GMT (envelope-from bdrewery) Received: (qmail 91088 invoked from network); 4 Mar 2013 09:41:32 -0600 Received: from unknown (HELO ?192.168.0.74?) (freebsd@shatow.net@74.94.87.209) by sweb.xzibition.com with ESMTPA; 4 Mar 2013 09:41:32 -0600 Message-ID: <5134C0A5.7080601@FreeBSD.org> Date: Mon, 04 Mar 2013 09:41:25 -0600 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130215 Thunderbird/17.0.3 MIME-Version: 1.0 To: Eitan Adler Subject: Re: Using RUN_DEPENDS := ${BUILD_DEPENDS} is now a bug References: In-Reply-To: X-Enigmail-Version: 1.5.1 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="----enig2MRXFDENJASONKRABWNVS" Cc: FreeBSD Ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 15:41:34 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) ------enig2MRXFDENJASONKRABWNVS Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 3/3/2013 7:37 PM, Eitan Adler wrote: > Some time ago ("2012-01-21 17:40:15 UTC") I committed a change which > converted all uses of >=20 > BUILD_DEPENDS=3D ${RUN_DEPENDS} > to > BUILD_DEPENDS:=3D ${RUN_DEPENDS} >=20 > Writing: >=20 > =3D=3D=3D=3D > At the moment 1385 ports use BUILD_DEPENDS=3D ${RUN_DEPENDS} and 450 > ports use BUILD_DEPENDS:=3D ${RUN_DEPENDS}. This patch fixes ports th= at are > currently broken. This is a temporary measure until we organically st= op using > :=3D or someone(s) spend a lot of time changing all the ports over. >=20 > Explicit duplication > :=3D > =3D and this just moves ports one step = to the left > =3D=3D=3D=3D >=20 > With the introduction of devel/ccache support this is now a more critic= al issue: Note that this behavior of accidental run depends exists before WITH_CCACHE_BUILD was introduced. Many features have this problem. One specific simple example is USE_CMAKE. You can see around 100 cases of this in Mk/: # grep "BUILD_DEPENDS+=3D" Mk/* >=20 > ports that use BUILD_DEPENDS:=3D ${RUN_DEPENDS} are buggy. >=20 > Set WITH_CCACHE_BUILD=3Dyes in /etc/make.conf and observe >=20 > [10046 eitan@gravity (100)% ...n/fbsd/ports/editors/led ]%make run-depe= nds-list > /usr/ports/lang/perl5.14 > [10047 eitan@gravity (100)% ...n/fbsd/ports/editors/led ]%vim Makefile > # add "RUN_DEPENDS :=3D ${BUILD_DEPENDS} > [10048 eitan@gravity (100)% ...n/fbsd/ports/editors/led ]%make run-depe= nds-list > /usr/ports/devel/ccache > /usr/ports/lang/perl5.14 >=20 > Ports should *not* assume that BUILD_DEPENDS is clear when initiated > and ports should explicitly duplicate RUN_DEPENDS. >=20 > This also reduces the chance of making an error should BUILD_DEPENDS > change to be inconsistent with BUILD_DEPENDS. >=20 >=20 >=20 --=20 Regards, Bryan Drewery bdrewery@freenode/EFNet ------enig2MRXFDENJASONKRABWNVS Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (MingW32) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQIcBAEBAgAGBQJRNMCzAAoJEG54KsA8mwz5WxMP/RWcYtqMIp8s5NUhqwg4zFYR ryQ/1lQUxV6SuR1jlCBqEO3U9yRUk3LK9C2khR8CncR+3Gq/1TuF3ZcAxGtPbvtE e3R1jMuA3lDUyNQvpzueF31AipEPk8V7JzAJXxgoZLRRU8PovtORmGb+lFFDhk5v 5REu95D58HppCFzM10FOC2vV9YVUgOy3gurBriBLHceTR16upOpEACbeHDVv3lTn E5jcOg0HDH1j+s0Y1yoIBbP/39yWmjrkm9AK0itjwm2s0rRwIB2WbHb8XJNKSAIp TBYmkwXOPN3jETb1vlDOYMK5HGSQ4l5k9Mgllq/YPJCZHAPo8VOuRVI8k0m5i44B FiekSNnFWt2heVVgn6JjEBSqlRsyTYOqdWECWcDovQnZEaoJ5oapOo83wEv2UrLo K7E/xePveZGeRB0ZUTWwgXnpd6HLvpEfWaaezp3jBY9QFJGRJ2StAc4MPj4xbawF u+s4+p3U9et74yit7ALbhyzzTfnesrbFEQ+z/b46l0dvw5kUdh0z9Zx2bER7Qv1D bY5jBH983jK/NydCkAWUMe3Ec0wHC1JX0Qc9sFe0sLnq1AIQvufIXgkD8wqDa8bd IQ19EHXR0dKlrBDA2sqrp2U8J/Cxi6FEFGFVQmJA1fUquWaKOHTvg+NemReUFlu0 UYv1ATzDKVh08om7oQp4 =93cd -----END PGP SIGNATURE----- ------enig2MRXFDENJASONKRABWNVS-- From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 15:43:58 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 9EAEA618; Mon, 4 Mar 2013 15:43:58 +0000 (UTC) (envelope-from c.kworr@gmail.com) Received: from mail-bk0-f52.google.com (mail-bk0-f52.google.com [209.85.214.52]) by mx1.freebsd.org (Postfix) with ESMTP id EFBC11FB; Mon, 4 Mar 2013 15:43:57 +0000 (UTC) Received: by mail-bk0-f52.google.com with SMTP id jk13so2460155bkc.11 for ; Mon, 04 Mar 2013 07:43:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=OLu4WdAwDFpS96kRrB6Yfdd1uxlhaz5pSEk1v5L8pPo=; b=o6MMb9OJ6WCgXpYgDhPuAVd3IaxXd0k7lUpDxO2/YpMMdSeQRXmS+3vpciZlBAdeCK /Mse8HII7BbOIeMbaap/Pber4277vQR8NhpUQOwZhKtcknQVSwiJEh+KpaoGqXvqO4VC uBMSOWUrMD2Q3WLQQ0nMdxBaO/Zp5ZsO3/BhtFDTygNlH9AKOHDfoR4FNNHIvpZPLDrw mI37iM35RLthXi56P8jq5vXqgUdINLxhQEUCsgD2BKI/zpHV1+YmkkQ3lx65FQ3yZF7V kZpVvZms+wVKT3OhPa5Un0qQotHNuG/a0viIqmbcfxmwyegW1JKQpmFbaDEQY5b2KJRk KpbA== X-Received: by 10.205.134.3 with SMTP id ia3mr7657918bkc.92.1362411830485; Mon, 04 Mar 2013 07:43:50 -0800 (PST) Received: from [192.168.1.128] ([91.196.229.122]) by mx.google.com with ESMTPS id go8sm5993309bkc.20.2013.03.04.07.43.49 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 04 Mar 2013 07:43:49 -0800 (PST) Message-ID: <5134C134.1080002@gmail.com> Date: Mon, 04 Mar 2013 17:43:48 +0200 From: Volodymyr Kostyrko User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:19.0) Gecko/20100101 Firefox/19.0 SeaMonkey/2.16 MIME-Version: 1.0 To: gahr@FreeBSD.org Subject: Re: openfire upgrade to 3.8 References: <512CC60E.9050005@vizion2000.net> <20130228094300.GT8101@gahrfit.gahr.ch> <512F6C1B.8070106@gmail.com> <20130228154131.GV8101@gahrfit.gahr.ch> <51349BF3.9060101@gmail.com> <20130304134219.GD59378@gahrfit.gahr.ch> In-Reply-To: <20130304134219.GD59378@gahrfit.gahr.ch> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 15:43:58 -0000 04.03.2013 15:42, Pietro Cerutti: > On 2013-Mar-04, 15:04, Volodymyr Kostyrko wrote: >> 28.02.2013 17:41, Pietro Cerutti: >>> On 2013-Feb-28, 16:39, Volodymyr Kostyrko wrote: >>>> 28.02.2013 11:43, Pietro Cerutti: >>>>> On 2013-Feb-26, 06:26, David Southwell wrote: >>>>>> Hi >>>>> Hello David, >>>>> >>>>>> Any chance of an upgrade for openfire to .3.8 >>>>>> >>>>>> There are some bugs in 3.7 which have been fixed for 3.8 >>>>> >>>>> I was waiting for 3.8.1, which was supposed to be released a couple of >>>>> days after 3.8 and solve a couple of issues, but since it hasn't >>>>> arrived yet, I've just committed the update to 3.8. >>>> >>>> Thank you for update. But how can I uninstall all bundled plugins? Or >>>> can I just skip plugin installation? >>> >>> Good idea. I just committed an update that adds an option to turn off >>> the installation of the bundled plugins. Just run 'make config' and >>> uncheck the PLUGINS options. Then reinstall. >>> >> >> Fails to start WITHOUT_PLUGINS for me: >> >> /usr/local/bin/java -server -jar -Xmx256M >> -Dopenfire.lib.dir=/usr/local/share/java/openfire/lib >> -DopenfireHome=/usr/local/share/java/openfire >> /usr/local/share/java/openfire/lib/startup.jar >> Exception in thread "main" java.lang.NoClassDefFoundError: >> org/jivesoftware/util/Log >> at >> org.jivesoftware.openfire.starter.ServerStarter.start(ServerStarter.java:104) >> at >> org.jivesoftware.openfire.starter.ServerStarter.main(ServerStarter.java:58) >> Caused by: java.lang.ClassNotFoundException: org.jivesoftware.util.Log >> at java.net.URLClassLoader$1.run(URLClassLoader.java:366) >> at java.net.URLClassLoader$1.run(URLClassLoader.java:355) >> at java.security.AccessController.doPrivileged(Native Method) >> at java.net.URLClassLoader.findClass(URLClassLoader.java:354) >> at java.lang.ClassLoader.loadClass(ClassLoader.java:423) >> at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308) >> at java.lang.ClassLoader.loadClass(ClassLoader.java:356) >> ... 2 more >> >> Full version works like a charm. > > Thanks for the report. Are you able to identify the missing file? Putting in admin folder fixes everything. The server starts even if only empty admin/webapp/WEB-INF/lib folder exits. Easy fix would be installing admin interface anyway. Most users will want it. > >> While I'm here: >> >> http://community.igniterealtime.org/message/227216 >> >> I hit this one too, tracing the start script I see: >> >> + _run_rc_doit 'openfire_stop ' >> + debug 'run_rc_command: doit: openfire_stop ' >> + eval 'openfire_stop ' >> + openfire_stop >> + check_pidfile /var/run/openfire.pid COPYRIGHT bin boot compat >> compat.old dev entropy etc home lib libexec limb0 media mnt proc rescue >> root sbin slim.core sys tmp usr var var.new >> + _pidfile=/var/run/openfire.pid >> + _procname=COPYRIGHT >> >> That looks like my root directory! :) > > Yeah, looks like it. I can't reproduce it here: The core problem is @ line 52: procname=`ps -o command= $rc_pid | awk '{print $1 }'` If there's no such running process ps outputs nothing, awk outputs nothing and procname starts as an empty string. Later in check_pidfile absence of other symbol makes '**' a valid wildcard and voila. Checking procname for zero-length string and setting it to unitialized fixes this behavior: if [ ! -z "$rc_pid" ]; then procname=`ps -o command= $rc_pid | awk '{print $1 }'` if [ -z "$procname" ]; then procname='uninitialized' fi fi However I don't know is this a good solution. -- Sphinx of black quartz, judge my vow. From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 15:50:02 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id AC3C6947 for ; Mon, 4 Mar 2013 15:50:02 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-ie0-x235.google.com (mail-ie0-x235.google.com [IPv6:2607:f8b0:4001:c03::235]) by mx1.freebsd.org (Postfix) with ESMTP id 8380F26A for ; Mon, 4 Mar 2013 15:50:02 +0000 (UTC) Received: by mail-ie0-f181.google.com with SMTP id 17so6228282iea.26 for ; Mon, 04 Mar 2013 07:50:02 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=Naie/5P4FbK/mCyL6+eVblZsaQj3vNNH9uCCTTkE3z8=; b=MY+s4J4KJIKtSKZXbLI4ht6ihXD7xGxsGCvJsVpTM3NFwa3o20DcxXw0cdNsuRLjhU igAJPIEq8WL/CwJgsijDOZx66mSlkabgZHk2yW07oCdESjhL+XaKLlEsNtY8a2mhYqvd my9IZqbCR0F+vpajL5Cz1UHRDMFsrYtBi6ckQhCiJ1ysoH0B/l6r7SRwLzns1LYtuyi9 2yF61OmEfHj3AsS57vW+UuR9Fr/sOHnrLxnHwz8wteBpuu99cS+cBfHP0L/+2DQR8Tqh apx5QmjtyBgcFM1aYn5qYVpMOm+f3Jb8W7Pbur9akaF0y0FSXRrYIcBd7GoIXl4DoUgb iOtQ== MIME-Version: 1.0 X-Received: by 10.50.42.165 with SMTP id p5mr2795018igl.75.1362412202170; Mon, 04 Mar 2013 07:50:02 -0800 (PST) Received: by 10.64.63.12 with HTTP; Mon, 4 Mar 2013 07:50:01 -0800 (PST) Received: by 10.64.63.12 with HTTP; Mon, 4 Mar 2013 07:50:01 -0800 (PST) In-Reply-To: References: Date: Mon, 4 Mar 2013 15:50:01 +0000 Message-ID: Subject: Re: Using RUN_DEPENDS := ${BUILD_DEPENDS} is now a bug From: Chris Rees To: Eitan Adler Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 15:50:02 -0000 On 4 Mar 2013 01:38, "Eitan Adler" wrote: > > Some time ago ("2012-01-21 17:40:15 UTC") I committed a change which > converted all uses of > > BUILD_DEPENDS= ${RUN_DEPENDS} > to > BUILD_DEPENDS:= ${RUN_DEPENDS} > > Writing: > > ==== > At the moment 1385 ports use BUILD_DEPENDS= ${RUN_DEPENDS} and 450 > ports use BUILD_DEPENDS:= ${RUN_DEPENDS}. This patch fixes ports that are > currently broken. This is a temporary measure until we organically stop using > := or someone(s) spend a lot of time changing all the ports over. > > Explicit duplication > := > = and this just moves ports one step to the left > ==== > > With the introduction of devel/ccache support this is now a more critical issue: > > ports that use BUILD_DEPENDS:= ${RUN_DEPENDS} are buggy. > > Set WITH_CCACHE_BUILD=yes in /etc/make.conf and observe > > [10046 eitan@gravity (100)% ...n/fbsd/ports/editors/led ]%make run-depends-list > /usr/ports/lang/perl5.14 > [10047 eitan@gravity (100)% ...n/fbsd/ports/editors/led ]%vim Makefile > # add "RUN_DEPENDS := ${BUILD_DEPENDS} > [10048 eitan@gravity (100)% ...n/fbsd/ports/editors/led ]%make run-depends-list > /usr/ports/devel/ccache > /usr/ports/lang/perl5.14 > > Ports should *not* assume that BUILD_DEPENDS is clear when initiated > and ports should explicitly duplicate RUN_DEPENDS. Why not? When is ccache added to BUILD_DEPENDS? I guess I just don't see how this can happen. Chris From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 17:21:34 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 137D9215 for ; Mon, 4 Mar 2013 17:21:34 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-ia0-x22a.google.com (mail-ia0-x22a.google.com [IPv6:2607:f8b0:4001:c02::22a]) by mx1.freebsd.org (Postfix) with ESMTP id C4474945 for ; Mon, 4 Mar 2013 17:21:33 +0000 (UTC) Received: by mail-ia0-f170.google.com with SMTP id k20so5060626iak.15 for ; Mon, 04 Mar 2013 09:21:33 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=s78YXuDx6NpO4l4lmxpSOv1Fm/tCYMPF22SbtZBTSQo=; b=EhsBMICk1chzSa/7WUTKTbVng+yAsBIx1Z4mfUuBJmvUQRBey4zTx3HghaMWYwN9z7 BWbxSpCrv2/Iff9EqDdJGon5XwC4YSaDxn8A6+3UIByNVfe/taXcDnUkDxnxgqJdo/93 Rur6HmUkyCygVNZDVm/HvUGWS6MO6nZbPp/zWqRfDXlPVJONoiB1QL2HOkSSgNNnZhG2 0VmcDb08zbHlLsEOrL+My4tjDjjCSZk6/Ao+UoU7oiO/z7wzaxoHg6eE9o6DH58FJgpa mUuQxTgSUw1b41wP5OZUfLSy4Pp8hs5kFrUIRAPWA2W6sGMZVQYALn4J62TLHQEOgha5 vAeA== X-Received: by 10.42.121.14 with SMTP id h14mr24175956icr.27.1362417693404; Mon, 04 Mar 2013 09:21:33 -0800 (PST) MIME-Version: 1.0 Sender: utisoft@gmail.com Received: by 10.64.63.12 with HTTP; Mon, 4 Mar 2013 09:21:02 -0800 (PST) In-Reply-To: <20130104.195945.545.13@DOMY-PC> References: <20130104.195945.545.13@DOMY-PC> From: Chris Rees Date: Mon, 4 Mar 2013 17:21:02 +0000 X-Google-Sender-Auth: wkuJJMkgeI1xni_w4FszDgVfFPM Message-ID: Subject: Re: portdowngrade(CVS) deprecated -> alternative for portsnap(8) usage To: rank1seeker@gmail.com Content-Type: text/plain; charset=ISO-8859-1 Cc: "ports@freebsd.org" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 17:21:34 -0000 On 4 January 2013 19:59, wrote: > http://forums.freebsd.org/showthread.php?p=203241 > > Will it be transformed to checkout via SVN, only origins we need, or will > it be dumped from ports tree as obsolete. > Thanks. > Hey, I rewrote it in sh, quite simply because I thought that c++ was insane for such simple code. I'm afraid it doesn't quite have the same behaviour, but it's still very easy to use. Please let me know if there's something you desperately miss about the old version. Chris From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 18:04:47 2013 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id A7EB1CD9 for ; Mon, 4 Mar 2013 18:04:47 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: from portsindexbuild.ysv.FreeBSD.org (portsindexbuild.ysv.freebsd.org [IPv6:2001:1900:2254:206a::16:6601]) by mx1.freebsd.org (Postfix) with ESMTP id 831B3B2B for ; Mon, 4 Mar 2013 18:04:47 +0000 (UTC) Received: from indexbuild (uid 5020) (envelope-from indexbuild@FreeBSD.org) id 1b1a78 by portsindexbuild.ysv.FreeBSD.org (DragonFly Mail Agent v0.7); Mon, 04 Mar 2013 18:04:47 +0000 To: ports@FreeBSD.org Subject: INDEX now builds successfully on 7.x Date: Mon, 04 Mar 2013 18:04:47 +0000 Message-Id: <5134e23f.1b1a78.56123b5f@portsindexbuild.ysv.FreeBSD.org> From: X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 18:04:47 -0000 From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 18:31:07 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 39320B76 for ; Mon, 4 Mar 2013 18:31:07 +0000 (UTC) (envelope-from lkchen@k-state.edu) Received: from ksu-out.merit.edu (ksu-out.merit.edu [207.75.117.132]) by mx1.freebsd.org (Postfix) with ESMTP id EAC9FD75 for ; Mon, 4 Mar 2013 18:31:06 +0000 (UTC) X-Merit-ExtLoop1: 1 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgEFAL3mNFHPS3TT/2dsb2JhbABBAxaGOr0CFnOCHwEBBSNWDAINDgwCDRkCHS4OBhOIEwyxYYk2iDoEgR+MKYFZghyBEwOIbJ5GgyaBVDU X-IronPort-AV: E=Sophos;i="4.84,781,1355115600"; d="scan'208";a="213412354" X-MERIT-SOURCE: KSU Received: from ksu-sfpop-mailstore02.merit.edu ([207.75.116.211]) by sfpop-ironport02.merit.edu with ESMTP; 04 Mar 2013 13:31:06 -0500 Date: Mon, 4 Mar 2013 13:31:06 -0500 (EST) From: "Lawrence K. Chen, P.Eng." To: Wojciech Puchar Message-ID: <781420655.22421343.1362421866350.JavaMail.root@k-state.edu> In-Reply-To: Subject: Re: PDF viewer for "editable" PDFs MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Originating-IP: [129.130.0.181] X-Mailer: Zimbra 7.2.2_GA_2852 (ZimbraWebClient - GC25 ([unknown])/7.2.2_GA_2852) Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 18:31:07 -0000 ----- Original Message ----- > anyone knows a program that can do this. I use xpdf for normal PDFs, > but > people are using PDF as forms, and acrobat do support it. > > Yes i know there is acroread9 in ports, but i would like to have > something > opensource and NOT taking 100% CPU just because i started it. > > thanks :) > > I know I filled out a PDF form recently somewhere....oh yeah, inside the KPartsPlugin under Chromium, so that would mean 'graphics/okular' can fill out PDF forms. -- Who: Lawrence K. Chen, P.Eng. - W0LKC - Senior Unix Systems Administrator For: Enterprise Server Technologies (EST) -- & SafeZone Ally Snail: Computing and Telecommunications Services (CTS) Kansas State University, 109 East Stadium, Manhattan, KS 66506-3102 Phone: (785) 532-4916 - Fax: (785) 532-3515 - Email: lkchen@ksu.edu Web: http://www-personal.ksu.edu/~lkchen - Where: 11 Hale Library From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 19:50:15 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 73B0D44D for ; Mon, 4 Mar 2013 19:50:15 +0000 (UTC) (envelope-from mailnull@mips.inka.de) Received: from mail-in-06.arcor-online.net (mail-in-06.arcor-online.net [151.189.21.46]) by mx1.freebsd.org (Postfix) with ESMTP id 10F4A1083 for ; Mon, 4 Mar 2013 19:50:14 +0000 (UTC) Received: from mail-in-16-z2.arcor-online.net (mail-in-16-z2.arcor-online.net [151.189.8.33]) by mx.arcor.de (Postfix) with ESMTP id 0EFB210BD30 for ; Mon, 4 Mar 2013 20:50:07 +0100 (CET) Received: from mail-in-01.arcor-online.net (mail-in-01.arcor-online.net [151.189.21.41]) by mail-in-16-z2.arcor-online.net (Postfix) with ESMTP id 0CD91212017 for ; Mon, 4 Mar 2013 20:50:07 +0100 (CET) Received: from lorvorc.mips.inka.de (dslb-092-075-192-112.pools.arcor-ip.net [92.75.192.112]) by mail-in-01.arcor-online.net (Postfix) with ESMTPS id 9C4D25A58A for ; Mon, 4 Mar 2013 20:50:05 +0100 (CET) X-DKIM: Sendmail DKIM Filter v2.8.2 mail-in-01.arcor-online.net 9C4D25A58A Received: from lorvorc.mips.inka.de (localhost [127.0.0.1]) by lorvorc.mips.inka.de (8.14.6/8.14.3) with ESMTP id r24Jo5M6033679 for ; Mon, 4 Mar 2013 20:50:05 +0100 (CET) (envelope-from mailnull@lorvorc.mips.inka.de) Received: (from mailnull@localhost) by lorvorc.mips.inka.de (8.14.6/8.14.6/Submit) id r24Jo52D033678 for freebsd-ports@freebsd.org; Mon, 4 Mar 2013 20:50:05 +0100 (CET) (envelope-from mailnull) From: naddy@mips.inka.de (Christian Weisgerber) Subject: Re: Using RUN_DEPENDS := ${BUILD_DEPENDS} is now a bug Date: Mon, 4 Mar 2013 19:50:05 +0000 (UTC) Message-ID: References: Originator: naddy@mips.inka.de (Christian Weisgerber) To: freebsd-ports@freebsd.org X-Spam-Status: No, score=0.0 required=4.0 tests=UNPARSEABLE_RELAY autolearn=disabled version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail-in-01.arcor-online.net X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 19:50:15 -0000 Eitan Adler wrote: > Some time ago ("2012-01-21 17:40:15 UTC") I committed a change which > converted all uses of > > BUILD_DEPENDS= ${RUN_DEPENDS} > to > BUILD_DEPENDS:= ${RUN_DEPENDS} I don't understand this. RUN_DEPENDS=${BUILD_DEPENDS} is buggy, because you can end up with gmake etc. in RUN_DEPENDS. But what's the problem with BUILD_DEPENDS=${RUN_DEPENDS}? > Ports should *not* assume that BUILD_DEPENDS is clear when initiated > and ports should explicitly duplicate RUN_DEPENDS. > > This also reduces the chance of making an error should BUILD_DEPENDS > change to be inconsistent with BUILD_DEPENDS. Confusing. -- Christian "naddy" Weisgerber naddy@mips.inka.de From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 20:10:38 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mandree.no-ip.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by hub.freebsd.org (Postfix) with ESMTP id F0D939F1 for ; Mon, 4 Mar 2013 20:10:37 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from [127.0.0.1] (localhost.localdomain [127.0.0.1]) by apollo.emma.line.org (Postfix) with ESMTP id 2F51223CEA7 for ; Mon, 4 Mar 2013 21:10:37 +0100 (CET) Message-ID: <5134FFBC.1000402@FreeBSD.org> Date: Mon, 04 Mar 2013 21:10:36 +0100 From: Matthias Andree User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: freebsd-ports@freebsd.org Subject: Re: Using RUN_DEPENDS := ${BUILD_DEPENDS} is now a bug References: In-Reply-To: X-Enigmail-Version: 1.4.6 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 20:10:38 -0000 Chris Rees wrote, whilst quoting Eitan Adler: >> Ports should *not* assume that BUILD_DEPENDS is clear when initiated >> and ports should explicitly duplicate RUN_DEPENDS. > > Why not? When is ccache added to BUILD_DEPENDS? I guess I just don't see > how this can happen. /etc/make.conf can make this and other issues happen, but BUILD_DEPENDS should be added to in the POST phase of bsd.port.mk, then we should be safe. If not, then I'd need Eitan to elaborate. This can become rather awkward if the port uses BSD make, that then exposes re-reading of /etc/make.conf and user settings can nuke port settings and cause build failures that are induced locally, and are hard to track down. Related issue: https://wiki.freebsd.org/MatthiasAndree/LuaLessonsLearnt I'd say copying from RUN_DEPENDS to BUILD_DEPENDS must continue to be supported, else you'll upset me and quite a few other maintainers. If you are saying "use +=", then someone will have to make sure we don't exponentially duplicate the contents of the incriminated variables. From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 20:20:37 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id D9392DDC for ; Mon, 4 Mar 2013 20:20:37 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-oa0-f43.google.com (mail-oa0-f43.google.com [209.85.219.43]) by mx1.freebsd.org (Postfix) with ESMTP id A4DA311DA for ; Mon, 4 Mar 2013 20:20:37 +0000 (UTC) Received: by mail-oa0-f43.google.com with SMTP id l10so9749598oag.16 for ; Mon, 04 Mar 2013 12:20:36 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=x-received:mime-version:in-reply-to:references:from:date:message-id :subject:to:cc:content-type; bh=rYDs77ZC3BJ5119TXHuInlMRyG830CEg3K502845wd8=; b=ocVAdIucbwjXDDxrghvLjA12klvjR1CoRvLIyTg9yo/GkVe81DzIwPjYXtjc8993GH yir/j4s24NNQ4cM67CZojgXaFfTOjMYFQAtcYS5ttu/lKmtMS6cwJwgCnG6W7s587kWc U9byyT5i9g/rbVbGgTiKmAW5336abX8jAlE1Q= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:mime-version:in-reply-to:references:from:date:message-id :subject:to:cc:content-type:x-gm-message-state; bh=rYDs77ZC3BJ5119TXHuInlMRyG830CEg3K502845wd8=; b=THe5DUmtayk0xygmoyT7djRSgITz0gzljM9ssP407JzLHF6smsKcrP3OVXzvMUlqMH ZwXQqHso51UaHqXT2RmtcTySIqhQZtmZwdjJvM63Jj0L1tNWpNOUUqkFb0xkUiiL0F9f S2Nm/61+dJrlPMe2TIRClEKsWL2fsjtOgG7ID/5kNLZZSvggK/2NPOO7XAOyh1ThljiX 3izBa0XpRUcXO80iQIItKQ9mfO5cRZy4kcvn+HtcUDEEqW18EFd1AJFsGVQMHvQR7jy3 /J0a3JPOE5HZ0Olw8DXs87u/CKDnjsJu3pckfsfZjyhnzL43Ddik80HWzH/AIkwIZWaD NNxQ== X-Received: by 10.60.26.72 with SMTP id j8mr16810776oeg.2.1362428436675; Mon, 04 Mar 2013 12:20:36 -0800 (PST) MIME-Version: 1.0 Received: by 10.60.80.130 with HTTP; Mon, 4 Mar 2013 12:20:06 -0800 (PST) In-Reply-To: References: From: Eitan Adler Date: Mon, 4 Mar 2013 15:20:06 -0500 Message-ID: Subject: Re: Using RUN_DEPENDS := ${BUILD_DEPENDS} is now a bug To: Chris Rees Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQmim8xqCFAMcnpWthGfDkj6JC8FIKyu2V7Vwsjzzz6x38fglYbmHOZ7oN6yBjJYHzDOyFfp Cc: ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 20:20:37 -0000 On 4 March 2013 10:50, Chris Rees wrote: Add WITH_CCACHE_BUILD=yes to /etc/make.conf Use this Makefile: Try "make run-depends-list" with and without the commented line. Note that USE_CMAKE, USE_GMAKE, etc. can also trigger the buggy behavior. Note that this behavior is somewhat fixed if you add BUILD_DEPENDS= (no +) prior to setting RUN_DEPENDS. However, I've seen ports without this. I'm not really sure why. ====== # $FreeBSD$ PORTNAME= led PORTVERSION= 2.0 CATEGORIES= editors MASTER_SITES= SF/${PORTNAME}-editor/${PORTNAME}/${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= A tiny text editor, with a number of useful programming features #RUN_DEPENDS:= ${BUILD_DEPENDS} GNU_CONFIGURE= yes USE_PERL5= yes .include ====== After some thought I think I was confusing the issue. The problem is using RUN_DEPENDS:= ${BUILD_DEPENDS} without also setting BUILD_DEPENDS, not using "RUN_DEPENDS:= ${BUILD_DEPENDS}" in general. -- Eitan Adler From owner-freebsd-ports@FreeBSD.ORG Mon Mar 4 21:32:57 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id C42BD599 for ; Mon, 4 Mar 2013 21:32:57 +0000 (UTC) (envelope-from bsd-src@helfman.org) Received: from mail-vc0-f178.google.com (mail-vc0-f178.google.com [209.85.220.178]) by mx1.freebsd.org (Postfix) with ESMTP id 86DED1696 for ; Mon, 4 Mar 2013 21:32:57 +0000 (UTC) Received: by mail-vc0-f178.google.com with SMTP id m8so3671910vcd.23 for ; Mon, 04 Mar 2013 13:32:51 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:x-received:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :x-gm-message-state; bh=vMm6eqPiioRef9pt1e1DmMl6WjF1cjxn9q4o2FVfevU=; b=blRJoxjcKVXAexLVz208d4jiDIKLn/mDvFY6Ch28wWfr2QNrCCiVouQTqR/Iu4md8A ReQDif6seaC3nn/dfkiVeJ+moLo18fLRPjAG+ENaQ6t4zUqLaQmcNKlus5WY9xGK0WT/ /sRCapswL5GnjEKyPGvdiMfmpv1OOcKX/Zo16kAFVPZDuP/dG96sjGWxxvotHDhdSMjR 99ddLU003D8pPgKgt5bTE5AYMUfMI3YCd1cqfRv7VoDRVhrZp8WR+kl8KR/bOgEuQ6K4 2/d413tjF9l5l0PDYQA52V0XGwWFTtIdiZ/gxGOD+ukOSb6Jye1b6mIa6/z2/Nj4U8PM 022A== MIME-Version: 1.0 X-Received: by 10.220.149.11 with SMTP id r11mr8290206vcv.44.1362432771698; Mon, 04 Mar 2013 13:32:51 -0800 (PST) Sender: bsd-src@helfman.org Received: by 10.58.30.79 with HTTP; Mon, 4 Mar 2013 13:32:51 -0800 (PST) In-Reply-To: References: Date: Mon, 4 Mar 2013 13:32:51 -0800 X-Google-Sender-Auth: x6DoRbhGAMEia236_u7s2f0ok40 Message-ID: Subject: Re: GNATS now available via rsync From: Jason Helfman To: "Simon L. B. Nielsen" X-Gm-Message-State: ALoCoQlKo/31Q8TacrUmuqxpdmfb8zD/kP2VTzVtDVF7EBDFZBAGIZxoqdvjIsg76Mk0BwGbYzXg Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: freebsd-stable@freebsd.org, FreeBSD Ports List X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Mar 2013 21:32:57 -0000 On Sun, Dec 23, 2012 at 1:51 PM, Simon L. B. Nielsen wrote: > Hey, > > The GNATS database can now be mirrored using rsync from: > > rsync://bit0.us-west.freebsd.org/FreeBSD-bit/gnats/ > > I expect that URL to be permanent, at least while GNATS is still > alive. At a later point there will be more mirrors (a us-east will be > the first) and I will find a place to publish the mirror list. > > On a side note, GNATS changes aren't mirrored to the old CVSup system > right now, as cvsupd broke on FreeBSD 10.0, which the hosts running > GNATS is running. There is no current plans from clusteradm@'s side to > fix this now that an alternative way to get GNATS exists and cvsup is > deprecated long term anyway. > I have supplied an update to reflect this change in the committers's guide here: http://www.freebsd.org/doc/en/articles/committers-guide/gnats.html -jgh -- Jason Helfman | FreeBSD Committer jgh@FreeBSD.org | http://people.freebsd.org/~jgh | The Power to Serve From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 04:11:26 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 6E5CC687 for ; Tue, 5 Mar 2013 04:11:26 +0000 (UTC) (envelope-from andy@neu.net) Received: from mail.neu.net (neu.net [199.48.129.194]) by mx1.freebsd.org (Postfix) with ESMTP id 23B0CDF6 for ; Tue, 5 Mar 2013 04:11:25 +0000 (UTC) Received: from neu.net (neu.net [199.48.129.194]) by mail.neu.net (8.14.6/8.14.5) with ESMTP id r254BL60025093 for ; Mon, 4 Mar 2013 23:11:22 -0500 (EST) (envelope-from andy@neu.net) Date: Mon, 4 Mar 2013 23:11:21 -0500 (EST) From: AN To: freebsd-ports@freebsd.org Subject: codeblocks upgrade - error: variable length array of non-POD element type 'wxPoint' In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Virus-Scanned: clamav-milter 0.97.6 at my.mail.server X-Virus-Status: Clean X-Spam-Status: No, score=0.0 required=4.5 tests=RP_MATCHES_RCVD autolearn=unavailable version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on mail.neu.net X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 04:11:26 -0000 FreeBSD FBSD10 10.0-CURRENT FreeBSD 10.0-CURRENT #35 r246636: Sun Feb 10 17:07:34 EST 2013 root@FBSD10:/usr/obj/usr/src/sys/MYKERNEL amd64 /bin/sh ../../../libtool --tag=CXX --mode=compile c++ -DHAVE_CONFIG_H -I. -I../../../src/include -I/usr/local/lib/wx/include/gtk2-unicode-release-2.8 -I/usr/local/include/wx-2.8 -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D__WXGTK__ -pthread -D_THREAD_SAFE -I./include -I./src/scintilla/include -I./src/scintilla/lexlib -I./src/scintilla/src -DSCI_LEXER -DLINK_LEXERS -DGTK -D__WX__ -I/usr/local/include -Ulinux -Uunix -O2 -ffast-math -DCB_AUTOCONF -O2 -pipe -fno-strict-aliasing -DCB_PRECOMP -Winvalid-pch -fPIC -DPIC -fexceptions -MT LexBaan.lo -MD -MP -MF .deps/LexBaan.Tpo -c -o LexBaan.lo `test -f 'src/scintilla/lexers/LexBaan.cxx' || echo './'`src/scintilla/lexers/LexBaan.cxx libtool: compile: c++ -DHAVE_CONFIG_H -I. -I../../../src/include -I/usr/local/lib/wx/include/gtk2-unicode-release-2.8 -I/usr/local/include/wx-2.8 -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D__WXGTK__ -pthread -D_THREAD_SAFE -I./include -I./src/scintilla/include -I./src/scintilla/lexlib -I./src/scintilla/src -DSCI_LEXER -DLINK_LEXERS -DGTK -D__WX__ -I/usr/local/include -Ulinux -Uunix -O2 -ffast-math -DCB_AUTOCONF -O2 -pipe -fno-strict-aliasing -DCB_PRECOMP -Winvalid-pch -fPIC -DPIC -fexceptions -MT LexBaan.lo -MD -MP -MF .deps/LexBaan.Tpo -c src/scintilla/lexers/LexBaan.cxx -fPIC -DPIC -o .libs/LexBaan.o src/PlatWX.cpp:304:19: error: variable length array of non-POD element type 'wxPoint' wxPoint points[npts]; ^ 1 error generated. *** [PlatWX.lo] Error code 1 mv -f .deps/LexBaan.Tpo .deps/LexBaan.Plo mv -f .deps/LexAda.Tpo .deps/LexAda.Plo mv -f .deps/LexAsm.Tpo .deps/LexAsm.Plo mv -f .deps/ScintillaWX.Tpo .deps/ScintillaWX.Plo mv -f .deps/wxscintilla.Tpo .deps/wxscintilla.Plo 1 error *** [all-recursive] Error code 1 1 error *** [all-recursive] Error code 1 1 error *** [all-recursive] Error code 1 1 error *** [do-build] Error code 1 Stop in /usr/ports/devel/codeblocks. From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 04:47:59 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id A67CEADA for ; Tue, 5 Mar 2013 04:47:59 +0000 (UTC) (envelope-from jnagyjr1978@gmail.com) Received: from mail-ye0-f180.google.com (mail-ye0-f180.google.com [209.85.213.180]) by mx1.freebsd.org (Postfix) with ESMTP id 433E3EE1 for ; Tue, 5 Mar 2013 04:47:58 +0000 (UTC) Received: by mail-ye0-f180.google.com with SMTP id m14so963953yen.11 for ; Mon, 04 Mar 2013 20:47:58 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; bh=WJeMm5nLXwPoORd9tSeCTZ4QkGnFA1E7LFQDpicMXeg=; b=0FQRupvlQZNJizPNZgeOm86s8uJtexq6lREiIbvG8rtOyV+cEXTpjdupTgf5vfHnL4 u9F6WFz5fwFbQ+wF/Qbw770AryHJZwFOvStWcCdpliBRnFtH0jyJQuCt8nU/lkiSoqsi F8heeuPtstEu5ZcQhn2eNXBsyRPCS3jJXvnBfKjyh/j8ngNC2svJd7ldYqFyB04ixVeS P0lKPw9JOKH2EmYrD5sTmsGbNFWIb9Wk26uTyK3sHllAfdVV49/tW13FSKDVwzcEMXTA Ar/AoICgK1atB3vyrFx3DAigBH9L0WVUVeVZtX9pqKkjdYZTbGgGXKD9LJJNRKhS0PSa sdXA== X-Received: by 10.236.134.163 with SMTP id s23mr16064934yhi.54.1362458529912; Mon, 04 Mar 2013 20:42:09 -0800 (PST) Received: from [192.168.1.33] (vid-196.dhcp.grp10.tnmmrl.infoave.net. [204.116.254.196]) by mx.google.com with ESMTPS id k45sm4857616yhd.2.2013.03.04.20.42.07 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 04 Mar 2013 20:42:08 -0800 (PST) Message-ID: <5135779D.1000100@gmail.com> Date: Mon, 04 Mar 2013 22:42:05 -0600 From: "Joseph A. Nagy, Jr" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: xxjack12xx@gmail.com, "Ports @ FreeBSD" Subject: audio/audacity still does not compile due to issues with soundtouch Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 04:47:59 -0000 Maintainer cc'd I am still having issues with Audacity trying to compile in soundtouch plugins. Is this an issue with the port (there is no config option to disable this behavior) or is it an upstream issue? -- Yours in Christ, Joseph A Nagy Jr "Whoever loves instruction loves knowledge, But he who hates correction is stupid." -- Proverbs 12:1 Emails are not formal business letters, whatever businesses may want. Original content CopyFree (F) under the OWL http://copyfree.org/licenses/owl/license.txt From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 04:59:04 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id CC055BEA for ; Tue, 5 Mar 2013 04:59:04 +0000 (UTC) (envelope-from jeffreybouquet@yahoo.com) Received: from nm2-vm5.bullet.mail.gq1.yahoo.com (nm2-vm5.bullet.mail.gq1.yahoo.com [98.136.218.132]) by mx1.freebsd.org (Postfix) with SMTP id 439ADF1A for ; Tue, 5 Mar 2013 04:59:04 +0000 (UTC) Received: from [98.137.12.188] by nm2.bullet.mail.gq1.yahoo.com with NNFMP; 05 Mar 2013 04:56:15 -0000 Received: from [98.137.12.192] by tm9.bullet.mail.gq1.yahoo.com with NNFMP; 05 Mar 2013 04:56:15 -0000 Received: from [127.0.0.1] by omp1000.mail.gq1.yahoo.com with NNFMP; 05 Mar 2013 04:56:15 -0000 X-Yahoo-Newman-Property: ymail-3 X-Yahoo-Newman-Id: 753698.20149.bm@omp1000.mail.gq1.yahoo.com Received: (qmail 15595 invoked by uid 60001); 5 Mar 2013 04:56:15 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1362459375; bh=2EUQBPI4oIYSy63q5j9EFvgEEWIdM76to2OZLEST5cI=; h=X-YMail-OSG:Received:X-Rocket-MIMEInfo:X-Mailer:Message-ID:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=FzhR9PPEG2ZpQPRHAwHcmWRhOZ/LR5Gly1HlvfmoUi1NyG9C+sDNCP8GLorQ9wNSa95ra31XPCsNTbU3Ryx4VmTsDAUNwxpoD68/cpE+s7HuJ2DeucMiEwACf5BxNi8bfnuhRLpkHmuuwUAbjHAdcoQ6Er1i5mGDiXnosL6NaM8= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:X-Rocket-MIMEInfo:X-Mailer:Message-ID:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=nKFj+bIKdJhDnagO+DsrJeWA+UXxillH3atl4gmGfeqbT/8IjaNozMdMksolWu46chBfUlTJGTGw8TRNMmiysRJ++LDo1+uEJONtpkEeiwal5nuyvrVfii5TiBZ70YhnOn8kThsn33w2HpGcverUxl3hI0N887ODL7yO+24PIeU=; X-YMail-OSG: wh1aGyoVM1lXxXKO.D_wiuQ91kKYiUxB1TttmMJQ5HeraPF DCZ22wZ66b4EUPgBQGMiix9J428feYYowmRnxRxugT.kUV4mtT8uZ8JRSOu2 CRLMLuBpATnuxfggc8uAYFqoYd01f0RB3Cg0yFRdgN2._aSujkMOmxvIdj7A 7yYdXtXjd_pfCxqpgQsSJEFetlsQFc.JnfwcHTjxYOjIaTUQydswk_ZKcbdK 6htComSiuhuxdBjmGglgtArUqTcHE6gPPZ.z9N22CtacSk5ElKVzMZ0dcpCC tGlJB9uvzdaIU0xGmGD_dT5fuiUidxZirjtVabkMKLzwVYDvjwfWFyB8yEZa WWCtVm.QgNLLaYQASb6ZBbUn1vomiFSFXXBt3n7Vay_WnJmUXjt06ng0ogWk Zjg0SLw2KtGgSM8MpsQgUa5uWqIh5tcRQHijW7fsDgkloANIj97kHJcHiV23 dvXpRh.VS9hE2GL28WfabkEwbdUKDTjhWWBrTVkCyNKrBoQmVwUp7YR45h03 UJVs- Received: from [66.92.43.99] by web164004.mail.gq1.yahoo.com via HTTP; Mon, 04 Mar 2013 20:56:15 PST X-Rocket-MIMEInfo: 001.001, DQoNCi0tLSBPbiBNb24sIDMvNC8xMywgSm9zZXBoIEEuIE5hZ3ksIEpyIDxqbmFneWpyMTk3OEBnbWFpbC5jb20.IHdyb3RlOg0KDQo.aGF2aW5nIGlzc3VlcyB3aXRoIEF1ZGFjaXR5IHRyeWluZyB0byBjb21waWxlIGluIHNvdW5kdG91Y2ggcGx1Z2lucy4gSXMgdGhpcyBhbiBpc3N1ZSB3aXRoIHRoZSBwb3J0ICh0aGVyZSBpcyBubyBjb25maWcgb3B0aW9uIHRvIGRpc2FibGUgdGhpcyBiZWhhdmlvcikgb3IgaXMgaXQgYW4gdXBzdHJlYW0gaXNzdWU_DQo.LS0gWW91cnMgaW4gQ2hyaXN0LA0KDQo.Sm9zZXABMAEBAQE- X-Mailer: YahooMailClassic/15.1.4 YahooMailWebService/0.8.135.514 Message-ID: <1362459375.14849.YahooMailClassic@web164004.mail.gq1.yahoo.com> Date: Mon, 4 Mar 2013 20:56:15 -0800 (PST) From: Jeffrey Bouquet Subject: Re: audio/audacity still does not compile due to issues with soundtouch To: freebsd-ports@freebsd.org In-Reply-To: <5135779D.1000100@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 04:59:04 -0000 --- On Mon, 3/4/13, Joseph A. Nagy, Jr wrote: >having issues with Audacity trying to compile in soundtouch plugins. Is this an issue with the port (there is no config option to disable this behavior) or is it an upstream issue? >-- Yours in Christ, >Joseph A Nagy Jr FWIW soundtouch has not built here for quite a while... From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 05:02:28 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id DC4F2D2C for ; Tue, 5 Mar 2013 05:02:28 +0000 (UTC) (envelope-from jeffreybouquet@yahoo.com) Received: from nm34-vm7.bullet.mail.gq1.yahoo.com (nm34-vm7.bullet.mail.gq1.yahoo.com [98.136.216.158]) by mx1.freebsd.org (Postfix) with ESMTP id 660A5F40 for ; Tue, 5 Mar 2013 05:02:27 +0000 (UTC) Received: from [98.137.12.62] by nm34.bullet.mail.gq1.yahoo.com with NNFMP; 05 Mar 2013 05:00:10 -0000 Received: from [98.137.12.223] by tm7.bullet.mail.gq1.yahoo.com with NNFMP; 05 Mar 2013 05:00:10 -0000 Received: from [127.0.0.1] by omp1031.mail.gq1.yahoo.com with NNFMP; 05 Mar 2013 05:00:10 -0000 X-Yahoo-Newman-Property: ymail-3 X-Yahoo-Newman-Id: 208782.39016.bm@omp1031.mail.gq1.yahoo.com Received: (qmail 30212 invoked by uid 60001); 5 Mar 2013 05:00:10 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1362459609; bh=qRpIT5by/aSKo+3/P3JHVKm/au4hvhKowF9YkyAjmuI=; h=X-YMail-OSG:Received:X-Rocket-MIMEInfo:X-Mailer:Message-ID:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=beBhW5UrWAmdRQDcYGZlookOi2FXMIvMqn5a3GbbKFZzKsonmecdTDH8ukeadeA4QU0n+sfnZK1kVL57YtaSh2eK4g/jw9TQR0K8pqSRDrp/h3eyXWHFEZ/Q7jO/5fJoPPYIilFIWwkeymC7PvgC53Fy4gKprXBxkjMOnzBtg7k= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:X-Rocket-MIMEInfo:X-Mailer:Message-ID:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=ptDwkGERon5OVjXSeFTlH21HsWjy8yd4+2Y+9SkbAkPxfZnWJP8O4I49ZPyVBATPTbDFwZDSCH6IbgS5CGGD5bj81Qp7lWpucvA+c4eGD3MNfxuWAenyOwp44zO6dxejsz8ltcT0xQAXKxsKxDIbGzvKYKpN09t8twZs720ZjwA=; X-YMail-OSG: X1U3pV8VM1lhiTyjLFklXwEwOB9HS5Wjwy7bFps2yVeFw9E g9kf.J_QV_edaFlUyhv7Dujl6oSOsSfgNu6D4pfom5qRxDIQjmSFDxrw519O pjzMAHS3sEa_3KWG_G0MUfnTrFjiP2RmzhET7QDU5Uiq7raUb21GEANY1ykF .czyRgOrRw1_LsZhCWyeVRg29QQWHrnu7_ysd2eCQDgFYZgOoTa7C0cLz_vx zRzvPgoR5by91uGNghpHloJ8d2ZbNvyfptihi1jFftmLKXrN_7a4BIGkIsf8 3T1sqe4skbqmVikzwZ3k2iGjGj0OUremNM6QWrofGRVSQnfwriCg.KEPEst5 DHey42W2BbhNwW8jc7nhn7JKm8j2ZoF47EUiJ5FtTHLNo1mZLAIxAaqXgEVa 9fIHExAmKHCRwXv4Lf2LfQnv8nbbZlXNdWDn42CJOUAwjNbhyddOhZ1fNkJm AMrvGRvtFLaKswmTJEVyDbfwdMYwSjbSQxOxk0Trw6A0TqEG2B_YHf9WqGDg sKk4- Received: from [66.92.43.99] by web164006.mail.gq1.yahoo.com via HTTP; Mon, 04 Mar 2013 21:00:08 PST X-Rocket-MIMEInfo: 001.001, TWF5YmUgb2ZmIHRvcGljIHRvIHRoaXMgdGhyZWFkLCBidXQuLi4gWyByZXBseSBhdCBib3R0b21dDQoNCi0tLSBPbiBXZWQsIDIvMjcvMTMsIEFudG9uIFNodGVyZW5saWtodCA8bWV4YXNAYnJpc3RvbC5hYy51az4gd3JvdGU6DQoNCkZyb206IEFudG9uIFNodGVyZW5saWtodCA8bWV4YXNAYnJpc3RvbC5hYy51az4NClN1YmplY3Q6IFJlOiBDRlQ6IHRleGxpdmUgcG9ydHMNCg0KDQrCoMKgwqAgRGF0ZTogV2VkLCAyNyBGZWIgMjAxMyAwNzo0MTo0MSArMDkwMCAoSlNUKQ0KwqDCoMKgIFRvOiBwb3J0c0BGcmUBMAEBAQE- X-Mailer: YahooMailClassic/15.1.4 YahooMailWebService/0.8.135.514 Message-ID: <1362459608.22538.YahooMailClassic@web164006.mail.gq1.yahoo.com> Date: Mon, 4 Mar 2013 21:00:08 -0800 (PST) From: Jeffrey Bouquet Subject: Re: CFT: texlive ports To: freebsd-ports@freebsd.org In-Reply-To: <201302271511.r1RFBiHi041302@mech-cluster241.men.bris.ac.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 05:02:28 -0000 Maybe off topic to this thread, but... [ reply at bottom] --- On Wed, 2/27/13, Anton Shterenlikht wrote: From: Anton Shterenlikht Subject: Re: CFT: texlive ports =A0=A0=A0 Date: Wed, 27 Feb 2013 07:41:41 +0900 (JST) =A0=A0=A0 To: ports@FreeBSD.org =A0=A0=A0 Subject: CFT: texlive ports =A0=A0=A0 From: Hiroki Sato =A0=A0=A0=A0=A0Please try to install print/texlive-full.=A0 The total size = of the On ia64 -current I got to: gmake[3]: Entering directory `/usr/ports/print/luatex/work/texlive-20120701= -source/texk/web2c' creating link 'texlua' -> 'luatex' creating link 'texluac' -> 'luatex' gmake[3]: Leaving directory `/usr/ports/print/luatex/work/texlive-20120701-= source/texk/web2c' gmake[2]: Leaving directory `/usr/ports/print/luatex/work/texlive-20120701-= source/texk/web2c' gmake[1]: Leaving directory `/usr/ports/print/luatex/work/texlive-20120701-= source/texk/web2c' for D in /usr/local/share/texmf /usr/local/share/texmf-dist /usr/local/shar= e/texmf-local /usr/local/share/texmf-var; do=A0 if [ -r $D/ls-R ]; then /us= r/local/bin/mktexlsr $D; fi;=A0 done *** [do-fmtutil-luatex] Error code 1 Stop in /usr/ports/print/luatex. *** [build-depends] Error code 1 Stop in /usr/ports/print/texlive-full. >#=20 >Anton One of the three recent teTeX ports [that had minor version bumps] would no= t=20 install without /usr/local/bin/grep being temporarily moved to use instead = the one from base... it apparently stalled with a high CPU usage. From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 05:04:41 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id ED26BE54 for ; Tue, 5 Mar 2013 05:04:41 +0000 (UTC) (envelope-from jnagyjr1978@gmail.com) Received: from mail-gh0-f182.google.com (mail-gh0-f182.google.com [209.85.160.182]) by mx1.freebsd.org (Postfix) with ESMTP id 84283F58 for ; Tue, 5 Mar 2013 05:04:41 +0000 (UTC) Received: by mail-gh0-f182.google.com with SMTP id z15so978806ghb.27 for ; Mon, 04 Mar 2013 21:04:35 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=JN6jfQeFWjfUccDdxVOXQ7pjQO/uAXdp4AzLDSZ3ULw=; b=hAu5QdfF7aEXJUvPxzF7tSoutGRVe5H/Kzovcz/pHLx5UC9vPU6Xv/ksyPIQHHKa6e ceE0sJcIOXV5SdQlemWMVATvVgS6t7Ea8JgFvuFc8FR7zF2NkcnEzexhjDncnZOV426U EdJ9MVZY5P4BJGOibY3qQfKGP+XtscdtaZZEPDtCrK09xUQk/bOgXf83+lWEyt3jIWP6 zdmxED9c9NDGHDXwW8UzicYOUHRrPUFzIqO+n9/GugQmg2y7uQUjLHrRvrFOPk6HR6fz EKRS+BN5z3UYv4CGLIAbdOxJSDGMrhihSntxdRpZIwAa9/dxs/Al+lrYyejhfvqwWBqH uCJQ== X-Received: by 10.236.126.202 with SMTP id b50mr16599149yhi.25.1362459875505; Mon, 04 Mar 2013 21:04:35 -0800 (PST) Received: from [192.168.1.33] (vid-196.dhcp.grp10.tnmmrl.infoave.net. [204.116.254.196]) by mx.google.com with ESMTPS id e22sm4902351yhm.18.2013.03.04.21.04.33 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 04 Mar 2013 21:04:34 -0800 (PST) Message-ID: <51357CDF.8060306@gmail.com> Date: Mon, 04 Mar 2013 23:04:31 -0600 From: "Joseph A. Nagy, Jr" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: Jeffrey Bouquet Subject: Re: audio/audacity still does not compile due to issues with soundtouch References: <1362459375.14849.YahooMailClassic@web164004.mail.gq1.yahoo.com> In-Reply-To: <1362459375.14849.YahooMailClassic@web164004.mail.gq1.yahoo.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 05:04:42 -0000 On 03/04/13 22:56, Jeffrey Bouquet wrote: > > > --- On Mon, 3/4/13, Joseph A. Nagy, Jr > wrote: > >> having issues with Audacity trying to compile in soundtouch >> plugins. Is this an issue with the port (there is no config option >> to disable this behavior) or is it an upstream issue? -- Yours in >> Christ, > >> Joseph A Nagy Jr > > > FWIW soundtouch has not built here for quite a while... I have it installed (installed it a while back iirc), it's just when audacity tries to compile in whatever soundtouch-related libraries it chokes up and dies a horrible, burning death. -- Yours in Christ, Joseph A Nagy Jr "Whoever loves instruction loves knowledge, But he who hates correction is stupid." -- Proverbs 12:1 Emails are not formal business letters, whatever businesses may want. Original content CopyFree (F) under the OWL http://copyfree.org/licenses/owl/license.txt From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 05:05:16 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 63B0DF75; Tue, 5 Mar 2013 05:05:16 +0000 (UTC) (envelope-from mike.jakubik@intertainservices.com) Received: from mail.intertainservices.com (mail.intertainservices.com [69.77.177.114]) by mx1.freebsd.org (Postfix) with ESMTP id 17BCBF6A; Tue, 5 Mar 2013 05:05:15 +0000 (UTC) Received: from mail.intertainservices.com (localhost [127.0.0.1]) by mail.intertainservices.com (Postfix) with ESMTP id 0EA9F5644C; Mon, 4 Mar 2013 23:56:12 -0500 (EST) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Date: Mon, 04 Mar 2013 23:56:11 -0500 From: Mike Jakubik To: Subject: FreeBSD Port: deskutils/strigi Organization: Intertainservices Message-ID: <8c9b9e2ff70d16aff6141f6a6062bc39@intertainservices.com> X-Sender: mike.jakubik@intertainservices.com User-Agent: Roundcube Webmail/0.8.1 X-intertainservices-MailScanner-Information: Please contact the ISP for more information X-intertainservices-MailScanner-ID: 0EA9F5644C.A27F9 X-intertainservices-MailScanner: Found to be clean X-intertainservices-MailScanner-From: mike.jakubik@intertainservices.com X-Spam-Status: No Cc: kde@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 05:05:16 -0000 Hello, I am unable to compile this port with either Clang or GCC, have also reinstalled clucene but no luck. GCC 4.7 ======= [ 66%] Building CXX object libstreamanalyzer/plugins/indexers/clucenengindexer/indexdump/CMakeFiles/index2dump.dir/indexdump.cpp.o /usr/ports/deskutils/strigi/work/strigi-0.7.7/libstreamanalyzer/plugins/indexers/clucenengindexer/indexdump/indexdump.cpp: In function 'void indexdump(const char*)': /usr/ports/deskutils/strigi/work/strigi-0.7.7/libstreamanalyzer/plugins/indexers/clucenengindexer/indexdump/indexdump.cpp:64:48: warning: 'lucene::document::Document* lucene::index::IndexReader::document(int32_t)' is deprecated (declared at /usr/local/include/CLucene/index/IndexReader.h:515) [-Wdeprecated-declarations] [ 66%] Building CXX object libstreamanalyzer/plugins/indexers/clucenengindexer/indexdump/CMakeFiles/index2dump.dir/__/tcharutils.cpp.o Linking CXX executable index2dump /usr/local/bin/ld: CMakeFiles/index2dump.dir/indexdump.cpp.o: undefined reference to symbol '_ZN6lucene4util14atomic_threads16atomic_decrementEPj' /usr/local/bin/ld: note: '_ZN6lucene4util14atomic_threads16atomic_decrementEPj' is defined in DSO /usr/local/lib/libclucene-shared.so.1 so try adding it to the linker command line /usr/local/lib/libclucene-shared.so.1: could not read symbols: Invalid operation collect2: error: ld returned 1 exit status *** [libstreamanalyzer/plugins/indexers/clucenengindexer/indexdump/index2dump] Error code 1 Clang 3.2 ========= /usr/ports/deskutils/strigi/work/strigi-0.7.7/libstreamanalyzer/plugins/indexers/clucenengindexer/indexdump/indexdump.cpp:64:38: warning: 'document' is deprecated [-Wdeprecated-declarations] Document* doc = indexreader->document(i); ^ /usr/local/include/CLucene/index/IndexReader.h:515:69: note: 'document' declared here _CL_DEPRECATED( document(i, document) ) CL_NS(document)::Document* document(const int32_t n); ^ 1 warning generated. [ 66%] Building CXX object libstreamanalyzer/plugins/indexers/clucenengindexer/indexdump/CMakeFiles/index2dump.dir/__/tcharutils.cpp.o Linking CXX executable index2dump /usr/local/lib//libclucene-core.so: undefined reference to `std::__detail::_List_node_base::_M_unhook()@GLIBCXX_3.4.15' /usr/local/lib//libclucene-core.so: undefined reference to `std::__detail::_List_node_base::_M_hook(std::__detail::_List_node_base*)@GLIBCXX_3.4.15' clang++: error: linker command failed with exit code 1 (use -v to see invocation) *** [libstreamanalyzer/plugins/indexers/clucenengindexer/indexdump/index2dump] Error code 1 My make.conf ============ KERNCONF=FREEBSD NO_INET6=true NO_PROFILE=true NO_LIB32=true CPUTYPE?=native CFLAGS+=-mtune=native -maes -mavx .if !defined(CC) || ${CC} == "cc" CC=clang .endif .if !defined(CXX) || ${CXX} == "c++" CXX=clang++ .endif .if !defined(CPP) || ${CPP} == "cpp" CPP=clang-cpp .endif # Don't die on warnings NO_WERROR= WERROR= .if !empty(.CURDIR:M/usr/ports/*) && exists(/usr/local/bin/gcc47) CC=gcc47 CXX=g++47 CPP=cpp47 #CFLAGS+=-flto .endif # added by use.perl 2013-03-01 01:53:11 PERL_VERSION=5.14.2 Thanks. From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 05:06:20 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id E955A197 for ; Tue, 5 Mar 2013 05:06:20 +0000 (UTC) (envelope-from jnagyjr1978@gmail.com) Received: from mail-yh0-x22a.google.com (mail-yh0-x22a.google.com [IPv6:2607:f8b0:4002:c01::22a]) by mx1.freebsd.org (Postfix) with ESMTP id B2806F8C for ; Tue, 5 Mar 2013 05:06:20 +0000 (UTC) Received: by mail-yh0-f42.google.com with SMTP id w49so946628yhw.1 for ; Mon, 04 Mar 2013 21:06:20 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=Wd7PeocIyz0Njr+Gbp4kCvUJDfa1BKd4sZIbuahZRbI=; b=X9dfOWNYgRbGKS/aENUbOWNtLvelfJgDl1i0ypcnhqCy+xzDJJ/MJAORUE+O0m3ez7 74nwt1R8ounIXlBD7O0HbOx96FlIc1g3zJ2HV6g1hZfY5j0AVfvsxdsAJYceWrs0NHUZ YUCuU0D/jfJzz4tt3O/D9I4kbhymtamgd7/mnuNrty1bFAn3+3aqHmuBXfvpJ5x043Vr mpZlHl/xuXFTJmp0A+87ky1j4trtUgQq6SIgAprVg+G+zVtf7JK+E0VFV8HZMr8rXTn2 COA8g9ow37lOtD9j6XIycyEg3aej16W2Ci8knSmSWVQoy4mS5d4BTg19tRpFPFsTyVoo wYDw== X-Received: by 10.236.137.107 with SMTP id x71mr16138905yhi.2.1362459980266; Mon, 04 Mar 2013 21:06:20 -0800 (PST) Received: from [192.168.1.33] (vid-196.dhcp.grp10.tnmmrl.infoave.net. [204.116.254.196]) by mx.google.com with ESMTPS id b62sm4899172yhe.24.2013.03.04.21.06.18 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 04 Mar 2013 21:06:19 -0800 (PST) Message-ID: <51357D48.9040308@gmail.com> Date: Mon, 04 Mar 2013 23:06:16 -0600 From: "Joseph A. Nagy, Jr" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: xxjack12xx@gmail.com, "Ports @ FreeBSD" Subject: Re: audio/audacity still does not compile due to issues with soundtouch References: <5135779D.1000100@gmail.com> In-Reply-To: <5135779D.1000100@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 05:06:21 -0000 On 03/04/13 22:42, Joseph A. Nagy, Jr wrote: > Maintainer cc'd > > I am still having issues with Audacity trying to compile in soundtouch > plugins. Is this an issue with the port (there is no config option to > disable this behavior) or is it an upstream issue? Full error messages follow: effects/SoundTouchEffect.cpp:209:31: error: cannot initialize a parameter of type 'const SAMPLETYPE *' (aka 'const short *') with an lvalue of type 'float *' mSoundTouch->putSamples(buffer, block); ^~~~~~ /usr/local/include/soundtouch/SoundTouch.h:237:31: note: passing argument to parameter 'samples' here const SAMPLETYPE *samples, ///< Pointer to sample buffer. ^ effects/SoundTouchEffect.cpp:215:23: error: no matching member function for call to 'receiveSamples' mSoundTouch->receiveSamples(buffer2, outputCount); ~~~~~~~~~~~~~^~~~~~~~~~~~~~ /usr/local/include/soundtouch/FIFOSamplePipe.h:190:18: note: candidate function not viable: no known conversion from 'float *' to 'SAMPLETYPE *' (aka 'short *') for 1st argument; virtual uint receiveSamples(SAMPLETYPE *outBuffer, ///< Buffer where to copy output samples. ^ /usr/local/include/soundtouch/FIFOSamplePipe.h:203:18: note: candidate function not viable: requires 1 argument, but 2 were provided virtual uint receiveSamples(uint maxSamples ///< Remove this many samples from the beginning of pipe. ^ effects/SoundTouchEffect.cpp:234:20: error: no matching member function for call to 'receiveSamples' mSoundTouch->receiveSamples(buffer2, outputCount); ~~~~~~~~~~~~~^~~~~~~~~~~~~~ /usr/local/include/soundtouch/FIFOSamplePipe.h:190:18: note: candidate function not viable: no known conversion from 'float *' to 'SAMPLETYPE *' (aka 'short *') for 1st argument; virtual uint receiveSamples(SAMPLETYPE *outBuffer, ///< Buffer where to copy output samples. ^ /usr/local/include/soundtouch/FIFOSamplePipe.h:203:18: note: candidate function not viable: requires 1 argument, but 2 were provided virtual uint receiveSamples(uint maxSamples ///< Remove this many samples from the beginning of pipe. ^ effects/SoundTouchEffect.cpp:307:31: error: cannot initialize a parameter of type 'const SAMPLETYPE *' (aka 'const short *') with an lvalue of type 'float *' mSoundTouch->putSamples(soundTouchBuffer, blockSize); ^~~~~~~~~~~~~~~~ /usr/local/include/soundtouch/SoundTouch.h:237:31: note: passing argument to parameter 'samples' here const SAMPLETYPE *samples, ///< Pointer to sample buffer. ^ effects/SoundTouchEffect.cpp:373:17: error: no matching member function for call to 'receiveSamples' mSoundTouch->receiveSamples(outputSoundTouchBuffer, outputCount); ~~~~~~~~~~~~~^~~~~~~~~~~~~~ /usr/local/include/soundtouch/FIFOSamplePipe.h:190:18: note: candidate function not viable: no known conversion from 'float *' to 'SAMPLETYPE *' (aka 'short *') for 1st argument; virtual uint receiveSamples(SAMPLETYPE *outBuffer, ///< Buffer where to copy output samples. ^ /usr/local/include/soundtouch/FIFOSamplePipe.h:203:18: note: candidate function not viable: requires 1 argument, but 2 were provided virtual uint receiveSamples(uint maxSamples ///< Remove this many samples from the beginning of pipe. ^ 12 warnings and 5 errors generated. gmake[1]: *** [effects/SoundTouchEffect.o] Error 1 gmake[1]: Leaving directory `/usr/ports/audio/audacity/work/audacity-src-2.0.3/src' gmake: *** [audacity] Error 2 *** [do-build] Error code 1 Stop in /usr/ports/audio/audacity. *** [build] Error code 1 Stop in /usr/ports/audio/audacity. ===>>> make failed for audio/audacity ===>>> Aborting update Terminated ===>>> You can restart from the point of failure with this command line: portmaster audio/audacity -- Yours in Christ, Joseph A Nagy Jr "Whoever loves instruction loves knowledge, But he who hates correction is stupid." -- Proverbs 12:1 Emails are not formal business letters, whatever businesses may want. Original content CopyFree (F) under the OWL http://copyfree.org/licenses/owl/license.txt From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 05:07:39 2013 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id D62A4241 for ; Tue, 5 Mar 2013 05:07:39 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from mail.allbsd.org (gatekeeper.allbsd.org [IPv6:2001:2f0:104:e001::32]) by mx1.freebsd.org (Postfix) with ESMTP id 5792AFA7 for ; Tue, 5 Mar 2013 05:07:39 +0000 (UTC) Received: from alph.d.allbsd.org (p2175-ipbf701funabasi.chiba.ocn.ne.jp [122.25.209.175]) (authenticated bits=128) by mail.allbsd.org (8.14.5/8.14.5) with ESMTP id r2557L15028004 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 5 Mar 2013 14:07:31 +0900 (JST) (envelope-from hrs@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) (authenticated bits=0) by alph.d.allbsd.org (8.14.5/8.14.5) with ESMTP id r2557JTf097019; Tue, 5 Mar 2013 14:07:21 +0900 (JST) (envelope-from hrs@FreeBSD.org) Date: Tue, 05 Mar 2013 14:07:15 +0900 (JST) Message-Id: <20130305.140715.2179672825373543869.hrs@allbsd.org> To: jeffreybouquet@yahoo.com Subject: Re: CFT: texlive ports From: Hiroki Sato In-Reply-To: <1362459608.22538.YahooMailClassic@web164006.mail.gq1.yahoo.com> References: <201302271511.r1RFBiHi041302@mech-cluster241.men.bris.ac.uk> <1362459608.22538.YahooMailClassic@web164006.mail.gq1.yahoo.com> X-PGPkey-fingerprint: BDB3 443F A5DD B3D0 A530 FFD7 4F2C D3D8 2793 CF2D X-Mailer: Mew version 6.5 on Emacs 23.4 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Multipart/Signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="--Security_Multipart(Tue_Mar__5_14_07_15_2013_973)--" Content-Transfer-Encoding: 7bit X-Virus-Scanned: clamav-milter 0.97.4 at gatekeeper.allbsd.org X-Virus-Status: Clean X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (mail.allbsd.org [133.31.130.32]); Tue, 05 Mar 2013 14:07:31 +0900 (JST) X-Spam-Status: No, score=-93.3 required=13.0 tests=CONTENT_TYPE_PRESENT, ONLY1HOPDIRECT,RCVD_IN_PBL,RCVD_IN_RP_RNBL,SAMEHELOBY2HOP,USER_IN_WHITELIST autolearn=no version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on gatekeeper.allbsd.org Cc: freebsd-ports@FreeBSD.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 05:07:39 -0000 ----Security_Multipart(Tue_Mar__5_14_07_15_2013_973)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Jeffrey Bouquet wrote in <1362459608.22538.YahooMailClassic@web164006.mail.gq1.yahoo.com>: je> Maybe off topic to this thread, but... [ reply at bottom] ... je> One of the three recent teTeX ports [that had minor version bumps] would not je> install without /usr/local/bin/grep being temporarily moved to use instead the je> one from base... it apparently stalled with a high CPU usage. Do you have a log when the installation failed? -- Hiroki ----Security_Multipart(Tue_Mar__5_14_07_15_2013_973)-- Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (FreeBSD) iEYEABECAAYFAlE1fYMACgkQTyzT2CeTzy0GIACgxoOWstJWtUDrdR4BUUfjENLd R0YAn1unh/ARV/R81o4AK/1oZvaInQkO =sC6e -----END PGP SIGNATURE----- ----Security_Multipart(Tue_Mar__5_14_07_15_2013_973)---- From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 07:20:47 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id D84084AD for ; Tue, 5 Mar 2013 07:20:47 +0000 (UTC) (envelope-from cvs-src@yandex.ru) Received: from forward14.mail.yandex.net (forward14.mail.yandex.net [IPv6:2a02:6b8:0:801::4]) by mx1.freebsd.org (Postfix) with ESMTP id 1F5CA6B5 for ; Tue, 5 Mar 2013 07:20:47 +0000 (UTC) Received: from smtp14.mail.yandex.net (smtp14.mail.yandex.net [95.108.131.192]) by forward14.mail.yandex.net (Yandex) with ESMTP id EC868198094D for ; Tue, 5 Mar 2013 11:20:44 +0400 (MSK) Received: from smtp14.mail.yandex.net (localhost [127.0.0.1]) by smtp14.mail.yandex.net (Yandex) with ESMTP id D404F1B6077F for ; Tue, 5 Mar 2013 11:20:44 +0400 (MSK) Received: from ip-86-110-189-214.spark-rostov.ru (ip-86-110-189-214.spark-rostov.ru [86.110.189.214]) by smtp14.mail.yandex.net (nwsmtp/Yandex) with ESMTP id KhUuhPC4-KiU8pOI5; Tue, 5 Mar 2013 11:20:44 +0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1362468044; bh=oV6bh4yGOh32XmvgYt4HCXlRmE2OoTPN/mdZoDfBkRs=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:Subject: Content-Type:Content-Transfer-Encoding; b=JCeQ+DS2F0IiWveXG5PoPbJa4r4SZ9rWs99j5ZHX5wis0bCNmLwKfbfO/pvMaFT6U MiOw9IGJnSEflIYUJ1q+1TwVmk9lP4h9tJtW2AG0EYOQXOFLtolsd7nhjXdeOis/0k K+KIOasZ1PamiHI/VG+szzoPf3FOhVBDgH33i0k8= Message-ID: <51359CC6.2020103@yandex.ru> Date: Tue, 05 Mar 2013 11:20:38 +0400 From: Ruslan Makhmatkhanov User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130225 Thunderbird/17.0.3 MIME-Version: 1.0 To: FreeBSD Ports Mailing List Subject: setuptools replaced with distribute Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 07:20:47 -0000 Ports users, before reporting any breakages, please note that some intervention is required. Here is UPDATING:20130305 entry: """ devel/py-setuptools was replaced with devel/py-distribute. Please do the following according to package manager used. py-setuptools port will be removed shortly. # portmaster -o devel/py-distribute devel/py-setuptools or # portupgrade -fo devel/py-distribute devel/py-setuptools or # pkg set -o devel/py-setuptools:devel/py-distribute """ -- Regards, Ruslan Tinderboxing kills... the drives. From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 07:44:05 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id B2062A5B; Tue, 5 Mar 2013 07:44:05 +0000 (UTC) (envelope-from jnagyjr1978@gmail.com) Received: from mail-ie0-x233.google.com (mail-ie0-x233.google.com [IPv6:2607:f8b0:4001:c03::233]) by mx1.freebsd.org (Postfix) with ESMTP id 7F5BF75E; Tue, 5 Mar 2013 07:44:05 +0000 (UTC) Received: by mail-ie0-f179.google.com with SMTP id k11so7327029iea.24 for ; Mon, 04 Mar 2013 23:44:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:content-type:content-transfer-encoding; bh=kMerKcq0gqtLPXnOj6ncQRUpExA60yisIlsTq6KViJE=; b=txNGkdtutDHF06P28RFvLj2Av35/wm6hm+DJve++E7Ee8D91DrKs5vP289DAip4fTG veaD8P729WHoi/Nw+AZxKdcwq/4IRcobJkyeOdbt5ju4+QztDNSYka7wPLbDucj7cgN5 glOoY14vU2K1Cz96I3c479Hms2gRchPXhsmoh2+5+syee2FDa6JcmZiTK7zoLAQE5s2T TOSdW8bafXaVnwcwuXStATnfBkEidS7zQjyvaSykQu+odpr0h1DUvae894rE+QzYSuT/ bfXVbGN6JElfGFkcQ5naDqd6OU3rdgq1pzVJKd+YbKgDGMOty9pQwkQCTMd7s5MmUCKT KZhA== X-Received: by 10.50.187.225 with SMTP id fv1mr5346794igc.74.1362469445162; Mon, 04 Mar 2013 23:44:05 -0800 (PST) Received: from [192.168.1.33] (vid-196.dhcp.grp10.tnmmrl.infoave.net. [204.116.254.196]) by mx.google.com with ESMTPS id ih1sm14384475igc.3.2013.03.04.23.44.02 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 04 Mar 2013 23:44:04 -0800 (PST) Message-ID: <5135A23F.5020601@gmail.com> Date: Tue, 05 Mar 2013 01:43:59 -0600 From: "Joseph A. Nagy, Jr" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: "Ports @ FreeBSD" Subject: databases/py-sqlite3 breaks due to update in libffi Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: python@FreeBSD.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 07:44:05 -0000 python@ CC'd as listed maintainer for py-sqlite3, please reply-all or make sure I am CC'd in all responses as I'm not subscribed to python@. ===>>> www/firefox 2/3 >> py27-sqlite3-2.7.3_2 (14/14) ===> Cleaning for py27-sqlite3-2.7.3_3 ===> py27-sqlite3-2.7.3_3 depends on file: /usr/local/sbin/pkg - found ===> Extracting for py27-sqlite3-2.7.3_3 => SHA256 Checksum OK for python/Python-2.7.3.tar.xz. ===> Patching for py27-sqlite3-2.7.3_3 ===> py27-sqlite3-2.7.3_3 depends on file: /usr/local/bin/python2.7 - found ===> py27-sqlite3-2.7.3_3 depends on shared library: sqlite3 - found ===> Configuring for py27-sqlite3-2.7.3_3 Traceback (most recent call last): File "setup.py", line 36, in import ctypes File "/usr/local/lib/python2.7/ctypes/__init__.py", line 10, in from _ctypes import Union, Structure, Array ImportError: Shared object "libffi.so.5" not found, required by "_ctypes.so" *** [do-configure] Error code 1 Stop in /usr/ports/databases/py-sqlite3. ===>>> make failed for databases/py-sqlite3 ===>>> Aborting update ===>>> Update for py27-sqlite3-2.7.3_2 failed ===>>> Aborting update ===>>> Update for www/firefox failed ===>>> Aborting update The last entry in /usr/ports/UPDATING regarding libffi is 20130128: AFFECTS: users of libffi AUTHOR jkim@FreeBSD.org libffi has been updated to 3.0.11. Please rebuild all ports that depends on it: If you use portmaster: portmaster -w -r libffi If you use portupgrade: portupgrade -fr devel/libffi If you use pkgng with binary packages: pkg install -fR devel/libffi I don't recall even having libffi at that time, nor have I had problem until now, though this problem wouldn't be solved by the update instructions above. -- Yours in Christ, Joseph A Nagy Jr "Whoever loves instruction loves knowledge, But he who hates correction is stupid." -- Proverbs 12:1 Emails are not formal business letters, whatever businesses may want. Original content CopyFree (F) under the OWL http://copyfree.org/licenses/owl/license.txt From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 08:27:48 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 5868A493; Tue, 5 Mar 2013 08:27:48 +0000 (UTC) (envelope-from cvs-src@yandex.ru) Received: from forward13.mail.yandex.net (forward13.mail.yandex.net [IPv6:2a02:6b8:0:801::3]) by mx1.freebsd.org (Postfix) with ESMTP id C4A818EC; Tue, 5 Mar 2013 08:27:47 +0000 (UTC) Received: from smtp13.mail.yandex.net (smtp13.mail.yandex.net [95.108.130.68]) by forward13.mail.yandex.net (Yandex) with ESMTP id 3D295141478; Tue, 5 Mar 2013 12:27:46 +0400 (MSK) Received: from smtp13.mail.yandex.net (localhost [127.0.0.1]) by smtp13.mail.yandex.net (Yandex) with ESMTP id EA5F5E4057C; Tue, 5 Mar 2013 12:27:45 +0400 (MSK) Received: from ip-86-110-189-214.spark-rostov.ru (ip-86-110-189-214.spark-rostov.ru [86.110.189.214]) by smtp13.mail.yandex.net (nwsmtp/Yandex) with ESMTP id Rj9GAEAx-Rj9q1te9; Tue, 5 Mar 2013 12:27:45 +0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1362472065; bh=eh+49xgB4UWCmMsbPhfynBWpXad7OskHX2JcDwoR8W8=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:CC:Subject: References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=V8+ahp0ERHCZacilgnCVQ+LzsUxEW0ZN9SHr/KtpnGgZQFKgO2a8ePwyWPXLUHJyB lx/K8DFJaA336MA3eBA7TchcqDBhNqr+3uz7oAr05XiTl8yZJGGzB5OeA/zkazLpQG jpnopJeEz3esupoC2TUn+XcB8G4UktUxa1iy5tuE= Message-ID: <5135AC7C.2080809@yandex.ru> Date: Tue, 05 Mar 2013 12:27:40 +0400 From: Ruslan Makhmatkhanov User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130225 Thunderbird/17.0.3 MIME-Version: 1.0 To: "Joseph A. Nagy, Jr" Subject: Re: databases/py-sqlite3 breaks due to update in libffi References: <5135A23F.5020601@gmail.com> In-Reply-To: <5135A23F.5020601@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: python@FreeBSD.org, "Ports @ FreeBSD" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 08:27:48 -0000 Hi, Joseph A. Nagy, Jr wrote on 05.03.2013 11:43: > python@ CC'd as listed maintainer for py-sqlite3, please reply-all or > make sure I am CC'd in all responses as I'm not subscribed to python@. I can't reproduce. I had libffi-3.0.11 and just updated it to 3.0.12. Then tried to build py-sqlite3 - no errors. Checked with pkg_libchk - no port that missing old libffi library. So I believe that you failed to follow UPDATING:20130128 in it's time. Right now you may rebuild python to fix that, and check your installed ports with ``pkg_libchk -q'' (from sysutils/bsdadminscripts) to get the list of ports you need to rebuild. > > ===>>> www/firefox 2/3 >> py27-sqlite3-2.7.3_2 (14/14) > > ===> Cleaning for py27-sqlite3-2.7.3_3 > ===> py27-sqlite3-2.7.3_3 depends on file: /usr/local/sbin/pkg - found > ===> Extracting for py27-sqlite3-2.7.3_3 > => SHA256 Checksum OK for python/Python-2.7.3.tar.xz. > ===> Patching for py27-sqlite3-2.7.3_3 > ===> py27-sqlite3-2.7.3_3 depends on file: /usr/local/bin/python2.7 - > found > ===> py27-sqlite3-2.7.3_3 depends on shared library: sqlite3 - found > ===> Configuring for py27-sqlite3-2.7.3_3 > Traceback (most recent call last): > File "setup.py", line 36, in > import ctypes > File "/usr/local/lib/python2.7/ctypes/__init__.py", line 10, in > from _ctypes import Union, Structure, Array > ImportError: Shared object "libffi.so.5" not found, required by > "_ctypes.so" > *** [do-configure] Error code 1 > > Stop in /usr/ports/databases/py-sqlite3. > > ===>>> make failed for databases/py-sqlite3 > ===>>> Aborting update > > ===>>> Update for py27-sqlite3-2.7.3_2 failed > ===>>> Aborting update > > ===>>> Update for www/firefox failed > ===>>> Aborting update > > The last entry in /usr/ports/UPDATING regarding libffi is > 20130128: > AFFECTS: users of libffi > AUTHOR jkim@FreeBSD.org > > libffi has been updated to 3.0.11. Please rebuild all ports that > depends on it: > > If you use portmaster: > portmaster -w -r libffi > If you use portupgrade: > portupgrade -fr devel/libffi > If you use pkgng with binary packages: > pkg install -fR devel/libffi > > I don't recall even having libffi at that time, nor have I had problem > until now, though this problem wouldn't be solved by the update > instructions above. -- Regards, Ruslan Tinderboxing kills... the drives. From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 08:30:21 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 233FA54C; Tue, 5 Mar 2013 08:30:21 +0000 (UTC) (envelope-from jnagyjr1978@gmail.com) Received: from mail-ye0-f176.google.com (mail-ye0-f176.google.com [209.85.213.176]) by mx1.freebsd.org (Postfix) with ESMTP id D0A21906; Tue, 5 Mar 2013 08:30:20 +0000 (UTC) Received: by mail-ye0-f176.google.com with SMTP id m9so894060yen.7 for ; Tue, 05 Mar 2013 00:30:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=y207y8tNl6QWlpBiVtXSJ2kTfrCHZBMkr7p7LSb8Lfc=; b=ESqYv0MIq4HU5FACD4v9SRSmCiAu02nWI0Sp9fDcHJ8A7qbB3EC6VJMwkiR/Xz5foL IAaeFt62Iu0HtC8bSOeSTbBKmSUpLaeyNY8jkfj/S6SIkQuh2qhlVXUNS7oxIVAWJp3k alMTY+2YZsTKFsxaZB6CIQt6eTyxTdqQ5tlZnM5rQwe83d4wIZra0l6+Z7Lyor4QTVfY mnAWrQvDZ754N3cxcigILWzav0N9KxNNQ5Ns3Ue/0J075eS6qnFvcM4dP0UiwIpiOOvY qHQI5NoR62GZVzh1J6xXp5bYbfpnyD2kzYPVQgldtRQDA05jXrG8zN3zff+jOYhs98Ge zgmw== X-Received: by 10.236.138.109 with SMTP id z73mr16749013yhi.72.1362472213944; Tue, 05 Mar 2013 00:30:13 -0800 (PST) Received: from [192.168.1.33] (vid-196.dhcp.grp10.tnmmrl.infoave.net. [204.116.254.196]) by mx.google.com with ESMTPS id w2sm5461182yhh.7.2013.03.05.00.30.11 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 05 Mar 2013 00:30:12 -0800 (PST) Message-ID: <5135AD11.3060809@gmail.com> Date: Tue, 05 Mar 2013 02:30:09 -0600 From: "Joseph A. Nagy, Jr" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: Ruslan Makhmatkhanov Subject: Re: databases/py-sqlite3 breaks due to update in libffi References: <5135A23F.5020601@gmail.com> <5135AC7C.2080809@yandex.ru> In-Reply-To: <5135AC7C.2080809@yandex.ru> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: python@FreeBSD.org, "Ports @ FreeBSD" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 08:30:21 -0000 On 03/05/13 02:27, Ruslan Makhmatkhanov wrote: > Hi, > > Joseph A. Nagy, Jr wrote on 05.03.2013 11:43: >> python@ CC'd as listed maintainer for py-sqlite3, please reply-all or >> make sure I am CC'd in all responses as I'm not subscribed to python@. > > I can't reproduce. I had libffi-3.0.11 and just updated it to 3.0.12. > Then tried to build py-sqlite3 - no errors. Checked with pkg_libchk - no > port that missing old libffi library. So I believe that you failed to > follow UPDATING:20130128 in it's time. > Right now you may rebuild python to fix that, and check your installed > ports with ``pkg_libchk -q'' (from sysutils/bsdadminscripts) to get the > list of ports you need to rebuild. I've rebuilt python2.7 several times (trying to figure out why gpodder won't launch anymore), but I will give it a go according to the UPDATING instructions as that may very well be the case. Thanks for the response. -- Yours in Christ, Joseph A Nagy Jr "Whoever loves instruction loves knowledge, But he who hates correction is stupid." -- Proverbs 12:1 Emails are not formal business letters, whatever businesses may want. Original content CopyFree (F) under the OWL http://copyfree.org/licenses/owl/license.txt From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 08:32:58 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 3DED6659 for ; Tue, 5 Mar 2013 08:32:58 +0000 (UTC) (envelope-from mexas@bristol.ac.uk) Received: from dirg.bris.ac.uk (dirg.bris.ac.uk [137.222.10.102]) by mx1.freebsd.org (Postfix) with ESMTP id 0749C927 for ; Tue, 5 Mar 2013 08:32:57 +0000 (UTC) Received: from ncsc.bris.ac.uk ([137.222.10.41]) by dirg.bris.ac.uk with esmtp (Exim 4.72) (envelope-from ) id 1UCnIp-0005NF-8q; Tue, 05 Mar 2013 08:32:51 +0000 Received: from mech-cluster241.men.bris.ac.uk ([137.222.187.241]) by ncsc.bris.ac.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1UCnIo-0000HL-MI; Tue, 05 Mar 2013 08:32:50 +0000 Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.6/8.14.6) with ESMTP id r258WorW036435; Tue, 5 Mar 2013 08:32:50 GMT (envelope-from mexas@mech-cluster241.men.bris.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.6/8.14.6/Submit) id r258WoiP036431; Tue, 5 Mar 2013 08:32:50 GMT (envelope-from mexas) Date: Tue, 5 Mar 2013 08:32:50 GMT From: Anton Shterenlikht Message-Id: <201303050832.r258WoiP036431@mech-cluster241.men.bris.ac.uk> To: freebsd-ports@freebsd.org, jeffreybouquet@yahoo.com Subject: Re: CFT: texlive ports In-Reply-To: <1362459608.22538.YahooMailClassic@web164006.mail.gq1.yahoo.com> X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: mexas@bristol.ac.uk List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 08:32:58 -0000 Date: Mon, 4 Mar 2013 21:00:08 -0800 (PST) From: Jeffrey Bouquet Subject: Re: CFT: texlive ports To: freebsd-ports@freebsd.org One of the three recent teTeX ports [that had minor version bumps] would not install without /usr/local/bin/grep being temporarily moved to use instead the one from base... it apparently stalled with a high CPU usage. Are you talking about ia64 specifically? Anyway, I don't think so: TZAV> pkg version -vX teT teTeX-3.0_7 = up-to-date with port teTeX-base-3.0_24 = up-to-date with port teTeX-texmf-3.0_9 = up-to-date with port TZAV> Updated just fine with portmaster, with no manual intervention. Anton From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 08:47:42 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 6FBFDB36; Tue, 5 Mar 2013 08:47:42 +0000 (UTC) (envelope-from jnagyjr1978@gmail.com) Received: from mail-gg0-x230.google.com (mail-gg0-x230.google.com [IPv6:2607:f8b0:4002:c02::230]) by mx1.freebsd.org (Postfix) with ESMTP id F1F929C5; Tue, 5 Mar 2013 08:47:41 +0000 (UTC) Received: by mail-gg0-f176.google.com with SMTP id q6so952989ggc.21 for ; Tue, 05 Mar 2013 00:47:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; bh=dBwMTv+uQPp8a4f3TZ6cS/FL7oKY4f58kHGv3YXzgPI=; b=v90CWvfyWFOx3k7nRKa+Ps1E5UadbjqzAGedfL28RvwfHDIEftkS8gPx2ZWz0TwSo7 y5ASxSIFqKP+Sw/VLPib6ismDaAfCEETMpbYK5C8iwyK93z9rRR+Cf17oJtzyZhQHDJO yhsTolYhQOVCsemcJpDPNhT0DVSZu0OG9G6pX+dC27xpv4KoxEmI/gJleqBb9Mn+geoH Fg18Sd+EiEFnpVWd6FI77CjtQDYOyLk3XbQDPBGDiOWA9sLQWcBfUjiryE1uFPGOXR56 cchXzK+Dw9KnlqO8LfNAw8l+/JG4pMtn0hCnz79IhQXbQfDydt90GCmZrtzcWQMzMb6E FmXg== X-Received: by 10.236.46.229 with SMTP id r65mr16909624yhb.58.1362473260548; Tue, 05 Mar 2013 00:47:40 -0800 (PST) Received: from [192.168.1.33] (vid-196.dhcp.grp10.tnmmrl.infoave.net. [204.116.254.196]) by mx.google.com with ESMTPS id c10sm5485434yhl.27.2013.03.05.00.47.38 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 05 Mar 2013 00:47:39 -0800 (PST) Message-ID: <5135B127.4040500@gmail.com> Date: Tue, 05 Mar 2013 02:47:35 -0600 From: "Joseph A. Nagy, Jr" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: "Ports @ FreeBSD" , lx@FreeBSD.org Subject: graphics/shotwell fails to build Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 08:47:42 -0000 Unable to build graphics/shotwell, cc'd maintainer. /usr/bin/ld: warning: cannot find entry symbol xport-dynamic; defaulting to 00000000004726b0 /usr/local/lib/libraw.so: undefined reference to `std::ctype::_M_widen_init() const@GLIBCXX_3.4.11' /usr/local/lib/libraw.so: undefined reference to `GOMP_parallel_start' /usr/local/lib/libraw.so: undefined reference to `GOMP_loop_dynamic_start' /usr/local/lib/libraw.so: undefined reference to `GOMP_parallel_end' /usr/local/lib/libraw.so: undefined reference to `omp_get_num_threads' /usr/local/lib/libraw.so: undefined reference to `GOMP_loop_end' /usr/local/lib/libraw.so: undefined reference to `GOMP_barrier' /usr/local/lib/libraw.so: undefined reference to `omp_get_thread_num' /usr/local/lib/libraw.so: undefined reference to `GOMP_loop_dynamic_next' clang: error: linker command failed with exit code 1 (use -v to see invocation) gmake: *** [shotwell] Error 1 *** [do-build] Error code 1 Stop in /usr/ports/graphics/shotwell. ===>>> make failed for graphics/shotwell ===>>> Aborting update Terminated Terminated Terminated Terminated Terminated Terminated Terminated Terminated Terminated Terminated Terminated ===>>> You can restart from the point of failure with this command line: portmaster graphics/shotwell Last time I tried with gcc it exited without building so I'm unsure how to proceed. -- Yours in Christ, Joseph A Nagy Jr "Whoever loves instruction loves knowledge, But he who hates correction is stupid." -- Proverbs 12:1 Emails are not formal business letters, whatever businesses may want. Original content CopyFree (F) under the OWL http://copyfree.org/licenses/owl/license.txt From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 11:59:43 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 633192F3 for ; Tue, 5 Mar 2013 11:59:43 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from tensor.andric.com (tensor.andric.com [87.251.56.140]) by mx1.freebsd.org (Postfix) with ESMTP id 28F6B925 for ; Tue, 5 Mar 2013 11:59:42 +0000 (UTC) Received: from [IPv6:2001:7b8:3a7:0:204:4bff:fe01:de8a] (spaceball.andric.com [IPv6:2001:7b8:3a7:0:204:4bff:fe01:de8a]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id 6BA9F5C43; Tue, 5 Mar 2013 12:59:36 +0100 (CET) Message-ID: <5135DE27.9050508@FreeBSD.org> Date: Tue, 05 Mar 2013 12:59:35 +0100 From: Dimitry Andric Organization: The FreeBSD Project User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:19.0) Gecko/20130117 Thunderbird/19.0 MIME-Version: 1.0 To: "Joseph A. Nagy, Jr" , xxjack12xx@gmail.com, "Ports @ FreeBSD" Subject: Re: audio/audacity still does not compile due to issues with soundtouch References: <5135779D.1000100@gmail.com> <51357D48.9040308@gmail.com> In-Reply-To: <51357D48.9040308@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 11:59:43 -0000 On 2013-03-05 06:06, Joseph A. Nagy, Jr wrote: > On 03/04/13 22:42, Joseph A. Nagy, Jr wrote: >> I am still having issues with Audacity trying to compile in soundtouch >> plugins. Is this an issue with the port (there is no config option to >> disable this behavior) or is it an upstream issue? > > Full error messages follow: > effects/SoundTouchEffect.cpp:209:31: error: cannot initialize a > parameter of type 'const SAMPLETYPE *' > (aka 'const short *') with an lvalue of type 'float *' > mSoundTouch->putSamples(buffer, block); > ^~~~~~ > /usr/local/include/soundtouch/SoundTouch.h:237:31: note: passing > argument to parameter 'samples' here > const SAMPLETYPE *samples, ///< Pointer to sample buffer. > ^ It looks like you have configured the Soundtouch port with the INTEGER_SAMPLES option. In that case, Soundtouch defines SAMPLETYPE to short, and apparently Audacity is hardcoded to expect float samples instead. Maybe this should be reported to Audacity, but I can imagine they would say "Soundtouch must be configured with float samples". :-) From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 12:03:25 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 575C776F; Tue, 5 Mar 2013 12:03:25 +0000 (UTC) (envelope-from jnagyjr1978@gmail.com) Received: from mail-ia0-x22b.google.com (mail-ia0-x22b.google.com [IPv6:2607:f8b0:4001:c02::22b]) by mx1.freebsd.org (Postfix) with ESMTP id 2244B9D0; Tue, 5 Mar 2013 12:03:25 +0000 (UTC) Received: by mail-ia0-f171.google.com with SMTP id z13so6002383iaz.30 for ; Tue, 05 Mar 2013 04:03:24 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=c87XKN2oIKi5dxONwpgnekWNdZk7+OA2Zc8PvT7hEyw=; b=cbR5l2xRXPpIfYIoJzi6uD1t5fMo3rkLwE/MTy8wWA7UpuAee/cK78KkrDVKCK0OWs bjMLULj4vsHqpc5WC8a17FdkmFg7U2vbSGyPRH5lG49Av3h+RtSgWSsaFNpbdmkouOdL T164fdP/dWC+xdT6AXfNUwJkSXHdq+1GuAH2B5cDE1ej76MP5dgPVcpymQs4Dc19NGUm SgXfIHKbd8hPjtQ1SHZMtC+GJWB/mrEaRHhpIV7NmomlVJB1odJdE23azR/pe6Bnb5qD zYG6QyXbqVgjXsgCVppHk0iZrn20w7ucNQ4chPXE1uAqtqOqs+W4Mc2xU7sisPB7o1aa DQVw== X-Received: by 10.50.88.233 with SMTP id bj9mr5895072igb.55.1362485004573; Tue, 05 Mar 2013 04:03:24 -0800 (PST) Received: from [192.168.1.33] (vid-196.dhcp.grp10.tnmmrl.infoave.net. [204.116.254.196]) by mx.google.com with ESMTPS id ih1sm15254006igc.3.2013.03.05.04.03.21 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 05 Mar 2013 04:03:23 -0800 (PST) Message-ID: <5135DF07.7070807@gmail.com> Date: Tue, 05 Mar 2013 06:03:19 -0600 From: "Joseph A. Nagy, Jr" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: Dimitry Andric Subject: Re: audio/audacity still does not compile due to issues with soundtouch References: <5135779D.1000100@gmail.com> <51357D48.9040308@gmail.com> <5135DE27.9050508@FreeBSD.org> In-Reply-To: <5135DE27.9050508@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: "Ports @ FreeBSD" , xxjack12xx@gmail.com X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 12:03:25 -0000 On 03/05/13 05:59, Dimitry Andric wrote: > On 2013-03-05 06:06, Joseph A. Nagy, Jr wrote: >> On 03/04/13 22:42, Joseph A. Nagy, Jr wrote: >>> I am still having issues with Audacity trying to compile in soundtouch >>> plugins. Is this an issue with the port (there is no config option to >>> disable this behavior) or is it an upstream issue? >> >> Full error messages follow: >> effects/SoundTouchEffect.cpp:209:31: error: cannot initialize a >> parameter of type 'const SAMPLETYPE *' >> (aka 'const short *') with an lvalue of type 'float *' >> mSoundTouch->putSamples(buffer, block); >> ^~~~~~ >> /usr/local/include/soundtouch/SoundTouch.h:237:31: note: passing >> argument to parameter 'samples' here >> const SAMPLETYPE *samples, ///< Pointer to sample buffer. >> ^ > > It looks like you have configured the Soundtouch port with the > INTEGER_SAMPLES option. In that case, Soundtouch defines SAMPLETYPE to > short, and apparently Audacity is hardcoded to expect float samples > instead. > > Maybe this should be reported to Audacity, but I can imagine they would > say "Soundtouch must be configured with float samples". :-) I will report it to Audacity, right after I rebuild soundtouch w/o integer samples selected as an option. -- Yours in Christ, Joseph A Nagy Jr "Whoever loves instruction loves knowledge, But he who hates correction is stupid." -- Proverbs 12:1 Emails are not formal business letters, whatever businesses may want. Original content CopyFree (F) under the OWL http://copyfree.org/licenses/owl/license.txt From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 12:04:16 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 619A480D for ; Tue, 5 Mar 2013 12:04:16 +0000 (UTC) (envelope-from erikzoltan@gmail.com) Received: from sam.nabble.com (sam.nabble.com [216.139.236.26]) by mx1.freebsd.org (Postfix) with ESMTP id 42BC99E1 for ; Tue, 5 Mar 2013 12:04:16 +0000 (UTC) Received: from [192.168.236.26] (helo=sam.nabble.com) by sam.nabble.com with esmtp (Exim 4.72) (envelope-from ) id 1UCqbP-0001UB-VU for freebsd-ports@freebsd.org; Tue, 05 Mar 2013 04:04:15 -0800 Date: Tue, 5 Mar 2013 04:04:15 -0800 (PST) From: mildbeard To: freebsd-ports@freebsd.org Message-ID: <1362485055969-5792802.post@n5.nabble.com> In-Reply-To: <20121219080412.5396aeb6@scorpio> References: <20121219080412.5396aeb6@scorpio> Subject: Re: Dropbox on FreeBSD MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 12:04:16 -0000 There is a votebox on this question on the dropbox site. The petition to add FreeBSD support to dropbox is in second place on the "most popular" list. I find that really encouraging. The petition is actually very close to overtaking the most popular suggestion (adding support for languages other than English.) For anyone who would run Dropbox on BSD if it were natively supported, voting for this initiative may be the best way to encourage them to add such support. https://www.dropbox.com/votebox/186/add-support-for-freebsd Thanks, Erik -- View this message in context: http://freebsd.1045724.n5.nabble.com/Dropbox-on-FreeBSD-tp5770683p5792802.html Sent from the freebsd-ports mailing list archive at Nabble.com. From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 12:09:19 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 9DCE0A26 for ; Tue, 5 Mar 2013 12:09:19 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) by mx1.freebsd.org (Postfix) with ESMTP id 64C13A21 for ; Tue, 5 Mar 2013 12:09:19 +0000 (UTC) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost1.zedat.fu-berlin.de (Exim 4.80.1) for freebsd-ports@freebsd.org with esmtp (envelope-from ) id <1UCqgI-001lHN-J8>; Tue, 05 Mar 2013 13:09:18 +0100 Received: from e178028174.adsl.alicedsl.de ([85.178.28.174] helo=munin.geoinf.fu-berlin.de) by inpost2.zedat.fu-berlin.de (Exim 4.80.1) for freebsd-ports@freebsd.org with esmtpsa (envelope-from ) id <1UCqgI-001mQI-Gk>; Tue, 05 Mar 2013 13:09:18 +0100 Message-ID: <5135E0AB.3040806@zedat.fu-berlin.de> Date: Tue, 05 Mar 2013 13:10:19 +0100 From: "Hartmann, O." Organization: FU Berlin User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130216 Thunderbird/17.0.2 MIME-Version: 1.0 To: freebsd-ports@freebsd.org Subject: port building in CURRENT (including r247839) BROKEN Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Originating-IP: 85.178.28.174 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 12:09:19 -0000 On all FreeBSD boxes with FreeBSD 10.0-CURRENT #1 r247839: Tue Mar 5 12:28:12 CET 2013/amd64 the build of ports - or updating/upgrading ports is BROKEN! Every port which is about to be updated fails with [...] *** [do-extract] Signal 13 This is common on ALL CURRENT systems so I consider this a BREAKAGE. The problem is painful due to the fact that several kernel modules need, accordung to the entry 20130304: in /usr/src/UPDATING an update. devel/dbus isn't starting anymore on ALL systems, I couldn't figure out why. So X11 doesn't start either. And I can not rebuild those ports to accomplish what's suggested/required in UPDATING. Regards, Oliver From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 12:10:22 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 3269AB29 for ; Tue, 5 Mar 2013 12:10:22 +0000 (UTC) (envelope-from jnagyjr1978@gmail.com) Received: from mail-gg0-x235.google.com (mail-gg0-x235.google.com [IPv6:2607:f8b0:4002:c02::235]) by mx1.freebsd.org (Postfix) with ESMTP id EFAE1A3C for ; Tue, 5 Mar 2013 12:10:21 +0000 (UTC) Received: by mail-gg0-f181.google.com with SMTP id e5so949770ggh.12 for ; Tue, 05 Mar 2013 04:10:21 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=VOfhEOEB1gyfqs28GLdX6NRrwDOWFn5U89BYo8JiCLw=; b=Ey1qyBKEgz1P75CJ8K0joS6R2XiCLFbOuUAuD3b1VZ0RsGiW0a490ehpGLgm/og0Qb UaPKegIRuQx0ZCuQhXGl7g2URoPdCsIamX8wlQzEes+4zqm2hl/CWbKlYOtSd8No/Rzy XL1N9wmDCBHoN6XyHVWayxfKiVJyc3wbJM6BeSVgI9QIXSUqcqg9Wb6npOPoGhLlj9wO 6zH2ikHrbeILcdjg+LxlL9g9Fmlini31Rhe1qchSjWkjNmX6fipV0VNbC4+oxM9qJqaH ZFDhD+B8HrTYzYNq0kYvwFRrXNA4CmlvZnuvaDwnJGahjrstoJxyzzWUGbdNVtg0yMGL IKHA== X-Received: by 10.236.54.197 with SMTP id i45mr16688295yhc.90.1362485421471; Tue, 05 Mar 2013 04:10:21 -0800 (PST) Received: from [192.168.1.33] (vid-196.dhcp.grp10.tnmmrl.infoave.net. [204.116.254.196]) by mx.google.com with ESMTPS id b62sm6114825yhe.24.2013.03.05.04.10.19 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 05 Mar 2013 04:10:20 -0800 (PST) Message-ID: <5135E0A9.5020903@gmail.com> Date: Tue, 05 Mar 2013 06:10:17 -0600 From: "Joseph A. Nagy, Jr" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: freebsd-ports@freebsd.org Subject: Re: Dropbox on FreeBSD References: <20121219080412.5396aeb6@scorpio> <1362485055969-5792802.post@n5.nabble.com> In-Reply-To: <1362485055969-5792802.post@n5.nabble.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 12:10:22 -0000 On 03/05/13 06:04, mildbeard wrote: > There is a votebox on this question on the dropbox site. The petition to add > FreeBSD support to dropbox is in second place on the "most popular" list. I > find that really encouraging. > > The petition is actually very close to overtaking the most popular > suggestion (adding support for languages other than English.) > > For anyone who would run Dropbox on BSD if it were natively supported, > voting for this initiative may be the best way to encourage them to add such > support. > > https://www.dropbox.com/votebox/186/add-support-for-freebsd > > Thanks, > Erik > > > > -- > View this message in context: http://freebsd.1045724.n5.nabble.com/Dropbox-on-FreeBSD-tp5770683p5792802.html > Sent from the freebsd-ports mailing list archive at Nabble.com. > _______________________________________________ > 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" > I have given all my votes to that petition at least twice in the past several months. I'll do so again and again until it's in ports with native support. I have nearly 8GB of free space on Dropbox going to waste... -- Yours in Christ, Joseph A Nagy Jr "Whoever loves instruction loves knowledge, But he who hates correction is stupid." -- Proverbs 12:1 Emails are not formal business letters, whatever businesses may want. Original content CopyFree (F) under the OWL http://copyfree.org/licenses/owl/license.txt From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 12:18:14 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id D4292C15 for ; Tue, 5 Mar 2013 12:18:14 +0000 (UTC) (envelope-from jeffreybouquet@yahoo.com) Received: from nm33-vm8.bullet.mail.gq1.yahoo.com (nm33-vm8.bullet.mail.gq1.yahoo.com [98.136.216.247]) by mx1.freebsd.org (Postfix) with ESMTP id 93972A76 for ; Tue, 5 Mar 2013 12:18:14 +0000 (UTC) Received: from [98.137.12.61] by nm33.bullet.mail.gq1.yahoo.com with NNFMP; 05 Mar 2013 12:18:07 -0000 Received: from [98.137.12.248] by tm6.bullet.mail.gq1.yahoo.com with NNFMP; 05 Mar 2013 12:18:07 -0000 Received: from [127.0.0.1] by omp1056.mail.gq1.yahoo.com with NNFMP; 05 Mar 2013 12:18:07 -0000 X-Yahoo-Newman-Property: ymail-3 X-Yahoo-Newman-Id: 41962.3902.bm@omp1056.mail.gq1.yahoo.com Received: (qmail 38793 invoked by uid 60001); 5 Mar 2013 12:18:06 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1362485886; bh=WsAv9wSztb/bMESmuTHQJIFWJJujJsCQbLVT2YNq3n0=; h=X-YMail-OSG:Received:X-Rocket-MIMEInfo:X-Mailer:Message-ID:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=z8BUPtauX6/Ulz/bGxmsnW0gOv3FCYpZF5PI58B1jkaSLnROHECKBHhq0ylCKkrgpiammVECnqqL/fTFD2mBN6xerVHjDrEaoDsjEQjkRUyo2PaeFzmfZn1SWoNILxhiMwGD3wgG5V5LQYdN1u6XISQbiUNh/n+qcZ2x56CAxyc= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:X-Rocket-MIMEInfo:X-Mailer:Message-ID:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=RxPc5I2X153DfVz9BClhCxo0PSgOOb43rcMrFByeCdLCOEXmaCgo6m+zQ7ct9Mf/KpaG7VB6KgPIwTKl5CqoniDdx6aQHPWhHLt+h0GISPtW4DQ9IQvrwl45iQF+3fK47WkYQSifHrxXWbgYmrZa+SJEOcwz3wtEUraACNvaVvM=; X-YMail-OSG: b8ZvXE0VM1nmktHL7nGyplnXqQ5N.hGbyLvJffnx6HTZ3sg AIz5_trFIowy6O91b91qyUSHLYP8UrqhFKKKWPlOY9o9p3tlDIzWor2AiZYO 7iXPEty_r5.oYIJkk6jdb9kBU8fZKVBulZIidTNRxIy7QWVOj854a3Y5wkgv 4U9mYREkrOKgw5depQAtVLFvsul3sYV8adL7olhL2WI.WsL0PoX2yvG1BeVh vw.fmdKDl1t5P40C8dfhjYiVoUG6UOgzhZsOyFh9WL8LbTme7In0MCt_bTrK vTMCrxgU6WqdDl38u1kEDPeJh8IDEYwWxy_.Jr5iC8w.mVpvVNDCMSStvpU6 sfbtRK6xlEPD1Z2e59cpQOdzYLT1JTGd9ZICzYGm1QzyfnCpEokOig_axUN_ v.H9objnwT4j1B9au4Ddz1gFhoYx4Y9SQ6VY3EQxzEYDhGPKbQPJbZ1kQlNc s_YQ24ka7hDydWN9h4XKuPIndTf_FPktj0rFhlRlwJ99_tElbl.x_0t.5xw1 a.GA- Received: from [66.92.43.99] by web164006.mail.gq1.yahoo.com via HTTP; Tue, 05 Mar 2013 04:18:06 PST X-Rocket-MIMEInfo: 001.001, DQpEYXRlOiBUdWVzZGF5LCBNYXJjaCA1LCAyMDEzLCAxMjozMiBBTQ0KDQrCoMKgwqAgRGF0ZTogTW9uLCA0IE1hciAyMDEzIDIxOjAwOjA4IC0wODAwIChQU1QpDQrCoMKgwqAgRnJvbTogSmVmZnJleSBCb3VxdWV0IDxqZWZmcmV5Ym91cXVldEB5YWhvby5jb20.DQrCoMKgwqAgU3ViamVjdDogUmU6IENGVDogdGV4bGl2ZSBwb3J0cw0KwqDCoMKgIFRvOiBmcmVlYnNkLXBvcnRzQGZyZWVic2Qub3JnDQoNCsKgwqDCoCBPbmUgb2YgdGhlIHRocmVlIHJlY2VudCB0ZVRlWCBwb3J0cyBbdGhhdCBoYWQgbWlub3IBMAEBAQE- X-Mailer: YahooMailClassic/15.1.4 YahooMailWebService/0.8.135.514 Message-ID: <1362485886.32892.YahooMailClassic@web164006.mail.gq1.yahoo.com> Date: Tue, 5 Mar 2013 04:18:06 -0800 (PST) From: Jeffrey Bouquet Subject: Re: CFT: texlive ports To: freebsd-ports@freebsd.org, mexas@bristol.ac.uk In-Reply-To: <201303050832.r258WoiP036431@mech-cluster241.men.bris.ac.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 12:18:14 -0000 Date: Tuesday, March 5, 2013, 12:32 AM =A0=A0=A0 Date: Mon, 4 Mar 2013 21:00:08 -0800 (PST) =A0=A0=A0 From: Jeffrey Bouquet =A0=A0=A0 Subject: Re: CFT: texlive ports =A0=A0=A0 To: freebsd-ports@freebsd.org =A0=A0=A0 One of the three recent teTeX ports [that had minor version bumps= ] would not=20 =A0=A0=A0 install without /usr/local/bin/grep being temporarily moved to us= e instead the =A0=A0=A0 one from base... it apparently stalled with a high CPU usage. Are you talking about ia64 specifically? Anyway, I don't think so: TZAV> pkg version -vX teT teTeX-3.0_7=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =3D=A0=A0=A0up-t= o-date with port teTeX-base-3.0_24=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =3D=A0=A0=A0up-to-date= with port teTeX-texmf-3.0_9=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =3D=A0=A0=A0up-to-date= with port TZAV>=20 >Updated just fine with portmaster, with no manual intervention. >Anton It was sort of off-topic, more pertaining to grep (which also here halts th= e=20 configure of postgresql84-server, and has, for years, the subject of a rece= nt email to this list...)=A0=20 The port installed once I removed the forever-cpu-spiking grep binary so it= could use the base one. From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 12:29:56 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id EC693EF1 for ; Tue, 5 Mar 2013 12:29:56 +0000 (UTC) (envelope-from jeffreybouquet@yahoo.com) Received: from nm27-vm1.bullet.mail.gq1.yahoo.com (nm27-vm1.bullet.mail.gq1.yahoo.com [98.136.216.144]) by mx1.freebsd.org (Postfix) with ESMTP id B3100AF7 for ; Tue, 5 Mar 2013 12:29:56 +0000 (UTC) Received: from [98.137.12.189] by nm27.bullet.mail.gq1.yahoo.com with NNFMP; 05 Mar 2013 12:27:55 -0000 Received: from [98.137.12.246] by tm10.bullet.mail.gq1.yahoo.com with NNFMP; 05 Mar 2013 12:27:55 -0000 Received: from [127.0.0.1] by omp1054.mail.gq1.yahoo.com with NNFMP; 05 Mar 2013 12:27:55 -0000 X-Yahoo-Newman-Property: ymail-3 X-Yahoo-Newman-Id: 554263.56503.bm@omp1054.mail.gq1.yahoo.com Received: (qmail 73732 invoked by uid 60001); 5 Mar 2013 12:27:55 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1362486475; bh=h9R1ODZDwUMSD3VDuxTJYm7utsnoW6j25xcdXM75UNk=; h=X-YMail-OSG:Received:X-Rocket-MIMEInfo:X-Mailer:Message-ID:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=oWxPcPzc7KnbVO2wxL8F8LDoK3HrWMHeN4VHMEyPBFcHYi4qaQPt5vmeOeumeoE0mCUqTMvWVfEVyoZXQ2hlnyl0NMnAqr0o+LljZe5cEQK9SoN5bF0EA0g9hO9LwIX0aUsC7PS6VzmOAVDSWM8AZ27ypNeqRryJ2m2ExoV8B8M= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:X-Rocket-MIMEInfo:X-Mailer:Message-ID:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=ZoCvViiVJiVMlFFa4/6XM5AMU+/+TqGtLZkQ4yZwUYvzkuOObQgb6q8P9hxcNpr3cSe201zg0/MHlPpP7rgT52VjmMg/EVgUYwNH4IPgCck2PQ9en5B+k32cD9RZLf1C9n2AhgDJuzsgTN3kcSntVSPvUDOKjkelISyKlB6p304=; X-YMail-OSG: Jo_556UVM1m0ahgoH0uTsXhtG7rHl46pR9TBbN2brNYYIyL khGACCV_QNGmWKbyn4OC5rLXy.eV92aWUqGVsdc1nRLJ_stikR3blP2mhut0 OaP2xlFbaATHqN9pN.vnZJiWI8JHqrvaN4V5RaHD0jDu6eyAhz10jvA68w6O 2iAtiEiM4naZXVLReb0k3Fml9riM.6imvMpp0auCxDMyjGqr88Y9SXS54H1P wXGj1Ot0BLDv0Qi03pePpBM6aJL721fdplcwZyvLlaqzPYTjD78nlF1SqugZ auKrLFOB3yt5d9CCIK3lKmG2ic94aNHsYvwuAqwr5R0jodYjF7cAaVFh_0oU XOl_TvNx1zhgUnxDtolcoR9Vl_ZCFRo0nKpq27wWzk.L5k1kk2WkAO_EJgUf I8_IJMeYbIU5gLPpnCgIShTCgR7Udp6oE6q97ZFXhZc_mXw4F_UAcr2KcegF GgXB2qlL3BLrkVJdKde4cXNXVLiStsjSA8gVZgO8_CD104EigENQ2RX5EzUA _s75BD1.3Ta9uurCASzVwBcQcsFKveFge8e2H7BORXO3.bBp_sQ-- Received: from [66.92.43.99] by web164003.mail.gq1.yahoo.com via HTTP; Tue, 05 Mar 2013 04:27:54 PST X-Rocket-MIMEInfo: 001.001, Tm8sIHNvcnJ5Li4uIGJ1dCBpdCB3YXMgdGVUZXgtYmFzZS4uLsKgIEkgY291bGQgcHJvYmFibHkgcmVwcm9kdWNlIGl0IG9uIGFub3RoZXIgbWFjaGluZSANCmlmIG5lZWRlZCwgd2hpY2ggYWxzbyBoYXMgdGhlIHNhbWUgbW92ZS1ncmVwIGluc3RhbmNlcy4NCg0KU29ycnkgZm9yIHRoZSB3ZWJtYWlsIGZvcm1hdHRpbmcgb2YgdGhlIHJlbWFpbmRlciBvZiB0aGlzIG1lc3NhZ2UuLg0KDQotLS0gT24gTW9uLCAzLzQvMTMsIEhpcm9raSBTYXRvIDxocnNARnJlZUJTRC5vcmc.IHdyb3RlOg0KDQoNCkRhdGU6IE0BMAEBAQE- X-Mailer: YahooMailClassic/15.1.4 YahooMailWebService/0.8.135.514 Message-ID: <1362486474.73197.YahooMailClassic@web164003.mail.gq1.yahoo.com> Date: Tue, 5 Mar 2013 04:27:54 -0800 (PST) From: Jeffrey Bouquet Subject: Re: CFT: texlive ports To: freebsd-ports@freebsd.org In-Reply-To: <20130305.140715.2179672825373543869.hrs@allbsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 12:29:57 -0000 No, sorry... but it was teTex-base...=A0 I could probably reproduce it on a= nother machine=20 if needed, which also has the same move-grep instances. Sorry for the webmail formatting of the remainder of this message.. --- On Mon, 3/4/13, Hiroki Sato wrote: Date: Monday, March 4, 2013, 9:07 PM je> Maybe off topic to this thread, but... [ reply at bottom]...je> One of = the three recent teTeX ports [that had minor version bumps] would notje> in= stall without /usr/local/bin/grep being temporarily moved to use instead th= eje> one from base... it apparently stalled with a high CPU usage.Do you ha= ve a log when the installation failed?--=20 From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 12:48:35 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 2637C273 for ; Tue, 5 Mar 2013 12:48:35 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-ia0-x229.google.com (mail-ia0-x229.google.com [IPv6:2607:f8b0:4001:c02::229]) by mx1.freebsd.org (Postfix) with ESMTP id BFAE2BF3 for ; Tue, 5 Mar 2013 12:48:34 +0000 (UTC) Received: by mail-ia0-f169.google.com with SMTP id j5so6113539iaf.0 for ; Tue, 05 Mar 2013 04:48:34 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=LBreT18Yb8sWFVax+BAWdCEcBRzddmm3WoYK774Oa20=; b=Y566vx7Zkuqjmd8vzG2R6P625m7QR8WHv2iQep7ih4qKULmVZcihp4OqzDdt+4NkVL hEMp2wNvIQwoIT97eOLT5kkxpDxFofy+H7Us+rL8j1nFybFTBKh97QWjO2QRloVlR3il ig3ZNl83a6iDsnlT5IXcFM2wWeyplytpJEUzMoA5NojbOJw05r2qidMsa+xHOA7LRpNO Fh9XuWz3VZXsgJblrLI21SvB1BVXl6rgbhwCZMfOG6r7DtSFZF6Z+VxfR7T/wi+s7hWe NRd/LbsvCJ6/b58WbBO1gu+gVld1q+MVb9cJypruut+tpADVgfoOyvBcHRuKMzuEEZv+ uTzw== MIME-Version: 1.0 X-Received: by 10.50.53.180 with SMTP id c20mr6148706igp.15.1362487714373; Tue, 05 Mar 2013 04:48:34 -0800 (PST) Received: by 10.64.63.12 with HTTP; Tue, 5 Mar 2013 04:48:33 -0800 (PST) Received: by 10.64.63.12 with HTTP; Tue, 5 Mar 2013 04:48:33 -0800 (PST) In-Reply-To: <1362486474.73197.YahooMailClassic@web164003.mail.gq1.yahoo.com> References: <20130305.140715.2179672825373543869.hrs@allbsd.org> <1362486474.73197.YahooMailClassic@web164003.mail.gq1.yahoo.com> Date: Tue, 5 Mar 2013 12:48:33 +0000 Message-ID: Subject: Re: CFT: texlive ports From: Chris Rees To: Jeffrey Bouquet Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: FreeBSD Mailing List X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 12:48:35 -0000 Can you please report these as grep bugs? We at pgsql@ explained how you can reproduce, and concluded it's not the fault of pgsql or TeTeX. This is not an appropriate thread, please desist from hijacking. Chris On 5 Mar 2013 12:30, "Jeffrey Bouquet" wrote: > No, sorry... but it was teTex-base... I could probably reproduce it on > another machine > if needed, which also has the same move-grep instances. > > Sorry for the webmail formatting of the remainder of this message.. > > --- On Mon, 3/4/13, Hiroki Sato wrote: > > > Date: Monday, March 4, 2013, 9:07 PM > je> Maybe off topic to this thread, but... [ reply at bottom]...je> One of > the three recent teTeX ports [that had minor version bumps] would notje> > install without /usr/local/bin/grep being temporarily moved to use instead > theje> one from base... it apparently stalled with a high CPU usage.Do you > have a log when the installation failed?-- > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" > > From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 13:11:02 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 6E8298B8 for ; Tue, 5 Mar 2013 13:11:02 +0000 (UTC) (envelope-from makc@freebsd.org) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) by mx1.freebsd.org (Postfix) with ESMTP id C3BE0D71 for ; Tue, 5 Mar 2013 13:11:01 +0000 (UTC) Received: from mercury.ph.man.ac.uk [130.88.75.175:47484] (HELO/EHLO mercury.ph.man.ac.uk, authenticated with LOGIN) by mail.issp.ac.ru with ESMTP/inet id r25DAshw022052 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Tue, 5 Mar 2013 17:11:01 +0400 (MSK) From: Max Brazhnikov To: kde-freebsd@kde.org Subject: Re: [kde-freebsd] FreeBSD Port: deskutils/strigi Date: Tue, 05 Mar 2013 13:11:44 +0000 Message-ID: <9084678.hJCgtxJcYM@mercury.ph.man.ac.uk> User-Agent: KMail/4.9.5 (FreeBSD/9.1-STABLE; KDE/4.9.5; amd64; ; ) In-Reply-To: <8c9b9e2ff70d16aff6141f6a6062bc39@intertainservices.com> References: <8c9b9e2ff70d16aff6141f6a6062bc39@intertainservices.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: ports@freebsd.org, Mike Jakubik X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 13:11:02 -0000 On Mon, 04 Mar 2013 23:56:11 -0500 Mike Jakubik wrote: > Hello, > > I am unable to compile this port with either Clang or GCC, have also > reinstalled clucene but no luck. Try this recipe: http://mail.kde.org/pipermail/kde-freebsd/2013-February/014846.html From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 13:34:06 2013 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 73161FA2; Tue, 5 Mar 2013 13:34:06 +0000 (UTC) (envelope-from Zinkovskiy.AS@yandex.ru) Received: from forward1h.mail.yandex.net (forward1h.mail.yandex.net [IPv6:2a02:6b8:0:f05::10]) by mx1.freebsd.org (Postfix) with ESMTP id 1B553EA0; Tue, 5 Mar 2013 13:34:06 +0000 (UTC) Received: from smtp3h.mail.yandex.net (smtp3h.mail.yandex.net [84.201.186.20]) by forward1h.mail.yandex.net (Yandex) with ESMTP id 91EDC9E2788; Tue, 5 Mar 2013 17:33:51 +0400 (MSK) Received: from smtp3h.mail.yandex.net (localhost [127.0.0.1]) by smtp3h.mail.yandex.net (Yandex) with ESMTP id 446791B40747; Tue, 5 Mar 2013 17:33:51 +0400 (MSK) Received: from host-94-41-129-101.vpn.o56.ru (host-94-41-129-101.vpn.o56.ru [94.41.129.101]) by smtp3h.mail.yandex.net (nwsmtp/Yandex) with ESMTP id XoZG7dog-XoZGMgbI; Tue, 5 Mar 2013 17:33:50 +0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1362490431; bh=tf0FY2JGbVuHZ9CIbWyEB1BqJiCeedn2bBp1jbQ1N3U=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:CC:Subject: Content-Type:Content-Transfer-Encoding; b=okAJ5aWRXs84noMkQrtHNlnDwTmOmcIl9dZDd7/fk8wHMBvsr2/ITaRU1Lu1MB091 /g9IbFiL1MjhPhu5HTAJ8xP1NVuCmlAOXLAkN2IxkHtSMqYWsuOKWa85wl8nzYOgxf 1jsvdFvQ9bP1ftYoSfhZqY8vfqVMNdPs8MJWQyK4= Message-ID: <5135F43D.60108@yandex.ru> Date: Tue, 05 Mar 2013 19:33:49 +0600 From: =?UTF-8?B?0JDQvdGC0L7QvQ==?= User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:17.0) Gecko/20130215 Thunderbird/17.0.3 MIME-Version: 1.0 To: kuriyama@FreeBSD.org Subject: FreeBSD Port: phantomjs-1.7.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@FreeBSD.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 13:34:06 -0000 Hello. Tell me, please, why phantomjs version at this link http://www.freebsd.org/cgi/ports.cgi?query=phantomjs&stype=all&sektion=all different from that in the SVN? The ports have a new version .. From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 14:33:50 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 485D9F45 for ; Tue, 5 Mar 2013 14:33:50 +0000 (UTC) (envelope-from portscout@portscout.freebsd.org) Received: from null.zi0r.com (null.zi0r.com [71.245.171.204]) by mx1.freebsd.org (Postfix) with ESMTP id 04F8E2F3 for ; Tue, 5 Mar 2013 14:33:49 +0000 (UTC) Received: from null.zi0r.com (localhost [127.0.0.1]) by null.zi0r.com (8.14.5/8.14.5) with ESMTP id r25EXgS7074167 for ; Tue, 5 Mar 2013 09:33:42 -0500 (EST) (envelope-from portscout@null.zi0r.com) Received: (from portscout@localhost) by null.zi0r.com (8.14.5/8.14.5/Submit) id r25EXga7074092; Tue, 5 Mar 2013 09:33:42 -0500 (EST) (envelope-from portscout) Message-Id: <201303051433.r25EXga7074092@null.zi0r.com> MIME-Version: 1.0 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain Date: Tue, 5 Mar 2013 09:33:42 -0500 From: portscout@portscout.freebsd.org To: ports@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 14:33:50 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/ports@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ databases/sqlclient | 1.5.3 | 1.6.1 ------------------------------------------------+-----------------+------------ www/xist | 3.25 | 4.10 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt If wish to stop receiving portscout reminders, please contact portscout@portscout.freebsd.org Thanks. From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 15:13:02 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id B24D9C80 for ; Tue, 5 Mar 2013 15:13:02 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from tensor.andric.com (tensor.andric.com [IPv6:2001:7b8:3a7:1:2d0:b7ff:fea0:8c26]) by mx1.freebsd.org (Postfix) with ESMTP id 323587CB for ; Tue, 5 Mar 2013 15:13:02 +0000 (UTC) Received: from [IPv6:2001:7b8:3a7:0:204:4bff:fe01:de8a] (spaceball.andric.com [IPv6:2001:7b8:3a7:0:204:4bff:fe01:de8a]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id 809735C43; Tue, 5 Mar 2013 16:13:01 +0100 (CET) Message-ID: <51360B7C.5070707@FreeBSD.org> Date: Tue, 05 Mar 2013 16:13:00 +0100 From: Dimitry Andric Organization: The FreeBSD Project User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:19.0) Gecko/20130117 Thunderbird/19.0 MIME-Version: 1.0 To: "Joseph A. Nagy, Jr" Subject: Re: audio/audacity still does not compile due to issues with soundtouch References: <5135779D.1000100@gmail.com> <51357D48.9040308@gmail.com> <5135DE27.9050508@FreeBSD.org> <5135DF07.7070807@gmail.com> In-Reply-To: <5135DF07.7070807@gmail.com> Content-Type: multipart/mixed; boundary="------------000209080703030805060409" Cc: "Ports @ FreeBSD" , xxjack12xx@gmail.com X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 15:13:02 -0000 This is a multi-part message in MIME format. --------------000209080703030805060409 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit On 2013-03-05 13:03, Joseph A. Nagy, Jr wrote: > On 03/05/13 05:59, Dimitry Andric wrote: >> On 2013-03-05 06:06, Joseph A. Nagy, Jr wrote: >>> On 03/04/13 22:42, Joseph A. Nagy, Jr wrote: >>>> I am still having issues with Audacity trying to compile in soundtouch >>>> plugins. Is this an issue with the port (there is no config option to >>>> disable this behavior) or is it an upstream issue? >>> >>> Full error messages follow: >>> effects/SoundTouchEffect.cpp:209:31: error: cannot initialize a >>> parameter of type 'const SAMPLETYPE *' >>> (aka 'const short *') with an lvalue of type 'float *' >>> mSoundTouch->putSamples(buffer, block); >>> ^~~~~~ >>> /usr/local/include/soundtouch/SoundTouch.h:237:31: note: passing >>> argument to parameter 'samples' here >>> const SAMPLETYPE *samples, ///< Pointer to sample buffer. >>> ^ >> >> It looks like you have configured the Soundtouch port with the >> INTEGER_SAMPLES option. In that case, Soundtouch defines SAMPLETYPE to >> short, and apparently Audacity is hardcoded to expect float samples >> instead. >> >> Maybe this should be reported to Audacity, but I can imagine they would >> say "Soundtouch must be configured with float samples". :-) > > I will report it to Audacity, right after I rebuild soundtouch w/o > integer samples selected as an option. Joseph, can you please try out the attached diff for Audacity? I have attempted to fix the assumption that samples are always in float format, and Audacity now compiles and links, even if Soundtouch is configured with the INTEGER_SAMPLES options. However, I cannot currently test if this still properly works at runtime. Maybe you are able to run this on a test setup, and check if the Soundtouch effects seem to work as expected. --------------000209080703030805060409 Content-Type: text/x-diff; name="audio__audacity-1.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="audio__audacity-1.diff" Index: audio/audacity/files/patch-src__effects__SoundTouchEffect.cpp =================================================================== --- audio/audacity/files/patch-src__effects__SoundTouchEffect.cpp (revision 0) +++ audio/audacity/files/patch-src__effects__SoundTouchEffect.cpp (working copy) @@ -0,0 +1,107 @@ +--- src/effects/SoundTouchEffect.cpp.orig 2013-01-18 16:50:47.000000000 +0100 ++++ src/effects/SoundTouchEffect.cpp 2013-03-05 15:33:53.000000000 +0100 +@@ -24,6 +24,12 @@ effect that uses SoundTouch to do its pr + #include "TimeWarper.h" + #include "../NoteTrack.h" + ++#ifdef SOUNDTOUCH_FLOAT_SAMPLES ++#define soundtouchSample floatSample ++#else ++#define soundtouchSample int16Sample ++#endif ++ + bool EffectSoundTouch::ProcessLabelTrack(Track *track) + { + // SetTimeWarper(new RegionTimeWarper(mCurT0, mCurT1, +@@ -189,7 +195,7 @@ bool EffectSoundTouch::ProcessOne(WaveTr + + //Initiate a processing buffer. This buffer will (most likely) + //be shorter than the length of the track being processed. +- float *buffer = new float[track->GetMaxBlockSize()]; ++ SAMPLETYPE *buffer = new SAMPLETYPE[track->GetMaxBlockSize()]; + + //Go through the track one buffer at a time. s counts which + //sample the current buffer starts at. +@@ -203,7 +209,7 @@ bool EffectSoundTouch::ProcessOne(WaveTr + block = end - s; + + //Get the samples from the track and put them in the buffer +- track->Get((samplePtr) buffer, floatSample, s, block); ++ track->Get((samplePtr) buffer, soundtouchSample, s, block); + + //Add samples to SoundTouch + mSoundTouch->putSamples(buffer, block); +@@ -211,9 +217,9 @@ bool EffectSoundTouch::ProcessOne(WaveTr + //Get back samples from SoundTouch + unsigned int outputCount = mSoundTouch->numSamples(); + if (outputCount > 0) { +- float *buffer2 = new float[outputCount]; ++ SAMPLETYPE *buffer2 = new SAMPLETYPE[outputCount]; + mSoundTouch->receiveSamples(buffer2, outputCount); +- outputTrack->Append((samplePtr)buffer2, floatSample, outputCount); ++ outputTrack->Append((samplePtr)buffer2, soundtouchSample, outputCount); + delete[] buffer2; + } + +@@ -230,9 +236,9 @@ bool EffectSoundTouch::ProcessOne(WaveTr + + unsigned int outputCount = mSoundTouch->numSamples(); + if (outputCount > 0) { +- float *buffer2 = new float[outputCount]; ++ SAMPLETYPE *buffer2 = new SAMPLETYPE[outputCount]; + mSoundTouch->receiveSamples(buffer2, outputCount); +- outputTrack->Append((samplePtr)buffer2, floatSample, outputCount); ++ outputTrack->Append((samplePtr)buffer2, soundtouchSample, outputCount); + delete[] buffer2; + } + +@@ -277,9 +283,9 @@ bool EffectSoundTouch::ProcessStereo(Wav + // because Soundtouch wants them interleaved, i.e., each + // Soundtouch sample is left-right pair. + sampleCount maxBlockSize = leftTrack->GetMaxBlockSize(); +- float* leftBuffer = new float[maxBlockSize]; +- float* rightBuffer = new float[maxBlockSize]; +- float* soundTouchBuffer = new float[maxBlockSize * 2]; ++ SAMPLETYPE* leftBuffer = new SAMPLETYPE[maxBlockSize]; ++ SAMPLETYPE* rightBuffer = new SAMPLETYPE[maxBlockSize]; ++ SAMPLETYPE* soundTouchBuffer = new SAMPLETYPE[maxBlockSize * 2]; + + // Go through the track one stereo buffer at a time. + // sourceSampleCount counts the sample at which the current buffer starts, +@@ -294,8 +300,8 @@ bool EffectSoundTouch::ProcessStereo(Wav + blockSize = end - sourceSampleCount; + + // Get the samples from the tracks and put them in the buffers. +- leftTrack->Get((samplePtr)(leftBuffer), floatSample, sourceSampleCount, blockSize); +- rightTrack->Get((samplePtr)(rightBuffer), floatSample, sourceSampleCount, blockSize); ++ leftTrack->Get((samplePtr)(leftBuffer), soundtouchSample, sourceSampleCount, blockSize); ++ rightTrack->Get((samplePtr)(rightBuffer), soundtouchSample, sourceSampleCount, blockSize); + + // Interleave into soundTouchBuffer. + for (int index = 0; index < blockSize; index++) { +@@ -369,20 +375,20 @@ bool EffectSoundTouch::ProcessStereoResu + WaveTrack* outputLeftTrack, + WaveTrack* outputRightTrack) + { +- float* outputSoundTouchBuffer = new float[outputCount*2]; ++ SAMPLETYPE* outputSoundTouchBuffer = new SAMPLETYPE[outputCount*2]; + mSoundTouch->receiveSamples(outputSoundTouchBuffer, outputCount); + + // Dis-interleave outputSoundTouchBuffer into separate track buffers. +- float* outputLeftBuffer = new float[outputCount]; +- float* outputRightBuffer = new float[outputCount]; ++ SAMPLETYPE* outputLeftBuffer = new SAMPLETYPE[outputCount]; ++ SAMPLETYPE* outputRightBuffer = new SAMPLETYPE[outputCount]; + for (unsigned int index = 0; index < outputCount; index++) + { + outputLeftBuffer[index] = outputSoundTouchBuffer[index*2]; + outputRightBuffer[index] = outputSoundTouchBuffer[(index*2)+1]; + } + +- outputLeftTrack->Append((samplePtr)outputLeftBuffer, floatSample, outputCount); +- outputRightTrack->Append((samplePtr)outputRightBuffer, floatSample, outputCount); ++ outputLeftTrack->Append((samplePtr)outputLeftBuffer, soundtouchSample, outputCount); ++ outputRightTrack->Append((samplePtr)outputRightBuffer, soundtouchSample, outputCount); + + delete[] outputSoundTouchBuffer; + delete[] outputLeftBuffer; --------------000209080703030805060409-- From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 17:44:52 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id E6377269 for ; Tue, 5 Mar 2013 17:44:52 +0000 (UTC) (envelope-from jankyj@unfs.us) Received: from morbid.purplehat.org (morbid.purplehat.org [206.225.82.173]) by mx1.freebsd.org (Postfix) with ESMTP id CD2DA207 for ; Tue, 5 Mar 2013 17:44:52 +0000 (UTC) Received: from localhost (morbid.purplehat.org [206.225.82.173]) by morbid.purplehat.org (Postfix) with ESMTP id A49FBD8CE93 for ; Tue, 5 Mar 2013 10:37:22 -0700 (MST) Received: from morbid.purplehat.org ([206.225.82.173]) by localhost (morbid.purplehat.org [206.225.82.173]) (maiad, port 10024) with ESMTP id 61682-06 for ; Tue, 5 Mar 2013 10:37:17 -0700 (MST) Received: from [172.17.244.124] (fw1.aspsys.com [173.14.5.129]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: jankyj@unfs.us) by morbid.purplehat.org (Postfix) with ESMTPSA id 852A6D8CE4B for ; Tue, 5 Mar 2013 10:37:17 -0700 (MST) Message-ID: <51362D4D.4070407@unfs.us> Date: Tue, 05 Mar 2013 10:37:17 -0700 From: "Janky Jay, III" User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: freebsd-ports@freebsd.org Subject: Re: Dropbox on FreeBSD References: <20121219080412.5396aeb6@scorpio> <1362485055969-5792802.post@n5.nabble.com> <5135E0A9.5020903@gmail.com> In-Reply-To: <5135E0A9.5020903@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: Maia Mailguard X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 17:44:53 -0000 On 03/05/2013 05:10 AM, Joseph A. Nagy, Jr wrote: > On 03/05/13 06:04, mildbeard wrote: >> There is a votebox on this question on the dropbox site. The petition >> to add >> FreeBSD support to dropbox is in second place on the "most popular" >> list. I >> find that really encouraging. >> >> The petition is actually very close to overtaking the most popular >> suggestion (adding support for languages other than English.) >> >> For anyone who would run Dropbox on BSD if it were natively supported, >> voting for this initiative may be the best way to encourage them to >> add such >> support. >> >> https://www.dropbox.com/votebox/186/add-support-for-freebsd >> >> Thanks, >> Erik >> >> >> >> -- >> View this message in context: >> http://freebsd.1045724.n5.nabble.com/Dropbox-on-FreeBSD-tp5770683p5792802.html >> >> Sent from the freebsd-ports mailing list archive at Nabble.com. >> _______________________________________________ >> 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" >> > > I have given all my votes to that petition at least twice in the past > several months. I'll do so again and again until it's in ports with > native support. I have nearly 8GB of free space on Dropbox going to > waste... > Same! I've been voting this up for quite some time. All my votes are dedicated to this. Hopefully it will be implemented soon. Just keep the votes coming and I'm sure they'll take it seriously at some point. Regards, Janky Jay, III From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 18:18:18 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 8546FC10 for ; Tue, 5 Mar 2013 18:18:18 +0000 (UTC) (envelope-from jerry@seibercom.net) Received: from mail-gg0-x22c.google.com (mail-gg0-x22c.google.com [IPv6:2607:f8b0:4002:c02::22c]) by mx1.freebsd.org (Postfix) with ESMTP id 3D4AD5F8 for ; Tue, 5 Mar 2013 18:18:18 +0000 (UTC) Received: by mail-gg0-f172.google.com with SMTP id f4so1056610ggn.31 for ; Tue, 05 Mar 2013 10:18:17 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=seibercom.net; s=google; h=x-received:date:from:to:subject:message-id:in-reply-to:references :reply-to:organization:x-mailer:face:mime-version:content-type :content-transfer-encoding; bh=ineOqurq4hDC0qyqydOfHFH7nNa4ynVS1XjBtwiL67c=; b=XNgRo+zY1hW+6XPNAcOQtfly1OhGKnv01hBAXzIc7zNsyjuqPwAwN4+NQPBd6DJwpJ bpIod+mj5EgNZlaIIfIGfxrI19r9WXcGvbK5c53RTK9RKoy2ttOZeMOiQBuK4mACuPaN 1O+vZk1fq9GUuMd97qonDYuvy5on56nyVXuC0= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:date:from:to:subject:message-id:in-reply-to:references :reply-to:organization:x-mailer:face:mime-version:content-type :content-transfer-encoding:x-gm-message-state; bh=ineOqurq4hDC0qyqydOfHFH7nNa4ynVS1XjBtwiL67c=; b=VQLmZkw8hRmayJlSDPvUh1CwitYOvY+kKZs1SKurrjWl+xmqnvy0B5NSaiF/IT2PLO v17xZyEfUb0D30j2YHUYLO2ikK2TATqDEKoLq9LRNK4j6Rjb1wp+qiBfPX/ZeYunGw9P D4u0f+HY2MDL2MHBa6jwMG/iurGy0JAUuY54Qi36iwf5l8HkVMsUZ5EbK9F59eYlODMb xU7jyHDrChTp/azxc7vhPjtSVdV0r3y01WVhre44ZUlfuaUNfinbnoofEuQtoLnR/AZW MAhiGvpztf5OJjneMf8iu1h3i03Evw/UOgj1G+YYODDucMVMrUpeuAL14E+4WkcxnMvr ckvQ== X-Received: by 10.236.170.200 with SMTP id p48mr18367524yhl.140.1362507497822; Tue, 05 Mar 2013 10:18:17 -0800 (PST) Received: from scorpio.seibercom.net (cpe-076-182-104-150.nc.res.rr.com. [76.182.104.150]) by mx.google.com with ESMTPS id s74sm7939727yhh.5.2013.03.05.10.18.15 (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 05 Mar 2013 10:18:16 -0800 (PST) Received: from scorpio (localhost [127.0.0.1]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: jerry@scorpio.seibercom.net) by scorpio.seibercom.net (Postfix) with ESMTPSA id 3ZL5vB6nk4z2CG47 for ; Tue, 5 Mar 2013 13:18:14 -0500 (EST) Date: Tue, 5 Mar 2013 13:18:14 -0500 From: Jerry To: freebsd-ports@freebsd.org Subject: Re: Dropbox on FreeBSD Message-ID: <20130305131814.3642ccd0@scorpio> In-Reply-To: <51362D4D.4070407@unfs.us> References: <20121219080412.5396aeb6@scorpio> <1362485055969-5792802.post@n5.nabble.com> <5135E0A9.5020903@gmail.com> <51362D4D.4070407@unfs.us> Organization: seibercom.net X-Mailer: Claws Mail 3.9.0 (GTK+ 2.24.6; amd64-portbld-freebsd8.3) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAHlBMVEUAAABYRlwJCw4FAgAIBwKprDkBAQFQLR0BAgCir7VRttp8AAACAUlEQVQ4jZWUTYvbMBCGTVl8V2hX6Gg5G5FbWQdBj0lEfE7BhN4cyzi5Wt1E5L70roWy6N92xok/skkP+5IYrMcz78xIduDWpNM3vFzuA/jX5EY1AI6KHFwW/CzFuQAwqUBbV12p+CzIh6Awq7sg33pn5D64SQXAexffeuQlA/L35RrkaB551OjGfP/cAO8mCNaDcgvfky5ijoD0pAXlCQCnljiAjsJD9Ax05Ko5sZxbnLQcmM+dZg5IjREfZrWIHK0JuwU68pAGwHvfRxBundRzTxxz3r9dNUikPsEihjz2Dc4kjp1hKsJGuot4EDxaxzMoC7XqhxhOSfZrTS6gSX1JVdjp+o1PvWfekXgw3WL0g70nDEwA0H0HQsEZc8sTmFMTkWUfYWC/vdR1zQy3xLQgLwzu90QnlnFLjeiGWBjwhb4Sa42IqOg2qqS4O1/zhKokFUb1Q8Rj4Eb69WVflXEehJ35DgChVTE5n50eaGyMLOfH8AOodoSM4PVYAQgQdBulOa+knklYks3vAuQ+uX492lTl+A+e8qBV2AKoXalVKFfyuUp0pUp1ARaUHh82lv9MN+Ig7CZtgE6FNYvjlywT2VP2dMgOG46gTIWcqdfvuwyXNz0oMJNd/N5lh1YNiJt19ADTUo3VuFSNeQwVqRSrGjSCp53fk2g+Mvfk/gfoPxHeUS8MH9vRAAAAAElFTkSuQmCC Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Gm-Message-State: ALoCoQnq7CA8Z0ibyIpDZw81EvfFOgIInc+CAjdEDMlH4CFkwoGUgVBcx5zhB/d17Yuak1gnbqoA X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: freebsd-ports@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 18:18:18 -0000 On Tue, 05 Mar 2013 10:37:17 -0700 Janky Jay, III articulated: > Same! I've been voting this up for quite some time. All my > votes are dedicated to this. Hopefully it will be implemented soon. > Just keep the votes coming and I'm sure they'll take it seriously at > some point. Interestingly enough, I worked on a project a while ago that had a somewhat similar voting setup. However, since it was determined in advance that some people would inevitable attempt to inflate the actual voting total by voting numerous times, they put safeguards in place. One was to eliminate multiple votes from the same IP I believe. -- Jerry â™” Disclaimer: off-list followups get on-list replies or get ignored. Please do not ignore the Reply-To header. __________________________________________________________________ From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 18:31:54 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 6EBF0F9D for ; Tue, 5 Mar 2013 18:31:54 +0000 (UTC) (envelope-from jankyj@unfs.us) Received: from morbid.purplehat.org (morbid.purplehat.org [206.225.82.173]) by mx1.freebsd.org (Postfix) with ESMTP id 54E756A4 for ; Tue, 5 Mar 2013 18:31:54 +0000 (UTC) Received: from localhost (morbid.purplehat.org [206.225.82.173]) by morbid.purplehat.org (Postfix) with ESMTP id 00E0BD8CE95 for ; Tue, 5 Mar 2013 11:31:54 -0700 (MST) Received: from morbid.purplehat.org ([206.225.82.173]) by localhost (morbid.purplehat.org [206.225.82.173]) (maiad, port 10024) with ESMTP id 62598-03 for ; Tue, 5 Mar 2013 11:31:53 -0700 (MST) Received: from [172.17.244.124] (fw1.aspsys.com [173.14.5.129]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: jankyj@unfs.us) by morbid.purplehat.org (Postfix) with ESMTPSA id 60501D8CE93 for ; Tue, 5 Mar 2013 11:31:53 -0700 (MST) Message-ID: <51363A19.3020203@unfs.us> Date: Tue, 05 Mar 2013 11:31:53 -0700 From: "Janky Jay, III" User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: freebsd-ports@freebsd.org Subject: Re: Dropbox on FreeBSD References: <20121219080412.5396aeb6@scorpio> <1362485055969-5792802.post@n5.nabble.com> <5135E0A9.5020903@gmail.com> <51362D4D.4070407@unfs.us> <20130305131814.3642ccd0@scorpio> In-Reply-To: <20130305131814.3642ccd0@scorpio> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: Maia Mailguard X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 18:31:54 -0000 On 03/05/2013 11:18 AM, Jerry wrote: > On Tue, 05 Mar 2013 10:37:17 -0700 > Janky Jay, III articulated: > >> Same! I've been voting this up for quite some time. All my >> votes are dedicated to this. Hopefully it will be implemented soon. >> Just keep the votes coming and I'm sure they'll take it seriously at >> some point. > > Interestingly enough, I worked on a project a while ago that had a > somewhat similar voting setup. However, since it was determined in > advance that some people would inevitable attempt to inflate the > actual voting total by voting numerous times, they put safeguards in > place. One was to eliminate multiple votes from the same IP I believe. > Hrm. That sounds silly. The Dropbox voting actually encourages it's users to use all their votes however they see fit. If you want to use them all towards one item, go for it. You're only allowed a certain number of votes, though. So, that's the only way they limit it. Regards, Janky Jay, III From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 19:20:15 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 9C590819 for ; Tue, 5 Mar 2013 19:20:15 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [188.252.31.196]) by mx1.freebsd.org (Postfix) with ESMTP id 0E9B9868 for ; Tue, 5 Mar 2013 19:20:14 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5) with ESMTP id r25JK659003696; Tue, 5 Mar 2013 20:20:06 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5/Submit) with ESMTP id r25JK5qZ003693; Tue, 5 Mar 2013 20:20:05 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Tue, 5 Mar 2013 20:20:04 +0100 (CET) From: Wojciech Puchar To: "Janky Jay, III" Subject: Re: Dropbox on FreeBSD In-Reply-To: <51363A19.3020203@unfs.us> Message-ID: References: <20121219080412.5396aeb6@scorpio> <1362485055969-5792802.post@n5.nabble.com> <5135E0A9.5020903@gmail.com> <51362D4D.4070407@unfs.us> <20130305131814.3642ccd0@scorpio> <51363A19.3020203@unfs.us> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Tue, 05 Mar 2013 20:20:06 +0100 (CET) Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 19:20:15 -0000 >> place. One was to eliminate multiple votes from the same IP I believe. >> > > Hrm. That sounds silly. The Dropbox voting actually encourages it's can anyone explain me what is so great in that software. got into webpage, and it looks like detailless advert just like plenty of others. Found that it "simplify sharing", get quite bored after trying to find out WHAT and HOW it actually provides. From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 19:41:52 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 63A5F13E for ; Tue, 5 Mar 2013 19:41:52 +0000 (UTC) (envelope-from bc979@lafn.org) Received: from zoom.lafn.org (zoom.lafn.org [108.92.93.123]) by mx1.freebsd.org (Postfix) with ESMTP id 1BE7796E for ; Tue, 5 Mar 2013 19:41:51 +0000 (UTC) Received: from [10.0.1.2] (static-71-177-216-148.lsanca.fios.verizon.net [71.177.216.148]) (authenticated bits=0) by zoom.lafn.org (8.14.3/8.14.2) with ESMTP id r25JfeTU042414 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO); Tue, 5 Mar 2013 11:41:43 -0800 (PST) (envelope-from bc979@lafn.org) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 6.2 \(1499\)) Subject: Re: Dropbox on FreeBSD From: Doug Hardie In-Reply-To: Date: Tue, 5 Mar 2013 11:41:40 -0800 Content-Transfer-Encoding: quoted-printable Message-Id: <0D830487-F32B-4EEF-902B-4F68F4438B45@lafn.org> References: <20121219080412.5396aeb6@scorpio> <1362485055969-5792802.post@n5.nabble.com> <5135E0A9.5020903@gmail.com> <51362D4D.4070407@unfs.us> <20130305131814.3642ccd0@scorpio> <51363A19.3020203@unfs.us> To: Wojciech Puchar X-Mailer: Apple Mail (2.1499) X-Virus-Scanned: clamav-milter 0.97 at zoom.lafn.org X-Virus-Status: Clean Cc: "Janky Jay, III" , freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 19:41:52 -0000 On 5 March 2013, at 11:20, Wojciech Puchar = wrote: >>> place. One was to eliminate multiple votes from the same IP I = believe. >>=20 >> Hrm. That sounds silly. The Dropbox voting actually encourages = it's >=20 > can anyone explain me what is so great in that software. >=20 > got into webpage, and it looks like detailless advert just like plenty = of others. >=20 > Found that it "simplify sharing", get quite bored after trying to find = out WHAT and HOW it actually provides. Yep its quite boring. However, it can provide a useful service. I use = it to transfer large audio files from a few people who are not strong = computer users and its very simple interface is easy for them to use. = They will actually remember how to use it and do it and there are = clients available for windows machines (which they all use). From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 19:58:25 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 3B6C264A for ; Tue, 5 Mar 2013 19:58:25 +0000 (UTC) (envelope-from jankyj@unfs.us) Received: from morbid.purplehat.org (morbid.purplehat.org [206.225.82.173]) by mx1.freebsd.org (Postfix) with ESMTP id 20CACA13 for ; Tue, 5 Mar 2013 19:58:24 +0000 (UTC) Received: from localhost (morbid.purplehat.org [206.225.82.173]) by morbid.purplehat.org (Postfix) with ESMTP id 5ABC9D8CE98 for ; Tue, 5 Mar 2013 12:58:24 -0700 (MST) Received: from morbid.purplehat.org ([206.225.82.173]) by localhost (morbid.purplehat.org [206.225.82.173]) (maiad, port 10024) with ESMTP id 62598-10 for ; Tue, 5 Mar 2013 12:58:23 -0700 (MST) Received: from [172.17.244.124] (fw1.aspsys.com [173.14.5.129]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: jankyj@unfs.us) by morbid.purplehat.org (Postfix) with ESMTPSA id 57450D8CE93 for ; Tue, 5 Mar 2013 12:58:23 -0700 (MST) Message-ID: <51364E5F.4030001@unfs.us> Date: Tue, 05 Mar 2013 12:58:23 -0700 From: "Janky Jay, III" User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: freebsd-ports@freebsd.org Subject: Re: Dropbox on FreeBSD References: <20121219080412.5396aeb6@scorpio> <1362485055969-5792802.post@n5.nabble.com> <5135E0A9.5020903@gmail.com> <51362D4D.4070407@unfs.us> <20130305131814.3642ccd0@scorpio> <51363A19.3020203@unfs.us> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: Maia Mailguard X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 19:58:25 -0000 On 03/05/2013 12:20 PM, Wojciech Puchar wrote: >>> place. One was to eliminate multiple votes from the same IP I believe. >>> >> >> Hrm. That sounds silly. The Dropbox voting actually encourages it's > > can anyone explain me what is so great in that software. > > got into webpage, and it looks like detailless advert just like plenty > of others. > > Found that it "simplify sharing", get quite bored after trying to find > out WHAT and HOW it actually provides. > It really isn't anything super fantastic. In fact, the only thing I really use it for is it's auto-upload feature for my phone. This way, even if I delete images or other files they are always accessible via Dropbox. It's also handy for sharing files between a lot of devices as well, I suppose. *shrug* Regards, Janky Jay, III From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 21:00:59 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 4A8B9686 for ; Tue, 5 Mar 2013 21:00:59 +0000 (UTC) (envelope-from doug@polands.org) Received: from gilead.atchurch.org (h69-129-174-18.applwi.dedicated.static.tds.net [69.129.174.18]) by mx1.freebsd.org (Postfix) with ESMTP id C7D2FD5A for ; Tue, 5 Mar 2013 21:00:58 +0000 (UTC) Received: from ASSP.nospam (assp.atchurch.org [192.168.1.16]) by gilead.atchurch.org (8.14.4/8.14.4) with ESMTP id r25Ko6Rh082066; Tue, 5 Mar 2013 14:50:06 -0600 (CST) (envelope-from doug@polands.org) Received: from anyhost.local ([127.0.0.1] helo=anyhost.local) by ASSP.nospam with ESMTP (ASSP 1.9); 5 Mar 2013 14:50:06 -0600 Received: from [10.172.25.28] (180.sub-70-194-132.myvzw.com [70.194.132.180]) (authenticated bits=0) by smtps.atchurch.org (8.14.4/8.14.4) with ESMTP id r25KnonV035670 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO); Tue, 5 Mar 2013 14:50:04 -0600 (CST) (envelope-from doug@polands.org) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Subject: Re: Dropbox on FreeBSD References: <20121219080412.5396aeb6@scorpio> <1362485055969-5792802.post@n5.nabble.com> <5135E0A9.5020903@gmail.com> <51362D4D.4070407@unfs.us> <20130305131814.3642ccd0@scorpio> <51363A19.3020203@unfs.us> <0D830487-F32B-4EEF-902B-4F68F4438B45@lafn.org> From: Doug Poland Mime-Version: 1.0 (1.0) In-Reply-To: <0D830487-F32B-4EEF-902B-4F68F4438B45@lafn.org> Message-Id: Date: Tue, 5 Mar 2013 14:27:09 -0600 To: Doug Hardie X-Mailer: iPhone Mail (10B146) Cc: Wojciech Puchar , "Janky Jay, III" , "freebsd-ports@freebsd.org" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 21:00:59 -0000 For a small fee one can create an account at dropdav.com. Dropdav puts a W= ebDav interface in front of Dropbox. My client of choice is www/cadaver. Y= MMV --=20 Regards, Doug On Mar 5, 2013, at 13:41, Doug Hardie wrote: >=20 > On 5 March 2013, at 11:20, Wojciech Puchar wrote: >=20 >>>> place. One was to eliminate multiple votes from the same IP I believe. >>>=20 >>> Hrm. That sounds silly. The Dropbox voting actually encourages it's >>=20 >> can anyone explain me what is so great in that software. >>=20 >> got into webpage, and it looks like detailless advert just like plenty of= others. >>=20 >> Found that it "simplify sharing", get quite bored after trying to find ou= t WHAT and HOW it actually provides. >=20 > Yep its quite boring. However, it can provide a useful service. I use it= to transfer large audio files from a few people who are not strong computer= users and its very simple interface is easy for them to use. They will act= ually remember how to use it and do it and there are clients available for w= indows machines (which they all use). >=20 >=20 >=20 > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 21:40:30 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id E2824CF0; Tue, 5 Mar 2013 21:40:30 +0000 (UTC) (envelope-from jnagyjr1978@gmail.com) Received: from mail-ie0-x229.google.com (mail-ie0-x229.google.com [IPv6:2607:f8b0:4001:c03::229]) by mx1.freebsd.org (Postfix) with ESMTP id AD66EE99; Tue, 5 Mar 2013 21:40:30 +0000 (UTC) Received: by mail-ie0-f169.google.com with SMTP id 13so8591897iea.28 for ; Tue, 05 Mar 2013 13:40:30 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=eaNn6m/okUMYXy+MTTM5liwgod9ILK4A75MlbZRssrU=; b=V/P1ZyxRRxjbJmXGxhRP8xHwEq8/32t9BF5St36vlnSxwxSS7txr9Rv+0iyT+Www/w VtiyiWvMhuzYi/tsgCJlfxDxUY2rgJnImgjt1Mfd6nxJrjK1ds5RZtXGGcE8i9FI4PtS +Wp81SqCBgbfkHMYf5VqEQO6ooxo3OIj7b3oHKeBqWeA3eyfuopFtYTkL4D3MQrgmStf ZCnl5ULAv3e6nftQSt2wO09Z7FPIW+7scvCJ/a1NgySigGX2fz8C932CCGyo9CFTM6d5 MFmLJULWDdu+ApXFFHkTtcnUgjvzkfnv+CGAm42qM1PeOvp6+sgwEzwct7gDQ4HMjNh+ cqVw== X-Received: by 10.50.46.197 with SMTP id x5mr7720742igm.7.1362519630350; Tue, 05 Mar 2013 13:40:30 -0800 (PST) Received: from [192.168.1.66] ([69.8.175.250]) by mx.google.com with ESMTPS id wx2sm19681799igb.4.2013.03.05.13.40.28 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 05 Mar 2013 13:40:29 -0800 (PST) Message-ID: <51366649.1010903@gmail.com> Date: Tue, 05 Mar 2013 15:40:25 -0600 From: "Joseph A. Nagy, Jr" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: Dimitry Andric Subject: Re: audio/audacity still does not compile due to issues with soundtouch References: <5135779D.1000100@gmail.com> <51357D48.9040308@gmail.com> <5135DE27.9050508@FreeBSD.org> <5135DF07.7070807@gmail.com> <51360B7C.5070707@FreeBSD.org> In-Reply-To: <51360B7C.5070707@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: "Ports @ FreeBSD" , xxjack12xx@gmail.com X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 21:40:31 -0000 On 03/05/13 09:13, Dimitry Andric wrote: > Joseph, can you please try out the attached diff for Audacity? > > I have attempted to fix the assumption that samples are always in float > format, and Audacity now compiles and links, even if Soundtouch is > configured with the INTEGER_SAMPLES options. > > However, I cannot currently test if this still properly works at > runtime. Maybe you are able to run this on a test setup, and check if > the Soundtouch effects seem to work as expected. I sure will as the project I was running is on hiatus for now so I have some time to test. Thanks, I'll try to get back to you tonight. -- Yours in Christ, Joseph A Nagy Jr "Whoever loves instruction loves knowledge, But he who hates correction is stupid." -- Proverbs 12:1 Emails are not formal business letters, whatever businesses may want. Original content CopyFree (F) under the OWL http://copyfree.org/licenses/owl/license.txt From owner-freebsd-ports@FreeBSD.ORG Tue Mar 5 23:35:51 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id B2C81388 for ; Tue, 5 Mar 2013 23:35:51 +0000 (UTC) (envelope-from superbisquit@gmail.com) Received: from mail-oa0-f45.google.com (mail-oa0-f45.google.com [209.85.219.45]) by mx1.freebsd.org (Postfix) with ESMTP id 8815F328 for ; Tue, 5 Mar 2013 23:35:51 +0000 (UTC) Received: by mail-oa0-f45.google.com with SMTP id o6so11886072oag.18 for ; Tue, 05 Mar 2013 15:35:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:date:message-id:subject:from:to :content-type; bh=c3xHE5/mcLRDGSfYbVOfF7LsJ5VUEjskMNHCvQzLBnA=; b=hRgfUGtBgWL+mb83OQvzrUAziLCIMrMeA3d3u6cxiqnkrrntrx/shMzkTuc9Pm8eOn n2J6F9Iou3osig6xCmx1ZsQjRuBG52b5RpmqzUf8vn5wHvEAs6wMayKbmDwrqDMNy3p6 wnyNY491B78etkm2e+yvx6JZrJC0YR004xdI5Se222tlgIUQzSMrTTrxsY1Ncj6nUSft wrTwjaAdVDbABOJ1vj6kVGETBUqAAIoHmNUvqvsogIeeexhxjXuOkoDEcYtvYioGnIj6 Srg0GgnIH3dUrINrtsq75ejHRsLZ7aIumOfOhOwRHlb9xWsxxTYKsldyGqG0wDsfnV2F Wl5Q== MIME-Version: 1.0 X-Received: by 10.60.32.134 with SMTP id j6mr21340364oei.15.1362526550642; Tue, 05 Mar 2013 15:35:50 -0800 (PST) Received: by 10.182.116.196 with HTTP; Tue, 5 Mar 2013 15:35:50 -0800 (PST) Date: Tue, 5 Mar 2013 18:35:50 -0500 Message-ID: Subject: Errors with doxygen, qt4make, graphviz, etc on i386 CURRENT From: Super Bisquit To: ports Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Mar 2013 23:35:51 -0000 You can read some of the errors with the maintainers of Ruby, and graphviz. Xxxterm was not added to the ports.txz that came with CURRENT from the last iso built. Firefox-19.0,1 requires a sound plugin. Is it not possible to have it built without sound? From owner-freebsd-ports@FreeBSD.ORG Wed Mar 6 00:20:22 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 640B0223 for ; Wed, 6 Mar 2013 00:20:22 +0000 (UTC) (envelope-from andy@neu.net) Received: from mail.neu.net (neu.net [199.48.129.194]) by mx1.freebsd.org (Postfix) with ESMTP id F03E7676 for ; Wed, 6 Mar 2013 00:20:19 +0000 (UTC) Received: from neu.net (neu.net [199.48.129.194]) by mail.neu.net (8.14.6/8.14.5) with ESMTP id r260KHdO028919 for ; Tue, 5 Mar 2013 19:20:17 -0500 (EST) (envelope-from andy@neu.net) Date: Tue, 5 Mar 2013 19:20:17 -0500 (EST) From: AN To: freebsd-ports@freebsd.org Subject: Help installing font in virtual machine In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Virus-Scanned: clamav-milter 0.97.6 at my.mail.server X-Virus-Status: Clean X-Spam-Status: No, score=0.0 required=4.5 tests=RP_MATCHES_RCVD autolearn=unavailable version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on mail.neu.net X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Mar 2013 00:20:22 -0000 This is a bit off topic for FreeBSD, but I would appreciate any help. I would like to install a font into a virtual machine, the font comes by default in Xorg on FreeBSD it is called Terminal. The font is also installed by default in opensuse and it is called DEC Terminal font. Could somebody tell me which package provides the font, and what package is needed or instructions to install it in a LinuxMint virtual machine. Any help is appreciated, thanks in advance. From owner-freebsd-ports@FreeBSD.ORG Wed Mar 6 00:51:01 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id C305FDCB for ; Wed, 6 Mar 2013 00:51:01 +0000 (UTC) (envelope-from freebsd-ports-local@be-well.ilk.org) Received: from be-well.ilk.org (be-well.ilk.org [23.30.133.173]) by mx1.freebsd.org (Postfix) with ESMTP id 9D4F27A9 for ; Wed, 6 Mar 2013 00:51:01 +0000 (UTC) Received: from lowell-desk.lan (lowell-desk.lan [172.30.250.41]) by be-well.ilk.org (Postfix) with ESMTP id CE81633C41; Tue, 5 Mar 2013 19:50:55 -0500 (EST) Received: by lowell-desk.lan (Postfix, from userid 1147) id AB1CD3984A; Tue, 5 Mar 2013 19:50:53 -0500 (EST) From: Lowell Gilbert To: AN Subject: Re: Help installing font in virtual machine References: Date: Tue, 05 Mar 2013 19:50:53 -0500 In-Reply-To: (AN's message of "Tue, 5 Mar 2013 19:20:17 -0500 (EST)") Message-ID: <44txopjqqa.fsf@lowell-desk.lan> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: freebsd-ports@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Mar 2013 00:51:01 -0000 AN writes: > This is a bit off topic for FreeBSD, but I would appreciate any help. > I would like to install a font into a virtual machine, the font comes > by default in Xorg on FreeBSD it is called Terminal. The font is also > installed by default in opensuse and it is called DEC Terminal font. > Could somebody tell me which package provides the font, and what > package is needed or instructions to install it in a LinuxMint virtual > machine. > > Any help is appreciated, thanks in advance. Look at the Bitstream bit-mapped font collections. From owner-freebsd-ports@FreeBSD.ORG Wed Mar 6 01:08:51 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 7E19172F for ; Wed, 6 Mar 2013 01:08:51 +0000 (UTC) (envelope-from erichsfreebsdlist@alogt.com) Received: from alogt.com (alogt.com [69.36.191.58]) by mx1.freebsd.org (Postfix) with ESMTP id 4A8F488B for ; Wed, 6 Mar 2013 01:08:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=alogt.com; s=default; h=Content-Transfer-Encoding:Content-Type:Mime-Version:References:In-Reply-To:Message-ID:Subject:Cc:To:From:Date; bh=rY+lc5tHzszSOak9W3e8tCMtdFU64bVun3RCT951XFo=; b=iJ8mjg85775/MHTXZb6vI5ngMx5OYYe6ST186YVbHqO00Km9jVlrYi5R0g+b/EkG5Xb2SxosXThk798DrwX70Q4VOvPqJOjV6onJFqlngg61p2Z0EzBRMWXbPK+vFSL7; Received: from [122.129.203.50] (port=27821 helo=X220.ovitrap.com) by sl-508-2.slc.westdc.net with esmtpsa (SSLv3:DHE-RSA-AES128-SHA:128) (Exim 4.80) (envelope-from ) id 1UD2qW-001s6i-Dq; Tue, 05 Mar 2013 18:08:43 -0700 Date: Wed, 6 Mar 2013 08:07:47 +0700 From: Erich Dollansky To: Wojciech Puchar Subject: Re: Dropbox on FreeBSD Message-ID: <20130306080747.4a905ddc@X220.ovitrap.com> In-Reply-To: References: <20121219080412.5396aeb6@scorpio> <1362485055969-5792802.post@n5.nabble.com> <5135E0A9.5020903@gmail.com> <51362D4D.4070407@unfs.us> <20130305131814.3642ccd0@scorpio> <51363A19.3020203@unfs.us> X-Mailer: Claws Mail 3.9.0 (GTK+ 2.24.6; amd64-portbld-freebsd10.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - sl-508-2.slc.westdc.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - alogt.com X-Get-Message-Sender-Via: sl-508-2.slc.westdc.net: authenticated_id: erichsfreebsdlist@alogt.com X-Source: X-Source-Args: X-Source-Dir: Cc: "Janky Jay, III" , freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Mar 2013 01:08:51 -0000 Hi, On Tue, 5 Mar 2013 20:20:04 +0100 (CET) Wojciech Puchar wrote: > >> place. One was to eliminate multiple votes from the same IP I > >> believe. > >> > > > > Hrm. That sounds silly. The Dropbox voting actually > > encourages it's > > can anyone explain me what is so great in that software. > it is a hype. It is a good piece of software if you use Windows and are on a low bandwidth link to the Internet. > got into webpage, and it looks like detailless advert just like > plenty of others. > > Found that it "simplify sharing", get quite bored after trying to > find out WHAT and HOW it actually provides. It is a joke when you are not falling under the categories mentioned above. Erich From owner-freebsd-ports@FreeBSD.ORG Wed Mar 6 01:16:25 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id ABD39846 for ; Wed, 6 Mar 2013 01:16:25 +0000 (UTC) (envelope-from erikzoltan@gmail.com) Received: from mail-we0-x22d.google.com (mail-we0-x22d.google.com [IPv6:2a00:1450:400c:c03::22d]) by mx1.freebsd.org (Postfix) with ESMTP id 4B5508C4 for ; Wed, 6 Mar 2013 01:16:25 +0000 (UTC) Received: by mail-we0-f173.google.com with SMTP id r5so7127970wey.18 for ; Tue, 05 Mar 2013 17:16:24 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=nsfV4cWNY889BjShByJ21+bPzTTMT0zj1aAy+cTOvuE=; b=J6T+nQJahU837yF0la8Iw1z7Q8zbfpbqFaNWV7gSy9qyZLD1ZOzcFV9oTTBtfaIu1Y qLcLBlcIVpWKx2jDcZ5dkSLbaHbwGQ+fQvfKm50tdS+ozN66Gq+ToSl6vV4LvSKqp28T eU7kG7ridv3J8a9L3XPTIoLPAxy8C0/ElaseFRu9+QAdty1uPGUkx8nDNx9IwU2i8zug km4F9uPBsYSU1eAjUIGpFP9xI1ejxG686dQYhQs0Akd3Y5ZS4yHaVvrbS+gvo7Psr5ot nURKZvUp/+MEZBlw52iTmTvh0vRl2xD2wOIKlVYYdaXBYHWOm9bc2tJI85diCoJZVWyM PJIA== MIME-Version: 1.0 X-Received: by 10.181.12.103 with SMTP id ep7mr22621694wid.12.1362532584095; Tue, 05 Mar 2013 17:16:24 -0800 (PST) Received: by 10.194.15.134 with HTTP; Tue, 5 Mar 2013 17:16:23 -0800 (PST) In-Reply-To: <20130306080747.4a905ddc@X220.ovitrap.com> References: <20121219080412.5396aeb6@scorpio> <1362485055969-5792802.post@n5.nabble.com> <5135E0A9.5020903@gmail.com> <51362D4D.4070407@unfs.us> <20130305131814.3642ccd0@scorpio> <51363A19.3020203@unfs.us> <20130306080747.4a905ddc@X220.ovitrap.com> Date: Tue, 5 Mar 2013 20:16:23 -0500 Message-ID: Subject: Re: Dropbox on FreeBSD From: Erik Zoltan To: Erich Dollansky Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: Wojciech Puchar , "Janky Jay, III" , freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Mar 2013 01:16:25 -0000 Dropbox is a good service. You put files in a folder and it automatically synchs them across multiple devices. I can save a document in my dropbox and it appears on my laptop, my smart phone or my wife's computer. She can update the document and I get the changes almost instantly, even though we have thousands of files in there. It works just fine in Linux, Mac and Windows. It's not as well-supported in KDE/Linux but it still works there. It's not perfect and it can occasionally glitch and fail to update, or it can sometimes hog resources trying to compare a lot of files. I'm really troubled by the lack of BSD support so I'm currently looking for a good alternative. I'm also troubled by the fact that I'm giving my data to some corporation and there aren't enough legal protections on my privacy in the US, imho. Thanks, Erik From owner-freebsd-ports@FreeBSD.ORG Wed Mar 6 01:25:51 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id CACADB2E for ; Wed, 6 Mar 2013 01:25:51 +0000 (UTC) (envelope-from superbisquit@gmail.com) Received: from mail-oa0-f52.google.com (mail-oa0-f52.google.com [209.85.219.52]) by mx1.freebsd.org (Postfix) with ESMTP id 9A802906 for ; Wed, 6 Mar 2013 01:25:51 +0000 (UTC) Received: by mail-oa0-f52.google.com with SMTP id k14so11622699oag.25 for ; Tue, 05 Mar 2013 17:25:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:content-type; bh=qBtetcrpJeHHCpl3tC/mVTc0y+WRmeW5kQm2xsVWoag=; b=Tky92jVa1DF6MdlWUQZXA85eaB3SWKmKAZIINunypeq8UMpadyKzsPCakMyzNgoZVA oABru80SLA37r9l8Tkxd6T2VBfX3hGdaUbFSQ9joReSNR/NrZN/FhwTj47Rd9pZ0fBm1 VW1K0p64z2xCnYimACA2Jp06zYBgdsHB0jm6I8VALSdFxcwcSIJKECT72Zi7Dtg9DFrU CHkdBdE3J1ZC8KUl8riwHYa//qWcU9wILfqpWBJGknTI/9E47Lh72dAox6Rp+tlqFqUv LI4+ZvzV00kcY/jh5SEo4rxI1V00N1QLHNaXP74C/d4IzD0/0NXS5lXR6p7nPle1DlOT Be1g== MIME-Version: 1.0 X-Received: by 10.60.32.134 with SMTP id j6mr21554252oei.15.1362533150698; Tue, 05 Mar 2013 17:25:50 -0800 (PST) Received: by 10.182.116.196 with HTTP; Tue, 5 Mar 2013 17:25:50 -0800 (PST) In-Reply-To: References: Date: Tue, 5 Mar 2013 20:25:50 -0500 Message-ID: Subject: Fwd: Airport card is not recognized on i386 From: Super Bisquit To: ports Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Mar 2013 01:25:51 -0000 There ---------- Forwarded message ---------- From: Adrian Chadd Date: Tue, Mar 5, 2013 at 7:58 PM Subject: Re: Airport card is not recognized on i386 To: Super Bisquit Please reply to the list! ADrian On 5 March 2013 16:56, Super Bisquit wrote: > cbb0: Power not on? > cbb0: ready never happened, status = 0c > pccard0: Card has no functions! > cbb0: PC Card card activation failed > ACPI Error: No installed handler for fixed event [0x00000000] > (20110527/evevent-307) > $ > > S/N: PW202UW3LH8 > AirPort ID: 0030651DEE15 > T/N: 21501942 APN: 630-2883/C > FCC ID: IMRWLPC24H > Canada 5791021471A > 3892D451 > pc24-H > 600-9236 > > 825-5620 128bits 017591/b > > > AirPort))) > > Copyright 1999 Apple Computer,Incorporated. All rights reserved. > registered trademark in the USA and other countries. Airport is a > trademark of Apple Computer, Incorporated. > Apple Computer Incorporated Cupertino, California 95014 Made in Taiwan > 825-4593-A > > Since it will not show up when I insert it into the pci slot nor will > it register when if_bwi, if_bwn, if_bge, firmware, miibus or others > are set up. It will not show in 9.0 nor in 10.0. > > On Tue, Mar 5, 2013 at 7:37 PM, Adrian Chadd wrote: >> You need to provide much more information than that. >> >> Like, starting with what kind of airport card it is, what the PCI ID is, etc. >> >> >> >> Adrian From owner-freebsd-ports@FreeBSD.ORG Wed Mar 6 03:08:28 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id CDF74990; Wed, 6 Mar 2013 03:08:28 +0000 (UTC) (envelope-from mike.jakubik@intertainservices.com) Received: from mail.intertainservices.com (mail.intertainservices.com [69.77.177.114]) by mx1.freebsd.org (Postfix) with ESMTP id A570ADA8; Wed, 6 Mar 2013 03:08:28 +0000 (UTC) Received: from mail.intertainservices.com (localhost [127.0.0.1]) by mail.intertainservices.com (Postfix) with ESMTP id D495F564EC; Tue, 5 Mar 2013 22:08:26 -0500 (EST) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Date: Tue, 05 Mar 2013 22:08:26 -0500 From: Mike Jakubik To: Max Brazhnikov Subject: Re: [kde-freebsd] FreeBSD Port: deskutils/strigi Organization: Intertainservices In-Reply-To: <9084678.hJCgtxJcYM@mercury.ph.man.ac.uk> References: <8c9b9e2ff70d16aff6141f6a6062bc39@intertainservices.com> <9084678.hJCgtxJcYM@mercury.ph.man.ac.uk> Message-ID: X-Sender: mike.jakubik@intertainservices.com User-Agent: Roundcube Webmail/0.8.1 X-intertainservices-MailScanner-Information: Please contact the ISP for more information X-intertainservices-MailScanner-ID: D495F564EC.A1A6F X-intertainservices-MailScanner: Found to be clean X-intertainservices-MailScanner-From: mike.jakubik@intertainservices.com X-Spam-Status: No Cc: ports@freebsd.org, kde-freebsd@kde.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Mar 2013 03:08:28 -0000 On 2013-03-05 08:11 AM, Max Brazhnikov wrote: > On Mon, 04 Mar 2013 23:56:11 -0500 Mike Jakubik wrote: >> Hello, >> >> I am unable to compile this port with either Clang or GCC, have also >> reinstalled clucene but no luck. > > Try this recipe: > http://mail.kde.org/pipermail/kde-freebsd/2013-February/014846.html Unfortunately that did not solve the issue for me. I added "libclucene-shared" to CMakeLists.txt, also tried "clucene-shared", it can't find it for some reason. [ 65%] Built target lucene2indexer Linking CXX executable index2dump /usr/bin/ld: cannot find -llibclucene-shared clang++: error: linker command failed with exit code 1 (use -v to see invocation) *** [libstreamanalyzer/plugins/indexers/clucenengindexer/indexdump/index2dump] Error code 1 Stop in /usr/ports/deskutils/strigi/work/strigi-0.7.7. *** [libstreamanalyzer/plugins/indexers/clucenengindexer/indexdump/CMakeFiles/index2dump.dir/all] Error code 1 $ ls -l /usr/local/lib/libclucene* lrwxr-xr-x 1 root wheel 28 Mar 4 23:48 /usr/local/lib/libclucene-contribs-lib.so -> libclucene-contribs-lib.so.1 lrwxr-xr-x 1 root wheel 34 Mar 4 23:48 /usr/local/lib/libclucene-contribs-lib.so.1 -> libclucene-contribs-lib.so.2.3.3.4 -rwxr-xr-x 1 root wheel 401656 Mar 4 23:48 /usr/local/lib/libclucene-contribs-lib.so.2.3.3.4 lrwxr-xr-x 1 root wheel 20 Mar 4 23:48 /usr/local/lib/libclucene-core.so -> libclucene-core.so.1 lrwxr-xr-x 1 root wheel 26 Mar 4 23:48 /usr/local/lib/libclucene-core.so.1 -> libclucene-core.so.2.3.3.4 -rwxr-xr-x 1 root wheel 1661136 Mar 4 23:48 /usr/local/lib/libclucene-core.so.2.3.3.4 lrwxr-xr-x 1 root wheel 22 Mar 4 23:48 /usr/local/lib/libclucene-shared.so -> libclucene-shared.so.1 lrwxr-xr-x 1 root wheel 28 Mar 4 23:48 /usr/local/lib/libclucene-shared.so.1 -> libclucene-shared.so.2.3.3.4 -rwxr-xr-x 1 root wheel 127976 Mar 4 23:48 /usr/local/lib/libclucene-shared.so.2.3.3.4 From owner-freebsd-ports@FreeBSD.ORG Wed Mar 6 07:35:54 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 759B3125 for ; Wed, 6 Mar 2013 07:35:54 +0000 (UTC) (envelope-from aasoft@gmail.com) Received: from mail-qc0-x229.google.com (mail-qc0-x229.google.com [IPv6:2607:f8b0:400d:c01::229]) by mx1.freebsd.org (Postfix) with ESMTP id 2D5DB7D4 for ; Wed, 6 Mar 2013 07:35:54 +0000 (UTC) Received: by mail-qc0-f169.google.com with SMTP id t2so1388779qcq.0 for ; Tue, 05 Mar 2013 23:35:53 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:mime-version:in-reply-to:references:from:date:message-id :subject:to:cc:content-type; bh=DDjnmLJt+EPU5QyTskqx8iabu+yX92FA/wahfZMK4fs=; b=h35+8OpIPH1Y5CqJ1v+eAtLgcfVVK6O7y+b023+IpvFL8oZ3nXVvXMw9OEZ3+M/CMi KAUwqzDw9t3yl0HlAHnoVGX6b8eR5r1AJriXqrQJ4HwqUjafzNFz9Ca91NyLC/PMs5LT /pokB0YcBWjIGxy8rEOxTq38gapF3SvFzsVtYBdzlWKCx54EaHJAkvXFqlfWphX8Tglf 9E4WAaTr9XGRo6ZjGEIB0asI/tEW4ISBPFgrG0jgVjCnZ7mg9qCAG15zo1LkQtIhKP9D GKEe2rz7ZX/b43H4aw9DHVWtybXCpC6SPPMZGAleyP3k8R59FmwM5TpLeYJAGjRj5vdJ f4yA== X-Received: by 10.229.172.16 with SMTP id j16mr9524082qcz.42.1362555353676; Tue, 05 Mar 2013 23:35:53 -0800 (PST) MIME-Version: 1.0 Received: by 10.229.61.137 with HTTP; Tue, 5 Mar 2013 23:35:33 -0800 (PST) In-Reply-To: References: <20121219080412.5396aeb6@scorpio> <1362485055969-5792802.post@n5.nabble.com> <5135E0A9.5020903@gmail.com> <51362D4D.4070407@unfs.us> <20130305131814.3642ccd0@scorpio> <51363A19.3020203@unfs.us> <20130306080747.4a905ddc@X220.ovitrap.com> From: Anton Afanasyev Date: Tue, 5 Mar 2013 23:35:33 -0800 Message-ID: Subject: Re: Dropbox on FreeBSD To: Erik Zoltan Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Mar 2013 07:35:54 -0000 On Tue, Mar 5, 2013 at 5:16 PM, Erik Zoltan wrote: > [...] I'm currently looking for a good alternative [...] > http://owncloud.org/ self-hosted on a server somewhere with a fast connection and enough bandwidth? Anton From owner-freebsd-ports@FreeBSD.ORG Wed Mar 6 10:11:51 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 039B39B for ; Wed, 6 Mar 2013 10:11:51 +0000 (UTC) (envelope-from dnebdal@gmail.com) Received: from mail-wg0-f49.google.com (mail-wg0-f49.google.com [74.125.82.49]) by mx1.freebsd.org (Postfix) with ESMTP id 7003BEE3 for ; Wed, 6 Mar 2013 10:11:50 +0000 (UTC) Received: by mail-wg0-f49.google.com with SMTP id 15so7050273wgd.4 for ; Wed, 06 Mar 2013 02:11:49 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=0TDPpxy9Z4wKO2mKL8PJag1Yw8vgClqVGzu6ODoUHsQ=; b=hPOqizAEbDLE9WBk6+Cn0CbAosqbvKeBe/WwKCwlGyMuP7RRC8oV+v5mbWzHvv9WzD eGOuHTPlTCrILJohh1Hi2gtKg8ZdZaxZDZogh72T0xlp7bk2G8PQ0Mg1fbymPJSbUWyb pcfde184b/TsjMxV2vIZll68Ee0wkmB7CAIEtWuhMTmtIpUOXeXkDCWYunypAeTyA0kr 4/grz56ilJRUj9im+hK8jXH/Lc70iujOhLhU1XnQ05a4Ytjyu9hgoouOuhPEA0W5Vs1E Qo51knByW+IZixf6haNzIe6SjN5PPnLUHxvmqXUKkG3knxvzHaUjk+fIKLaGcTnKM3c6 SZIA== MIME-Version: 1.0 X-Received: by 10.204.149.22 with SMTP id r22mr10735734bkv.75.1362564709151; Wed, 06 Mar 2013 02:11:49 -0800 (PST) Received: by 10.205.142.7 with HTTP; Wed, 6 Mar 2013 02:11:48 -0800 (PST) In-Reply-To: <5135E0AB.3040806@zedat.fu-berlin.de> References: <5135E0AB.3040806@zedat.fu-berlin.de> Date: Wed, 6 Mar 2013 11:11:48 +0100 Message-ID: Subject: Re: port building in CURRENT (including r247839) BROKEN From: Daniel Nebdal To: "Hartmann, O." Content-Type: text/plain; charset=ISO-8859-1 Cc: Ports FreeBSD X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Mar 2013 10:11:51 -0000 On Tue, Mar 5, 2013 at 1:10 PM, Hartmann, O. wrote: > On all FreeBSD boxes with > FreeBSD 10.0-CURRENT #1 r247839: Tue Mar 5 12:28:12 CET 2013/amd64 the > build of ports - or updating/upgrading ports is BROKEN! > > Every port which is about to be updated fails with > > [...] > *** [do-extract] Signal 13 > > This is common on ALL CURRENT systems so I consider this a BREAKAGE. > > The problem is painful due to the fact that several kernel modules need, > accordung to the entry 20130304: in /usr/src/UPDATING an update. > > devel/dbus isn't starting anymore on ALL systems, I couldn't figure out > why. So X11 doesn't start either. And I can not rebuild those ports to > accomplish what's suggested/required in UPDATING. > > Regards, > Oliver There's a few posts in -current about the same thing, and it does not appear to be limited to ports. Just going by the complaints, I would guess that something recently committed subtly broke pipes (in certain circumstances). Signal 13 is defined as "write to a pipe with no reader", so feel free to speculate or debug. -- Daniel Nebdal From owner-freebsd-ports@FreeBSD.ORG Wed Mar 6 10:13:13 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id CC61F27C for ; Wed, 6 Mar 2013 10:13:13 +0000 (UTC) (envelope-from dnebdal@gmail.com) Received: from mail-bk0-x22a.google.com (mail-bk0-x22a.google.com [IPv6:2a00:1450:4008:c01::22a]) by mx1.freebsd.org (Postfix) with ESMTP id 6241DF12 for ; Wed, 6 Mar 2013 10:13:13 +0000 (UTC) Received: by mail-bk0-f42.google.com with SMTP id jk7so271708bkc.29 for ; Wed, 06 Mar 2013 02:13:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=3AWH8EtTD4ai/VQP39WIXLvUt3mwSQFtAdQ6eTaveyQ=; b=uwTxgk3EEsdYgOQwFqQkSDxjY5CIibH/wgxYJ9X8wRaPftqi4ooOssz7rz9zVo2ybQ fhiqGjlCTnzpyU1LdbSOos1PlVTK1/T8UUwpBFdu1dkM7F2ufPQ21QZvPsltz/l3SfZs b7J2lJIrcuqj88T9DTbf2LsW07Hr+IRnpK/zDKb9ACmW3HkLYTRxdSuAI5y2hWCCkwd1 i4/vr32Xx2/xIhUkmsIlw6nN7yIPAUbvg2iya8+r0bt80ZSiyPtKSdB6NzXY9Q8+1DfR yUr0YRUfMhojVz8MteMsFMyfv/euTRWIOhWyu8Ov5Lqnrbkc2xLOQYC3Knk3hURMWb4b cQ/A== MIME-Version: 1.0 X-Received: by 10.204.151.72 with SMTP id b8mr10837370bkw.132.1362564792564; Wed, 06 Mar 2013 02:13:12 -0800 (PST) Received: by 10.205.142.7 with HTTP; Wed, 6 Mar 2013 02:13:12 -0800 (PST) In-Reply-To: References: <5135E0AB.3040806@zedat.fu-berlin.de> Date: Wed, 6 Mar 2013 11:13:12 +0100 Message-ID: Subject: Re: port building in CURRENT (including r247839) BROKEN From: Daniel Nebdal To: "Hartmann, O." Content-Type: text/plain; charset=ISO-8859-1 Cc: Ports FreeBSD X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Mar 2013 10:13:13 -0000 On Wed, Mar 6, 2013 at 11:11 AM, Daniel Nebdal wrote: > On Tue, Mar 5, 2013 at 1:10 PM, Hartmann, O. > wrote: >> On all FreeBSD boxes with >> FreeBSD 10.0-CURRENT #1 r247839: Tue Mar 5 12:28:12 CET 2013/amd64 the >> build of ports - or updating/upgrading ports is BROKEN! >> >> Every port which is about to be updated fails with >> >> [...] >> *** [do-extract] Signal 13 >> >> This is common on ALL CURRENT systems so I consider this a BREAKAGE. >> >> The problem is painful due to the fact that several kernel modules need, >> accordung to the entry 20130304: in /usr/src/UPDATING an update. >> >> devel/dbus isn't starting anymore on ALL systems, I couldn't figure out >> why. So X11 doesn't start either. And I can not rebuild those ports to >> accomplish what's suggested/required in UPDATING. >> >> Regards, >> Oliver > > There's a few posts in -current about the same thing, and it does not > appear to be limited to ports. > > Just going by the complaints, I would guess that something recently > committed subtly broke pipes (in certain circumstances). Signal 13 is > defined as "write to a pipe with no reader", so feel free to speculate > or debug. > > -- > Daniel Nebdal Ha, I see you were writing a sensible post to -current while I typed that - never mind me, then. :) -- Daniel Nebdal From owner-freebsd-ports@FreeBSD.ORG Wed Mar 6 10:17:56 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 6E7C933F for ; Wed, 6 Mar 2013 10:17:56 +0000 (UTC) (envelope-from lukasz@wasikowski.net) Received: from mail.wasikowski.net (mail.wasikowski.net [IPv6:2001:6a0:1cb::b]) by mx1.freebsd.org (Postfix) with ESMTP id 258BDF36 for ; Wed, 6 Mar 2013 10:17:56 +0000 (UTC) Received: from mail.wasikowski.net (mail.wasikowski.net [IPv6:2001:6a0:1cb::b]) by mail.wasikowski.net (Postfix) with ESMTP id B8BC718D2 for ; Wed, 6 Mar 2013 11:17:46 +0100 (CET) X-Virus-Scanned: amavisd-new at wasikowski.net Received: from mail.wasikowski.net ([91.204.91.44]) by mail.wasikowski.net (scan.wasikowski.net [91.204.91.44]) (amavisd-new, port 10026) with ESMTP id Qil2jBgiv4G2 for ; Wed, 6 Mar 2013 11:17:46 +0100 (CET) Received: from [192.168.138.150] (cadera.waw.pl [62.121.127.119]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mail.wasikowski.net (Postfix) with ESMTPSA id 6C8E318CF for ; Wed, 6 Mar 2013 11:17:46 +0100 (CET) Message-ID: <513717CA.2040504@wasikowski.net> Date: Wed, 06 Mar 2013 11:17:46 +0100 From: =?UTF-8?B?xYF1a2FzeiBXxIVzaWtvd3NraQ==?= User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/20130215 Thunderbird/17.0.3 MIME-Version: 1.0 To: ports-list freebsd Subject: Re: Dropbox on FreeBSD References: <20121219080412.5396aeb6@scorpio> <1362485055969-5792802.post@n5.nabble.com> <5135E0A9.5020903@gmail.com> <51362D4D.4070407@unfs.us> <20130305131814.3642ccd0@scorpio> <51363A19.3020203@unfs.us> In-Reply-To: X-Enigmail-Version: 1.5.1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Mar 2013 10:17:56 -0000 W dniu 2013-03-05 20:20, Wojciech Puchar pisze: > got into webpage, and it looks like detailless advert just like plenty > of others. > > Found that it "simplify sharing", get quite bored after trying to find > out WHAT and HOW it actually provides. I'm using Dropbox with boxcryptor (files gets encrypted on device and then sent to the Dropbox cloud) - it's nice synchronization tool between my home pc, work pc, netbook and android smartphone. Also auto upload of photos from the phone and easy sharing of files with non-tech people is a neat feature. I'm not saying it's the best of them all, but it does it job good and it's quite popular. I'd love to see FreeBSD client of it. -- best regards, Lukasz Wasikowski From owner-freebsd-ports@FreeBSD.ORG Wed Mar 6 13:45:29 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 13D9C1F4 for ; Wed, 6 Mar 2013 13:45:29 +0000 (UTC) (envelope-from portscout@portscout.freebsd.org) Received: from null.zi0r.com (null.zi0r.com [71.245.171.204]) by mx1.freebsd.org (Postfix) with ESMTP id CAD5AB22 for ; Wed, 6 Mar 2013 13:45:28 +0000 (UTC) Received: from null.zi0r.com (localhost [127.0.0.1]) by null.zi0r.com (8.14.5/8.14.5) with ESMTP id r26DjSU9035016 for ; Wed, 6 Mar 2013 08:45:28 -0500 (EST) (envelope-from portscout@null.zi0r.com) Received: (from portscout@localhost) by null.zi0r.com (8.14.5/8.14.5/Submit) id r26DjSSw034930; Wed, 6 Mar 2013 08:45:28 -0500 (EST) (envelope-from portscout) Message-Id: <201303061345.r26DjSSw034930@null.zi0r.com> MIME-Version: 1.0 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain Date: Wed, 6 Mar 2013 08:45:28 -0500 From: portscout@portscout.freebsd.org To: ports@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Mar 2013 13:45:29 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/ports@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ devel/make++ | 2.0 | 2.0.98.3 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt If wish to stop receiving portscout reminders, please contact portscout@portscout.freebsd.org Thanks. From owner-freebsd-ports@FreeBSD.ORG Wed Mar 6 14:29:16 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 4BA62D7F for ; Wed, 6 Mar 2013 14:29:16 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-we0-x230.google.com (mail-we0-x230.google.com [IPv6:2a00:1450:400c:c03::230]) by mx1.freebsd.org (Postfix) with ESMTP id 31AF4DFE for ; Wed, 6 Mar 2013 14:29:15 +0000 (UTC) Received: by mail-we0-f176.google.com with SMTP id s43so7876043wey.21 for ; Wed, 06 Mar 2013 06:29:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:sender:date:from:to:subject:message-id:mime-version :content-type:content-disposition:user-agent; bh=/+lL2ZrmgTcOPOkzX401cJuTDwToVLqzumhgj1cHYOQ=; b=ohWO1lmsEC5ZgJQ8efq1+ZcM/sIB7pRVZRYpm4x3qa4PLu+J4AI+gbEqf0CYlYr4Qy V7suQR+zC+t/ua7kFHrpyqgnV/yPa7lzDt9/gIFkWUzo+Wekw2HkkoCWPLq2GaY10D3T 4/4aJZfHan9bz24eH+pHGHAFpHR7CQaRFWNyZ63uptZDIqb2/Cw/lV2qrRp1/xZKcLgi TB2KwfAmi1BpWywWQBz04zTxB+1rS0FJRBW7G2kbs378aGc8T3zIIzTauATB5C6J3lXJ Dz3sleRwfPSWQZeOqsQOLet6+2cDKw8Lo3OdcunQSTcNCK81zw1PueLYFXGZF8mw5whX 9AtA== X-Received: by 10.181.12.5 with SMTP id em5mr755009wid.24.1362580154351; Wed, 06 Mar 2013 06:29:14 -0800 (PST) Received: from ithaqua.etoilebsd.net (ithaqua.etoilebsd.net. [37.59.37.188]) by mx.google.com with ESMTPS id eo1sm27184301wib.8.2013.03.06.06.29.12 (version=TLSv1 cipher=RC4-SHA bits=128/128); Wed, 06 Mar 2013 06:29:13 -0800 (PST) Sender: Baptiste Daroussin Date: Wed, 6 Mar 2013 15:29:11 +0100 From: Baptiste Daroussin To: ports@FreeBSD.org Subject: [HEADSUP] new USES in ports Message-ID: <20130306142911.GH18971@ithaqua.etoilebsd.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="LZFKeWUZP29EKQNE" Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Mar 2013 14:29:16 -0000 --LZFKeWUZP29EKQNE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, The ports now support a new Macro (porters only): USES You may use it that way: USES= pathfix feature1 feature2:arguments it will load the following files (just at the begining of bsd.port.post.mk): Mk/Uses/pathfix.mk Mk/Uses/feature1.mk Mk/Uses/feature2.mk aka load features on demand. a feature2_ARGS variable will be created and it will contain "arguments" The first feature available is: pathfix pathfix is a copy of the bsd.gnome.mk "gnomehack" so that porters do not need to include the full bsd.gnome.mk each time they need it. Lots more to come regards, Bapt --LZFKeWUZP29EKQNE Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlE3UrcACgkQ8kTtMUmk6EwCkwCeJTCOluAD9lhTYWTuQ7jDw7GK Gn0Anjek28Lr5QiDwdbUEShWr2m/Buly =7raQ -----END PGP SIGNATURE----- --LZFKeWUZP29EKQNE-- From owner-freebsd-ports@FreeBSD.ORG Wed Mar 6 17:19:16 2013 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id AAA20D19; Wed, 6 Mar 2013 17:19:16 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 9DBA28B7; Wed, 6 Mar 2013 17:19:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r26HJGqT034150; Wed, 6 Mar 2013 17:19:16 GMT (envelope-from tabthorpe@freefall.freebsd.org) Received: (from tabthorpe@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r26HJG6R034149; Wed, 6 Mar 2013 17:19:16 GMT (envelope-from tabthorpe) Date: Wed, 6 Mar 2013 17:19:16 +0000 From: Thomas Abthorpe To: ports@FreeBSD.org Subject: [HEADS UP] FreeBSD Ports tree has been tagged with RELEASE_7_EOL Message-ID: <20130306171916.GA34145@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Mar 2013 17:19:16 -0000 The FreeBSD Ports Management Team wishes to remind users that February 28 was the end of support for the Ports Collection for both FreeBSD 7.4 RELEASE and the FreeBSD 7.x STABLE branch. Neither the infrastructure nor individual ports are guaranteed to work on these FreeBSD versions after that date. A tag has be created for users who cannot upgrade for some reason, at which time these users are advised to stop tracking the latest ports repository and use the RELEASE_7_EOL tag instead. While many people still use RELENG_7, it is at the end of its development cycle. The Ports Management team has set the following policies with regard to EOL/EOS of this branch and would like to let developers know that: - We do not require committers/maintainers to support 7.x, although ports will need to be marked as BROKEN/IGNORE if they do not build/run. - Port maintainers are encouraged to accept patches from the community that allow their ports to build and run on 7.x. However, since running on 7.x is no longer a requirement, maintainers may use their discretion in cases where a proposed patch would be disruptive to other supported FreeBSD branches, or would unreasonably impede ongoing maintenance of the port. - We strongly encourage all users and developers to migrate to the FreeBSD 8.x or 9.x branch, both of which is a stable and mature platform, and are now the reference branches for the ports collection. Pleae refer to the FreeBSD Security Officer list of unsupported branches http://www.freebsd.org/security/#unsup From owner-freebsd-ports@FreeBSD.ORG Wed Mar 6 18:41:17 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 21329970 for ; Wed, 6 Mar 2013 18:41:17 +0000 (UTC) (envelope-from wolfgang.riegler@gmx.de) Received: from slave2.cbt-l.de (slave2.cbt-l.de [91.205.173.116]) by mx1.freebsd.org (Postfix) with ESMTP id D501AE45 for ; Wed, 6 Mar 2013 18:41:16 +0000 (UTC) Received: from localhost (slave2.cbt-l.de [127.0.0.1]) by slave2.cbt-l.de (Postfix) with ESMTP id 9B60112008CD for ; Wed, 6 Mar 2013 19:41:09 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at slave2.cbt-l.de Received: from slave2.cbt-l.de ([127.0.0.1]) by localhost (slave2.cbt-l.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4M-nTFqrGV3z for ; Wed, 6 Mar 2013 19:41:09 +0100 (CET) Received: from mail.cbt-l.de (mail.cbt-l.de [212.185.49.146]) by slave2.cbt-l.de (Postfix) with ESMTP id D243812008CC for ; Wed, 6 Mar 2013 19:41:08 +0100 (CET) Received: (qmail 39154 invoked by uid 1009); 6 Mar 2013 18:41:08 -0000 Received: from 192.168.40.46 by mail.cbt-l.de (envelope-from , uid 1008) with qmail-scanner-1.25-st-qms (clamdscan: ClamAV 0.97.6/15380. spamassassin: 3.3.0. perlscan: 1.25-st-qms. Clear:RC:1(192.168.40.46):. Processed in 0.051855 secs); 06 Mar 2013 18:41:08 -0000 X-Antivirus-CBTL-Mail-From: wolfgang.riegler@gmx.de via mail.cbt-l.de X-Antivirus-CBTL: 1.25-st-qms (Clear:RC:1(192.168.40.46):. Processed in 0.051855 secs Process 39062) Received: from wolfgang.cbt-l.de (HELO wolfgang.localnet) (w.riegler@cbt-l.de@192.168.40.46) by mail.cbt-l.de with SMTP; 6 Mar 2013 18:41:08 -0000 From: Wolfgang Riegler To: ports@freebsd.org Subject: xbmc and poudriere compile error Date: Wed, 06 Mar 2013 19:40:33 +0100 Message-ID: <1621063.4o9VRTxcAU@wolfgang> User-Agent: KMail/4.9.5 (Linux/3.7.5-pf-sepp1; KDE/4.9.5; x86_64; ; ) MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="utf-8" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Mar 2013 18:41:17 -0000 Hi, I have problems compiling xbmc with poudriere-devel. Logfile says: DVDAudioCodecFFmpeg.cpp: In member function 'virtual int CDVDAudioCodecFFmpeg::Decode(BYTE*, int)': DVDAudioCodecFFmpeg.cpp:163: error: 'struct AVFrame' has no member named 'nb_samples' DVDAudioCodecFFmpeg.cpp: In member function 'void CDVDAudioCodecFFmpeg::ConvertToFloat()': DVDAudioCodecFFmpeg.cpp:208: error: 'struct AVFrame' has no member named 'nb_samples' gmake[1]: *** [DVDAudioCodecFFmpeg.o] Error 1 gmake: *** [xbmc/cores/dvdplayer/DVDCodecs/Audio/Audio.a] Error 2 *** [do-build] Error code 1 I tried several options, EXTERNAL_FFMPEG, NONFREE and LIBBLURAY on and off, but no changes. I also tried compiling without CCACHE Poudriere uses a FreeBSD 9.1-RELEASE AMD64 Jail. Any help is appreciated, thanks in advance. kind regards Wolfgang Riegler From owner-freebsd-ports@FreeBSD.ORG Wed Mar 6 18:56:35 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 5E51C2E9 for ; Wed, 6 Mar 2013 18:56:35 +0000 (UTC) (envelope-from reverse2500@gmail.com) Received: from mail-ob0-x22e.google.com (mail-ob0-x22e.google.com [IPv6:2607:f8b0:4003:c01::22e]) by mx1.freebsd.org (Postfix) with ESMTP id 30AD8EFA for ; Wed, 6 Mar 2013 18:56:35 +0000 (UTC) Received: by mail-ob0-f174.google.com with SMTP id 16so3782126obc.5 for ; Wed, 06 Mar 2013 10:56:34 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:date:message-id:subject:from:to :content-type:content-transfer-encoding; bh=XlwtDUIkGq1QkbaLfqmZpBjbTmapUhPzD7p4QZcunzA=; b=ntiR69GGfo89evYYlVRJqCs9hk6kJLM2YLdIwmfokQuWuJr6Z9PDx8sVixg62S4TMf Ug5MUzAOM3H1vwUFzvv6JFPeORMLCTaNFaY5NnWjxkEDv69Z3Iyn/y46oe+CthS4you9 eCFEv0s4LEciVuRyBeSkYB4J12pwW0nKEY2h0VPTR48HAyqqhwgAvzS4yoxVydXC8j6p n/tLvnGavZfUlADqR0W+4P40g86Td5tL2gP4d62TCTvLXM5IJAGVyy3udYn4J9NiwVK1 fRBY5oxwtEG4P9X/9nlCMJ3OXmi8wVnBQs+GzKMeRLL6LqVAQtySagd+chRUhQ9Irg/5 27RQ== MIME-Version: 1.0 X-Received: by 10.60.10.102 with SMTP id h6mr23523217oeb.14.1362596194828; Wed, 06 Mar 2013 10:56:34 -0800 (PST) Received: by 10.60.27.135 with HTTP; Wed, 6 Mar 2013 10:56:34 -0800 (PST) Date: Wed, 6 Mar 2013 20:56:34 +0200 Message-ID: Subject: geda- From: =?KOI8-U?B?7cnIwcnMIPLc18XS0w==?= To: ports@freebsd.org Content-Type: text/plain; charset=KOI8-U Content-Transfer-Encoding: quoted-printable X-Mailman-Approved-At: Wed, 06 Mar 2013 19:11:14 +0000 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Mar 2013 18:56:35 -0000 Installing geda-symcheck-1.4.3_4,1...pkg: geda-symcheck-1.4.3_4,1 conflicts with geda-1.8.1,1 (installs files into the same place). Problematic file: /usr/local/man/man1/gsymcheck.1.gz *** [fake-pkg] Error code 70 Stop in /usr/ports/cad/geda-symcheck. and also such in geda-utils geda-attrib geda gathered, and some additional components aren't present, it while so is necessary? --=20 =F1 =A4 =D1! =B6 =CD=C5=CE=C5 =CE=C5 =DA=CD=A6=CE=C9=D4=C9 From owner-freebsd-ports@FreeBSD.ORG Wed Mar 6 19:15:51 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 48644A3C; Wed, 6 Mar 2013 19:15:51 +0000 (UTC) (envelope-from rank1seeker@gmail.com) Received: from mail-bk0-x236.google.com (mail-bk0-x236.google.com [IPv6:2a00:1450:4008:c01::236]) by mx1.freebsd.org (Postfix) with ESMTP id AF303FE4; Wed, 6 Mar 2013 19:15:50 +0000 (UTC) Received: by mail-bk0-f54.google.com with SMTP id w5so432829bku.27 for ; Wed, 06 Mar 2013 11:15:49 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:from:to:subject:date:content-type :content-transfer-encoding:in-reply-to:references:x-mailer; bh=IGvtO2wRFrSxjJdcyiIJRT7bHZR4UuEOdCwpM0gljic=; b=hbfqnADnlOPPGbfQUtKG4qb/XQ53tlOTF41cPr9JZi2mIaZA/Y17ohG8065J2KAc/h qjWd/gLLsZ+nn4quo536TmuTGC39F+gfRH4izPjUfjwcoqpwV7YOEAReOoae7PO4mmOO cVruqcOMI7pUhDaUPy8wG1s7X9BMcrl3Ta8vBcOTFkkYdo5OBB191r6Zqu2gk/8n7s5Z R6W1H78XYtjFCwQ1r1zq+/2MZnPuZBHCmJMsX/VLdXUwzBbuQNKuW9Cq3vn5W2heAz5A sUKC3b2bo/3WHCB2Tx9OyZblAOgt2IlC3o0DReuZ8NkS8WfRbAH+i5zDEjj+cVM67Oov c3LQ== X-Received: by 10.204.147.144 with SMTP id l16mr11895209bkv.96.1362597349262; Wed, 06 Mar 2013 11:15:49 -0800 (PST) Received: from DOMYPC ([193.198.56.247]) by mx.google.com with ESMTPS id g28sm8702161bkv.17.2013.03.06.11.15.45 (version=TLSv1 cipher=RC4-SHA bits=128/128); Wed, 06 Mar 2013 11:15:46 -0800 (PST) Message-ID: <20130306.191546.824.1@DOMY-PC> From: rank1seeker@gmail.com To: "Chris Rees" , ports@freebsd.org Subject: Re: portdowngrade(CVS) deprecated -> alternative for portsnap(8) usage Date: Wed, 06 Mar 2013 20:15:46 +0100 Content-Type: text/plain; charset="Windows-1250" Content-Transfer-Encoding: quoted-printable In-Reply-To: References: <20130104.195945.545.13@DOMY-PC> X-Mailer: POP Peeper (3.8.1.0) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Mar 2013 19:15:51 -0000 > > http://forums.freebsd.org/showthread.php?p=3D203241=0D=0A> >=0D=0A> > = Will it be transformed to checkout via SVN, only origins we need, or = will=0D=0A> > it be dumped from ports tree as obsolete.=0D=0A> > = Thanks.=0D=0A> >=0D=0A> =0D=0A> Hey,=0D=0A> =0D=0A> I rewrote it in sh, = quite simply because I thought that c++ was insane=0D=0A> for such simple = code.=0D=0A> =0D=0A> I'm afraid it doesn't quite have the same behaviour, = but it's still=0D=0A> very easy to use.=0D=0A> =0D=0A> Please let me know = if there's something you desperately miss about the=0D=0A> old = version.=0D=0A> =0D=0A> Chris=0D=0A>=0D=0A=0D=0A=0D=0AThanks for your = effort!=0D=0A=0D=0A# portdowngrade audio/oss=0D=0A Listed all = revisions=0D=0A# portdowngrade audio/oss r300895=0D=0A I've picked one = from the past=0D=0A=0D=0AHowever:=0D=0A# portsnap fetch update=0D=0A = Is blind to this change and fails to update it back, to it's latest = version=0D=0A=0D=0Aportdowngrade should also alter/update portsnap's = DB=0D=0A=0D=0A=0D=0ADomagoj Smol=E8i=E6=0D=0A From owner-freebsd-ports@FreeBSD.ORG Wed Mar 6 19:28:22 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 01DFCC79 for ; Wed, 6 Mar 2013 19:28:22 +0000 (UTC) (envelope-from bsd-src@helfman.org) Received: from mail-ve0-f174.google.com (mail-ve0-f174.google.com [209.85.128.174]) by mx1.freebsd.org (Postfix) with ESMTP id ADBEE11F for ; Wed, 6 Mar 2013 19:28:21 +0000 (UTC) Received: by mail-ve0-f174.google.com with SMTP id pb11so6907459veb.19 for ; Wed, 06 Mar 2013 11:28:14 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:x-received:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :x-gm-message-state; bh=CrZMNG8C0kEduo35NbB/qYP00/9txfF+gCIxs3Q0vcY=; b=LzsRtYtM+J7mFETZFIFBtJPV0xYS9vfU3WQLmA1Ns5g0NKR7AOQmMMx5IMUvU0Apff /dGaIu7O1PEZ90Z+eXLpHI7aBDRjOEji6TM9oCgW87U2EnqAhhWl87YZdJL4kZvdASin t69l2QFBRHXtByHh/eokpIqP2e5okcv2iKA6ccL8NWhAOlon3H5RGB7ZgKeGng5kxSmX dN+cwv/72kz30xi1sGvG4dpLiRYq0sToIq7+v5UUVNlZ8UUPQQsXZ3FpVT4YNWpLFpTm I3m/zve3r5WszuYWaUkXqg9je1kUcxGp2mAGv/Lw2MdpxI+wUDjCODqF0M8jQQ+GDbmM huIQ== MIME-Version: 1.0 X-Received: by 10.52.175.66 with SMTP id by2mr10686180vdc.53.1362598094704; Wed, 06 Mar 2013 11:28:14 -0800 (PST) Sender: bsd-src@helfman.org Received: by 10.58.30.79 with HTTP; Wed, 6 Mar 2013 11:28:14 -0800 (PST) In-Reply-To: <20130306.191546.824.1@DOMY-PC> References: <20130104.195945.545.13@DOMY-PC> <20130306.191546.824.1@DOMY-PC> Date: Wed, 6 Mar 2013 11:28:14 -0800 X-Google-Sender-Auth: VWmDsieWmCVdCKx_tz3brkY4InE Message-ID: Subject: Re: portdowngrade(CVS) deprecated -> alternative for portsnap(8) usage From: Jason Helfman To: rank1seeker@gmail.com X-Gm-Message-State: ALoCoQn3arJL0LNQ2g5N8nV//vyc7wlk8/mCOjasnhs82m+eUlqH5ncAoykquJcQqDsJjzZh5BYY Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: Chris Rees , FreeBSD Ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Mar 2013 19:28:22 -0000 On Wed, Mar 6, 2013 at 11:15 AM, wrote: > > > http://forums.freebsd.org/showthread.php?p=3D203241 > > > > > > Will it be transformed to checkout via SVN, only origins we need, or > will > > > it be dumped from ports tree as obsolete. > > > Thanks. > > > > > > > Hey, > > > > I rewrote it in sh, quite simply because I thought that c++ was insane > > for such simple code. > > > > I'm afraid it doesn't quite have the same behaviour, but it's still > > very easy to use. > > > > Please let me know if there's something you desperately miss about the > > old version. > > > > Chris > > > > > Thanks for your effort! > > # portdowngrade audio/oss > Listed all revisions > # portdowngrade audio/oss r300895 > I've picked one from the past > > However: > # portsnap fetch update > Is blind to this change and fails to update it back, to it's latest > version > > portdowngrade should also alter/update portsnap's DB > > > Domagoj Smol=C4=8Di=C4=87 Portdowngrade always warned that portsnap would always overwrite any altering of the origin, which I believe is still the best path. If anything a warning should be displayed, if not already. -jgh -- Jason Helfman | FreeBSD Committer jgh@FreeBSD.org | http://people.freebsd.org/~jgh | The Power to Serve From owner-freebsd-ports@FreeBSD.ORG Wed Mar 6 20:00:17 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 7A5A4552; Wed, 6 Mar 2013 20:00:17 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-ie0-x233.google.com (mail-ie0-x233.google.com [IPv6:2607:f8b0:4001:c03::233]) by mx1.freebsd.org (Postfix) with ESMTP id 43F542C3; Wed, 6 Mar 2013 20:00:17 +0000 (UTC) Received: by mail-ie0-f179.google.com with SMTP id k11so9923389iea.38 for ; Wed, 06 Mar 2013 12:00:17 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=5A1XutRHPTD+Jrzsyh9lBjbm16R85xol7GrP5bKn9zo=; b=DwdCSAPr8Bop3EW0UBfU+c8h2j2/wZRZzyrcUPbGGMonQAzzLRPOkzsvdn+V7iGbKG jsiNqaFTJLe3lMKwTx0v6BI+WHLUwwxw6IpL7XVEeUFa5Pp0lquuTMYMjTGb9+QnCM+I 1l+xqgNK8rQOgG1eSmEktAF/Q0Z7Q8X+B3SRkZoW/mOt2caDVnlgcvZ1ZxEz29BfNLaD EdD5jQ0NxN1JuwaBqV1DtT85vKEErFFd/SpEiZLKqWm9EggSPdNbY+m/xaxDupF0DXVY OIJB/ls0FAUXAv0K6QKDqrvyE28Yn63sG8jfKripmfAOcmXBQjbpNyIfd0SvPzbnPdy7 Sz5A== MIME-Version: 1.0 X-Received: by 10.50.13.175 with SMTP id i15mr12261159igc.75.1362600016945; Wed, 06 Mar 2013 12:00:16 -0800 (PST) Received: by 10.64.63.12 with HTTP; Wed, 6 Mar 2013 12:00:16 -0800 (PST) Received: by 10.64.63.12 with HTTP; Wed, 6 Mar 2013 12:00:16 -0800 (PST) In-Reply-To: <20130306.191546.824.1@DOMY-PC> References: <20130104.195945.545.13@DOMY-PC> <20130306.191546.824.1@DOMY-PC> Date: Wed, 6 Mar 2013 20:00:16 +0000 Message-ID: Subject: Re: portdowngrade(CVS) deprecated -> alternative for portsnap(8) usage From: Chris Rees To: rank1seeker@gmail.com Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: Chris Rees , ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Mar 2013 20:00:17 -0000 On 6 Mar 2013 19:15, wrote: > > > > http://forums.freebsd.org/showthread.php?p=203241 > > > > > > Will it be transformed to checkout via SVN, only origins we need, or will > > > it be dumped from ports tree as obsolete. > > > Thanks. > > > > > > > Hey, > > > > I rewrote it in sh, quite simply because I thought that c++ was insane > > for such simple code. > > > > I'm afraid it doesn't quite have the same behaviour, but it's still > > very easy to use. > > > > Please let me know if there's something you desperately miss about the > > old version. > > > > Chris > > > > > Thanks for your effort! > > # portdowngrade audio/oss > Listed all revisions > # portdowngrade audio/oss r300895 > I've picked one from the past > > However: > # portsnap fetch update > Is blind to this change and fails to update it back, to it's latest version > > portdowngrade should also alter/update portsnap's DB Portdowngrade now simply checks out the port to your current directory; if you run it in ~, you simply cd $portname. I wouldn't recommend the old behaviour of downgrading in place like that; it significantly complicates many things, including svn conflicts and portsnap update maybe overwriting it, maybe not. I view it as a tool for testing older versions/reverting until a fix is issued. Chris From owner-freebsd-ports@FreeBSD.ORG Wed Mar 6 21:28:32 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id E2CEDE98 for ; Wed, 6 Mar 2013 21:28:32 +0000 (UTC) (envelope-from lkchen@k-state.edu) Received: from ksu-out.merit.edu (ksu-out.merit.edu [207.75.117.133]) by mx1.freebsd.org (Postfix) with ESMTP id AF113980 for ; Wed, 6 Mar 2013 21:28:32 +0000 (UTC) X-Merit-ExtLoop1: 1 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Av8EAB20N1HPS3TT/2dsb2JhbABEiCW9cBZzgisBAQUjYg8aAg0ZAlmILAyaQ45VhDaFNIkKBIEjjgaCF4ETA4hsnk+DJ4IJ X-IronPort-AV: E=Sophos;i="4.84,797,1355115600"; d="scan'208";a="33877444" X-MERIT-SOURCE: KSU Received: from ksu-sfpop-mailstore02.merit.edu ([207.75.116.211]) by sfpop-ironport04.merit.edu with ESMTP; 06 Mar 2013 16:28:26 -0500 Date: Wed, 6 Mar 2013 16:28:26 -0500 (EST) From: "Lawrence K. Chen, P.Eng." To: freebsd-ports@freebsd.org Message-ID: <1111948331.23334355.1362605306555.JavaMail.root@k-state.edu> In-Reply-To: <1362485055969-5792802.post@n5.nabble.com> Subject: Re: Dropbox on FreeBSD MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Originating-IP: [129.130.0.181] X-Mailer: Zimbra 7.2.2_GA_2852 (ZimbraWebClient - GC25 ([unknown])/7.2.2_GA_2852) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Mar 2013 21:28:32 -0000 Something must have happened...its like at the top of page 4 in "popular" for me. But, I've thrown some more votes on it. In the meantime...I'm running a Linux VM in VirtualBox on my FreeBSD machine, serving it out using NFS from the VM and mounting it in FreeBSD (which is what raises the issue of mountlate being too agressive on dealing with the NFS mount....mountlate runs a couple of steps after mountcritremote, so that's way too early to late mount it. and using bg, mountlate will do another bg mount....resulting in double bg NFS mounts.) Though I've been meaning to take a look at owncloud. ----- Original Message ----- > There is a votebox on this question on the dropbox site. The > petition to add > FreeBSD support to dropbox is in second place on the "most popular" > list. I > find that really encouraging. > > The petition is actually very close to overtaking the most popular > suggestion (adding support for languages other than English.) > > For anyone who would run Dropbox on BSD if it were natively > supported, > voting for this initiative may be the best way to encourage them to > add such > support. > > https://www.dropbox.com/votebox/186/add-support-for-freebsd > > Thanks, > Erik > > > Lawrence From owner-freebsd-ports@FreeBSD.ORG Wed Mar 6 21:32:06 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id EF75B316 for ; Wed, 6 Mar 2013 21:32:06 +0000 (UTC) (envelope-from lkchen@k-state.edu) Received: from ksu-out.merit.edu (ksu-out.merit.edu [207.75.117.133]) by mx1.freebsd.org (Postfix) with ESMTP id A61499B6 for ; Wed, 6 Mar 2013 21:32:06 +0000 (UTC) X-Merit-ExtLoop1: 1 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AkAFAKm0N1HPS3TT/2dsb2JhbAAqFwMWhzVaiTwCtDIWc4IrAQEFDBcEXgILAhgCAg0ZAh0GNgYTiAEDDwwujWiMLo5Vh3GBIA1MiQ4EgR+LIYEHgVmCHIETA4hsi3+Cfoo6hRiDJ4FUNQ X-IronPort-AV: E=Sophos;i="4.84,797,1355115600"; d="scan'208";a="213823449" X-MERIT-SOURCE: KSU Received: from ksu-sfpop-mailstore02.merit.edu ([207.75.116.211]) by sfpop-ironport02.merit.edu with ESMTP; 06 Mar 2013 16:32:05 -0500 Date: Wed, 6 Mar 2013 16:32:05 -0500 (EST) From: "Lawrence K. Chen, P.Eng." To: FreeBSD Ports Message-ID: <2058626689.23335691.1362605525788.JavaMail.root@k-state.edu> In-Reply-To: Subject: Re: portdowngrade(CVS) deprecated -> alternative for portsnap(8) usage MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Originating-IP: [129.130.0.181] X-Mailer: Zimbra 7.2.2_GA_2852 (ZimbraWebClient - GC25 ([unknown])/7.2.2_GA_2852) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Mar 2013 21:32:07 -0000 Doesn't the old advice of adding, something like REFUSE audio/oss to /etc/portsnap.conf still work? ----- Original Message ----- > On Wed, Mar 6, 2013 at 11:15 AM, wrote: >=20 > > > > http://forums.freebsd.org/showthread.php?p=3D203241 > > > > > > > > Will it be transformed to checkout via SVN, only origins we > > > > need, or > > will > > > > it be dumped from ports tree as obsolete. > > > > Thanks. > > > > > > > > > > Hey, > > > > > > I rewrote it in sh, quite simply because I thought that c++ was > > > insane > > > for such simple code. > > > > > > I'm afraid it doesn't quite have the same behaviour, but it's > > > still > > > very easy to use. > > > > > > Please let me know if there's something you desperately miss > > > about the > > > old version. > > > > > > Chris > > > > > > > > > Thanks for your effort! > > > > # portdowngrade audio/oss > > Listed all revisions > > # portdowngrade audio/oss r300895 > > I've picked one from the past > > > > However: > > # portsnap fetch update > > Is blind to this change and fails to update it back, to it's > > latest > > version > > > > portdowngrade should also alter/update portsnap's DB > > > > > > Domagoj Smol=C4=8Di=C4=87 >=20 >=20 > Portdowngrade always warned that portsnap would always overwrite any > altering of the origin, which I believe is still the best path. If > anything > a warning should be displayed, if not already. >=20 > -jgh >=20 --=20 Who: Lawrence K. Chen, P.Eng. - W0LKC - Senior Unix Systems Administrator For: Enterprise Server Technologies (EST) -- & SafeZone Ally Snail: Computing and Telecommunications Services (CTS) Kansas State University, 109 East Stadium, Manhattan, KS 66506-3102 Phone: (785) 532-4916 - Fax: (785) 532-3515 - Email: lkchen@ksu.edu Web: http://www-personal.ksu.edu/~lkchen - Where: 11 Hale Library From owner-freebsd-ports@FreeBSD.ORG Wed Mar 6 21:34:56 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 427AD3D9 for ; Wed, 6 Mar 2013 21:34:56 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-ie0-x229.google.com (mail-ie0-x229.google.com [IPv6:2607:f8b0:4001:c03::229]) by mx1.freebsd.org (Postfix) with ESMTP id 193929DC for ; Wed, 6 Mar 2013 21:34:56 +0000 (UTC) Received: by mail-ie0-f169.google.com with SMTP id 13so10323802iea.0 for ; Wed, 06 Mar 2013 13:34:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=RLTwDxX6umd2WAcdpOwdKC8JpFgXJoPN6L5DYrFp2Kc=; b=nUc50AjuZY2ykZKrJ2QHTzGi7Bj0vqHaqhc+cLa/fkEGnJm1AXEl37ZJ7Q+Tjj1UTZ KnE91EudI0HEMsMCPB9cIIdC6CbaSCDexHq0XZGK0i3QNwSPv8R/Fufu5dRU6zqcoUdY x121VMkcv3ik1oH6V6zSSoK4eW5xEtrYc6wBt5x5Qrisgvvp4a5BQPKjqDg//+b9FoSV vBYHPa7uTnqGXnDIGqXQaYbUiW2+PB2XTkYjNOoeSh2mQeGxSuJGaIKQSYNhnhLFZ1x/ 6kR6IgvQVQY73kVOvnqeoLAzGKNv9b3GhgsNHUyLspwOsNJFl9FeDiN8e49GW6U7UhHh GYmw== X-Received: by 10.50.53.180 with SMTP id c20mr12690759igp.15.1362605695769; Wed, 06 Mar 2013 13:34:55 -0800 (PST) MIME-Version: 1.0 Sender: utisoft@gmail.com Received: by 10.64.63.12 with HTTP; Wed, 6 Mar 2013 13:34:25 -0800 (PST) In-Reply-To: <2058626689.23335691.1362605525788.JavaMail.root@k-state.edu> References: <2058626689.23335691.1362605525788.JavaMail.root@k-state.edu> From: Chris Rees Date: Wed, 6 Mar 2013 21:34:25 +0000 X-Google-Sender-Auth: sb-QR07EhMLHpvywpwDrv8ZEXu8 Message-ID: Subject: Re: portdowngrade(CVS) deprecated -> alternative for portsnap(8) usage To: "Lawrence K. Chen, P.Eng." Content-Type: text/plain; charset=ISO-8859-1 Cc: FreeBSD Ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Mar 2013 21:34:56 -0000 On 6 March 2013 21:32, Lawrence K. Chen, P.Eng. wrote: > Doesn't the old advice of adding, something like > > REFUSE audio/oss > > to /etc/portsnap.conf still work? I hope I haven't upset anyone with the change in behaviour, but I need to reiterate that portdowngrade no longer touches the ports tree-- it simply provides a port skeleton in the current directory. Therefore, this is no longer a problem. Chris From owner-freebsd-ports@FreeBSD.ORG Wed Mar 6 22:10:55 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 8C82CCD0; Wed, 6 Mar 2013 22:10:55 +0000 (UTC) (envelope-from mexas@bristol.ac.uk) Received: from dirg.bris.ac.uk (dirg.bris.ac.uk [137.222.10.102]) by mx1.freebsd.org (Postfix) with ESMTP id 52892B40; Wed, 6 Mar 2013 22:10:55 +0000 (UTC) Received: from irix.bris.ac.uk ([137.222.10.39] helo=ncs.bris.ac.uk) by dirg.bris.ac.uk with esmtp (Exim 4.72) (envelope-from ) id 1UDMXp-0007bB-ES; Wed, 06 Mar 2013 22:10:47 +0000 Received: from cpc1-aztw9-0-0-cust540.18-1.cable.virginmedia.com ([82.33.90.29] helo=zzz.men.bris.ac.uk) by ncs.bris.ac.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1UDMXp-0006Nz-6k; Wed, 06 Mar 2013 22:10:41 +0000 Received: from zzz.men.bris.ac.uk (localhost [127.0.0.1]) by zzz.men.bris.ac.uk (8.14.6/8.14.6) with ESMTP id r26MAegS014838; Wed, 6 Mar 2013 22:10:40 GMT (envelope-from mexas@zzz.men.bris.ac.uk) Received: (from mexas@localhost) by zzz.men.bris.ac.uk (8.14.6/8.14.6/Submit) id r26MAeN0014837; Wed, 6 Mar 2013 22:10:40 GMT (envelope-from mexas) Date: Wed, 6 Mar 2013 22:10:40 GMT From: Anton Shterenlikht Message-Id: <201303062210.r26MAeN0014837@zzz.men.bris.ac.uk> To: gerald@freebsd.org Subject: regression: lang/gcc47, gcc48 on amd64: configure: error: cannot compute suffix of object files: cannot compile X-Spam-Score: -1.9 X-Spam-Level: - Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: mexas@bristol.ac.uk List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Mar 2013 22:10:55 -0000 Hi Gerald amd64 r246552 with clang root@zzz:~ # pkg version -vX gcc-4.\*2013 gcc-4.7.3.20130216 < needs updating (port has 4.7.3.20130302) gcc-4.8.0.20130210 < needs updating (port has 4.8.0.20130303) root@zzz:~ # Identical error for both ports: checking for x86_64-portbld-freebsd10.0-gcc... /usr/ports/lang/gcc48/work/build/./gcc/xgcc -B/usr/ports/lang/gcc48/work/build/./gcc/ -B/usr/local/x86_64-portbld-freebsd10.0/bin/ -B/usr/local/x86_64-portbld-freebsd10.0/lib/ -isystem /usr/local/x86_64-portbld-freebsd10.0/include -isystem /usr/local/x86_64-portbld-freebsd10.0/sys-include checking for suffix of object files... configure: error: in `/usr/ports/lang/gcc48/work/build/x86_64-portbld-freebsd10.0/libgcc': configure: error: cannot compute suffix of object files: cannot compile See `config.log' for more details. gmake[2]: *** [configure-stage1-target-libgcc] Error 1 checking for x86_64-portbld-freebsd10.0-gcc... /usr/ports/lang/gcc47/work/build/./gcc/xgcc -B/usr/ports/lang/gcc47/work/build/./gcc/ -B/usr/local/x86_64-portbld-freebsd10.0/bin/ -B/usr/local/x86_64-portbld-freebsd10.0/lib/ -isystem /usr/local/x86_64-portbld-freebsd10.0/include -isystem /usr/local/x86_64-portbld-freebsd10.0/sys-include checking for suffix of object files... configure: error: in `/usr/ports/lang/gcc47/work/build/x86_64-portbld-freebsd10.0/libgcc': configure: error: cannot compute suffix of object files: cannot compile See `config.log' for more details. gmake[2]: *** [configure-stage1-target-libgcc] Error 1 Shall I open a GCC PR? Anton From owner-freebsd-ports@FreeBSD.ORG Wed Mar 6 22:33:05 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id BB3A9767 for ; Wed, 6 Mar 2013 22:33:05 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from ainaz.pair.com (ainaz.pair.com [209.68.2.66]) by mx1.freebsd.org (Postfix) with ESMTP id 9DF08D0D for ; Wed, 6 Mar 2013 22:33:05 +0000 (UTC) Received: from tuna.dhcp.wal.novell.com (unknown [130.57.22.201]) by ainaz.pair.com (Postfix) with ESMTPSA id A46383F410; Wed, 6 Mar 2013 17:32:56 -0500 (EST) Date: Wed, 6 Mar 2013 17:32:53 -0500 (EST) From: Gerald Pfeifer To: Anton Shterenlikht Subject: Re: regression: lang/gcc47, gcc48 on amd64: configure: error: cannot compute suffix of object files: cannot compile In-Reply-To: <201303062210.r26MAeN0014837@zzz.men.bris.ac.uk> Message-ID: References: <201303062210.r26MAeN0014837@zzz.men.bris.ac.uk> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Mar 2013 22:33:05 -0000 On Wed, 6 Mar 2013, Anton Shterenlikht wrote: > Hi Gerald > > amd64 r246552 with clang clang may be related. Can you look into what happens here? My tests (with a full build) definitely have succeeded, and they have actually used clang as cc on FreeBSD 10. Is this specific to amd64 for you and works on i386, say? > Shall I open a GCC PR? No, unless it looks like a general issue. So far my guess is that it may be something in your environment. Gerald From owner-freebsd-ports@FreeBSD.ORG Wed Mar 6 22:59:20 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id BBB75605; Wed, 6 Mar 2013 22:59:20 +0000 (UTC) (envelope-from lkchen@k-state.edu) Received: from ksu-out.merit.edu (ksu-out.merit.edu [207.75.117.133]) by mx1.freebsd.org (Postfix) with ESMTP id 4C20CE86; Wed, 6 Mar 2013 22:59:20 +0000 (UTC) X-Merit-ExtLoop1: 1 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Av8EALXJN1HPS3TT/2dsb2JhbABDiCi9dBZzgisBAQUjBFIMDw4KAgINGQJZBhOIE6kIiW2JDoEjjEWDWIETA4hsnk+DJ4FNPA X-IronPort-AV: E=Sophos;i="4.84,798,1355115600"; d="scan'208";a="207450340" X-MERIT-SOURCE: KSU Received: from ksu-sfpop-mailstore02.merit.edu ([207.75.116.211]) by sfpop-ironport07.merit.edu with ESMTP; 06 Mar 2013 17:59:19 -0500 Date: Wed, 6 Mar 2013 17:59:19 -0500 (EST) From: "Lawrence K. Chen, P.Eng." To: Chris Rees Message-ID: <1067072446.23381912.1362610759524.JavaMail.root@k-state.edu> In-Reply-To: Subject: Re: portdowngrade(CVS) deprecated -> alternative for portsnap(8) usage MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Originating-IP: [129.130.0.181] X-Mailer: Zimbra 7.2.2_GA_2852 (ZimbraWebClient - GC25 ([unknown])/7.2.2_GA_2852) Cc: FreeBSD Ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Mar 2013 22:59:20 -0000 ----- Original Message ----- > On 6 March 2013 21:32, Lawrence K. Chen, P.Eng. > wrote: > > Doesn't the old advice of adding, something like > > > > REFUSE audio/oss > > > > to /etc/portsnap.conf still work? > > I hope I haven't upset anyone with the change in behaviour, but I > need > to reiterate that portdowngrade no longer touches the ports tree-- it > simply provides a port skeleton in the current directory. > > Therefore, this is no longer a problem. > > Chris > Except I don't know of another way to downgrade a port to work with other ports....perhaps there's a way in portmaster.rc that I haven't stumbled upon yet. I know I had something in pkgtools.conf at one time to prevent virtualbox from upgrading (has istgt been updated to work with the current virtualbox yet? Have since removed istgt....) Forget what the other time that I used portdowngrade....something to do with X11 I think, which was resolved by rebuilding with "WITH_NEW_XORG=YES" in my /etc/make.conf. OTOH, there are parts of my ports tree that I have to remember to 'update' after a 'portsnap update'....like www/chromium Lawrence From owner-freebsd-ports@FreeBSD.ORG Wed Mar 6 23:58:04 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id BC3B9916 for ; Wed, 6 Mar 2013 23:58:04 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [188.252.31.196]) by mx1.freebsd.org (Postfix) with ESMTP id 18818288 for ; Wed, 6 Mar 2013 23:58:03 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5) with ESMTP id r26NvhgZ005601; Thu, 7 Mar 2013 00:57:43 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5/Submit) with ESMTP id r26NvfTX005598; Thu, 7 Mar 2013 00:57:41 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Thu, 7 Mar 2013 00:57:41 +0100 (CET) From: Wojciech Puchar To: Erik Zoltan Subject: Re: Dropbox on FreeBSD In-Reply-To: Message-ID: References: <20121219080412.5396aeb6@scorpio> <1362485055969-5792802.post@n5.nabble.com> <5135E0A9.5020903@gmail.com> <51362D4D.4070407@unfs.us> <20130305131814.3642ccd0@scorpio> <51363A19.3020203@unfs.us> <20130306080747.4a905ddc@X220.ovitrap.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Thu, 07 Mar 2013 00:57:43 +0100 (CET) Cc: Erich Dollansky , "Janky Jay, III" , freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Mar 2013 23:58:04 -0000 > Dropbox is a good service. You put files in a folder and it automatically synchs them across multiple devices. someone else service? not mine - i mean dropbox server installed by me? just one another way to control people. No thanks. From owner-freebsd-ports@FreeBSD.ORG Thu Mar 7 00:04:22 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 0514CCEB for ; Thu, 7 Mar 2013 00:04:22 +0000 (UTC) (envelope-from mexas@bristol.ac.uk) Received: from dirg.bris.ac.uk (dirg.bris.ac.uk [137.222.10.102]) by mx1.freebsd.org (Postfix) with ESMTP id C15A32CC for ; Thu, 7 Mar 2013 00:04:21 +0000 (UTC) Received: from ncsc.bris.ac.uk ([137.222.10.41]) by dirg.bris.ac.uk with esmtp (Exim 4.72) (envelope-from ) id 1UDOJo-0002gl-O8; Thu, 07 Mar 2013 00:04:20 +0000 Received: from mech-cluster241.men.bris.ac.uk ([137.222.187.241]) by ncsc.bris.ac.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1UDOJo-0002ek-8I; Thu, 07 Mar 2013 00:04:20 +0000 Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.6/8.14.6) with ESMTP id r2704JqJ014623; Thu, 7 Mar 2013 00:04:19 GMT (envelope-from mexas@mech-cluster241.men.bris.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.6/8.14.6/Submit) id r2704JtO014622; Thu, 7 Mar 2013 00:04:19 GMT (envelope-from mexas) Date: Thu, 7 Mar 2013 00:04:19 GMT From: Anton Shterenlikht Message-Id: <201303070004.r2704JtO014622@mech-cluster241.men.bris.ac.uk> To: bf1783@gmail.com Subject: Re: regression: lang/gcc47, gcc48 on amd64: configure: error: cannot compute suffix of object files: cannot compile In-Reply-To: Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: mexas@bristol.ac.uk List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Mar 2013 00:04:22 -0000 From bf1783@googlemail.com Wed Mar 6 23:04:14 2013 > > checking for x86_64-portbld-freebsd10.0-gcc... /usr/ports/lang/gcc48/work/build/./gcc/xgcc -B/usr/ports/lang/gcc48/work/build/./gcc/ -B/usr/local/x86_64-portbld-freebsd10.0/bin/ -B/usr/local/x86_64-portbld-freebsd10.0/lib/ -isystem /usr/local/x86_64-portbld-freebsd10.0/include -isystem /usr/local/x86_64-portbld-freebsd10.0/sys-include > checking for suffix of object files... configure: error: in `/usr/ports/lang/gcc48/work/build/x86_64-portbld-freebsd10.0/libgcc': > configure: error: cannot compute suffix of object files: cannot compile > See `config.log' for more details. > gmake[2]: *** [configure-stage1-target-libgcc] Error 1 > > > checking for x86_64-portbld-freebsd10.0-gcc... /usr/ports/lang/gcc47/work/build/./gcc/xgcc -B/usr/ports/lang/gcc47/work/build/./gcc/ -B/usr/local/x86_64-portbld-freebsd10.0/bin/ -B/usr/local/x86_64-portbld-freebsd10.0/lib/ -isystem /usr/local/x86_64-portbld-freebsd10.0/include -isystem /usr/local/x86_64-portbld-freebsd10.0/sys-include > checking for suffix of object files... configure: error: in `/usr/ports/lang/gcc47/work/build/x86_64-portbld-freebsd10.0/libgcc': > configure: error: cannot compute suffix of object files: cannot compile > See `config.log' for more details. > gmake[2]: *** [configure-stage1-target-libgcc] Error 1 > > Shall I open a GCC PR? > Not without learning more first. I had to comment out the 3 last lines: # cat /etc/make.conf SENDMAIL_CFLAGS+= -I/usr/local/include -DSASL=2 SENDMAIL_LDFLAGS+= -L/usr/local/lib SENDMAIL_LDADD+= -lsasl2 WITH_PKGNG=yes PERL_VERSION=5.16.2 #CMAKE_ARGS+= -DCMAKE_COLOR_MAKEFILE=off #CFLAGS+= -fno-color-diagnostics #CXXFLAGS+= -fno-color-diagnostics to make gcc-4.7 build: ===>>> Upgrade of gcc-4.7.3.20130216 to gcc-4.7.3.20130302 complete I'm checking gcc-4.8 now. The irony is that I added those lines to have clearer diagnostics of failures with sript(1). Thanks Anton From owner-freebsd-ports@FreeBSD.ORG Thu Mar 7 03:27:22 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id DC002946 for ; Thu, 7 Mar 2013 03:27:22 +0000 (UTC) (envelope-from lee@dilkie.com) Received: from data.snhdns.com (data.snhdns.com [208.76.82.136]) by mx1.freebsd.org (Postfix) with ESMTP id 91A28BF3 for ; Thu, 7 Mar 2013 03:27:22 +0000 (UTC) Received: from [142.46.160.218] (port=52251 helo=[206.51.1.11]) by data.snhdns.com with esmtpsa (TLSv1:DHE-RSA-AES256-SHA:256) (Exim 4.80) (envelope-from ) id 1UDQbr-0006fI-0k; Wed, 06 Mar 2013 21:31:07 -0500 Message-ID: <5137FBEE.7070804@dilkie.com> Date: Wed, 06 Mar 2013 21:31:10 -0500 From: Lee Dilkie User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130215 Thunderbird/17.0.3 MIME-Version: 1.0 To: Wojciech Puchar Subject: Re: Dropbox on FreeBSD References: <20121219080412.5396aeb6@scorpio> <1362485055969-5792802.post@n5.nabble.com> <5135E0A9.5020903@gmail.com> <51362D4D.4070407@unfs.us> <20130305131814.3642ccd0@scorpio> <51363A19.3020203@unfs.us> <20130306080747.4a905ddc@X220.ovitrap.com> In-Reply-To: X-Enigmail-Version: 1.5.1 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - data.snhdns.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - dilkie.com X-Get-Message-Sender-Via: data.snhdns.com: authenticated_id: lee@dilkie.com Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: Erich Dollansky , "Janky Jay, III" , freebsd-ports@freebsd.org, Erik Zoltan X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Mar 2013 03:27:22 -0000 On 3/6/2013 6:57 PM, Wojciech Puchar wrote: >> Dropbox is a good service. You put files in a folder and it >> automatically synchs them across multiple devices. > > someone else service? not mine - i mean dropbox server installed by me? > > just one another way to control people. > > Control people? How do they "control people"? From owner-freebsd-ports@FreeBSD.ORG Thu Mar 7 04:20:05 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 76B98E42 for ; Thu, 7 Mar 2013 04:20:05 +0000 (UTC) (envelope-from bah@bananmonarki.se) Received: from feeder.usenet4all.se (1-1-1-38a.far.sth.bostream.se [82.182.32.53]) by mx1.freebsd.org (Postfix) with ESMTP id DC2B7DCA for ; Thu, 7 Mar 2013 04:20:03 +0000 (UTC) Received: from kw.news4all.se (usenet4all.se [82.182.32.53]) by feeder.usenet4all.se (8.13.1/8.13.1) with ESMTP id r274JsN2054492; Thu, 7 Mar 2013 05:19:55 +0100 (CET) (envelope-from bah@bananmonarki.se) Message-ID: <5138154F.6080404@bananmonarki.se> Date: Thu, 07 Mar 2013 05:19:27 +0100 From: Bernt Hansson User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:17.0) Gecko/20130301 Thunderbird/17.0.3 MIME-Version: 1.0 To: =?UTF-8?B?0JzQuNGF0LDQuNC7INCg0Y3QstC10YDRgQ==?= Subject: Re: geda- References: In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Cc: ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Mar 2013 04:20:05 -0000 2013-03-06 19:56, Михаил РÑÐ²ÐµÑ€Ñ skrev: > Installing geda-symcheck-1.4.3_4,1...pkg: geda-symcheck-1.4.3_4,1 > conflicts with geda-1.8.1,1 (installs files into the same place). > Problematic file: /usr/local/man/man1/gsymcheck.1.gz > *** [fake-pkg] Error code 70 > > Stop in /usr/ports/cad/geda-symcheck. > > and also such in > geda-utils > geda-attrib > > geda gathered, and some additional components aren't present, it while > so is necessary? > You can use kicad if you don't get geda working. From owner-freebsd-ports@FreeBSD.ORG Thu Mar 7 07:31:25 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id DF8B0E3B for ; Thu, 7 Mar 2013 07:31:25 +0000 (UTC) (envelope-from mexas@bristol.ac.uk) Received: from dirg.bris.ac.uk (dirg.bris.ac.uk [137.222.10.102]) by mx1.freebsd.org (Postfix) with ESMTP id 8C0783FE for ; Thu, 7 Mar 2013 07:31:25 +0000 (UTC) Received: from ncsc.bris.ac.uk ([137.222.10.41]) by dirg.bris.ac.uk with esmtp (Exim 4.72) (envelope-from ) id 1UDVIS-00033N-GT; Thu, 07 Mar 2013 07:31:24 +0000 Received: from mech-cluster241.men.bris.ac.uk ([137.222.187.241]) by ncsc.bris.ac.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1UDVIS-0004St-3v; Thu, 07 Mar 2013 07:31:24 +0000 Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.6/8.14.6) with ESMTP id r277VNao022453; Thu, 7 Mar 2013 07:31:23 GMT (envelope-from mexas@mech-cluster241.men.bris.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.6/8.14.6/Submit) id r277VN0V022452; Thu, 7 Mar 2013 07:31:23 GMT (envelope-from mexas) Date: Thu, 7 Mar 2013 07:31:23 GMT From: Anton Shterenlikht Message-Id: <201303070731.r277VN0V022452@mech-cluster241.men.bris.ac.uk> To: bf1783@gmail.com Subject: Re: regression: lang/gcc47, gcc48 on amd64: configure: error: cannot compute suffix of object files: cannot compile In-Reply-To: Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: mexas@bristol.ac.uk List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Mar 2013 07:31:25 -0000 From bf1783@googlemail.com Wed Mar 6 23:04:14 2013 > > checking for x86_64-portbld-freebsd10.0-gcc... /usr/ports/lang/gcc48/work/build/./gcc/xgcc -B/usr/ports/lang/gcc48/work/build/./gcc/ -B/usr/local/x86_64-portbld-freebsd10.0/bin/ -B/usr/local/x86_64-portbld-freebsd10.0/lib/ -isystem /usr/local/x86_64-portbld-freebsd10.0/include -isystem /usr/local/x86_64-portbld-freebsd10.0/sys-include > checking for suffix of object files... configure: error: in `/usr/ports/lang/gcc48/work/build/x86_64-portbld-freebsd10.0/libgcc': > configure: error: cannot compute suffix of object files: cannot compile > See `config.log' for more details. > gmake[2]: *** [configure-stage1-target-libgcc] Error 1 > > > checking for x86_64-portbld-freebsd10.0-gcc... /usr/ports/lang/gcc47/work/build/./gcc/xgcc -B/usr/ports/lang/gcc47/work/build/./gcc/ -B/usr/local/x86_64-portbld-freebsd10.0/bin/ -B/usr/local/x86_64-portbld-freebsd10.0/lib/ -isystem /usr/local/x86_64-portbld-freebsd10.0/include -isystem /usr/local/x86_64-portbld-freebsd10.0/sys-include > checking for suffix of object files... configure: error: in `/usr/ports/lang/gcc47/work/build/x86_64-portbld-freebsd10.0/libgcc': > configure: error: cannot compute suffix of object files: cannot compile > See `config.log' for more details. > gmake[2]: *** [configure-stage1-target-libgcc] Error 1 > > Shall I open a GCC PR? > Not without learning more first. yep: ===>>> Upgrade of gcc-4.8.0.20130210 to gcc-4.8.0.20130303 complete So, are these options in /etc/make.conf harmful: #CMAKE_ARGS+= -DCMAKE_COLOR_MAKEFILE=off #CFLAGS+= -fno-color-diagnostics #CXXFLAGS+= -fno-color-diagnostics Thanks Anton From owner-freebsd-ports@FreeBSD.ORG Thu Mar 7 08:34:59 2013 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 092D1E04 for ; Thu, 7 Mar 2013 08:34:59 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from portsmonj.FreeBSD.org (portsmonj.freebsd.org [69.147.83.46]) by mx1.freebsd.org (Postfix) with ESMTP id F0895922 for ; Thu, 7 Mar 2013 08:34:58 +0000 (UTC) Received: from portsmonj.freebsd.org (portsmonj.freebsd.org [69.147.83.46]) by portsmonj.FreeBSD.org (8.14.5/8.14.4) with ESMTP id r278SYB5006092 for ; Thu, 7 Mar 2013 08:28:34 GMT (envelope-from linimon@FreeBSD.org) Date: Thu, 7 Mar 2013 08:28:34 GMT Message-Id: <201303070828.r278SYB5006092@portsmonj.FreeBSD.org> From: linimon@FreeBSD.org To: ports@FreeBSD.org Subject: FreeBSD unmaintained ports which are currently marked broken X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: portmgr-feedback@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Mar 2013 08:34:59 -0000 As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically notify users of ports that are marked as "broken" in their Makefiles. In many cases these ports are failing to compile on some subset of the FreeBSD build environments. The most common problem is that recent versions of -CURRENT include gcc4.2, which is much stricter than older versions. The next most common problem is that compiles succeed on the i386 architecture (e.g. the common Intel PC), but fail on one or more of the other architectures due to assumptions about things such as size of various types, byte-alignment issues, and so forth. In occasional cases we see that the same port may have different errors in different build environments. The script that runs on the build cluster uses heuristics to try to 'guess' the error type to help you isolate problems, but it is only a rough guide. One more note: on occasion, there are transient build errors seen on the build farm. Unfortunately, there is not yet any way for this algorithm to tell the difference (humans are much, much better at this kind of thing.) The errors are listed below. In the case where the same problem exists on more than one build environment, the URL points to the latest errorlog for that type. (By 'build environment' here we mean 'combination of 7.x/8.x/9.x/-current with target architecture'.) (Note: the dates are included to help you to gauge whether or not the error still applies to the latest version. The program that generates this report is not yet able to determine this automatically.) portname: benchmarks/mdtest broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=benchmarks&portname=mdtest portname: chinese/big5con broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=big5con portname: chinese/bitchx broken because: patch reject build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.7.20121001063541/zh-BitchX-1.2_5.log (_Oct__2_08:24:08_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=bitchx portname: chinese/hztty broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=hztty portname: databases/msql broken because: Broken on FreeBSD 9+ build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=msql portname: deskutils/simpleagenda broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=simpleagenda portname: devel/dsss broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=dsss portname: devel/libYGP broken because: Does not build with recent boost build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=libYGP portname: devel/linux-js broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=linux-js portname: devel/linuxthreads broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=linuxthreads portname: devel/p5-Dialog broken because: Does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=p5-Dialog portname: devel/py-extended_threading broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=py-extended_threading portname: devel/ros-common broken because: does not compile build errors: http://pointyhat.FreeBSD.org/errorlogs/powerpc-errorlogs/e.8.20120528024705/ros-common-1.4.3_1.log (_Aug__9_01:19:13_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ros-common portname: devel/ros_comm broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ros_comm portname: devel/subcommander2 broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=subcommander2 portname: dns/opendd broken because: segfaults upon use build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=dns&portname=opendd portname: editors/xemacs-devel-mule broken because: does not build on FreeBSD 9.X build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=xemacs-devel-mule portname: emulators/snes9express broken because: does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.10.20120628171716/snes9express-1.43_1.log (_Jul_16_10:05:45_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=snes9express portname: emulators/vmsbackup broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=vmsbackup portname: emulators/xsystem35 broken because: Does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.10.20120628171716/xsystem35-1.7.2_14.log (_Jul_16_10:09:42_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=xsystem35 portname: games/daimonin-music broken because: Does not install build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=daimonin-music portname: games/xevil broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=xevil portname: graphics/glide3 broken because: Does not compile on recent FreeBSD-9 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=glide3 portname: graphics/xmfract broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=xmfract portname: japanese/aterm broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=aterm portname: japanese/jvim3 broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=jvim3 portname: japanese/mikachan-ttfonts broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=mikachan-ttfonts portname: japanese/tcl80 broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=tcl80 portname: korean/eterm broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=korean&portname=eterm portname: lang/Sather broken because: segfaults during build on 9.X build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=Sather portname: lang/elisp-manual broken because: overwrites files owned by editors/emacs: info/elisp.info build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=elisp-manual portname: lang/objc broken because: fails to build build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.10.20120628171716/objc-3.2.11.log (_Jul_16_10:21:26_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=objc portname: misc/projectionlib broken because: does not patch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=projectionlib portname: multimedia/linux-gspca-kmod broken because: does not compile on 8.X build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=linux-gspca-kmod portname: net-p2p/libtorrent-rasterbar-15 broken because: Does not build with recent boost build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-p2p&portname=libtorrent-rasterbar-15 portname: net-p2p/libtorrent-rasterbar-15-python broken because: Does not build with recent boost build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-p2p&portname=libtorrent-rasterbar-15-python portname: net-p2p/solidcoin broken because: Does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.8.20121002113816/solidcoin-2.041_1.log (_Oct__4_03:18:46_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-p2p&portname=solidcoin portname: net/pfflowd broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=pfflowd portname: net/pppoa broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=pppoa portname: net/py-pcapy broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=py-pcapy portname: net/rmsg broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=rmsg portname: news/lottanzb broken because: overwrite a file owned by misc/shared-mime-info: share/mime/application/x-nzb.xml build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=news&portname=lottanzb portname: palm/barry broken because: does not configure build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=palm&portname=barry portname: security/linux-pam-docs broken because: distfile mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=linux-pam-docs portname: security/openfwtk broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=openfwtk portname: security/pam_alreadyloggedin broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=pam_alreadyloggedin portname: security/ranpwd broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=ranpwd portname: security/srp broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=srp portname: security/sud broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=sud portname: shells/wapsh broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=shells&portname=wapsh portname: sysutils/slmon broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=slmon portname: sysutils/yawho broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=yawho portname: textproc/skim broken because: Doesn't build with python2.6 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=skim portname: www/aria broken because: fails to build build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.10.20120608131052/aria-1.0.0_5.log (_Jun_13_09:57:38_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=aria portname: x11-clocks/t3d broken because: checksum mismatch build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.10.20120608131052/t3d-1.1_2.log (_Jun_13_13:07:20_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-clocks&portname=t3d portname: x11-fonts/ppantsfonts broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-fonts&portname=ppantsfonts portname: x11-toolkits/flowcanvas broken because: Does not build with recent graphviz build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=flowcanvas portname: x11-toolkits/py-qt broken because: does not build with latest devel/py-sip build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=py-qt portname: x11-toolkits/tkdnd broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=tkdnd portname: x11/cl-clx-sbcl broken because: Changes in sbcl 1.0.55 have exposed problems in /usr/local/lib/common-lisp/clx/depdefs.lisp build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=cl-clx-sbcl portname: x11/emu broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=emu portname: x11/ggiterm broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=ggiterm From owner-freebsd-ports@FreeBSD.ORG Thu Mar 7 08:35:22 2013 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 6B22CF6A for ; Thu, 7 Mar 2013 08:35:22 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from portsmonj.FreeBSD.org (portsmonj.freebsd.org [69.147.83.46]) by mx1.freebsd.org (Postfix) with ESMTP id 5E397980 for ; Thu, 7 Mar 2013 08:35:22 +0000 (UTC) Received: from portsmonj.freebsd.org (portsmonj.freebsd.org [69.147.83.46]) by portsmonj.FreeBSD.org (8.14.5/8.14.4) with ESMTP id r278Sv7V008729 for ; Thu, 7 Mar 2013 08:28:57 GMT (envelope-from linimon@FreeBSD.org) Date: Thu, 7 Mar 2013 08:28:57 GMT Message-Id: <201303070828.r278Sv7V008729@portsmonj.FreeBSD.org> From: linimon@FreeBSD.org To: ports@FreeBSD.org Subject: FreeBSD ports which are currently marked broken X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: portmgr-feedback@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Mar 2013 08:35:22 -0000 As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically notify users of ports that are marked as "broken" in their Makefiles. In many cases these ports are failing to compile on some subset of the FreeBSD build environments. The most common problem is that recent versions of -CURRENT include gcc4.2, which is much stricter than older versions. The next most common problem is that compiles succeed on the i386 architecture (e.g. the common Intel PC), but fail on one or more of the other architectures due to assumptions about things such as size of various types, byte-alignment issues, and so forth. In occasional cases we see that the same port may have different errors in different build environments. The script that runs on the build cluster uses heuristics to try to 'guess' the error type to help you isolate problems, but it is only a rough guide. One more note: on occasion, there are transient build errors seen on the build farm. Unfortunately, there is not yet any way for this algorithm to tell the difference (humans are much, much better at this kind of thing.) The errors are listed below. In the case where the same problem exists on more than one build environment, the URL points to the latest errorlog for that type. (By 'build environment' here we mean 'combination of 7.x/8.x/9.x/-current with target architecture'.) (Note: the dates are included to help you to gauge whether or not the error still applies to the latest version. The program that generates this report is not yet able to determine this automatically.) portname: accessibility/yasr broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=accessibility&portname=yasr portname: audio/gdam broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=gdam portname: audio/hydrogen broken because: does not install build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=hydrogen portname: audio/milkytracker broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=milkytracker portname: audio/py-tagpy broken because: does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.9.20121104103132/py27-tagpy-0.94.8.log (_Nov__4_17:22:02_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=py-tagpy portname: benchmarks/mdtest broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=benchmarks&portname=mdtest portname: benchmarks/polygraph31 broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=benchmarks&portname=polygraph31 portname: cad/meshlab broken because: does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.10.20120628171716/meshlab-1.2.3_2.log (_Jul_16_09:33:26_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=cad&portname=meshlab portname: chinese/CNS11643-font broken because: checksum mismatch build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.10.20120628171716/zh-CNS11643-font-98.1.log (_Jul_16_09:35:05_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=CNS11643-font portname: chinese/big5con broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=big5con portname: chinese/bitchx broken because: patch reject build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.7.20121001063541/zh-BitchX-1.2_5.log (_Oct__2_08:24:08_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=bitchx portname: chinese/cxterm broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=cxterm portname: chinese/hztty broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=hztty portname: comms/hso-kmod broken because: does not build with USB2, please try comms/uhso-kmod instead build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=comms&portname=hso-kmod portname: comms/ib-kmod broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=comms&portname=ib-kmod portname: comms/uticom broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=comms&portname=uticom portname: databases/glom broken because: bad-plist build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=glom portname: databases/gomysql broken because: Does not compile with go1 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=gomysql portname: databases/msql broken because: Broken on FreeBSD 9+ build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=msql portname: databases/p5-DBD-InterBase broken because: does not compile, project moved or dead, no releases since 2003 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=p5-DBD-InterBase portname: databases/p5-DBZ_File broken because: POLLUTE=1 is gone, does not compile, has not been released since 1997 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=p5-DBZ_File portname: databases/rubygem-delayed_job_data_mapper broken because: delayed_job_data_mapper requires delayed_job (~> 2.1) build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=rubygem-delayed_job_data_mapper portname: databases/rubygem-dm-core broken because: unable to resolve dependencies build errors: http://pointyhat.FreeBSD.org/errorlogs/i386-errorlogs/e.7.20120910204647/rubygem-dm-core-1.2.0.log (_Aug_18_17:45:00_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=rubygem-dm-core portname: databases/sqlrelay broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=sqlrelay portname: deskutils/google-gadgets broken because: does not link build errors: http://pointyhat.FreeBSD.org/errorlogs/powerpc-errorlogs/e.8.20120528024705/google-gadgets-0.11.2_5.log (_Aug_10_22:59:31_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=google-gadgets portname: deskutils/simpleagenda broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=simpleagenda portname: devel/dsss broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=dsss portname: devel/libYGP broken because: Does not build with recent boost build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=libYGP portname: devel/libiqxmlrpc broken because: does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.9.20121107165656/libiqxmlrpc-0.11.1.log (_Nov__7_20:42:28_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=libiqxmlrpc portname: devel/linux-js broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=linux-js portname: devel/linuxthreads broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=linuxthreads portname: devel/mono-tools broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=mono-tools portname: devel/monodevelop-java broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=monodevelop-java portname: devel/monodevelop-python broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=monodevelop-python portname: devel/monodevelop-vala broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=monodevelop-vala portname: devel/nant broken because: fails to build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=nant portname: devel/p5-Dialog broken because: Does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=p5-Dialog portname: devel/p5-File-Lock broken because: does not compile POLLUTE is gone, no release since 1996, net/netdisco depends on me build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=p5-File-Lock portname: devel/py-extended_threading broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=py-extended_threading portname: devel/ros-common broken because: does not compile build errors: http://pointyhat.FreeBSD.org/errorlogs/powerpc-errorlogs/e.8.20120528024705/ros-common-1.4.3_1.log (_Aug__9_01:19:13_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ros-common portname: devel/ros_comm broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ros_comm portname: devel/rubygem-ncursesw broken because: does not install build errors: http://pointyhat.FreeBSD.org/errorlogs/powerpc-errorlogs/e.8.20120528024705/rubygem-ncursesw-1.2.4.3_1.log (_Aug_10_23:49:37_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=rubygem-ncursesw portname: devel/simulavr broken because: does not package build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=simulavr portname: devel/smack broken because: requires posix_fadvise(2) build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=smack portname: devel/subcommander2 broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=subcommander2 portname: devel/tclmore broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=tclmore portname: devel/z80ex broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=z80ex portname: dns/opendd broken because: segfaults upon use build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=dns&portname=opendd portname: editors/emacs22 broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=emacs22 portname: editors/xemacs-devel-mule broken because: does not build on FreeBSD 9.X build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=xemacs-devel-mule portname: emulators/fmsx broken because: does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.10.20120628171716/fmsx-3.5.1_2.log (_Jul_16_09:51:48_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=fmsx portname: emulators/linux_base-gentoo-stage3 broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=linux_base-gentoo-stage3 portname: emulators/linux_dist-gentoo-stage3 broken because: does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=linux_dist-gentoo-stage3 portname: emulators/snes9express broken because: does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.10.20120628171716/snes9express-1.43_1.log (_Jul_16_10:05:45_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=snes9express portname: emulators/vmsbackup broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=vmsbackup portname: emulators/xgngeo broken because: does not build build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.10.20120608131052/xgngeo-16_6,1.log (_Jun_10_13:58:17_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=xgngeo portname: emulators/xsystem35 broken because: Does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.10.20120628171716/xsystem35-1.7.2_14.log (_Jul_16_10:09:42_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=xsystem35 portname: ftp/proma broken because: define an @exec depending on %F and %B before any files defined build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ftp&portname=proma portname: games/childsplay_plugins broken because: fails to install on 9.X build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.8.20121002113816/childsplay_plugins-0.90_1.log (_Oct__4_03:18:18_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=childsplay_plugins portname: games/daimonin-music broken because: Does not install build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=daimonin-music portname: games/fretsonfire broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=fretsonfire portname: games/knights-kde4 broken because: does not build with kdegames4>=4.9.0 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=knights-kde4 portname: games/spring broken because: Does not build with recent boost build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=spring portname: games/xevil broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=xevil portname: graphics/f90gl broken because: doesn't build with freeglut build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=f90gl portname: graphics/geglmm broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=geglmm portname: graphics/glide3 broken because: Does not compile on recent FreeBSD-9 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=glide3 portname: graphics/luxrender broken because: does not build with boost-1.48.0 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=luxrender portname: graphics/ocaml-images broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=ocaml-images portname: graphics/phpsview broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=phpsview portname: graphics/py-clutter broken because: bad plist build errors: http://pointyhat.FreeBSD.org/errorlogs/sparc64-errorlogs/e.8.20120812220927/py27-clutter-1.0.2_3.log (_Aug_19_04:43:00_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=py-clutter portname: graphics/qcamview broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=qcamview portname: graphics/spcaview broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=spcaview portname: graphics/vid broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=vid portname: graphics/visionworkbench broken because: failes to patch build errors: http://pointyhat.FreeBSD.org/errorlogs/powerpc-errorlogs/e.8.20120528024705/visionworkbench-2.2.0_1.log (_Aug_11_01:16:29_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=visionworkbench portname: graphics/xmfract broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=xmfract portname: irc/smuxi broken because: Does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=irc&portname=smuxi portname: irc/solid-ircd broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=irc&portname=solid-ircd portname: japanese/aterm broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=aterm portname: japanese/jvim3 broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=jvim3 portname: japanese/mikachan-ttfonts broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=mikachan-ttfonts portname: japanese/ming broken because: does not compile build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.10.20120608131052/ja-ming-0.1.5_7.log (_Jun__9_04:24:52_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=ming portname: japanese/rubygem-myrurema broken because: unable to resolve dependencies build errors: http://pointyhat.FreeBSD.org/errorlogs/sparc64-errorlogs/e.8.20120812220927/ja-rubygem-myrurema-0.3.0.log (_Aug_19_05:48:13_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=rubygem-myrurema portname: japanese/scim-mozc broken because: Google droped SCIM support from Mozc. This port will be deleted. build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=scim-mozc portname: japanese/sj3-server broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=sj3-server portname: japanese/tcl80 broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=tcl80 portname: java/icedtea6-stubs broken because: Does not build with any of the supported Java vendors build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=java&portname=icedtea6-stubs portname: java/jai-imageio broken because: relies on linuxpluginwrapper build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=java&portname=jai-imageio portname: korean/eterm broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=korean&portname=eterm portname: lang/Sather broken because: segfaults during build on 9.X build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=Sather portname: lang/boo broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=boo portname: lang/elisp-manual broken because: overwrites files owned by editors/emacs: info/elisp.info build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=elisp-manual portname: lang/gdc broken because: fails to build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=gdc portname: lang/hiphop-php broken because: Does not build with recent boost build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=hiphop-php portname: lang/ldc-devel broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=ldc-devel portname: lang/objc broken because: fails to build build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.10.20120628171716/objc-3.2.11.log (_Jul_16_10:21:26_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=objc portname: lang/rexx-imc broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=rexx-imc portname: lang/stklos broken because: does not build on FreeBSD 9.x - runaway process build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=stklos portname: mail/biffer broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=mail&portname=biffer portname: mail/firetray broken because: does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/sparc64-errorlogs/e.8.20120812220927/firetray-0.2.8_1.log (_Aug_19_07:51:39_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=mail&portname=firetray portname: mail/kcheckgmail broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=mail&portname=kcheckgmail portname: mail/p5-Mail-CClient broken because: does not compile, no release since 2004 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=mail&portname=p5-Mail-CClient portname: mail/p5-vpopmail broken because: Does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.10.20120628171716/p5-vpopmail-0.08.log (_Jul_16_09:16:51_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=mail&portname=p5-vpopmail portname: math/cgal broken because: does not build with boost-1.48.0 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=cgal portname: math/dislin broken because: size mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=dislin portname: math/octave-forge-es broken because: Does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=octave-forge-es portname: math/octave-forge-java broken because: does not work with openjdk ,and will soon be part of octave base build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=octave-forge-java portname: math/petsc-mpich broken because: filesystem was touched prior to make install phase build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=petsc-mpich portname: misc/c-hey broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=c-hey portname: misc/projectionlib broken because: does not patch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=projectionlib portname: misc/usbrh broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=usbrh portname: misc/wminfo broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=wminfo portname: multimedia/linux-gspca-kmod broken because: does not compile on 8.X build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=linux-gspca-kmod portname: multimedia/linux-realplayer broken because: unfetchable build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.10.20120608131052/linux-realplayer-10.0.9.809.20070726_3.log (_Jun_13_02:24:52_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=linux-realplayer portname: multimedia/mp4split broken because: does not fetch build errors: http://pointyhat.FreeBSD.org/errorlogs/powerpc-errorlogs/e.9.20120811203121/mp4split-1.0.8.log (_Nov_27_02:18:50_UTC_2011) overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=mp4split portname: multimedia/p5-Video-Info broken because: does not fetch build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.8.20101230091827/p5-Video-Info-0.999_3.log (_Sep_13_13:53:12_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=p5-Video-Info portname: net-im/centericq broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-im&portname=centericq portname: net-im/trix broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-im&portname=trix portname: net-mgmt/noc broken because: unsatisfyable dependency object build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-mgmt&portname=noc portname: net-mgmt/sendip broken because: does not compile on FreeBSD 9.X build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-mgmt&portname=sendip portname: net-mgmt/zenpack-apachemonitor broken because: fails to fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-mgmt&portname=zenpack-apachemonitor portname: net-mgmt/zenpack-dellmonitor broken because: fails to fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-mgmt&portname=zenpack-dellmonitor portname: net-mgmt/zenpack-ntpmonitor broken because: fails to fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-mgmt&portname=zenpack-ntpmonitor portname: net-p2p/eiskaltdcpp-daemon broken because: does not link build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-p2p&portname=eiskaltdcpp-daemon portname: net-p2p/eiskaltdcpp-gtk broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-p2p&portname=eiskaltdcpp-gtk portname: net-p2p/libtorrent-rasterbar-15 broken because: Does not build with recent boost build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-p2p&portname=libtorrent-rasterbar-15 portname: net-p2p/libtorrent-rasterbar-15-python broken because: Does not build with recent boost build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-p2p&portname=libtorrent-rasterbar-15-python portname: net-p2p/moodriver broken because: Does not fetch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-p2p&portname=moodriver portname: net-p2p/mooseekd broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-p2p&portname=mooseekd portname: net-p2p/nicotine-plus broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-p2p&portname=nicotine-plus portname: net-p2p/solidcoin broken because: Does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.8.20121002113816/solidcoin-2.041_1.log (_Oct__4_03:18:46_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-p2p&portname=solidcoin portname: net-p2p/transmission broken because: Depends on GTK 3.4.0 frontend; use net-p2p/transmission25 for now build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-p2p&portname=transmission portname: net-p2p/transmission-gtk2 broken because: Relies on GTK 3.0 version > 3.4.0; use net-p2p/transmission25-gtk2 build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.8.20101230091827/transmission-gtk2-2.13.log (_Sep_14_00:42:02_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-p2p&portname=transmission-gtk2 portname: net/atmsupport broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=atmsupport portname: net/crtmpserver broken because: fails to build build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.10.20120628171716/crtmpserver-0.545.log (_Jul_17_18:41:24_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=crtmpserver portname: net/gpxe broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=gpxe portname: net/gupnp-igd broken because: does not package build errors: http://pointyhat.FreeBSD.org/errorlogs/sparc64-errorlogs/e.8.20120812220927/gupnp-igd-0.2.1.log (_Aug_19_05:54:22_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=gupnp-igd portname: net/hf6to4 broken because: does not fetch. build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=hf6to4 portname: net/ipex broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=ipex portname: net/mars_nwe broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=mars_nwe portname: net/opal broken because: does not compile on 9.X build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.8.20121002113816/opal-2.2.11_7.log (_Oct__4_03:14:33_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=opal portname: net/pfflowd broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=pfflowd portname: net/pppoa broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=pppoa portname: net/py-pcapy broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=py-pcapy portname: net/rmsg broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=rmsg portname: net/rubygem-amqp-utils broken because: bad dependencies build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=rubygem-amqp-utils portname: net/rubygem-tweetstream broken because: unable to resolve dependencies build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=rubygem-tweetstream portname: net/sendfile broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=sendfile portname: net/skystar2 broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=skystar2 portname: net/slbd broken because: does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/powerpc-errorlogs/e.8.20120516193908/slbd-1.3.log (_Jan_24_08:07:52_UTC_2011) overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=slbd portname: net/ttbudget broken because: does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/i386-errorlogs/e.8.20120928062728/ttbudget-5.3_1.log (_Oct__1_09:27:49_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=ttbudget portname: net/wizd broken because: does not install build errors: http://pointyhat.FreeBSD.org/errorlogs/i386-errorlogs/e.7.20121003083222/wizd-24_5.log (_Aug_29_09:03:12_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=wizd portname: news/lottanzb broken because: overwrite a file owned by misc/shared-mime-info: share/mime/application/x-nzb.xml build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=news&portname=lottanzb portname: palm/barry broken because: does not configure build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=palm&portname=barry portname: science/elmerpost broken because: Does not compile on recent FreeBSD-9 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=science&portname=elmerpost portname: science/libctl broken because: Does not compile on i386 or sparc64 build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.8.20101230091827/libctl-3.1.log (_Sep_14_06:19:33_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=science&portname=libctl portname: security/chkrootkit broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=chkrootkit portname: security/dazuko broken because: does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/powerpc-errorlogs/e.9.20121005224635/dazuko-2.3.9.log (_Oct_19_15:51:02_UTC_2011) overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=dazuko portname: security/dissembler broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=dissembler portname: security/dsniff broken because: tries to link with both libnet1.0 and libnet1.1 build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.10.20120628171716/dsniff-2.3_4.log (_Jul_15_06:39:10_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=dsniff portname: security/fwtk broken because: Won't fetch, ftp site mentioned in 'IGNORE' has no readme. Web site changed hands? build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=fwtk portname: security/linux-pam-docs broken because: distfile mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=linux-pam-docs portname: security/openfwtk broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=openfwtk portname: security/openvpn-auth-ldap broken because: does not configure on FreeBSD 9.X build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=openvpn-auth-ldap portname: security/pam_alreadyloggedin broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=pam_alreadyloggedin portname: security/ranpwd broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=ranpwd portname: security/sfs broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=sfs portname: security/srp broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=srp portname: security/sud broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=sud portname: security/termlog broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=termlog portname: shells/wapsh broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=shells&portname=wapsh portname: sysutils/avfs broken because: does not package build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=avfs portname: sysutils/dd_rescue broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=dd_rescue portname: sysutils/empower broken because: Does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=empower portname: sysutils/fusefs-curlftpfs broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=fusefs-curlftpfs portname: sysutils/geomgui broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=geomgui portname: sysutils/grub broken because: does not build build errors: http://pointyhat.FreeBSD.org/errorlogs/i386-errorlogs/e.10.20121030050346/grub-0.97_4.log (_Jun__9_08:15:20_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=grub portname: sysutils/hyperic-sigar broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=hyperic-sigar portname: sysutils/libumberlog broken because: fails to install umberlog.3 build errors: http://pointyhat.FreeBSD.org/errorlogs/sparc64-errorlogs/e.8.20120903060906/libumberlog-0.2.1.log (_May_26_21:03:13_UTC_2012) http://pointyhat.FreeBSD.org/errorlogs/i386-errorlogs/e.7.20120910204647/libumberlog-0.2.1.log (_May_15_12:53:06_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=libumberlog portname: sysutils/lookupd broken because: fails to build with new utmpx build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.8.20101230091827/lookupd-0.3.c_1.log (_Sep_14_11:53:31_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=lookupd portname: sysutils/memdump broken because: unsupported FreeBSD version build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=memdump portname: sysutils/p5-Sys-Utmp broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=p5-Sys-Utmp portname: sysutils/rubygem-sys-admin broken because: umpt.h has been removed build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=rubygem-sys-admin portname: sysutils/slmon broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=slmon portname: sysutils/syslog-ng2 broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=syslog-ng2 portname: sysutils/yawho broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=yawho portname: textproc/coco broken because: Does not compile on recent FreeBSD-9 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=coco portname: textproc/libextractor broken because: does not package build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.7.20121001063541/libextractor-0.6.2_9.log (_Oct__2_08:24:05_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=libextractor portname: textproc/p5-Lucene broken because: incompatible with CLucene 2.3 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=p5-Lucene portname: textproc/p5-XML-Sablotron broken because: POLLUTE is gone, does not compile, no release since 2005, textproc/p5-XML-SAXDriver-Sablotron&www/p5-HTML-Webmake depend on me build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=p5-XML-Sablotron portname: textproc/skim broken because: Doesn't build with python2.6 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=skim portname: textproc/xaira broken because: leaves files behind on deinstallation build errors: http://pointyhat.FreeBSD.org/errorlogs/powerpc-errorlogs/e.9.20120811203121/xaira-1.23_5.log (_Sep__8_18:17:51_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=xaira portname: vietnamese/vnelvis broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=vietnamese&portname=vnelvis portname: vietnamese/vnterm broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=vietnamese&portname=vnterm portname: www/aria broken because: fails to build build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.10.20120608131052/aria-1.0.0_5.log (_Jun_13_09:57:38_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=aria portname: www/atutor broken because: checksum mismatch build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.10.20120608131052/atutor-2.0.3.log (_Jun_13_09:58:35_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=atutor portname: www/cacheboy15-devel broken because: does not compile with Heimdal 1.1 in 8.0-CURRENT build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=cacheboy15-devel portname: www/horde-ansel broken because: Not yet supported under horde 5.x build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=horde-ansel portname: www/horde-wicked broken because: Not yet supported under Horde 5.x build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=horde-wicked portname: www/mod_smooth_streaming broken because: unfetchable build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=mod_smooth_streaming portname: www/moodle23 broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=moodle23 portname: www/moodle24 broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=moodle24 portname: www/p5-Apache2-Scoreboard broken because: does not configure build errors: http://pointyhat.FreeBSD.org/errorlogs/powerpc-errorlogs/e.8.20120528024705/p5-Apache2-Scoreboard-2.09.2_2.log (_Aug_11_07:54:40_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=p5-Apache2-Scoreboard portname: www/trac-xmlrpc broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=trac-xmlrpc portname: www/wyvern broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=wyvern portname: x11-clocks/t3d broken because: checksum mismatch build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.10.20120608131052/t3d-1.1_2.log (_Jun_13_13:07:20_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-clocks&portname=t3d portname: x11-fonts/ppantsfonts broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-fonts&portname=ppantsfonts portname: x11-themes/kde-icons-exquisite broken because: checksum mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-themes&portname=kde-icons-exquisite portname: x11-themes/kde-icons-noia-warm broken because: does not fetch build errors: http://pointyhat.FreeBSD.org/errorlogs/i386-errorlogs/e.7.20120910204647/kde-icons-noia-warm-0.95.log (_Apr_24_22:39:00_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-themes&portname=kde-icons-noia-warm portname: x11-themes/kde-icons-steel broken because: does not fetch build errors: http://pointyhat.FreeBSD.org/errorlogs/powerpc-errorlogs/e.8.20120528024705/kde-icons-steel-1.2.5.log (_Aug_11_08:35:05_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-themes&portname=kde-icons-steel portname: x11-toolkits/flowcanvas broken because: Does not build with recent graphviz build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=flowcanvas portname: x11-toolkits/py-qt broken because: does not build with latest devel/py-sip build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=py-qt portname: x11-toolkits/tkdnd broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=tkdnd portname: x11-wm/fbpager broken because: checksum mismatch build errors: http://pointyhat.FreeBSD.org/errorlogs/i386-errorlogs/e.10.20121030050346/fbpager-0.1.4_2.log (_Jun_13_13:56:32_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-wm&portname=fbpager portname: x11-wm/windowlab broken because: distfile mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-wm&portname=windowlab portname: x11/cl-clx-sbcl broken because: Changes in sbcl 1.0.55 have exposed problems in /usr/local/lib/common-lisp/clx/depdefs.lisp build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=cl-clx-sbcl portname: x11/emu broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=emu portname: x11/ggiterm broken because: fails to build with new utmpx build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=ggiterm portname: x11/gnome-shell broken because: Doesn't build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=gnome-shell From owner-freebsd-ports@FreeBSD.ORG Thu Mar 7 08:36:08 2013 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id C43941A7 for ; Thu, 7 Mar 2013 08:36:08 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from portsmonj.FreeBSD.org (portsmonj.freebsd.org [69.147.83.46]) by mx1.freebsd.org (Postfix) with ESMTP id B75E59D8 for ; Thu, 7 Mar 2013 08:36:08 +0000 (UTC) Received: from portsmonj.freebsd.org (portsmonj.freebsd.org [69.147.83.46]) by portsmonj.FreeBSD.org (8.14.5/8.14.4) with ESMTP id r278Tijh013577 for ; Thu, 7 Mar 2013 08:29:44 GMT (envelope-from linimon@FreeBSD.org) Date: Thu, 7 Mar 2013 08:29:44 GMT Message-Id: <201303070829.r278Tijh013577@portsmonj.FreeBSD.org> From: linimon@FreeBSD.org To: ports@FreeBSD.org Subject: FreeBSD unmaintained ports which are currently scheduled for deletion X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: portmgr-feedback@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Mar 2013 08:36:08 -0000 As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically schedule removal of ports that have been judged to have outlived their usefulness. Often, this is due to a better alternative having become available and/or the cessation of development on the existing port. In some cases, ports are marked for removal because they fail to build and install correctly from their sources, or otherwise fail in operation. The ports, and the reason and date that they have been scheduled for removal, are listed below. If no one has stepped forward before that time to propose a way to fix the problems (such as via a PR), the ports will be deleted. portname: accessibility/kdeaccessibility description: Accessibility applications for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=accessibility&portname=kdeaccessibility portname: arabic/kde3-i18n description: Arabic messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=arabic&portname=kde3-i18n portname: archivers/kio_p7zip description: Kioslave for KDE to handle 7zip files maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=archivers&portname=kio_p7zip portname: astro/orsa description: Orbit Reconstruction, Simulation, and Analysis maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=astro&portname=orsa portname: audio/amarok description: Media player for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=amarok portname: audio/amarok-fs description: A full screen application for Amarok maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=amarok-fs portname: audio/arts description: Audio system for the KDE integrated X11 desktop maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=arts portname: audio/cheesetracker description: An Impulse Tracker clone maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=cheesetracker portname: audio/ermixer description: A command-line, ncurses, and (optional) Qt-GUI OSS audio mixer maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=ermixer portname: audio/k3bmonkeyaudioplugin description: K3b plugin for Monkey's Audio files maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=k3bmonkeyaudioplugin portname: audio/kid3 description: MP3/Ogg/FLAC tag editor for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=kid3 portname: audio/kirocker description: Kicker applet for displaying Amarok info maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=kirocker portname: audio/linux-alsa-lib description: The Advanced Linux Sound Architecture libraries maintainer: ports@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=linux-alsa-lib portname: audio/linux-arts description: Audio system for the KDE integrated X11 desktop (Linux version) maintainer: ports@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=linux-arts portname: audio/linux-freealut description: A free implementation of OpenAL's ALUT standard (Linux version) maintainer: ports@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=linux-freealut portname: audio/linux-libmad description: Libmad library (part of MAD project) maintainer: ports@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=linux-libmad portname: audio/linux-libogg description: Ogg bitstream library (Linux version) maintainer: ports@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=linux-libogg portname: audio/linux-libvorbis description: Audio compression codec library (Linux version) maintainer: ports@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=linux-libvorbis portname: audio/linux-openal description: A 3D positional spatialized sound library (Linux version) maintainer: ports@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=linux-openal portname: audio/lplayer description: A QT program to queue lots of MP3s for random XMMS play maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=lplayer portname: audio/madman description: An advanced digital music manager maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=madman portname: audio/mpeglib_artsplug description: Legacy KDE audio backend maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=mpeglib_artsplug portname: audio/prokyon3 description: A multithreaded music manager and tag editor maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=prokyon3 portname: audio/xmms-kde description: Integrates XMMS into the KDE3 Panel maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=xmms-kde portname: audio/yammi description: A QT-based music manager with fuzzy search maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=yammi portname: cad/vipec description: Analyze high frequency, linear electrical networks maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=cad&portname=vipec portname: chinese/kde3-i18n-zh_CN description: Simplified Chinese messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=kde3-i18n-zh_CN portname: chinese/kde3-i18n-zh_TW description: Traditional Chinese messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=kde3-i18n-zh_TW portname: chinese/qterm description: QTerm is a BBS client for BSD/Linux maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=qterm portname: converters/ktextdecode description: The simple text conversion utility for KDE 3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=converters&portname=ktextdecode portname: databases/kmysqladmin description: A graphical frontend for administration of MySQL servers maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=kmysqladmin portname: databases/knoda description: Database frontend for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=knoda portname: databases/qt-mysql-plugin description: A plugin for QT to connect to MySQL-Databases maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=qt-mysql-plugin portname: databases/qt-odbc-plugin description: A plugin for QT to connect to ODBC-compatible databases maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=qt-odbc-plugin portname: databases/qt-pgsql-plugin description: A plugin for QT to connect to PostgreSQL-Databases maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=qt-pgsql-plugin portname: databases/qt-sqlite-plugin description: A plugin for QT to connect to SQLite-Databases maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=qt-sqlite-plugin portname: deskutils/bookreader description: A KDE twin-panel e-text/e-book viewer maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=bookreader portname: deskutils/dragstack description: Drop stack applet for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=dragstack portname: deskutils/kbirthday description: KDE kicker-applet that reminds you of birthdays and anniversaries maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=kbirthday portname: deskutils/kchmviewer description: A Qt/KDE viewer for CHM files maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=kchmviewer portname: deskutils/kdepim3 description: Personal Information Management tools for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=kdepim3 portname: deskutils/kdissert description: KDE mindmapping tool maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=kdissert portname: deskutils/kickpim description: Panel applet for editing and accessing the KDE addressbook maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=kickpim portname: deskutils/klipoquery description: Panel applet for web searches using clipboard entries maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=klipoquery portname: deskutils/kluje description: A KDE client for the popular online journal site LiveJournal maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=kluje portname: deskutils/knowit description: A note manager with tree organization that uses RTF for storage maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=knowit portname: deskutils/kompose description: Full-screen task manager similar to Expose(tm) maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=kompose portname: deskutils/krefty description: Quick Reference sheets for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=krefty portname: deskutils/krss description: KDE Rich Site Summary viewer maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=krss portname: deskutils/metabar description: Sidebar plugin for Konqueror maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=metabar portname: deskutils/snotes description: A lightweight, configurable sticky notes utility maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=snotes portname: deskutils/taskjuggler description: A project management tool for UNIX based operating systems maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=taskjuggler portname: devel/esvn description: GUI frontend for the Subversion revision system maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=esvn portname: devel/kdesdk3 description: KDE Software Development Kit maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=kdesdk3 portname: devel/kdevelop description: IDE for a wide variety of programming tasks maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=kdevelop portname: devel/kprof description: A profiling tool for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=kprof portname: devel/kscope description: KDE front-end to Cscope maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=kscope portname: devel/linux-js description: The Linux joystick interface ported to FreeBSD maintainer: ports@FreeBSD.org status: BROKEN deprecated because: Broken for more than 6 month expiration date: 2013-03-05 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=linux-js portname: devel/linuxthreads description: POSIX pthreads implementation using rfork to generate kernel threads maintainer: ports@FreeBSD.org status: BROKEN deprecated because: Broken for more than 6 month expiration date: 2013-03-05 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=linuxthreads portname: devel/py-extended_threading description: A library to extend pythons threading library maintainer: ports@FreeBSD.org status: BROKEN deprecated because: checksum mismatch; domain disappeared expiration date: 2013-04-26 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=py-extended_threading portname: devel/qsa description: Cross-platform scripting toolkit for Qt applications maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=qsa portname: devel/ros-common description: Robot Operating System - common utilities maintainer: ports@FreeBSD.org status: BROKEN deprecated because: Broken for more than 6 month expiration date: 2013-03-05 build errors: http://pointyhat.FreeBSD.org/errorlogs/powerpc-errorlogs/e.8.20120528024705/ros-common-1.4.3_1.log (_Aug__9_01:19:13_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ros-common portname: devel/rubygem-zoom description: A Ruby binding to the Z39.50 Object-Orientation Model (ZOOM) maintainer: ports@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=rubygem-zoom portname: editors/f4l description: An open source development environment for Macromedia Flash maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=f4l portname: editors/kate-plugins description: Additional plugins and features for kate maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=kate-plugins portname: editors/kile description: A LaTeX source editor for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=kile portname: editors/pdfedit description: Free editor for manipulating PDF documents (QT3 GUI and CLI) maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=pdfedit portname: editors/semi-xemacs21-mule description: SEMI, Library of MIME feature for GNU Emacs for xemacs21-mule maintainer: ports@FreeBSD.org deprecated because: No more public distfiles expiration date: 2012-10-20 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=semi-xemacs21-mule portname: emulators/linux-vmware-toolbox4 description: VMware toolbox for guest OS (for VMware 4.x, Linux version) maintainer: ports@FreeBSD.org deprecated because: No more supported upstream expiration date: 2013-03-14 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=linux-vmware-toolbox4 portname: emulators/linux-vmware-toolbox5 description: VMware toolbox for guest OS (VMware Workstation 5.x, Linux version) maintainer: ports@FreeBSD.org deprecated because: No more supported upstream expiration date: 2013-03-14 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=linux-vmware-toolbox5 portname: emulators/linux-vmware-toolbox6 description: VMware toolbox for guest OS (VMware Workstation 6.x, Linux version) maintainer: ports@FreeBSD.org deprecated because: No more supported upstream expiration date: 2013-03-14 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=linux-vmware-toolbox6 portname: emulators/vmware-guestd4 description: VMware time synchronization daemon for FreeBSD guest OS (for VMware 4.x) maintainer: ports@FreeBSD.org deprecated because: No more supported upstream expiration date: 2013-03-14 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=vmware-guestd4 portname: emulators/vmware-guestd5 description: VMware guest OS supporting daemon (VMware Workstation 5.x, FreeBSD version) maintainer: ports@FreeBSD.org deprecated because: No more supported upstream expiration date: 2013-03-14 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=vmware-guestd5 portname: emulators/vmware-guestd6 description: VMware guest OS supporting daemon (VMware Workstation 6.x, FreeBSD version) maintainer: ports@FreeBSD.org deprecated because: No more supported upstream expiration date: 2013-03-14 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=vmware-guestd6 portname: emulators/vmware-tools4 description: VMware tools for guest OS (for VMware 4.x, FreeBSD version) maintainer: ports@FreeBSD.org deprecated because: No more supported upstream expiration date: 2013-03-14 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=vmware-tools4 portname: emulators/vmware-tools5 description: VMware Tools for guest OS (VMware Workstation 5.x, FreeBSD version) maintainer: ports@FreeBSD.org deprecated because: No more supported upstream expiration date: 2013-03-14 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=vmware-tools5 portname: emulators/vmware-tools6 description: VMware Tools for guest OS (VMware Workstation 6.x, FreeBSD version) maintainer: ports@FreeBSD.org deprecated because: No more supported upstream expiration date: 2013-03-14 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=vmware-tools6 portname: finance/eqonomize-kde3 description: A personal accounting software package maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=finance&portname=eqonomize-kde3 portname: finance/kexchange description: KDE currency converter maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=finance&portname=kexchange portname: finance/khacc description: Simple KDE-based financial manager maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=finance&portname=khacc portname: finance/kmymoney2 description: KDE-based personal finance assistant maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=finance&portname=kmymoney2 portname: finance/qhacc description: Simple QT-based financial manager maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=finance&portname=qhacc portname: finance/qtstalker description: Commodity and stock market charting and technical analysis maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=finance&portname=qtstalker portname: french/kde3-i18n description: French messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=french&portname=kde3-i18n portname: ftp/kasablanca description: Graphical ftp client for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ftp&portname=kasablanca portname: ftp/kbear description: Graphical FTP client for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ftp&portname=kbear portname: ftp/kftpgrabber description: Graphical FTP client for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ftp&portname=kftpgrabber portname: ftp/kpum description: KDE pureftpd user manager maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ftp&portname=kpum portname: games/atlantikdesigner description: Editor for Atlantik maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=atlantikdesigner portname: games/blackjack description: One of the better implementations of blackjack, based on QT maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=blackjack portname: games/easysok description: A sokoban game for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=easysok portname: games/ggz-kde-client description: The GGZ Gaming Zone - KDE Client maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=ggz-kde-client portname: games/kamikaze description: Multiplayer bomberman-style game for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=kamikaze portname: games/kbilliards description: Funny billiards simulator game for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=kbilliards portname: games/kdegames3 description: Games for the KDE integrated X11 desktop maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=kdegames3 portname: games/kfreerings description: A small puzzle game maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=kfreerings portname: games/kmastermind description: Mastermind game designed for K Desktop Environment maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: http://pointyhat.FreeBSD.org/errorlogs/sparc64-errorlogs/e.9.20120820204747/kmastermind-2.2_8.log (_Aug_30_01:40:45_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=kmastermind portname: games/knights description: A KDE chess interface (gnuchess/crafty) maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=knights portname: games/kpicframer description: KDE card game maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=kpicframer portname: games/kpictorial description: Little logical game for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=kpictorial portname: games/kpuzzle description: Jigsaw puzzle game for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=kpuzzle portname: games/ktritoc description: A Tic-tac-toe like boardgame maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=ktritoc portname: games/kwappen description: KDE board game maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=kwappen portname: games/q15 description: A Qt-based game fifteen maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=q15 portname: games/qgo description: A Go board and SGF editor written with the Qt library maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=qgo portname: games/qnetchess description: Qt based chess multiplayer game maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=qnetchess portname: games/spacehulk description: Science-fiction board game in the world of Warhammer 40000 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=spacehulk portname: games/taxipilot description: A Spacetaxi clone maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=taxipilot portname: german/kde3-i18n description: German messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=german&portname=kde3-i18n portname: german/kheisereg description: KDE utility to search within the Heise Register maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=german&portname=kheisereg portname: graphics/albumshaper description: Drag-n-drop hierarchal photo album creation maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=albumshaper portname: graphics/divxcalc description: DivX Calculator maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=divxcalc portname: graphics/ecg2png description: Converts scanned 12-lead electrocardiograms into PNGs maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=ecg2png portname: graphics/flip description: Load a sequence of TIFF files and play them back at a target frame rate maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=flip portname: graphics/gwenview description: An image viewer and browser for the KDE environment maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=gwenview portname: graphics/kalbum description: Create albums from a collection of images maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=kalbum portname: graphics/kamera description: Digital camera support for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=kamera portname: graphics/kbarcode description: A barcode and label printing application for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=kbarcode portname: graphics/kdegraphics3 description: Graphics utilities for the KDE3 integrated X11 desktop maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=kdegraphics3 portname: graphics/kisomandel description: Fractal rendering program with nice 3D-display in realtime maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=kisomandel portname: graphics/kooka description: Raster image scan program for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=kooka portname: graphics/kuickshow description: KDE image viewer maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=kuickshow portname: graphics/linux-cairo description: Linux cairo binary maintainer: ports@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=linux-cairo portname: graphics/linux-gdk-pixbuf description: Linux version of the graphic library for GTK+ maintainer: ports@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=linux-gdk-pixbuf portname: graphics/potracegui description: GUI for potrace, a program for tracing bitmap images maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=potracegui portname: graphics/xenomorph description: An image filter system based on volterra and morphologic filters maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=xenomorph portname: hebrew/kde3-i18n description: Hebrew messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=hebrew&portname=kde3-i18n portname: hungarian/kde3-i18n description: Hungarian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=hungarian&portname=kde3-i18n portname: irc/kmyirc description: Easy to use IRC client for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=irc&portname=kmyirc portname: irc/konversation description: User friendly IRC client for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=irc&portname=konversation portname: irc/kwirc description: IRC client for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=irc&portname=kwirc portname: japanese/kde3-i18n description: Japanese messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=kde3-i18n portname: korean/kde3-i18n description: Korean messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=korean&portname=kde3-i18n portname: lang/elisp-manual description: Emacs Lisp reference manual maintainer: ports@FreeBSD.org status: BROKEN deprecated because: Broken for more than 6 months expiration date: 2013-03-05 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=elisp-manual portname: lang/klogoturtle description: LOGO Interpreter for the KDE Desktop maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=klogoturtle portname: math/koctave description: KDEGUI for octave maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=koctave portname: math/labplot description: LabPlot : Data analysis and visualisation maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=labplot portname: math/pgcalc description: A powerful scientific skinnable calculator maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=pgcalc portname: math/qwtplot3d description: A 3D plotting widget for scientific data and mathematical expressions maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=qwtplot3d portname: math/xgfe description: An X11 front-end for Gnuplot maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=xgfe portname: misc/gopod description: Utility to cap/uncap an iPod maintainer: ports@FreeBSD.org deprecated because: does not work with modern iPods anymore expiration date: 2013-03-13 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=gopod portname: misc/gtk-gopod description: GTK Utility to cap/uncap an iPod maintainer: ports@FreeBSD.org deprecated because: does not work with modern iPods anymore expiration date: 2013-03-13 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=gtk-gopod portname: misc/gwenview-i18n description: Localized messages and documentation for Gwenview maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=gwenview-i18n portname: misc/k3b-i18n description: Localized messages and documentation for K3b maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=k3b-i18n portname: misc/kaddressbook-plugins description: Plugins for KAddressbook maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kaddressbook-plugins portname: misc/katalog description: CD organizer for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=katalog portname: misc/kbfx description: A new K-menu for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kbfx portname: misc/kde3-i18n description: Localized messages and documentation for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n portname: misc/kde3-i18n-af description: Afrikaans localized messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-af portname: misc/kde3-i18n-az description: Azerbaijani messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-az portname: misc/kde3-i18n-be description: Belarusian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-be portname: misc/kde3-i18n-bg description: Bulgarian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-bg portname: misc/kde3-i18n-bn description: Bengali messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-bn portname: misc/kde3-i18n-br description: Breton messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-br portname: misc/kde3-i18n-bs description: Bosnian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-bs portname: misc/kde3-i18n-ca description: Catalan messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-ca portname: misc/kde3-i18n-cs description: Czech messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-cs portname: misc/kde3-i18n-csb description: Cassubian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-csb portname: misc/kde3-i18n-cy description: Welsh messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-cy portname: misc/kde3-i18n-da description: Danish messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-da portname: misc/kde3-i18n-el description: Modern Greek messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-el portname: misc/kde3-i18n-en_GB description: British messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-en_GB portname: misc/kde3-i18n-eo description: Esperanto messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-eo portname: misc/kde3-i18n-es description: Spanish messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-es portname: misc/kde3-i18n-et description: Estonian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-et portname: misc/kde3-i18n-eu description: Basque messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-eu portname: misc/kde3-i18n-fa description: Persian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-fa portname: misc/kde3-i18n-fi description: Finnish messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-fi portname: misc/kde3-i18n-fy description: Frisian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-fy portname: misc/kde3-i18n-ga description: Irish messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-ga portname: misc/kde3-i18n-gl description: Gallegan messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-gl portname: misc/kde3-i18n-hi description: Hindi messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-hi portname: misc/kde3-i18n-hr description: Croatian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-hr portname: misc/kde3-i18n-is description: Icelandic messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-is portname: misc/kde3-i18n-it description: Italian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-it portname: misc/kde3-i18n-kk description: Kazakh messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-kk portname: misc/kde3-i18n-km description: Khmer messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-km portname: misc/kde3-i18n-lt description: Lithuanian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-lt portname: misc/kde3-i18n-lv description: Latvian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-lv portname: misc/kde3-i18n-mk description: Macedonian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-mk portname: misc/kde3-i18n-mn description: Mongolian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-mn portname: misc/kde3-i18n-ms description: Malay messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-ms portname: misc/kde3-i18n-nb description: Norwegian Bokmaal messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-nb portname: misc/kde3-i18n-nds description: Low German localized messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-nds portname: misc/kde3-i18n-nl description: Dutch messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-nl portname: misc/kde3-i18n-nn description: Norwegian Nynorsk messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-nn portname: misc/kde3-i18n-pa description: Panjabi messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-pa portname: misc/kde3-i18n-ro description: Romanian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-ro portname: misc/kde3-i18n-rw description: Kinyarwanda messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-rw portname: misc/kde3-i18n-se description: Northern Sami messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-se portname: misc/kde3-i18n-sk description: Slovak messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-sk portname: misc/kde3-i18n-sl description: Slovenian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-sl portname: misc/kde3-i18n-sr description: Serbian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-sr portname: misc/kde3-i18n-sr_Latn description: Serbian (latin alphabet) messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-sr_Latn portname: misc/kde3-i18n-ss description: Swati messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-ss portname: misc/kde3-i18n-sv description: Swedish messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-sv portname: misc/kde3-i18n-ta description: Tamil messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-ta portname: misc/kde3-i18n-te description: Telugu messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-te portname: misc/kde3-i18n-tg description: Tajik messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-tg portname: misc/kde3-i18n-th description: Thai messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-th portname: misc/kde3-i18n-tr description: Turkish messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-tr portname: misc/kde3-i18n-uz description: Uzbek messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-uz portname: misc/kde3-i18n-ven description: Venda messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-ven portname: misc/kde3-i18n-wa description: Walloon messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-wa portname: misc/kde3-i18n-xh description: Xhosa messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-xh portname: misc/kde3-i18n-zu description: Zulu messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.8.20101230091827/zu-kde-i18n-3.1.5_5.log (_Sep_13_09:01:17_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-zu portname: misc/kdeaddons3 description: Additional plugins and scripts for some KDE applications maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kdeaddons3 portname: misc/kdeedu3 description: Collection of entertaining, educational programs for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kdeedu3 portname: misc/kdeutils3 description: Utilities for the KDE integrated X11 desktop maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kdeutils3 portname: misc/kfile-plugins description: Plugins for Konqueror (in filemanager mode) maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kfile-plugins portname: misc/kicker-applets description: Additional applets for Kicker maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kicker-applets portname: misc/knewsticker-scripts description: Additional scripts for KNewsTicker maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=knewsticker-scripts portname: misc/konq-plugins description: Additional plugins and features for Konqueror maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=konq-plugins portname: misc/ksig description: Signature randomiser, available standalone or as a plugin within KMail maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=ksig portname: misc/kwatch description: KDE/Qt log file viewer maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kwatch portname: misc/renamedlgplugins description: Plugins for Konqueror's rename dialog maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=renamedlgplugins portname: multimedia/grpplaylist description: A playlist for Noatun maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=grpplaylist portname: multimedia/kdemultimedia3 description: Multimedia utilities for the KDE integrated X11 desktop maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=kdemultimedia3 portname: multimedia/kmenc15 description: KDE advanced MEncoder frontend, ala, VirtualDub maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=kmenc15 portname: multimedia/kmplayer description: KDE frontend to MPlayer, Xine, GStreamer maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=kmplayer portname: multimedia/konverter description: KDE MEncoder frontend maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=konverter portname: multimedia/kplayer description: Movie player based on mplayer maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=kplayer portname: multimedia/mandvd description: DVD authoring and slideshow tool maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=mandvd portname: multimedia/noatun-plugins description: Various plugins for Noatun maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=noatun-plugins portname: multimedia/subtitlecomposer description: Subtitle editor for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=subtitlecomposer portname: multimedia/transkode description: A KDE/Qt based frontend for various audio transcoding tools maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=transkode portname: multimedia/xine_artsplugin description: Xine-based multimedia backend for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: http://pointyhat.FreeBSD.org/errorlogs/powerpc-errorlogs/e.8.20120528024705/kdemultimedia-xine_artsplugin-3.5.10_6.log (_Aug_11_05:12:17_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=xine_artsplugin portname: net-im/eva description: QQ IM Client for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-im&portname=eva portname: net-im/kmerlin description: An IM (Instant Messenger) KDE client for the Microsoft MSN Network maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-im&portname=kmerlin portname: net-im/konverse description: KDE Jabber Client maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-im&portname=konverse portname: net-im/kopete description: KDE multi-protocol instant messenger (IM) maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-im&portname=kopete portname: net-p2p/kmldonkey description: KDE integration for MLDonkey eDonkey P2P client maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-p2p&portname=kmldonkey portname: net-p2p/ktorrent2 description: BitTorrent client for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-p2p&portname=ktorrent2 portname: net-p2p/qtella description: A Gnutella client using Qt maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-p2p&portname=qtella portname: net/cphone description: H323 Video Conferencing Program which uses QT maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=cphone portname: net/kdenetwork3 description: Network-related programs and modules for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=kdenetwork3 portname: net/knemo description: Network monitor for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=knemo portname: net/kphone description: A voice over internet phone maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=kphone portname: net/lanbrowsing description: Lanbrowsing facility and backend for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=lanbrowsing portname: net/pppload description: Display the current throughput of a network device in a window maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=pppload portname: polish/kde3-i18n description: Polish messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=polish&portname=kde3-i18n portname: ports-mgmt/qtpkg description: A Qt based package removal tool maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ports-mgmt&portname=qtpkg portname: portuguese/kde3-i18n description: Portuguese messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=portuguese&portname=kde3-i18n portname: portuguese/kde3-i18n-pt_BR description: Brazilian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=portuguese&portname=kde3-i18n-pt_BR portname: print/kcdlabel description: Create covers, labels, and booklets for your CD cases maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=print&portname=kcdlabel portname: print/mapagi description: Pagination utility that prints your images/comics in 'in folio' format maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=print&portname=mapagi portname: russian/kde3-i18n description: Russian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=russian&portname=kde3-i18n portname: russian/ksocrat description: KSocrat is the simple English/Russian Russian/English dictionary maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=russian&portname=ksocrat portname: science/kmovisto description: A real 3-D molecule viewer maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=science&portname=kmovisto portname: science/kst description: Data viewing program for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=science&portname=kst portname: security/qtfw description: A GUI frontend for ipfw utility in FreeBSD maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=qtfw portname: sysutils/kcpuload description: CPU meter for Kicker maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=kcpuload portname: sysutils/kdeadmin3 description: KDE applications related to system administration maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=kdeadmin3 portname: sysutils/kdirstat description: A small KDE utility that sums up disk usage for directory trees maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=kdirstat portname: sysutils/kkeyled description: Panel applet to display the keyboard's LED states maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=kkeyled portname: sysutils/klaptopdaemon description: APM monitor for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=klaptopdaemon portname: sysutils/klineakconfig description: Configure lineakd through a KDE interface maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=klineakconfig portname: sysutils/kmilo description: Enables special keys on custom keyboards maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=kmilo portname: sysutils/kshutdown description: Advanced shutdown utility for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=kshutdown portname: sysutils/ksynaptics description: KDE control center module for Synaptics touchpads maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=ksynaptics portname: sysutils/lineak-kdeplugins description: KDE plugins for lineakd maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=lineak-kdeplugins portname: sysutils/pwg description: A small tool to generate secure, random passwords maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=pwg portname: sysutils/sge62 description: Sun Grid Engine, a batch queueing system maintainer: ports@FreeBSD.org deprecated because: Ancient and unsupported release expiration date: 2013-03-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=sge62 portname: textproc/kbedic description: An English-Bulgarian-English dictionary maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=kbedic portname: textproc/linux-xerces-c2 description: Validating XML parser from the Apache XML Project (linux version) maintainer: ports@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=linux-xerces-c2 portname: textproc/skim description: An input method platform based on SCIM library and KDE/QT maintainer: ports@FreeBSD.org status: BROKEN deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=skim portname: textproc/xxdiff description: QT interface to view/merge differences between 2 or 3 files maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=xxdiff portname: ukrainian/kde3-i18n description: Ukrainian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ukrainian&portname=kde3-i18n portname: vietnamese/kde3-i18n description: Vietnamese messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=vietnamese&portname=kde3-i18n portname: www/kdewebdev description: Comprehensive html/website development environment maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=kdewebdev portname: x11-clocks/kdetoys3 description: Small applications for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-clocks&portname=kdetoys3 portname: x11-fm/dolphin description: File manager for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-fm&portname=dolphin portname: x11-themes/baghira description: An Aqua like window decoration and widget style for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-themes&portname=baghira portname: x11-themes/kdeartwork3 description: Additional themes, sounds, wallpapers and window styles for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-themes&portname=kdeartwork3 portname: x11-themes/kdmtheme description: KDM Theme Manager maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-themes&portname=kdmtheme portname: x11-themes/qnxstyle description: A QNX style/theme for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-themes&portname=qnxstyle portname: x11-themes/qt-bluecurve-theme description: The Bluecurve QT theme maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-themes&portname=qt-bluecurve-theme portname: x11-toolkits/py-qt description: Python bindings for the Qt toolkit maintainer: ports@FreeBSD.org status: BROKEN deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=py-qt portname: x11-toolkits/qscintilla description: QT port of the Scintilla C++ editor class maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=qscintilla portname: x11-toolkits/qt33 description: Multiplatform C++ application framework maintainer: ports@FreeBSD.org deprecated because: No upstream activity since 2008; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=qt33 portname: x11-toolkits/qwt4 description: Qwt widget library for technical purposes (old version) maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=qwt4 portname: x11-wm/bbconf description: Configurator for the Blackbox window manager maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-wm&portname=bbconf portname: x11-wm/kompmgr description: Utility needed to enable XComposite support in KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-wm&portname=kompmgr portname: x11-wm/libdockapp description: Standard library for Window Maker dock apps maintainer: ports@FreeBSD.org deprecated because: Abandonware, upstream disappeared expiration date: 2012-10-20 build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.8.20101230091827/libdockapp-0.6.2.log (_Sep__8_05:40:48_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-wm&portname=libdockapp portname: x11/kde-lite description: The FreeBSD release "meta-port" for (a subset of) KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=kde-lite portname: x11/kde3 description: The "meta-port" for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=kde3 portname: x11/kdebase3 description: Basic applications for the KDE system maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=kdebase3 portname: x11/kdelibs3 description: Base set of libraries needed by KDE programs maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=kdelibs3 portname: x11/kdelibs3-nocups description: Base set of libraries needed by KDE programs maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=kdelibs3-nocups portname: x11/xscreensaver-kde description: Support for xscreensaver blankers in KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=xscreensaver-kde From owner-freebsd-ports@FreeBSD.ORG Thu Mar 7 08:36:55 2013 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 9756A2E4 for ; Thu, 7 Mar 2013 08:36:55 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from portsmonj.FreeBSD.org (portsmonj.freebsd.org [69.147.83.46]) by mx1.freebsd.org (Postfix) with ESMTP id 88732A41 for ; Thu, 7 Mar 2013 08:36:55 +0000 (UTC) Received: from portsmonj.freebsd.org (portsmonj.freebsd.org [69.147.83.46]) by portsmonj.FreeBSD.org (8.14.5/8.14.4) with ESMTP id r278UVKt019297 for ; Thu, 7 Mar 2013 08:30:31 GMT (envelope-from linimon@FreeBSD.org) Date: Thu, 7 Mar 2013 08:30:31 GMT Message-Id: <201303070830.r278UVKt019297@portsmonj.FreeBSD.org> From: linimon@FreeBSD.org To: ports@FreeBSD.org Subject: FreeBSD ports which are currently scheduled for deletion X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: portmgr-feedback@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Mar 2013 08:36:55 -0000 As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically schedule removal of ports that have been judged to have outlived their usefulness. Often, this is due to a better alternative having become available and/or the cessation of development on the existing port. In some cases, ports are marked for removal because they fail to build and install correctly from their sources, or otherwise fail in operation. The ports, and the reason and date that they have been scheduled for removal, are listed below. If no one has stepped forward before that time to propose a way to fix the problems (such as via a PR), the ports will be deleted. portname: accessibility/kdeaccessibility description: Accessibility applications for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=accessibility&portname=kdeaccessibility portname: accessibility/linux-atk description: Accessibility Toolkit, Linux/i386 binary maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=accessibility&portname=linux-atk portname: arabic/kde3-i18n description: Arabic messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=arabic&portname=kde3-i18n portname: archivers/kio_p7zip description: Kioslave for KDE to handle 7zip files maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=archivers&portname=kio_p7zip portname: archivers/linux-ucl description: RPM of UCL, a lossless data compression library maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=archivers&portname=linux-ucl portname: archivers/linux-upx description: RPM of UPX, a high-performance executable packer maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=archivers&portname=linux-upx portname: archivers/php52-bz2 description: The bz2 shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.8.20101230091827/php52-bz2-5.2.16.log (_Sep_15_15:50:52_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=archivers&portname=php52-bz2 portname: archivers/php52-zip description: The zip shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=archivers&portname=php52-zip portname: archivers/php52-zlib description: The zlib shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.8.20101230091827/php52-zlib-5.2.16.log (_Sep_15_15:52:26_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=archivers&portname=php52-zlib portname: archivers/ruby-bz2 description: Ruby extension to use libbz2 maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=archivers&portname=ruby-bz2 portname: astro/orsa description: Orbit Reconstruction, Simulation, and Analysis maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=astro&portname=orsa portname: audio/amarok description: Media player for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=amarok portname: audio/amarok-fs description: A full screen application for Amarok maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=amarok-fs portname: audio/arts description: Audio system for the KDE integrated X11 desktop maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=arts portname: audio/cheesetracker description: An Impulse Tracker clone maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=cheesetracker portname: audio/ermixer description: A command-line, ncurses, and (optional) Qt-GUI OSS audio mixer maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=ermixer portname: audio/hydrogen description: An advanced drum machine maintainer: devel@stasyan.com status: BROKEN deprecated because: Broken for more than 6 month expiration date: 2013-03-05 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=hydrogen portname: audio/k3bmonkeyaudioplugin description: K3b plugin for Monkey's Audio files maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=k3bmonkeyaudioplugin portname: audio/kid3 description: MP3/Ogg/FLAC tag editor for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=kid3 portname: audio/kirocker description: Kicker applet for displaying Amarok info maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=kirocker portname: audio/linux-alsa-lib description: The Advanced Linux Sound Architecture libraries maintainer: ports@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=linux-alsa-lib portname: audio/linux-arts description: Audio system for the KDE integrated X11 desktop (Linux version) maintainer: ports@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=linux-arts portname: audio/linux-esound description: RPM of esound maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=linux-esound portname: audio/linux-freealut description: A free implementation of OpenAL's ALUT standard (Linux version) maintainer: ports@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=linux-freealut portname: audio/linux-libaudiofile description: RPM of audiofile maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=linux-libaudiofile portname: audio/linux-libmad description: Libmad library (part of MAD project) maintainer: ports@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=linux-libmad portname: audio/linux-libogg description: Ogg bitstream library (Linux version) maintainer: ports@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=linux-libogg portname: audio/linux-libvorbis description: Audio compression codec library (Linux version) maintainer: ports@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=linux-libvorbis portname: audio/linux-mikmod description: MikMod Sound Library (Linux version) maintainer: mva@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=linux-mikmod portname: audio/linux-nas-libs description: Runtime libraries for NAS (Linux Fedora Core 4) maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=linux-nas-libs portname: audio/linux-openal description: A 3D positional spatialized sound library (Linux version) maintainer: ports@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=linux-openal portname: audio/linux-sdl_mixer description: A sample multi-channel audio mixer library (Linux version) maintainer: mva@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=linux-sdl_mixer portname: audio/lplayer description: A QT program to queue lots of MP3s for random XMMS play maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=lplayer portname: audio/madman description: An advanced digital music manager maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=madman portname: audio/mpeglib_artsplug description: Legacy KDE audio backend maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=mpeglib_artsplug portname: audio/prokyon3 description: A multithreaded music manager and tag editor maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=prokyon3 portname: audio/ruby-vorbisfile description: A Ruby extension wrapping libvorbisfile maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=ruby-vorbisfile portname: audio/ruby-xmms description: XMMS bindings for Ruby maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=ruby-xmms portname: audio/xmms-kde description: Integrates XMMS into the KDE3 Panel maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=xmms-kde portname: audio/yammi description: A QT-based music manager with fuzzy search maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=yammi portname: cad/vipec description: Analyze high frequency, linear electrical networks maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=cad&portname=vipec portname: chinese/cxterm description: An xterm that speaks Chinese maintainer: sunrychen@gmail.com status: BROKEN deprecated because: BROKEN for more than 6 month expiration date: 2012-05-10 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=cxterm portname: chinese/kde3-i18n-zh_CN description: Simplified Chinese messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=kde3-i18n-zh_CN portname: chinese/kde3-i18n-zh_TW description: Traditional Chinese messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=kde3-i18n-zh_TW portname: chinese/qterm description: QTerm is a BBS client for BSD/Linux maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=qterm portname: comms/qfaxreader description: Mono/color multipage tiff/fax files visualisation/printing utility maintainer: itetcu@FreeBSD.org deprecated because: No activity upstream since 2006; uses QT3 expiration date: 2013-06-30 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=comms&portname=qfaxreader portname: converters/ktextdecode description: The simple text conversion utility for KDE 3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=converters&portname=ktextdecode portname: converters/php52-iconv description: The iconv shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.8.20101230091827/php52-iconv-5.2.16.log (_Sep__9_08:39:42_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=converters&portname=php52-iconv portname: converters/php52-mbstring description: The mbstring shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=converters&portname=php52-mbstring portname: converters/php52-recode description: The recode shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=converters&portname=php52-recode portname: databases/kmysqladmin description: A graphical frontend for administration of MySQL servers maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=kmysqladmin portname: databases/knoda description: Database frontend for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=knoda portname: databases/mysql41-client description: Multithreaded SQL database (client) maintainer: ale@FreeBSD.org deprecated because: Unsupported upstream, no distfile expiration date: 2013-03-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=mysql41-client portname: databases/mysql41-scripts description: Multithreaded SQL database (scripts) maintainer: ale@FreeBSD.org deprecated because: Unsupported upstream, no distfile expiration date: 2013-03-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=mysql41-scripts portname: databases/mysql41-server description: Multithreaded SQL database (server) maintainer: ale@FreeBSD.org deprecated because: Unsupported upstream, no distfile expiration date: 2013-03-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=mysql41-server portname: databases/php-sqlite3 description: A port for the PHP sqlite3 extension maintainer: glarkin@FreeBSD.org deprecated because: No upstream development and superseded by databases/php5-sqlite3 and databases/php53-sqlite3 expiration date: 2012-06-21 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=php-sqlite3 portname: databases/php52-dba description: The dba shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=php52-dba portname: databases/php52-dbase description: The dbase shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=php52-dbase portname: databases/php52-interbase description: The interbase shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=php52-interbase portname: databases/php52-mssql description: The mssql shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=php52-mssql portname: databases/php52-mysql description: The mysql shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.8.20101230091827/php52-mysql-5.2.16.log (_Sep__9_17:00:36_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=php52-mysql portname: databases/php52-mysqli description: The mysqli shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=php52-mysqli portname: databases/php52-oci8 description: The oci8 shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=php52-oci8 portname: databases/php52-odbc description: The odbc shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=php52-odbc portname: databases/php52-pdo description: The pdo shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=php52-pdo portname: databases/php52-pdo_dblib description: The pdo_dblib shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=php52-pdo_dblib portname: databases/php52-pdo_firebird description: The pdo_firebird shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=php52-pdo_firebird portname: databases/php52-pdo_mysql description: The pdo_mysql shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=php52-pdo_mysql portname: databases/php52-pdo_oci description: The pdo_oci shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=php52-pdo_oci portname: databases/php52-pdo_odbc description: The pdo_odbc shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=php52-pdo_odbc portname: databases/php52-pdo_pgsql description: The pdo_pgsql shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=php52-pdo_pgsql portname: databases/php52-pdo_sqlite description: The pdo_sqlite shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.8.20101230091827/php52-pdo_sqlite-5.2.16.log (_Sep__9_17:02:09_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=php52-pdo_sqlite portname: databases/php52-pgsql description: The pgsql shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=php52-pgsql portname: databases/php52-rrdtool description: A php 52 rrdtool glue maintainer: scheidell@FreeBSD.org deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-03-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=php52-rrdtool portname: databases/php52-sqlite description: The sqlite shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.8.20101230091827/php52-sqlite-5.2.16.log (_Sep__9_17:03:45_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=php52-sqlite portname: databases/php52-sybase_ct description: The sybase_ct shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=php52-sybase_ct portname: databases/postgresql83-client description: PostgreSQL database (client) maintainer: pgsql@FreeBSD.org deprecated because: End-of-life is coming up expiration date: 2013-03-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=postgresql83-client portname: databases/postgresql83-contrib description: The contrib utilities from the PostgreSQL distribution maintainer: pgsql@FreeBSD.org deprecated because: End-of-life is coming up expiration date: 2013-03-01 build errors: http://pointyhat.FreeBSD.org/errorlogs/i386-errorlogs/e.8.20121018131912/postgresql-contrib-8.3.21.log (_Oct_20_19:44:35_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=postgresql83-contrib portname: databases/postgresql83-docs description: The PostgreSQL documentation set maintainer: pgsql@FreeBSD.org deprecated because: End-of-life is coming up expiration date: 2013-03-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=postgresql83-docs portname: databases/postgresql83-plperl description: Write SQL functions for PostgreSQL using Perl5 maintainer: pgsql@FreeBSD.org deprecated because: End-of-life is coming up expiration date: 2013-03-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=postgresql83-plperl portname: databases/postgresql83-plpython description: Module for using Python to write SQL functions maintainer: pgsql@FreeBSD.org deprecated because: End-of-life is coming up expiration date: 2013-03-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=postgresql83-plpython portname: databases/postgresql83-pltcl description: A module for using Tcl to write SQL functions maintainer: pgsql@FreeBSD.org deprecated because: End-of-life is coming up expiration date: 2013-03-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=postgresql83-pltcl portname: databases/postgresql83-server description: The most advanced open-source database available anywhere maintainer: pgsql@FreeBSD.org deprecated because: End-of-life is coming up expiration date: 2013-03-01 build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.8.20101230091827/postgresql-server-8.3.12_2.log (_Sep__9_17:43:35_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=postgresql83-server portname: databases/qt-mysql-plugin description: A plugin for QT to connect to MySQL-Databases maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=qt-mysql-plugin portname: databases/qt-odbc-plugin description: A plugin for QT to connect to ODBC-compatible databases maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=qt-odbc-plugin portname: databases/qt-pgsql-plugin description: A plugin for QT to connect to PostgreSQL-Databases maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=qt-pgsql-plugin portname: databases/qt-sqlite-plugin description: A plugin for QT to connect to SQLite-Databases maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=qt-sqlite-plugin portname: databases/ruby-bdb1 description: Ruby interface to Berkeley DB revision 1.8x with full feature support maintainer: jpaetzel@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: http://pointyhat.FreeBSD.org/errorlogs/sparc64-errorlogs/e.9.20120820204747/ruby18-bdb1-0.2.3.log (_Aug_30_00:38:34_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=ruby-bdb1 portname: databases/ruby-dbdbd description: David Black's DataBase Definer maintainer: brooks@FreeBSD.org deprecated because: Dead project, apparently unused expiration date: 2013-03-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=ruby-dbdbd portname: databases/ruby-interbase description: Ruby interface to Firebird/Interbase library maintainer: skv@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=ruby-interbase portname: deskutils/bookreader description: A KDE twin-panel e-text/e-book viewer maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=bookreader portname: deskutils/dragstack description: Drop stack applet for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=dragstack portname: deskutils/kbirthday description: KDE kicker-applet that reminds you of birthdays and anniversaries maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=kbirthday portname: deskutils/kchmviewer description: A Qt/KDE viewer for CHM files maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=kchmviewer portname: deskutils/kdepim3 description: Personal Information Management tools for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=kdepim3 portname: deskutils/kdissert description: KDE mindmapping tool maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=kdissert portname: deskutils/kickpim description: Panel applet for editing and accessing the KDE addressbook maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=kickpim portname: deskutils/klipoquery description: Panel applet for web searches using clipboard entries maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=klipoquery portname: deskutils/kluje description: A KDE client for the popular online journal site LiveJournal maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=kluje portname: deskutils/knowit description: A note manager with tree organization that uses RTF for storage maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=knowit portname: deskutils/kompose description: Full-screen task manager similar to Expose(tm) maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=kompose portname: deskutils/krefty description: Quick Reference sheets for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=krefty portname: deskutils/krss description: KDE Rich Site Summary viewer maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=krss portname: deskutils/metabar description: Sidebar plugin for Konqueror maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=metabar portname: deskutils/snotes description: A lightweight, configurable sticky notes utility maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=snotes portname: deskutils/taskjuggler description: A project management tool for UNIX based operating systems maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=taskjuggler portname: devel/esvn description: GUI frontend for the Subversion revision system maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=esvn portname: devel/kdesdk3 description: KDE Software Development Kit maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=kdesdk3 portname: devel/kdevelop description: IDE for a wide variety of programming tasks maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=kdevelop portname: devel/kprof description: A profiling tool for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=kprof portname: devel/kscope description: KDE front-end to Cscope maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=kscope portname: devel/linux-allegro description: Cross-platform game programming library (linux version) maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=linux-allegro portname: devel/linux-js description: The Linux joystick interface ported to FreeBSD maintainer: ports@FreeBSD.org status: BROKEN deprecated because: Broken for more than 6 month expiration date: 2013-03-05 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=linux-js portname: devel/linux-libglade description: RPM of libglade maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=linux-libglade portname: devel/linux-libglade2 description: RPM of libglade2 maintainer: tut@nhamon.com.ua deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=linux-libglade2 portname: devel/linux-libsigc++20 description: Callback Framework for C++ (linux version) maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=linux-libsigc%2B%2B20 portname: devel/linux-sdl12 description: Cross-platform multi-media development API (linux version) maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=linux-sdl12 portname: devel/linuxthreads description: POSIX pthreads implementation using rfork to generate kernel threads maintainer: ports@FreeBSD.org status: BROKEN deprecated because: Broken for more than 6 month expiration date: 2013-03-05 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=linuxthreads portname: devel/p5-Oogly description: A Data validation idea that just might be ideal maintainer: gblach@FreeBSD.org deprecated because: No more public distfiles expiration date: 2013-03-31 build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.8.20101230091827/p5-Oogly-0.31.log (_Sep_10_22:47:59_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=p5-Oogly portname: devel/php52-gettext description: The gettext shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=php52-gettext portname: devel/php52-json description: The json shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=php52-json portname: devel/php52-ncurses description: The ncurses shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=php52-ncurses portname: devel/php52-pcntl description: The pcntl shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=php52-pcntl portname: devel/php52-pcre description: The pcre shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=php52-pcre portname: devel/php52-readline description: The readline shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=php52-readline portname: devel/php52-shmop description: The shmop shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=php52-shmop portname: devel/php52-spl description: The spl shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=php52-spl portname: devel/php52-sysvmsg description: The sysvmsg shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=php52-sysvmsg portname: devel/php52-sysvsem description: The sysvsem shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=php52-sysvsem portname: devel/php52-sysvshm description: The sysvshm shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=php52-sysvshm portname: devel/php52-tokenizer description: The tokenizer shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=php52-tokenizer portname: devel/py-extended_threading description: A library to extend pythons threading library maintainer: ports@FreeBSD.org status: BROKEN deprecated because: checksum mismatch; domain disappeared expiration date: 2013-04-26 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=py-extended_threading portname: devel/qsa description: Cross-platform scripting toolkit for Qt applications maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=qsa portname: devel/ros-common description: Robot Operating System - common utilities maintainer: ports@FreeBSD.org status: BROKEN deprecated because: Broken for more than 6 month expiration date: 2013-03-05 build errors: http://pointyhat.FreeBSD.org/errorlogs/powerpc-errorlogs/e.8.20120528024705/ros-common-1.4.3_1.log (_Aug__9_01:19:13_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ros-common portname: devel/ruby-fam description: FAM bindings for Ruby maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ruby-fam portname: devel/ruby-gettext description: A Ruby implementation of the gettext library maintainer: knu@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ruby-gettext portname: devel/ruby-io-reactor description: Ruby module that implements an asynchronous multiplexed IO Reactor maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ruby-io-reactor portname: devel/ruby-jttui description: Textmode User Interface by Jakub Travnik maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ruby-jttui portname: devel/ruby-krossruby description: Ruby bindings for Qt/KDE maintainer: kde@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ruby-krossruby portname: devel/ruby-langscan description: A program analyzer for source code search engine maintainer: tota@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ruby-langscan portname: devel/ruby-mmap description: Ruby interface to manage memory-mapped file objects maintainer: clsung@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ruby-mmap portname: devel/ruby-racc description: An LALR(1) parser generator for Ruby maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ruby-racc portname: devel/ruby-rcov description: A tool for simple code coverage analysis in Ruby maintainer: clsung@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ruby-rcov portname: devel/ruby-rudl description: A high level library to use SDL from Ruby maintainer: erik@bz.bzflag.bz deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ruby-rudl portname: devel/ruby-slang description: S-Lang extension module for Ruby maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ruby-slang portname: devel/ruby-subversion description: Ruby bindings for version control system maintainer: lev@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ruby-subversion portname: devel/ruby-sysvipc description: Ruby interface to use System V IPC system calls maintainer: clsung@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ruby-sysvipc portname: devel/rubygem-getopt-declare description: Declaratively Expressed Command-Line Arguments via Regular Expressions maintainer: romain@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=rubygem-getopt-declare portname: devel/rubygem-io-like description: The interface of IO objects to classes providing a few simple methods maintainer: tota@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=rubygem-io-like portname: devel/rubygem-linecache description: Caches(Ruby source) Files as Might Be Used in a Debugger maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=rubygem-linecache portname: devel/rubygem-ncurses description: Wrapper to the ncurses library maintainer: freebsdports@chillibear.com deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=rubygem-ncurses portname: devel/rubygem-ncursesw description: Wrapper to the ncurses library with wide character support maintainer: freebsdports@chillibear.com status: BROKEN deprecated because: Broken for more than 6 month expiration date: 2013-03-05 build errors: http://pointyhat.FreeBSD.org/errorlogs/powerpc-errorlogs/e.8.20120528024705/rubygem-ncursesw-1.2.4.3_1.log (_Aug_10_23:49:37_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=rubygem-ncursesw portname: devel/rubygem-parsetree description: Ruby parse tree tools maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=rubygem-parsetree portname: devel/rubygem-rparsec description: Recursive descent parser combinator framework for Ruby maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=rubygem-rparsec portname: devel/rubygem-sdl description: Ruby extension library to use SDL library maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=rubygem-sdl portname: devel/rubygem-zoom description: A Ruby binding to the Z39.50 Object-Orientation Model (ZOOM) maintainer: ports@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=rubygem-zoom portname: devel/xlslib description: A C++ library for generation of Excel(TM) files maintainer: sergey@network-asp.biz deprecated because: Broken for more than 6 month expiration date: 2013-03-05 build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.9.20120916093935/xlslib-0.2.5.log (_Oct_16_21:39:33_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=xlslib portname: editors/f4l description: An open source development environment for Macromedia Flash maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=f4l portname: editors/kate-plugins description: Additional plugins and features for kate maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=kate-plugins portname: editors/kile description: A LaTeX source editor for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=kile portname: editors/pdfedit description: Free editor for manipulating PDF documents (QT3 GUI and CLI) maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=pdfedit portname: editors/semi-xemacs21-mule description: SEMI, Library of MIME feature for GNU Emacs for xemacs21-mule maintainer: ports@FreeBSD.org deprecated because: No more public distfiles expiration date: 2012-10-20 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=semi-xemacs21-mule portname: emulators/linux-libaio description: Linux-native asynchronous I/O access library, Linux binary maintainer: numisemis@yahoo.com deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=linux-libaio portname: emulators/linux-vmware-toolbox4 description: VMware toolbox for guest OS (for VMware 4.x, Linux version) maintainer: ports@FreeBSD.org deprecated because: No more supported upstream expiration date: 2013-03-14 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=linux-vmware-toolbox4 portname: emulators/linux-vmware-toolbox5 description: VMware toolbox for guest OS (VMware Workstation 5.x, Linux version) maintainer: ports@FreeBSD.org deprecated because: No more supported upstream expiration date: 2013-03-14 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=linux-vmware-toolbox5 portname: emulators/linux-vmware-toolbox6 description: VMware toolbox for guest OS (VMware Workstation 6.x, Linux version) maintainer: ports@FreeBSD.org deprecated because: No more supported upstream expiration date: 2013-03-14 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=linux-vmware-toolbox6 portname: emulators/linux_base-fc4 description: Base set of packages needed in Linux mode (for i386/amd64) maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=linux_base-fc4 portname: emulators/vmware-guestd4 description: VMware time synchronization daemon for FreeBSD guest OS (for VMware 4.x) maintainer: ports@FreeBSD.org deprecated because: No more supported upstream expiration date: 2013-03-14 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=vmware-guestd4 portname: emulators/vmware-guestd5 description: VMware guest OS supporting daemon (VMware Workstation 5.x, FreeBSD version) maintainer: ports@FreeBSD.org deprecated because: No more supported upstream expiration date: 2013-03-14 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=vmware-guestd5 portname: emulators/vmware-guestd6 description: VMware guest OS supporting daemon (VMware Workstation 6.x, FreeBSD version) maintainer: ports@FreeBSD.org deprecated because: No more supported upstream expiration date: 2013-03-14 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=vmware-guestd6 portname: emulators/vmware-tools4 description: VMware tools for guest OS (for VMware 4.x, FreeBSD version) maintainer: ports@FreeBSD.org deprecated because: No more supported upstream expiration date: 2013-03-14 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=vmware-tools4 portname: emulators/vmware-tools5 description: VMware Tools for guest OS (VMware Workstation 5.x, FreeBSD version) maintainer: ports@FreeBSD.org deprecated because: No more supported upstream expiration date: 2013-03-14 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=vmware-tools5 portname: emulators/vmware-tools6 description: VMware Tools for guest OS (VMware Workstation 6.x, FreeBSD version) maintainer: ports@FreeBSD.org deprecated because: No more supported upstream expiration date: 2013-03-14 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=vmware-tools6 portname: finance/eqonomize-kde3 description: A personal accounting software package maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=finance&portname=eqonomize-kde3 portname: finance/kexchange description: KDE currency converter maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=finance&portname=kexchange portname: finance/khacc description: Simple KDE-based financial manager maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=finance&portname=khacc portname: finance/kmymoney2 description: KDE-based personal finance assistant maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=finance&portname=kmymoney2 portname: finance/qhacc description: Simple QT-based financial manager maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=finance&portname=qhacc portname: finance/qtstalker description: Commodity and stock market charting and technical analysis maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=finance&portname=qtstalker portname: french/kde3-i18n description: French messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=french&portname=kde3-i18n portname: ftp/kasablanca description: Graphical ftp client for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ftp&portname=kasablanca portname: ftp/kbear description: Graphical FTP client for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ftp&portname=kbear portname: ftp/kftpgrabber description: Graphical FTP client for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ftp&portname=kftpgrabber portname: ftp/kpum description: KDE pureftpd user manager maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ftp&portname=kpum portname: ftp/linux-curl description: Curl linux version maintainer: acm@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ftp&portname=linux-curl portname: ftp/php52-curl description: The curl shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ftp&portname=php52-curl portname: ftp/php52-ftp description: The ftp shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ftp&portname=php52-ftp portname: ftp/proma description: Administrate a ProFTPd server storing users in a MySQL database maintainer: sexbear@tmu.edu.tw status: BROKEN deprecated because: Broken for more than 6 month expiration date: 2013-03-05 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ftp&portname=proma portname: games/atlantikdesigner description: Editor for Atlantik maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=atlantikdesigner portname: games/blackjack description: One of the better implementations of blackjack, based on QT maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=blackjack portname: games/easysok description: A sokoban game for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=easysok portname: games/ggz-kde-client description: The GGZ Gaming Zone - KDE Client maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=ggz-kde-client portname: games/kamikaze description: Multiplayer bomberman-style game for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=kamikaze portname: games/kbilliards description: Funny billiards simulator game for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=kbilliards portname: games/kdegames3 description: Games for the KDE integrated X11 desktop maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=kdegames3 portname: games/kfreerings description: A small puzzle game maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=kfreerings portname: games/kmastermind description: Mastermind game designed for K Desktop Environment maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: http://pointyhat.FreeBSD.org/errorlogs/sparc64-errorlogs/e.9.20120820204747/kmastermind-2.2_8.log (_Aug_30_01:40:45_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=kmastermind portname: games/knights description: A KDE chess interface (gnuchess/crafty) maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=knights portname: games/kpicframer description: KDE card game maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=kpicframer portname: games/kpictorial description: Little logical game for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=kpictorial portname: games/kpuzzle description: Jigsaw puzzle game for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=kpuzzle portname: games/ksudoku description: A Sudoku generator and solver for KDE maintainer: freebsd@chillt.de deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=ksudoku portname: games/ktritoc description: A Tic-tac-toe like boardgame maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=ktritoc portname: games/kwappen description: KDE board game maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=kwappen portname: games/q15 description: A Qt-based game fifteen maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=q15 portname: games/qgo description: A Go board and SGF editor written with the Qt library maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=qgo portname: games/qnetchess description: Qt based chess multiplayer game maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=qnetchess portname: games/ruby-exmars description: Ruby interface to the exMARS Memory Array Redcode Simulator maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=ruby-exmars portname: games/spacehulk description: Science-fiction board game in the world of Warhammer 40000 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=spacehulk portname: games/taxipilot description: A Spacetaxi clone maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=taxipilot portname: german/kde3-i18n description: German messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=german&portname=kde3-i18n portname: german/kheisereg description: KDE utility to search within the Heise Register maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=german&portname=kheisereg portname: graphics/albumshaper description: Drag-n-drop hierarchal photo album creation maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=albumshaper portname: graphics/divxcalc description: DivX Calculator maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=divxcalc portname: graphics/ecg2png description: Converts scanned 12-lead electrocardiograms into PNGs maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=ecg2png portname: graphics/flip description: Load a sequence of TIFF files and play them back at a target frame rate maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=flip portname: graphics/gwenview description: An image viewer and browser for the KDE environment maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=gwenview portname: graphics/kalbum description: Create albums from a collection of images maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=kalbum portname: graphics/kamera description: Digital camera support for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=kamera portname: graphics/kbarcode description: A barcode and label printing application for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=kbarcode portname: graphics/kdegraphics3 description: Graphics utilities for the KDE3 integrated X11 desktop maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=kdegraphics3 portname: graphics/kisomandel description: Fractal rendering program with nice 3D-display in realtime maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=kisomandel portname: graphics/kooka description: Raster image scan program for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=kooka portname: graphics/kuickshow description: KDE image viewer maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=kuickshow portname: graphics/linux-cairo description: Linux cairo binary maintainer: ports@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=linux-cairo portname: graphics/linux-gdk-pixbuf description: Linux version of the graphic library for GTK+ maintainer: ports@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=linux-gdk-pixbuf portname: graphics/linux-imlib description: RPM of imlib maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=linux-imlib portname: graphics/linux-jpeg description: RPM of the JPEG lib maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=linux-jpeg portname: graphics/linux-libGLU description: OpenGL utility library (Linux version) maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=linux-libGLU portname: graphics/linux-libmng description: RPM of libmng maintainer: michael@ranner.eu deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=linux-libmng portname: graphics/linux-png description: RPM of the PNG lib maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=linux-png portname: graphics/linux-png10 description: RPM of the PNG lib (old 1.0 version) maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=linux-png10 portname: graphics/linux-sdl_image description: A simple library to load images as SDL interfaces (linux version) maintainer: nivit@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=linux-sdl_image portname: graphics/linux-tiff description: TIFF library, Linux/i386 binary maintainer: emulation@FreeBSD.org status: FORBIDDEN deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=linux-tiff portname: graphics/linux-ungif description: RPM of the ungif lib maintainer: maho@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=linux-ungif portname: graphics/ocaml-images description: Objective Caml image processing library maintainer: michael.grunewald@laposte.net status: BROKEN deprecated because: Broken for more than 6 month expiration date: 2013-03-05 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=ocaml-images portname: graphics/php52-exif description: The exif shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=php52-exif portname: graphics/php52-gd description: The gd shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=php52-gd portname: graphics/php52-ming description: The ming shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=php52-ming portname: graphics/potracegui description: GUI for potrace, a program for tracing bitmap images maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=potracegui portname: graphics/ruby-opengl description: OpenGL/GLU/GLUT interface modules for Ruby maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=ruby-opengl portname: graphics/ruby-pgplot description: A Ruby interface to PGPLOT graphics library maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=ruby-pgplot portname: graphics/rubygem-objectdetect description: A simple library for detecting objects in pictures maintainer: tota@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=rubygem-objectdetect portname: graphics/rubygem-turing description: Easy to use and customize/extend implementation of captcha maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=rubygem-turing portname: graphics/vid description: Grab images from USB Cameras using the OV511 and OV511+ chipset maintainer: olivier@gid0.org status: BROKEN deprecated because: Broken for more than 6 month expiration date: 2013-03-05 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=vid portname: graphics/xenomorph description: An image filter system based on volterra and morphologic filters maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=xenomorph portname: hebrew/kde3-i18n description: Hebrew messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=hebrew&portname=kde3-i18n portname: hungarian/kde3-i18n description: Hungarian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=hungarian&portname=kde3-i18n portname: irc/kmyirc description: Easy to use IRC client for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=irc&portname=kmyirc portname: irc/konversation description: User friendly IRC client for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=irc&portname=konversation portname: irc/kwirc description: IRC client for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=irc&portname=kwirc portname: japanese/kde3-i18n description: Japanese messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=kde3-i18n portname: japanese/ruby-chasen description: ChaSen module for Ruby maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=ruby-chasen portname: japanese/ruby-eb description: Ruby bind of EB library maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=ruby-eb portname: japanese/ruby-ming description: Yet another Ming module for Ruby built with Japanese support maintainer: don@na.rim.or.jp deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=ruby-ming portname: japanese/ruby-slang description: S-Lang extension module for Ruby maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=ruby-slang portname: korean/kde3-i18n description: Korean messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=korean&portname=kde3-i18n portname: lang/boo description: A CLI-targeted programming language similar to Python maintainer: mono@FreeBSD.org status: BROKEN deprecated because: BROKEN for more than 6 month expiration date: 2012-05-10 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=boo portname: lang/elisp-manual description: Emacs Lisp reference manual maintainer: ports@FreeBSD.org status: BROKEN deprecated because: Broken for more than 6 months expiration date: 2013-03-05 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=elisp-manual portname: lang/klogoturtle description: LOGO Interpreter for the KDE Desktop maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=klogoturtle portname: lang/linux-libg2c description: Fortran 77 compatibility runtime maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=linux-libg2c portname: lang/php52 description: PHP Scripting Language maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=php52 portname: lang/ruby-lua4 description: A Ruby extension to make Lua script language as a class maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=ruby-lua4 portname: lang/tcl83 description: Tool Command Language maintainer: tcltk@FreeBSD.org deprecated because: No longer maintained upstream expiration date: 2013-04-04 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=tcl83 portname: mail/firetray description: System tray add-on for firefox, thunderbird, seamonkey, etc maintainer: avg@icyb.net.ua status: BROKEN deprecated because: Broken for more than 6 month expiration date: 2013-03-05 build errors: http://pointyhat.FreeBSD.org/errorlogs/sparc64-errorlogs/e.8.20120812220927/firetray-0.2.8_1.log (_Aug_19_07:51:39_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=mail&portname=firetray portname: mail/listmanager description: Fully-featured mailing list manager maintainer: gshapiro@FreeBSD.org deprecated because: No more upstream, no more public distfiles expiration date: 2013-03-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=mail&portname=listmanager portname: mail/p5-vpopmail description: Perl module to provide access to vpopmail API maintainer: james@now.ie status: BROKEN deprecated because: Broken for more than 6 month expiration date: 2013-03-05 build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.10.20120628171716/p5-vpopmail-0.08.log (_Jul_16_09:16:51_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=mail&portname=p5-vpopmail portname: mail/php52-imap description: The imap shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=mail&portname=php52-imap portname: math/cgal description: A computational geometry library maintainer: wenheping@gmail.com status: BROKEN deprecated because: Broken for more than 6 month expiration date: 2013-03-05 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=cgal portname: math/koctave description: KDEGUI for octave maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=koctave portname: math/labplot description: LabPlot : Data analysis and visualisation maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=labplot portname: math/petsc-mpich description: Portable, Extensible Toolkit for Scientific computation maintainer: bf@FreeBSD.org status: BROKEN deprecated because: BROKEN for more than 6 month expiration date: 2012-07-14 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=petsc-mpich portname: math/pgcalc description: A powerful scientific skinnable calculator maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=pgcalc portname: math/php52-bcmath description: The bcmath shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=php52-bcmath portname: math/php52-gmp description: The gmp shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=php52-gmp portname: math/qwtplot3d description: A 3D plotting widget for scientific data and mathematical expressions maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=qwtplot3d portname: math/xgfe description: An X11 front-end for Gnuplot maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=math&portname=xgfe portname: misc/gopod description: Utility to cap/uncap an iPod maintainer: ports@FreeBSD.org deprecated because: does not work with modern iPods anymore expiration date: 2013-03-13 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=gopod portname: misc/gtk-gopod description: GTK Utility to cap/uncap an iPod maintainer: ports@FreeBSD.org deprecated because: does not work with modern iPods anymore expiration date: 2013-03-13 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=gtk-gopod portname: misc/gwenview-i18n description: Localized messages and documentation for Gwenview maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=gwenview-i18n portname: misc/k3b-i18n description: Localized messages and documentation for K3b maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=k3b-i18n portname: misc/kaddressbook-plugins description: Plugins for KAddressbook maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kaddressbook-plugins portname: misc/katalog description: CD organizer for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=katalog portname: misc/kbfx description: A new K-menu for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kbfx portname: misc/kde3-i18n description: Localized messages and documentation for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n portname: misc/kde3-i18n-af description: Afrikaans localized messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-af portname: misc/kde3-i18n-az description: Azerbaijani messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-az portname: misc/kde3-i18n-be description: Belarusian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-be portname: misc/kde3-i18n-bg description: Bulgarian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-bg portname: misc/kde3-i18n-bn description: Bengali messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-bn portname: misc/kde3-i18n-br description: Breton messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-br portname: misc/kde3-i18n-bs description: Bosnian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-bs portname: misc/kde3-i18n-ca description: Catalan messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-ca portname: misc/kde3-i18n-cs description: Czech messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-cs portname: misc/kde3-i18n-csb description: Cassubian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-csb portname: misc/kde3-i18n-cy description: Welsh messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-cy portname: misc/kde3-i18n-da description: Danish messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-da portname: misc/kde3-i18n-el description: Modern Greek messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-el portname: misc/kde3-i18n-en_GB description: British messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-en_GB portname: misc/kde3-i18n-eo description: Esperanto messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-eo portname: misc/kde3-i18n-es description: Spanish messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-es portname: misc/kde3-i18n-et description: Estonian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-et portname: misc/kde3-i18n-eu description: Basque messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-eu portname: misc/kde3-i18n-fa description: Persian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-fa portname: misc/kde3-i18n-fi description: Finnish messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-fi portname: misc/kde3-i18n-fy description: Frisian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-fy portname: misc/kde3-i18n-ga description: Irish messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-ga portname: misc/kde3-i18n-gl description: Gallegan messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-gl portname: misc/kde3-i18n-hi description: Hindi messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-hi portname: misc/kde3-i18n-hr description: Croatian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-hr portname: misc/kde3-i18n-is description: Icelandic messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-is portname: misc/kde3-i18n-it description: Italian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-it portname: misc/kde3-i18n-kk description: Kazakh messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-kk portname: misc/kde3-i18n-km description: Khmer messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-km portname: misc/kde3-i18n-lt description: Lithuanian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-lt portname: misc/kde3-i18n-lv description: Latvian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-lv portname: misc/kde3-i18n-mk description: Macedonian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-mk portname: misc/kde3-i18n-mn description: Mongolian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-mn portname: misc/kde3-i18n-ms description: Malay messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-ms portname: misc/kde3-i18n-nb description: Norwegian Bokmaal messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-nb portname: misc/kde3-i18n-nds description: Low German localized messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-nds portname: misc/kde3-i18n-nl description: Dutch messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-nl portname: misc/kde3-i18n-nn description: Norwegian Nynorsk messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-nn portname: misc/kde3-i18n-pa description: Panjabi messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-pa portname: misc/kde3-i18n-ro description: Romanian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-ro portname: misc/kde3-i18n-rw description: Kinyarwanda messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-rw portname: misc/kde3-i18n-se description: Northern Sami messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-se portname: misc/kde3-i18n-sk description: Slovak messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-sk portname: misc/kde3-i18n-sl description: Slovenian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-sl portname: misc/kde3-i18n-sr description: Serbian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-sr portname: misc/kde3-i18n-sr_Latn description: Serbian (latin alphabet) messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-sr_Latn portname: misc/kde3-i18n-ss description: Swati messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-ss portname: misc/kde3-i18n-sv description: Swedish messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-sv portname: misc/kde3-i18n-ta description: Tamil messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-ta portname: misc/kde3-i18n-te description: Telugu messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-te portname: misc/kde3-i18n-tg description: Tajik messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-tg portname: misc/kde3-i18n-th description: Thai messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-th portname: misc/kde3-i18n-tr description: Turkish messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-tr portname: misc/kde3-i18n-uz description: Uzbek messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-uz portname: misc/kde3-i18n-ven description: Venda messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-ven portname: misc/kde3-i18n-wa description: Walloon messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-wa portname: misc/kde3-i18n-xh description: Xhosa messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-xh portname: misc/kde3-i18n-zu description: Zulu messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.8.20101230091827/zu-kde-i18n-3.1.5_5.log (_Sep_13_09:01:17_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kde3-i18n-zu portname: misc/kdeaddons3 description: Additional plugins and scripts for some KDE applications maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kdeaddons3 portname: misc/kdeedu3 description: Collection of entertaining, educational programs for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kdeedu3 portname: misc/kdeutils3 description: Utilities for the KDE integrated X11 desktop maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kdeutils3 portname: misc/kfile-plugins description: Plugins for Konqueror (in filemanager mode) maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kfile-plugins portname: misc/kicker-applets description: Additional applets for Kicker maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kicker-applets portname: misc/knewsticker-scripts description: Additional scripts for KNewsTicker maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=knewsticker-scripts portname: misc/konq-plugins description: Additional plugins and features for Konqueror maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=konq-plugins portname: misc/ksig description: Signature randomiser, available standalone or as a plugin within KMail maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=ksig portname: misc/kwatch description: KDE/Qt log file viewer maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=kwatch portname: misc/php52-calendar description: The calendar shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=php52-calendar portname: misc/renamedlgplugins description: Plugins for Konqueror's rename dialog maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=renamedlgplugins portname: misc/rubygem-ohcount description: Ohcount is the source code line counter that powers Ohloh maintainer: eg@fbsd.lt deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=rubygem-ohcount portname: multimedia/grpplaylist description: A playlist for Noatun maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=grpplaylist portname: multimedia/kdemultimedia3 description: Multimedia utilities for the KDE integrated X11 desktop maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=kdemultimedia3 portname: multimedia/kmenc15 description: KDE advanced MEncoder frontend, ala, VirtualDub maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=kmenc15 portname: multimedia/kmplayer description: KDE frontend to MPlayer, Xine, GStreamer maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=kmplayer portname: multimedia/konverter description: KDE MEncoder frontend maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=konverter portname: multimedia/kplayer description: Movie player based on mplayer maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=kplayer portname: multimedia/linux-libtheora description: Video codec maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=linux-libtheora portname: multimedia/linux-realplayer description: Linux RealPlayer 10 from RealNetworks maintainer: multimedia@FreeBSD.org status: BROKEN deprecated because: Broken for more than 6 month expiration date: 2013-03-05 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.10.20120608131052/linux-realplayer-10.0.9.809.20070726_3.log (_Jun_13_02:24:52_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=linux-realplayer portname: multimedia/mandvd description: DVD authoring and slideshow tool maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=mandvd portname: multimedia/noatun-plugins description: Various plugins for Noatun maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=noatun-plugins portname: multimedia/p5-Video-Info description: Retrieve video properties such as: height width codec fps maintainer: perl@FreeBSD.org status: BROKEN deprecated because: BROKEN for more than 6 month expiration date: 2012-05-10 build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.8.20101230091827/p5-Video-Info-0.999_3.log (_Sep_13_13:53:12_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=p5-Video-Info portname: multimedia/ruby-flvtool2 description: Manipulation tool for Macromedia Flash Video files maintainer: gslin@gslin.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=ruby-flvtool2 portname: multimedia/subtitlecomposer description: Subtitle editor for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=subtitlecomposer portname: multimedia/transkode description: A KDE/Qt based frontend for various audio transcoding tools maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=transkode portname: multimedia/xine_artsplugin description: Xine-based multimedia backend for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: http://pointyhat.FreeBSD.org/errorlogs/powerpc-errorlogs/e.8.20120528024705/kdemultimedia-xine_artsplugin-3.5.10_6.log (_Aug_11_05:12:17_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=xine_artsplugin portname: net-im/eva description: QQ IM Client for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-im&portname=eva portname: net-im/kmerlin description: An IM (Instant Messenger) KDE client for the Microsoft MSN Network maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-im&portname=kmerlin portname: net-im/konverse description: KDE Jabber Client maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-im&portname=konverse portname: net-im/kopete description: KDE multi-protocol instant messenger (IM) maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-im&portname=kopete portname: net-im/rubygem-termtter description: Terminal based Twitter client maintainer: dhn@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-im&portname=rubygem-termtter portname: net-im/rubygem-xmpp4r description: XMPP/Jabber library for Ruby maintainer: miwi@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-im&portname=rubygem-xmpp4r portname: net-mgmt/nettop description: A program which looks like top, but is for network packets maintainer: leeym@FreeBSD.org deprecated because: Dead upstream expiration date: 2013-03-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-mgmt&portname=nettop portname: net-mgmt/php52-snmp description: The snmp shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-mgmt&portname=php52-snmp portname: net-mgmt/zabbix-agent description: Enterprise-class open source distributed monitoring (agent) maintainer: ports@christianserving.org deprecated because: no longer supported by upstream expiration date: 2013-03-15 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-mgmt&portname=zabbix-agent portname: net-mgmt/zabbix-frontend description: Enterprise-class open source distributed monitoring (frontend) maintainer: ports@christianserving.org deprecated because: no longer supported by upstream expiration date: 2013-03-15 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-mgmt&portname=zabbix-frontend portname: net-mgmt/zabbix-proxy description: Enterprise-class open source distributed monitoring (proxy) maintainer: ports@christianserving.org deprecated because: no longer supported by upstream expiration date: 2013-03-15 build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.9.20121104103132/zabbix-proxy-1.8.13,2.log (_Nov__4_17:24:50_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-mgmt&portname=zabbix-proxy portname: net-mgmt/zabbix-server description: Enterprise-class open source distributed monitoring (server) maintainer: ports@christianserving.org deprecated because: no longer supported by upstream expiration date: 2013-03-15 build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.8.20121002113816/zabbix-server-1.8.13,2.log (_Oct__4_03:18:08_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-mgmt&portname=zabbix-server portname: net-p2p/kmldonkey description: KDE integration for MLDonkey eDonkey P2P client maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-p2p&portname=kmldonkey portname: net-p2p/ktorrent2 description: BitTorrent client for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-p2p&portname=ktorrent2 portname: net-p2p/moodriver description: C++ museekd client library maintainer: novel@FreeBSD.org status: BROKEN deprecated because: Not supported by upstream, master site is down expiration date: 2013-04-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-p2p&portname=moodriver portname: net-p2p/qtella description: A Gnutella client using Qt maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-p2p&portname=qtella portname: net/cphone description: H323 Video Conferencing Program which uses QT maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=cphone portname: net/kdenetwork3 description: Network-related programs and modules for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=kdenetwork3 portname: net/knemo description: Network monitor for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=knemo portname: net/kphone description: A voice over internet phone maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=kphone portname: net/lanbrowsing description: Lanbrowsing facility and backend for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=lanbrowsing portname: net/p5-Net-Gopher description: Net::Gopher is the Perl Gopher/Gopher+ API maintainer: toni.viemero@iki.fi deprecated because: gone from CPAN expiration date: 2012-04-17 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=p5-Net-Gopher portname: net/php52-ldap description: The ldap shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=php52-ldap portname: net/php52-soap description: The soap shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=php52-soap portname: net/php52-sockets description: The sockets shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=php52-sockets portname: net/php52-xmlrpc description: The xmlrpc shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=php52-xmlrpc portname: net/pppload description: Display the current throughput of a network device in a window maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=pppload portname: net/samba34 description: A free SMB and CIFS client and server for UNIX maintainer: timur@FreeBSD.org deprecated because: Unmaintained by upstream expiration date: 2013-03-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=samba34 portname: polish/kde3-i18n description: Polish messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=polish&portname=kde3-i18n portname: ports-mgmt/qtpkg description: A Qt based package removal tool maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ports-mgmt&portname=qtpkg portname: portuguese/kde3-i18n description: Portuguese messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=portuguese&portname=kde3-i18n portname: portuguese/kde3-i18n-pt_BR description: Brazilian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=portuguese&portname=kde3-i18n-pt_BR portname: print/kcdlabel description: Create covers, labels, and booklets for your CD cases maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=print&portname=kcdlabel portname: print/mapagi description: Pagination utility that prints your images/comics in 'in folio' format maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=print&portname=mapagi portname: russian/kde3-i18n description: Russian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=russian&portname=kde3-i18n portname: russian/ksocrat description: KSocrat is the simple English/Russian Russian/English dictionary maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=russian&portname=ksocrat portname: science/gsystem description: A multi-user virtual reality evolution and life simulation framework maintainer: raphael-langerhorst@gmx.at deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=science&portname=gsystem portname: science/kmovisto description: A real 3-D molecule viewer maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=science&portname=kmovisto portname: science/kst description: Data viewing program for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=science&portname=kst portname: security/fwtk description: A toolkit used for building firewalls based on proxy services maintainer: pirzyk@FreeBSD.org status: BROKEN deprecated because: expiration date: 2012-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=fwtk portname: security/linux-openssl description: SSL and crypto library (Linux Version) maintainer: acm@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=linux-openssl portname: security/openvpn20 description: Secure IP/Ethernet tunnel daemon maintainer: mandree@FreeBSD.org deprecated because: Please migrate to a newer OpenVPN version expiration date: 2013-07-11 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=openvpn20 portname: security/php52-filter description: The filter shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.8.20101230091827/php52-filter-5.2.16.log (_Sep_14_09:34:20_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=php52-filter portname: security/php52-hash description: The hash shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=php52-hash portname: security/php52-mcrypt description: The mcrypt shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=php52-mcrypt portname: security/php52-mhash description: The mhash shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=php52-mhash portname: security/php52-openssl description: The openssl shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=php52-openssl portname: security/qtfw description: A GUI frontend for ipfw utility in FreeBSD maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=qtfw portname: security/ruby-acl description: Ruby module to provide Access Control List checks maintainer: ufo@februality.com deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=ruby-acl portname: security/ruby-tcpwrap description: TCP wrappers library for Ruby maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=ruby-tcpwrap portname: sysutils/grub description: GRand Unified Bootloader maintainer: sem@FreeBSD.org status: BROKEN deprecated because: expiration date: 2012-12-01 build errors: http://pointyhat.FreeBSD.org/errorlogs/i386-errorlogs/e.10.20121030050346/grub-0.97_4.log (_Jun__9_08:15:20_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=grub portname: sysutils/kcpuload description: CPU meter for Kicker maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=kcpuload portname: sysutils/kdeadmin3 description: KDE applications related to system administration maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=kdeadmin3 portname: sysutils/kdirstat description: A small KDE utility that sums up disk usage for directory trees maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=kdirstat portname: sysutils/kkeyled description: Panel applet to display the keyboard's LED states maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=kkeyled portname: sysutils/klaptopdaemon description: APM monitor for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=klaptopdaemon portname: sysutils/klineakconfig description: Configure lineakd through a KDE interface maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=klineakconfig portname: sysutils/kmilo description: Enables special keys on custom keyboards maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=kmilo portname: sysutils/kshutdown description: Advanced shutdown utility for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=kshutdown portname: sysutils/ksynaptics description: KDE control center module for Synaptics touchpads maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=ksynaptics portname: sysutils/lineak-kdeplugins description: KDE plugins for lineakd maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=lineak-kdeplugins portname: sysutils/linux-procps description: Linux psproc binaries maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=linux-procps portname: sysutils/php52-posix description: The posix shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.8.20101230091827/php52-posix-5.2.16.log (_Sep_14_12:36:46_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=php52-posix portname: sysutils/pwg description: A small tool to generate secure, random passwords maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=pwg portname: sysutils/rsyslog5 description: Syslogd supporting SQL, TCP and TLS maintainer: brd@FreeBSD.org deprecated because: Use sysutils/rsyslog6 expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=rsyslog5 portname: sysutils/rsyslog5-dbi description: LibDBI output module for rsyslog maintainer: brd@FreeBSD.org deprecated because: Use sysutils/rsyslog6 expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=rsyslog5-dbi portname: sysutils/rsyslog5-gnutls description: GNUTLS module for rsyslog maintainer: brd@FreeBSD.org deprecated because: Use sysutils/rsyslog6 expiration date: 2013-02-28 build errors: http://pointyhat.FreeBSD.org/errorlogs/sparc64-errorlogs/e.9.20120820204747/rsyslog-gnutls-5.8.12_1.log (_Aug_30_04:21:35_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=rsyslog5-gnutls portname: sysutils/rsyslog5-gssapi description: GSS API input/output module for rsyslog maintainer: brd@FreeBSD.org deprecated because: Use sysutils/rsyslog6 expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=rsyslog5-gssapi portname: sysutils/rsyslog5-mysql description: MySQL output module for rsyslog maintainer: brd@FreeBSD.org deprecated because: Use sysutils/rsyslog6 expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=rsyslog5-mysql portname: sysutils/rsyslog5-pgsql description: PostgreSQL output module for rsyslog maintainer: brd@FreeBSD.org deprecated because: Use sysutils/rsyslog6 expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=rsyslog5-pgsql portname: sysutils/rsyslog5-relp description: RELP input/output module for rsyslog maintainer: brd@FreeBSD.org deprecated because: Use sysutils/rsyslog6 expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=rsyslog5-relp portname: sysutils/rsyslog5-rfc3195 description: RFC3195 input support for rsyslog maintainer: brd@FreeBSD.org deprecated because: Use sysutils/rsyslog6 expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=rsyslog5-rfc3195 portname: sysutils/rsyslog5-snmp description: SNMP trap sender for rsyslog maintainer: brd@FreeBSD.org deprecated because: Use sysutils/rsyslog6 expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=rsyslog5-snmp portname: sysutils/sge62 description: Sun Grid Engine, a batch queueing system maintainer: ports@FreeBSD.org deprecated because: Ancient and unsupported release expiration date: 2013-03-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=sge62 portname: textproc/kbedic description: An English-Bulgarian-English dictionary maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=kbedic portname: textproc/linux-aspell description: Spelling checker with better logic than ispell (linux version) maintainer: office@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=linux-aspell portname: textproc/linux-expat description: Linux/i386 binary port of Expat XML-parsing library maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=linux-expat portname: textproc/linux-libxml description: RPM of libxml maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=linux-libxml portname: textproc/linux-libxml2 description: RPM of libxml2 maintainer: tut@nhamon.com.ua deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=linux-libxml2 portname: textproc/linux-scim-gtk description: Smart Common Input Method platform, gtk module, Linux binary maintainer: hrs@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=linux-scim-gtk portname: textproc/linux-scim-libs description: Smart Common Input Method platform, library part, Linux binary maintainer: hrs@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=linux-scim-libs portname: textproc/linux-xerces-c2 description: Validating XML parser from the Apache XML Project (linux version) maintainer: ports@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=linux-xerces-c2 portname: textproc/p5-KinoSearch description: A Perl search engine library maintainer: vivek@khera.org deprecated because: replaced by textproc/p5-KinoSearch1 expiration date: 2012-05-11 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=p5-KinoSearch portname: textproc/php52-ctype description: The ctype shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=php52-ctype portname: textproc/php52-dom description: The dom shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=php52-dom portname: textproc/php52-pspell description: The pspell shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=php52-pspell portname: textproc/php52-simplexml description: The simplexml shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=php52-simplexml portname: textproc/php52-wddx description: The wddx shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=php52-wddx portname: textproc/php52-xml description: The xml shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.8.20101230091827/php52-xml-5.2.16.log (_Sep_14_17:40:33_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=php52-xml portname: textproc/php52-xmlreader description: The xmlreader shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=php52-xmlreader portname: textproc/php52-xmlwriter description: The xmlwriter shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.8.20101230091827/php52-xmlwriter-5.2.16.log (_Sep_14_17:42:18_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=php52-xmlwriter portname: textproc/php52-xsl description: The xsl shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=php52-xsl portname: textproc/romdict description: Dictd database for Eng-Ro dictionary maintainer: itetcu@FreeBSD.org deprecated because: Upstream the project seems dead for years expiration date: 2013-06-30 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=romdict portname: textproc/ruby-amrita description: An HTML/XHTML template library for Ruby maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=ruby-amrita portname: textproc/ruby-erbscan description: ERB compiler accelerator maintainer: smatsui@karashi.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=ruby-erbscan portname: textproc/ruby-libxml description: A friendly API to libxml for Ruby maintainer: gahr@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=ruby-libxml portname: textproc/ruby-sablot description: Ruby interface to the Sablotron XSLT processor maintainer: gahr@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=ruby-sablot portname: textproc/ruby-xmlscan-old description: Pure Ruby XML/HTML scanner and XPath processor/compiler modules maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=ruby-xmlscan-old portname: textproc/ruby-xslt description: An XSLT processor in pure Ruby maintainer: wenheping@gmail.com deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=ruby-xslt portname: textproc/rubygem-ferret description: Ferret is a ruby port of Lucene maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=rubygem-ferret portname: textproc/rubygem-formosa description: A collection of libraries for Taiwanese languages processing maintainer: lukhnos@gmail.com deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=rubygem-formosa portname: textproc/rubygem-htmltools description: Tools for parsing and manipulating HTML text in Ruby maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=rubygem-htmltools portname: textproc/skim description: An input method platform based on SCIM library and KDE/QT maintainer: ports@FreeBSD.org status: BROKEN deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=skim portname: textproc/xxdiff description: QT interface to view/merge differences between 2 or 3 files maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=xxdiff portname: ukrainian/kde3-i18n description: Ukrainian messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ukrainian&portname=kde3-i18n portname: vietnamese/kde3-i18n description: Vietnamese messages and documentation for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=vietnamese&portname=kde3-i18n portname: vietnamese/vnelvis description: A vi clone that speaks Vietnamese maintainer: obrien@FreeBSD.org status: BROKEN deprecated because: Broken for more than 6 month expiration date: 2013-03-05 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=vietnamese&portname=vnelvis portname: vietnamese/vnterm description: An xterm that speaks Vietnamese maintainer: obrien@FreeBSD.org status: BROKEN deprecated because: Broken for more than 6 month expiration date: 2013-03-05 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=vietnamese&portname=vnterm portname: www/kdewebdev description: Comprehensive html/website development environment maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=kdewebdev portname: www/kompozer description: Complete Web Authoring Suite maintainer: gecko@FreeBSD.org deprecated because: Dead upstream expiration date: 2013-03-20 build errors: http://pointyhat.FreeBSD.org/errorlogs/sparc64-errorlogs/e.8.20120812220927/kompozer-0.8.b3_3.log (_Aug_19_08:44:40_UTC_2012) http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.10.20120608131052/kompozer-0.8.b3_3.log (_Jun_13_10:31:50_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=kompozer portname: www/linux-flashplugin9 description: Adobe Flash Player NPAPI Plugin maintainer: emulation@FreeBSD.org status: FORBIDDEN deprecated because: Vulnerable, BROKEN for more than six months expiration date: 2013-04-01 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.10.20120608131052/linux-flashplugin-9.0r289_1.log (_Jun_13_10:34:28_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=linux-flashplugin9 portname: www/p5-Dancer-Plugin-DataFu description: Dancer HTML Form and Grid/Table engine with Input Validation maintainer: gblach@FreeBSD.org deprecated because: No more public distfiles expiration date: 2013-03-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=p5-Dancer-Plugin-DataFu portname: www/php52-session description: The session shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=php52-session portname: www/php52-tidy description: The tidy shared extension for php maintainer: admin@lissyara.su deprecated because: PHP 5.2 series is strongly discouraged for new installations, migrate now expiration date: 2013-09-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=php52-tidy portname: www/py-django13 description: High-level Python Web framework maintainer: lwhsu@FreeBSD.org deprecated because: Unsupported version expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=py-django13 portname: www/ruby-nora description: A rich set of Ruby libraries for Web applications maintainer: dhn@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=ruby-nora portname: www/rubygem-mongrel description: Fast HTTP 1.1 library and server for Ruby web applications maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=rubygem-mongrel portname: www/squid31 description: HTTP Caching Proxy maintainer: tmseck@web.de deprecated because: Squid 3.1 is no longer recommended for new installations. Please use www/squid32 instead expiration date: 2013-03-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=squid31 portname: www/typo346 description: The typo3 content management system maintainer: freebsd-ports@charlieroot.de deprecated because: Obsolete stable release expiration date: 2013-04-30 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=typo346 portname: www/wyvern description: Small/powerful/lightweight/secure/embeddable HTTP server maintainer: kouichi@MysticWALL.COM status: BROKEN deprecated because: Broken for more than 6 month expiration date: 2013-03-05 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=wyvern portname: x11-clocks/kdetoys3 description: Small applications for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-clocks&portname=kdetoys3 portname: x11-fm/dolphin description: File manager for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-fm&portname=dolphin portname: x11-fonts/linux-fontconfig description: Linux/i386 binary of Fontconfig maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-fonts&portname=linux-fontconfig portname: x11-themes/baghira description: An Aqua like window decoration and widget style for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-themes&portname=baghira portname: x11-themes/kdeartwork3 description: Additional themes, sounds, wallpapers and window styles for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-themes&portname=kdeartwork3 portname: x11-themes/kdmtheme description: KDM Theme Manager maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-themes&portname=kdmtheme portname: x11-themes/qnxstyle description: A QNX style/theme for KDE3 maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-themes&portname=qnxstyle portname: x11-themes/qt-bluecurve-theme description: The Bluecurve QT theme maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-themes&portname=qt-bluecurve-theme portname: x11-toolkits/linux-gtk description: RPM of the Gtk lib maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=linux-gtk portname: x11-toolkits/linux-gtk2 description: GTK+ library, version 2.X, Linux binary maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=linux-gtk2 portname: x11-toolkits/linux-openmotif description: Motif toolkit Linux libraries maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=linux-openmotif portname: x11-toolkits/linux-pango description: Linux pango binary maintainer: emulation@FreeBSD.org status: FORBIDDEN deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=linux-pango portname: x11-toolkits/linux-qt33 description: RPM of QT3 maintainer: bsam@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=linux-qt33 portname: x11-toolkits/py-qt description: Python bindings for the Qt toolkit maintainer: ports@FreeBSD.org status: BROKEN deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=py-qt portname: x11-toolkits/qscintilla description: QT port of the Scintilla C++ editor class maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=qscintilla portname: x11-toolkits/qt33 description: Multiplatform C++ application framework maintainer: ports@FreeBSD.org deprecated because: No upstream activity since 2008; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=qt33 portname: x11-toolkits/qwt4 description: Qwt widget library for technical purposes (old version) maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=qwt4 portname: x11-toolkits/ruby-gtk description: Ruby binding for GTK+ maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=ruby-gtk portname: x11-toolkits/ruby-tk description: Ruby interface to the Tk widget set maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.9.20121107165656/ruby18-tk-1.8.7.371,1.log (_Nov__7_20:20:24_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=ruby-tk portname: x11-toolkits/ruby-wx description: Ruby bindings for wxWindows (aka wxWidgets) maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.10.20120628171716/ruby18-wx-0.6.0_8.log (_Jul_16_08:50:53_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=ruby-wx portname: x11-toolkits/tk83 description: Graphical toolkit for TCL maintainer: tcltk@FreeBSD.org deprecated because: No longer maintained upstream expiration date: 2013-04-04 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=tk83 portname: x11-wm/bbconf description: Configurator for the Blackbox window manager maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-wm&portname=bbconf portname: x11-wm/kompmgr description: Utility needed to enable XComposite support in KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-wm&portname=kompmgr portname: x11-wm/libdockapp description: Standard library for Window Maker dock apps maintainer: ports@FreeBSD.org deprecated because: Abandonware, upstream disappeared expiration date: 2012-10-20 build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.8.20101230091827/libdockapp-0.6.2.log (_Sep__8_05:40:48_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-wm&portname=libdockapp portname: x11/kde-lite description: The FreeBSD release "meta-port" for (a subset of) KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=kde-lite portname: x11/kde3 description: The "meta-port" for KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=kde3 portname: x11/kdebase3 description: Basic applications for the KDE system maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=kdebase3 portname: x11/kdelibs3 description: Base set of libraries needed by KDE programs maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=kdelibs3 portname: x11/kdelibs3-nocups description: Base set of libraries needed by KDE programs maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=kdelibs3-nocups portname: x11/linux-xorg-libs description: Xorg libraries, linux binaries maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=linux-xorg-libs portname: x11/ruby-gtktrayicon description: Ruby binding for GtkTrayIcon maintainer: ruby@FreeBSD.org deprecated because: Does not work with Ruby 1.9 expiration date: 2013-05-02 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=ruby-gtktrayicon portname: x11/xscreensaver-kde description: Support for xscreensaver blankers in KDE maintainer: ports@FreeBSD.org deprecated because: Depends on QT3; unmaintained expiration date: 2013-07-01 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=xscreensaver-kde From owner-freebsd-ports@FreeBSD.ORG Thu Mar 7 08:36:58 2013 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id CCD792EA for ; Thu, 7 Mar 2013 08:36:58 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from portsmonj.FreeBSD.org (portsmonj.freebsd.org [69.147.83.46]) by mx1.freebsd.org (Postfix) with ESMTP id C15DBA44 for ; Thu, 7 Mar 2013 08:36:58 +0000 (UTC) Received: from portsmonj.freebsd.org (portsmonj.freebsd.org [69.147.83.46]) by portsmonj.FreeBSD.org (8.14.5/8.14.4) with ESMTP id r278UYiZ019382 for ; Thu, 7 Mar 2013 08:30:34 GMT (envelope-from linimon@FreeBSD.org) Date: Thu, 7 Mar 2013 08:30:34 GMT Message-Id: <201303070830.r278UYiZ019382@portsmonj.FreeBSD.org> From: linimon@FreeBSD.org To: ports@FreeBSD.org Subject: FreeBSD ports which are currently marked forbidden X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: portmgr-feedback@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Mar 2013 08:36:58 -0000 As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically notify users about ports that are marked as "forbidden" in their Makefiles. Often, these ports are so marked due to security concerns, such as known exploits. An overview of each port, including errors seen on the build farm, is included below. portname: graphics/linux-tiff forbidden because: Vulnerable since 2004-10-13, http://portaudit.freebsd.org/8816bf3a-7929-11df-bcce-0018f3e2eb82.html build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=linux-tiff portname: security/sudosh3 forbidden because: Secunia Advisory SA38292, ISS X-Force sudosh-replay-bo (55903), replay() function buffer overflow. build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=security&portname=sudosh3 portname: www/linux-flashplugin9 forbidden because: CVE-2010-1297 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.10.20120608131052/linux-flashplugin-9.0r289_1.log (_Jun_13_10:34:28_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=linux-flashplugin9 portname: x11-toolkits/linux-pango forbidden because: Vulnerable since 2009-05-13, http://portaudit.freebsd.org/4b172278-3f46-11de-becb-001cc0377035.html build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=linux-pango From owner-freebsd-ports@FreeBSD.ORG Thu Mar 7 10:36:26 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id E44A9CA9 for ; Thu, 7 Mar 2013 10:36:26 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [188.252.31.196]) by mx1.freebsd.org (Postfix) with ESMTP id 6B14AB0 for ; Thu, 7 Mar 2013 10:36:25 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5) with ESMTP id r27AaFRr010349; Thu, 7 Mar 2013 11:36:15 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5/Submit) with ESMTP id r27AaENN010346; Thu, 7 Mar 2013 11:36:15 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Thu, 7 Mar 2013 11:36:14 +0100 (CET) From: Wojciech Puchar To: AN Subject: Re: Help installing font in virtual machine In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Thu, 07 Mar 2013 11:36:15 +0100 (CET) Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Mar 2013 10:36:27 -0000 just copy right file from /usr/local/lib/X11/fonts On Tue, 5 Mar 2013, AN wrote: > This is a bit off topic for FreeBSD, but I would appreciate any help. I > would like to install a font into a virtual machine, the font comes by > default in Xorg on FreeBSD it is called Terminal. The font is also installed > by default in opensuse and it is called DEC Terminal font. Could somebody > tell me which package provides the font, and what package is needed or > instructions to install it in a LinuxMint virtual machine. > > Any help is appreciated, thanks in advance. > > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" > > From owner-freebsd-ports@FreeBSD.ORG Thu Mar 7 11:02:46 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 21E69DD for ; Thu, 7 Mar 2013 11:02:46 +0000 (UTC) (envelope-from zeising+freebsd@daemonic.se) Received: from mail.lysator.liu.se (mail.lysator.liu.se [IPv6:2001:6b0:17:f0a0::3]) by mx1.freebsd.org (Postfix) with ESMTP id CD38418E for ; Thu, 7 Mar 2013 11:02:45 +0000 (UTC) Received: from mail.lysator.liu.se (localhost [127.0.0.1]) by mail.lysator.liu.se (Postfix) with ESMTP id 0817140006 for ; Thu, 7 Mar 2013 12:02:44 +0100 (CET) Received: by mail.lysator.liu.se (Postfix, from userid 1004) id F24C840005; Thu, 7 Mar 2013 12:02:43 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on bernadotte.lysator.liu.se X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=disabled version=3.3.1 X-Spam-Score: 0.0 Received: from mx.daemonic.se (mx.daemonic.se [IPv6:2001:470:dca9:0:1::3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.lysator.liu.se (Postfix) with ESMTPSA id E9EB940008; Thu, 7 Mar 2013 12:02:42 +0100 (CET) Received: from mailscanner.daemonic.se (mailscanner.daemonic.se [IPv6:2001:470:dca9:0:1::6]) by mx.daemonic.se (Postfix) with ESMTPS id 3ZM87k3FMrz8hVn; Thu, 7 Mar 2013 12:02:42 +0100 (CET) X-Virus-Scanned: amavisd-new at daemonic.se Received: from mx.daemonic.se ([IPv6:2001:470:dca9:0:1::3]) (using TLS with cipher CAMELLIA256-SHA) by mailscanner.daemonic.se (mailscanner.daemonic.se [IPv6:2001:470:dca9:0:1::6]) (amavisd-new, port 10025) with ESMTPS id LO89cNXGXwjE; Thu, 7 Mar 2013 12:02:40 +0100 (CET) Received: from mail.daemonic.se (mail.daemonic.se [IPv6:2001:470:dca9:0:1::4]) by mx.daemonic.se (Postfix) with ESMTPS id 3ZM87h2lXGz8hVm; Thu, 7 Mar 2013 12:02:40 +0100 (CET) Received: from tifa.daemonic.se (tifa.daemonic.se [10.32.0.6]) by mail.daemonic.se (Postfix) with ESMTPSA id 3ZM87h1sy4z9Ctq; Thu, 7 Mar 2013 12:02:40 +0100 (CET) Received: from tifa.daemonic.se (localhost [IPv6:::1]) by tifa.daemonic.se (Postfix) with ESMTP id C92982281B; Thu, 7 Mar 2013 12:02:38 +0100 (CET) Message-ID: <513873CD.1000504@daemonic.se> Date: Thu, 07 Mar 2013 12:02:37 +0100 From: Niclas Zeising User-Agent: Mutt/1.5.21 MIME-Version: 1.0 To: mexas@bristol.ac.uk Subject: Re: regression: lang/gcc47, gcc48 on amd64: configure: error: cannot compute suffix of object files: cannot compile References: <201303070731.r277VN0V022452@mech-cluster241.men.bris.ac.uk> In-Reply-To: <201303070731.r277VN0V022452@mech-cluster241.men.bris.ac.uk> Content-Type: text/plain; charset=KOI8-U Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP Cc: bf1783@gmail.com, freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Mar 2013 11:02:46 -0000 On 03/07/13 08:31, Anton Shterenlikht wrote: > > yep: > > ===>>> Upgrade of gcc-4.8.0.20130210 to gcc-4.8.0.20130303 complete > > So, are these options in /etc/make.conf harmful: > > #CMAKE_ARGS+= -DCMAKE_COLOR_MAKEFILE=off > #CFLAGS+= -fno-color-diagnostics > #CXXFLAGS+= -fno-color-diagnostics > Just som idle speculation here. Since gcc bootstraps itself, meaning that the final copy of gcc you install is built by gcc (this is true for lang/gcc47 and lang/gcc48, but not lang/gcc iirc). This gcc used will probably be confused about those arguments, at least if they are clang specific... Also, what is in config.log of the failed compiles? Regards! -- Niclas From owner-freebsd-ports@FreeBSD.ORG Thu Mar 7 11:15:56 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 0DD4C311 for ; Thu, 7 Mar 2013 11:15:56 +0000 (UTC) (envelope-from jerry@seibercom.net) Received: from mail-gh0-f173.google.com (mail-gh0-f173.google.com [209.85.160.173]) by mx1.freebsd.org (Postfix) with ESMTP id B10791EF for ; Thu, 7 Mar 2013 11:15:55 +0000 (UTC) Received: by mail-gh0-f173.google.com with SMTP id g2so21253ghb.32 for ; Thu, 07 Mar 2013 03:15:49 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=seibercom.net; s=google; h=x-received:date:from:to:subject:message-id:in-reply-to:references :reply-to:organization:x-mailer:face:mime-version:content-type :content-transfer-encoding; bh=fmIR7A+VJRmFARihx+OQyYxRi0EnNT8jhEq1tYiCwNM=; b=WM4kh1fFkXIlwoIf+BtVPGwdqDWWPBdN2Ugfm5JT4A6/Pdjq5Ia+mMVlZRFsjTh/AG iQy46EvZDb+TamexEhCWGXCNa9KWD8tpP2ZpPzS4nKMkfBG6H8pCVkPmgVDiFHhrAqWW TB3lEAH429qkCCbwDbZ/4ybJMwlkoBzX9l2x4= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:date:from:to:subject:message-id:in-reply-to:references :reply-to:organization:x-mailer:face:mime-version:content-type :content-transfer-encoding:x-gm-message-state; bh=fmIR7A+VJRmFARihx+OQyYxRi0EnNT8jhEq1tYiCwNM=; b=MqZt4UOKO+VnwkdfRgdqbLb2mU8NF4feyT26RRjcGg5U1CdjUN/L7+YyIzEBIVR5wr n4K87ZJmgjxW6yWH37DXsLq668ciU9x0kgOyEQReyNKEVu3I0RZua7kvoWEeisuMMjJ0 FdnrfJX1HZunHt+ikvntvx2K19EKoeMsQd8EiLN9sZhhGT/FAG5Ogq91P8F3l7WM7p2E Kv+fm6iqp0i8K8dsG5sbxPmTbe35iGRCD/lk/29j/VqaC0ooKMq4wxMceyIH/WeRiWVw zW4dV0BPCnDoTOH94ZoIUCsLGbtfGqh8H2DrL4FSaaXi2OV8JXOj6q7OVpRKwdP3U30Q w2Mg== X-Received: by 10.236.190.98 with SMTP id d62mr23280564yhn.8.1362654949481; Thu, 07 Mar 2013 03:15:49 -0800 (PST) Received: from scorpio.seibercom.net (cpe-076-182-104-150.nc.res.rr.com. [76.182.104.150]) by mx.google.com with ESMTPS id n2sm1312357yhm.1.2013.03.07.03.15.48 (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 07 Mar 2013 03:15:48 -0800 (PST) Received: from scorpio (localhost [127.0.0.1]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: jerry@scorpio.seibercom.net) by scorpio.seibercom.net (Postfix) with ESMTPSA id 3ZM8Qq438hz2CG4F for ; Thu, 7 Mar 2013 06:15:47 -0500 (EST) Date: Thu, 7 Mar 2013 06:15:47 -0500 From: Jerry To: freebsd-ports@freebsd.org Subject: Re: Dropbox on FreeBSD Message-ID: <20130307061547.2e270c87@scorpio> In-Reply-To: <5137FBEE.7070804@dilkie.com> References: <20121219080412.5396aeb6@scorpio> <1362485055969-5792802.post@n5.nabble.com> <5135E0A9.5020903@gmail.com> <51362D4D.4070407@unfs.us> <20130305131814.3642ccd0@scorpio> <51363A19.3020203@unfs.us> <20130306080747.4a905ddc@X220.ovitrap.com> <5137FBEE.7070804@dilkie.com> Organization: seibercom.net X-Mailer: Claws Mail 3.9.0 (GTK+ 2.24.6; amd64-portbld-freebsd8.3) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAHlBMVEUAAABYRlwJCw4FAgAIBwKprDkBAQFQLR0BAgCir7VRttp8AAACAUlEQVQ4jZWUTYvbMBCGTVl8V2hX6Gg5G5FbWQdBj0lEfE7BhN4cyzi5Wt1E5L70roWy6N92xok/skkP+5IYrMcz78xIduDWpNM3vFzuA/jX5EY1AI6KHFwW/CzFuQAwqUBbV12p+CzIh6Awq7sg33pn5D64SQXAexffeuQlA/L35RrkaB551OjGfP/cAO8mCNaDcgvfky5ijoD0pAXlCQCnljiAjsJD9Ax05Ko5sZxbnLQcmM+dZg5IjREfZrWIHK0JuwU68pAGwHvfRxBundRzTxxz3r9dNUikPsEihjz2Dc4kjp1hKsJGuot4EDxaxzMoC7XqhxhOSfZrTS6gSX1JVdjp+o1PvWfekXgw3WL0g70nDEwA0H0HQsEZc8sTmFMTkWUfYWC/vdR1zQy3xLQgLwzu90QnlnFLjeiGWBjwhb4Sa42IqOg2qqS4O1/zhKokFUb1Q8Rj4Eb69WVflXEehJ35DgChVTE5n50eaGyMLOfH8AOodoSM4PVYAQgQdBulOa+knklYks3vAuQ+uX492lTl+A+e8qBV2AKoXalVKFfyuUp0pUp1ARaUHh82lv9MN+Ig7CZtgE6FNYvjlywT2VP2dMgOG46gTIWcqdfvuwyXNz0oMJNd/N5lh1YNiJt19ADTUo3VuFSNeQwVqRSrGjSCp53fk2g+Mvfk/gfoPxHeUS8MH9vRAAAAAElFTkSuQmCC Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Gm-Message-State: ALoCoQlOfoGWAh143glEs7qUzZ5THB/+iEPEF4qRvBAJVyPS07l3gA+6q9/UID+x8PTi4Fk0+prt X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: freebsd-ports@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Mar 2013 11:15:56 -0000 On Wed, 06 Mar 2013 21:31:10 -0500 Lee Dilkie articulated: > On 3/6/2013 6:57 PM, Wojciech Puchar wrote: > >> Dropbox is a good service. You put files in a folder and it > >> automatically synchs them across multiple devices. > > > > someone else service? not mine - i mean dropbox server installed by > > me? > > > > just one another way to control people. > > Control people? How do they "control people"? Don't encourage him Lee. You will only receive convoluted verbiage for your trouble. Unfortunately, there is a small but vocal group that suffers from "Neophobia". There is no known cure. -- Jerry â™” Disclaimer: off-list followups get on-list replies or get ignored. Please do not ignore the Reply-To header. __________________________________________________________________ From owner-freebsd-ports@FreeBSD.ORG Thu Mar 7 11:24:27 2013 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 6A6A08B7; Thu, 7 Mar 2013 11:24:27 +0000 (UTC) (envelope-from jbeich@tormail.org) Received: from outgoing.tormail.org (outgoing.tormail.org [82.221.96.22]) by mx1.freebsd.org (Postfix) with ESMTP id 2C65626A; Thu, 7 Mar 2013 11:24:27 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=internal.tormail.org) by outgoing.tormail.org with esmtp (Exim 4.72) (envelope-from ) id 1UDYvx-00062N-Gb; Thu, 07 Mar 2013 14:24:26 +0300 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tormail.org; s=tm; h=Message-Id:X-TorMail-User:Content-Type:MIME-Version:References:Date:Subject:Cc:To:From; bh=PuNssJ645AIcGLoeYfM1TXVXh2puJRcYRhJLhThRRws=; b=g6ULYwT/4Do2WjgYhhECr9BZhJIc2LuOzMaBbdhcoyrUqEoMrIcP7F6yLOKLdkj9JrNiIOd6euC/sgzruCe47nZrqSNBZ6TvXfXRWZtfuRQ8h+QbCeQ0pnga5kUyOaKqWuuIYNTvHX2ybJ/4Pef81AGOE/6YFKVryQWUXHUxPYY=; Received: from jbeich by internal.tormail.org with local (Exim 4.63) (envelope-from ) id 1UDYrv-0003UL-Ko; Thu, 07 Mar 2013 11:20:17 +0000 From: Jan Beich To: Thomas Abthorpe Subject: Re: [HEADS UP] FreeBSD Ports tree has been tagged with RELEASE_7_EOL Date: Thu, 07 Mar 2013 16:08:21 +0600 References: <20130306171916.GA34145@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain X-TorMail-User: jbeich Message-Id: <1UDYrv-0003UL-Ko@internal.tormail.org> Cc: ports@FreeBSD.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Mar 2013 11:24:27 -0000 Thomas Abthorpe writes: > - We do not require committers/maintainers to support 7.x, although ports > will need to be marked as BROKEN/IGNORE if they do not build/run. Why not add an entry to UPDATING and teach portsnap(8) about EOLTIME? # a sample text based on freebsd-update(8) if [ ${EOLTIME} -lt ${NOWTIME} ]; then echo cat <<-EOF WARNING: `uname -sr` HAS PASSED ITS END-OF-LIFE DATE. Any ports issues discovered after `date -r ${EOLTIME}` specific to your version may not be corrected. EOF return 1 fi For one, not reading UPDATING pretty much guarantees running into an issue at some point anyway compared to not reading ports-announce@ list. From owner-freebsd-ports@FreeBSD.ORG Thu Mar 7 11:42:45 2013 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 22B77B7E for ; Thu, 7 Mar 2013 11:42:45 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [188.252.31.196]) by mx1.freebsd.org (Postfix) with ESMTP id 8B295302 for ; Thu, 7 Mar 2013 11:42:44 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5) with ESMTP id r27BgYk3029197 for ; Thu, 7 Mar 2013 12:42:34 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5/Submit) with ESMTP id r27BgYVq029194 for ; Thu, 7 Mar 2013 12:42:34 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Thu, 7 Mar 2013 12:42:34 +0100 (CET) From: Wojciech Puchar To: ports@FreeBSD.org Subject: non-WWW calendar/diary software Message-ID: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Greylist: Sender passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Thu, 07 Mar 2013 12:42:34 +0100 (CET) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Mar 2013 11:42:45 -0000 anyone knows such a thing - with polish translation (or translations at all so i can translate)? preferably integrated with GNOME2, not a must, but DEFINITELY evolution bloatware. Something simple, just like gnote. I know davical+web browser and it works, but something that doesn't require browser would be much better. From owner-freebsd-ports@FreeBSD.ORG Thu Mar 7 11:55:06 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 1554094 for ; Thu, 7 Mar 2013 11:55:06 +0000 (UTC) (envelope-from r.c.ladan@gmail.com) Received: from mail-ea0-x229.google.com (mail-ea0-x229.google.com [IPv6:2a00:1450:4013:c01::229]) by mx1.freebsd.org (Postfix) with ESMTP id A39AE38D for ; Thu, 7 Mar 2013 11:55:05 +0000 (UTC) Received: by mail-ea0-f169.google.com with SMTP id d13so1469070eaa.14 for ; Thu, 07 Mar 2013 03:55:04 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:subject :references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; bh=+JYalRF3Sy09KKtkfWtdhZkWMr2bxzM+wl27BtdxMMA=; b=dFYKoMJzTXq9TqLx115gCVIpGGkezQhgCcXZMLgGOiD2q9PbHQfOEun8SCtRzMQ7mi AbRoouM1qMjKvy0+GAW2n5FHfBWiVU/8bNYALaHQ8F5uv8gVXtKeLQ+dnM3/tXAFC6KN iBQiPCh6w7+taif00nZUxcB8LWR51mzjIHdt0RMAJIDeK9i7jLVpiIVIULBvyK6A3KGk 3bBNhm/D4eDVMjyWZLtsFeGC88Q6EZhwCpCbHMEuc68GjNC6FXkFcOgRh1tt6vIPUPr7 6DGYuxsgTRqN+Do63fltilisbH8Ol7vWpYhkjK437NtLT9KnwGp9+Dx/b8MZa2eKCtmd o0yA== X-Received: by 10.14.220.135 with SMTP id o7mr93344412eep.3.1362657304801; Thu, 07 Mar 2013 03:55:04 -0800 (PST) Received: from [192.168.178.20] (a82-161-212-209.adsl.xs4all.nl. [82.161.212.209]) by mx.google.com with ESMTPS id k7sm1827706een.8.2013.03.07.03.55.02 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 07 Mar 2013 03:55:03 -0800 (PST) Message-ID: <51388012.8000309@gmail.com> Date: Thu, 07 Mar 2013 12:54:58 +0100 From: =?ISO-8859-1?Q?Ren=E9_Ladan?= User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130228 Thunderbird/17.0.3 MIME-Version: 1.0 To: freebsd-ports@freebsd.org Subject: Re: [HEADS UP] FreeBSD Ports tree has been tagged with RELEASE_7_EOL References: <20130306171916.GA34145@freefall.freebsd.org> <1UDYrv-0003UL-Ko@internal.tormail.org> In-Reply-To: <1UDYrv-0003UL-Ko@internal.tormail.org> X-Enigmail-Version: 1.5.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Mar 2013 11:55:06 -0000 On 03/07/13 11:08, Jan Beich wrote: > Thomas Abthorpe writes: > >> - We do not require committers/maintainers to support 7.x, although ports >> will need to be marked as BROKEN/IGNORE if they do not build/run. > > Why not add an entry to UPDATING and teach portsnap(8) about EOLTIME? > > # a sample text based on freebsd-update(8) > if [ ${EOLTIME} -lt ${NOWTIME} ]; then > echo > cat <<-EOF > WARNING: `uname -sr` HAS PASSED ITS END-OF-LIFE DATE. > Any ports issues discovered after `date -r ${EOLTIME}` > specific to your version may not be corrected. > EOF > return 1 > fi > > For one, not reading UPDATING pretty much guarantees running into an > issue at some point anyway compared to not reading ports-announce@ list. Adding a similar warning to bsd.port.mk was propopsed on the freebsd-emulation list, at http://lists.freebsd.org/pipermail/freebsd-emulation/2013-March/010463.html Rene From owner-freebsd-ports@FreeBSD.ORG Thu Mar 7 13:05:53 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 2D59058D for ; Thu, 7 Mar 2013 13:05:53 +0000 (UTC) (envelope-from dnebdal@gmail.com) Received: from mail-bk0-x235.google.com (mail-bk0-x235.google.com [IPv6:2a00:1450:4008:c01::235]) by mx1.freebsd.org (Postfix) with ESMTP id AF18288F for ; Thu, 7 Mar 2013 13:05:52 +0000 (UTC) Received: by mail-bk0-f53.google.com with SMTP id j10so213330bkw.12 for ; Thu, 07 Mar 2013 05:05:51 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=jLt8UBsoalfp5Zj4YxSY6EdO8Ficwn0Vh3v3MBXU2nk=; b=NIecqIFf6r7Cxhv3x64h002Jc2nZO/mDEJi3INLHLdEf4YDZQlToavTx8wPAX2tggk XgVkWhyHMyz0EgBo2KYaxMPml0WXkqr5cbPAnGqQKkWx3CgKkGJ2MTCkVQUBzTr7nvXH 4WtgkxsI1x6TXppaPhU+8UqvNzGXqcrw44ZDUFoTXUhIWSkSaie64r8L72OQeRBhlkfB zfKgkfe2KptniJNxYLJUwTAPIoGeyvKpgitzjGAmbzck2H7xC2t5GizndqFThnrFKgY4 B5uZiZ0GqgpzUrmZhx7uhjMqzCuwSzEKSR+RjvTpEbNDg0TlvhemAj7KnZ5d7VKweeRS u9Rg== MIME-Version: 1.0 X-Received: by 10.204.151.72 with SMTP id b8mr12964739bkw.132.1362661551812; Thu, 07 Mar 2013 05:05:51 -0800 (PST) Received: by 10.205.142.7 with HTTP; Thu, 7 Mar 2013 05:05:51 -0800 (PST) In-Reply-To: References: Date: Thu, 7 Mar 2013 14:05:51 +0100 Message-ID: Subject: Re: non-WWW calendar/diary software From: Daniel Nebdal To: Wojciech Puchar Content-Type: text/plain; charset=ISO-8859-1 Cc: ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Mar 2013 13:05:53 -0000 I have not tried it, but how about the Lightning extension for Thunderbird? (It's an option in make config; I think it's on by default.) -- Daniel Nebdal On Thu, Mar 7, 2013 at 12:42 PM, Wojciech Puchar wrote: > anyone knows such a thing - with polish translation (or translations at all > so i can translate)? preferably integrated with GNOME2, not a must, but > DEFINITELY evolution bloatware. > > Something simple, just like gnote. > > I know davical+web browser and it works, but something that doesn't require > browser would be much better. > > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" From owner-freebsd-ports@FreeBSD.ORG Thu Mar 7 13:07:58 2013 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 22CEB645 for ; Thu, 7 Mar 2013 13:07:58 +0000 (UTC) (envelope-from ftp51246-2575596@sh4-5.1blu.de) Received: from sh4-5.1blu.de (sh4-5.1blu.de [213.83.63.54]) by mx1.freebsd.org (Postfix) with ESMTP id D44B88AD for ; Thu, 7 Mar 2013 13:07:57 +0000 (UTC) Received: from ftp51246-2575596 by sh4-5.1blu.de with local (Exim 4.69) (envelope-from ) id 1UDa21-0000E1-Ug; Thu, 07 Mar 2013 13:34:46 +0100 Date: Thu, 7 Mar 2013 13:34:45 +0100 From: Matthias Apitz To: Wojciech Puchar Subject: Re: non-WWW calendar/diary software Message-ID: <20130307123445.GA31520@sh4-5.1blu.de> References: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: X-Operating-System: FreeBSD 7.0-RELEASE (i386) User-Agent: Mutt/1.5.17+20080114 (2008-01-14) Cc: ports@FreeBSD.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 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: Thu, 07 Mar 2013 13:07:58 -0000 El día Thursday, March 07, 2013 a las 12:42:34PM +0100, Wojciech Puchar escribió: > anyone knows such a thing - with polish translation (or translations at > all so i can translate)? preferably integrated with GNOME2, not a must, > but DEFINITELY evolution bloatware. > > Something simple, just like gnote. > > I know davical+web browser and it works, but something that doesn't > require browser would be much better. There is plan-1.10.1 An X/Motif schedule planner with calendar in the ports; matthias -- Matthias Apitz t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e - w http://www.unixarea.de/ From owner-freebsd-ports@FreeBSD.ORG Thu Mar 7 13:51:03 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 9416B8BD for ; Thu, 7 Mar 2013 13:51:03 +0000 (UTC) (envelope-from portscout@portscout.freebsd.org) Received: from null.zi0r.com (null.zi0r.com [71.245.171.204]) by mx1.freebsd.org (Postfix) with ESMTP id 523E5AE9 for ; Thu, 7 Mar 2013 13:51:03 +0000 (UTC) Received: from null.zi0r.com (localhost [127.0.0.1]) by null.zi0r.com (8.14.5/8.14.5) with ESMTP id r27Dov07074038 for ; Thu, 7 Mar 2013 08:50:57 -0500 (EST) (envelope-from portscout@null.zi0r.com) Received: (from portscout@localhost) by null.zi0r.com (8.14.5/8.14.5/Submit) id r27Dovns073928; Thu, 7 Mar 2013 08:50:57 -0500 (EST) (envelope-from portscout) Message-Id: <201303071350.r27Dovns073928@null.zi0r.com> MIME-Version: 1.0 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain Date: Thu, 7 Mar 2013 08:50:57 -0500 From: portscout@portscout.freebsd.org To: ports@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Mar 2013 13:51:03 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/ports@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ cad/leocad | 0.79.2 | 0.79.3 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt If wish to stop receiving portscout reminders, please contact portscout@portscout.freebsd.org Thanks. From owner-freebsd-ports@FreeBSD.ORG Thu Mar 7 14:39:42 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 28ABFB7B for ; Thu, 7 Mar 2013 14:39:42 +0000 (UTC) (envelope-from mickael.maillot@gmail.com) Received: from mail-bk0-x22b.google.com (mail-bk0-x22b.google.com [IPv6:2a00:1450:4008:c01::22b]) by mx1.freebsd.org (Postfix) with ESMTP id BA935E82 for ; Thu, 7 Mar 2013 14:39:41 +0000 (UTC) Received: by mail-bk0-f43.google.com with SMTP id jm19so255922bkc.30 for ; Thu, 07 Mar 2013 06:39:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=5oYpkVoGvxq9phsHdeyCr3od7vimPQRNEkCy/KM7sPo=; b=TOK80HZg6V5wEaajXho/0WfdqrNf8zf/hZ55KL0cGLbn5gSxqRrQ3aZaGJ9P3JUV6B ESjXRg41XgJ7Eq/p4R6vWBxWxXYsQCZHuKbDM43+gDqfMjOt1Gp6mcpPgvuKigZ5hvsV 7WxvAu1HnVh58DM2QZf+sM3qCB5i4CZZgVydj6JNNiX/5SL7DodGfhH4jW7PGq0LAIrl U6PG0PdCfMhsIYwu8TQKEssTLtGRejKr+DXiFwoL/wX+8n+1Xf0F0yqUSkbluPCjWE3+ Rq2xRbSkEKTAYJm71Ztw+RnlmkzZMzU8mFQ2yx+bSvh993WwAZ+nnMDJjsy5df2Ubg0r BGog== MIME-Version: 1.0 X-Received: by 10.204.127.14 with SMTP id e14mr13208776bks.95.1362667180720; Thu, 07 Mar 2013 06:39:40 -0800 (PST) Received: by 10.205.82.133 with HTTP; Thu, 7 Mar 2013 06:39:40 -0800 (PST) In-Reply-To: <1621063.4o9VRTxcAU@wolfgang> References: <1621063.4o9VRTxcAU@wolfgang> Date: Thu, 7 Mar 2013 15:39:40 +0100 Message-ID: Subject: Re: xbmc and poudriere compile error From: =?ISO-8859-1?Q?Micka=EBl_Maillot?= To: Wolfgang Riegler Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Mar 2013 14:39:42 -0000 Hi, 2013/3/6 Wolfgang Riegler > Hi, > > I have problems compiling xbmc with poudriere-devel. > > Logfile says: > DVDAudioCodecFFmpeg.cpp: In member function 'virtual int > CDVDAudioCodecFFmpeg::Decode(BYTE*, int)': > DVDAudioCodecFFmpeg.cpp:163: error: 'struct AVFrame' has no member named > 'nb_samples' > DVDAudioCodecFFmpeg.cpp: In member function 'void > CDVDAudioCodecFFmpeg::ConvertToFloat()': > DVDAudioCodecFFmpeg.cpp:208: error: 'struct AVFrame' has no member named > 'nb_samples' > gmake[1]: *** [DVDAudioCodecFFmpeg.o] Error 1 > gmake: *** [xbmc/cores/dvdplayer/DVDCodecs/Audio/Audio.a] Error 2 > *** [do-build] Error code 1 > > > > I tried several options, EXTERNAL_FFMPEG, NONFREE and LIBBLURAY on and > off, but no changes. I also tried compiling without CCACHE > > Poudriere uses a FreeBSD 9.1-RELEASE AMD64 Jail. > > > > Any help is appreciated, thanks in advance. > > kind regards > > Wolfgang Riegler > _______________________________________________ > 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" > which ffmpeg port are installed ? i think multimedia/ffmpeg can conflict with xbmc build. From owner-freebsd-ports@FreeBSD.ORG Thu Mar 7 15:12:39 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 21F5D929 for ; Thu, 7 Mar 2013 15:12:39 +0000 (UTC) (envelope-from mexas@bristol.ac.uk) Received: from dirg.bris.ac.uk (dirg.bris.ac.uk [137.222.10.102]) by mx1.freebsd.org (Postfix) with ESMTP id CCA6BFF1 for ; Thu, 7 Mar 2013 15:12:38 +0000 (UTC) Received: from irix.bris.ac.uk ([137.222.10.39] helo=ncs.bris.ac.uk) by dirg.bris.ac.uk with esmtp (Exim 4.72) (envelope-from ) id 1UDcUf-00013S-R4; Thu, 07 Mar 2013 15:12:37 +0000 Received: from mech-cluster241.men.bris.ac.uk ([137.222.187.241]) by ncs.bris.ac.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1UDcUf-0006i3-LA; Thu, 07 Mar 2013 15:12:29 +0000 Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.6/8.14.6) with ESMTP id r27FCTJb001711; Thu, 7 Mar 2013 15:12:29 GMT (envelope-from mexas@mech-cluster241.men.bris.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.6/8.14.6/Submit) id r27FCT1p001710; Thu, 7 Mar 2013 15:12:29 GMT (envelope-from mexas) Date: Thu, 7 Mar 2013 15:12:29 GMT From: Anton Shterenlikht Message-Id: <201303071512.r27FCT1p001710@mech-cluster241.men.bris.ac.uk> To: freebsd@edvax.de Subject: Re: fetchmail/sendmail: Domain of sender address does not exist In-Reply-To: <20130307144501.37632a8a.freebsd@edvax.de> X-Spam-Score: -3.9 X-Spam-Level: --- Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: mexas@bristol.ac.uk List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Mar 2013 15:12:39 -0000 From freebsd@edvax.de Thu Mar 7 14:14:34 2013 On Thu, 7 Mar 2013 09:40:47 GMT, Anton Shterenlikht wrote: > How do I set fetchmail and sendmail to fetch > such emails? Maybe it helps if you add the options "fetchall flush" to your .fetchmailrc configuration file? No that does not help. I've had a similar problem some years ago and I think this was the solution. See "man fetchmail" for the corresponding command line options (and you could probably add -v to see what's actually going on). I see e.g.: fetchmail: IMAP> A0021 FETCH 14 RFC822.HEADER fetchmail: IMAP< * 14 FETCH (RFC822.HEADER {4833} reading message mexas@epo.bris.ac.uk:14 of 14 (4833 header octets) fetchmail: SMTP> MAIL FROM: BODY=8BITMIME SIZE=5930 fetchmail: SMTP< 553 5.1.8 ... Domain of sender address fsde_1e2ciclos@mrsevangelineschafers.localdomain does not exist fetchmail: SMTP error: 553 5.1.8 ... Domain of sender address fsde_1e2ciclos@mrsevangelineschafers.localdomain does not exist fetchmail: SMTP> RSET fetchmail: SMTP< 250 2.0.0 Reset state fetchmail: IMAP< ) fetchmail: IMAP< A0021 OK Completed (0.000 sec) not flushed I'm also confused by this section of fetchmail man page: *quote* SMTP/ESMTP ERROR HANDLING Besides the spam-blocking described above, fetchmail takes special actions on the following SMTP/ESMTP error responses ... 553 (invalid sending domain) Delete the message from the server. Don't even try to send bounce-mail to the originator. *end quote* I do get error 553 here, but the emails are not deleted from the server. I tried running fetchmail dosens of times, but this email (and others, about 15 in total), just wouldn't go away, and I cannot get those either. Maybe I should ask in fetchmail lists. Thanks Anton From owner-freebsd-ports@FreeBSD.ORG Thu Mar 7 15:38:54 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 8124EF6 for ; Thu, 7 Mar 2013 15:38:54 +0000 (UTC) (envelope-from scratch65535@att.net) Received: from nm22.access.bullet.mail.mud.yahoo.com (nm22.access.bullet.mail.mud.yahoo.com [66.94.237.223]) by mx1.freebsd.org (Postfix) with ESMTP id 0F385188 for ; Thu, 7 Mar 2013 15:38:53 +0000 (UTC) Received: from [66.94.237.126] by nm22.access.bullet.mail.mud.yahoo.com with NNFMP; 07 Mar 2013 15:38:53 -0000 Received: from [68.142.198.105] by tm1.access.bullet.mail.mud.yahoo.com with NNFMP; 07 Mar 2013 15:38:53 -0000 Received: from [127.0.0.1] by smtp107.sbc.mail.mud.yahoo.com with NNFMP; 07 Mar 2013 15:38:53 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=att.net; s=s1024; t=1362670733; bh=4/q67S5biA6E4zA8llky5Vv6yfKUoQUZgkXOHbFU8Y4=; h=X-Yahoo-Newman-Id:X-Yahoo-Newman-Property:X-YMail-OSG:X-Yahoo-SMTP:Received:From:To:Cc:Subject:Date:Message-ID:X-Mailer:MIME-Version:Content-Type:Content-Transfer-Encoding; b=2/Yxg6SXWcDUInkfnUlKnk0HHfc1vWzBgUyFRuM1pTGeagSgbBapyGLqQLq1FrEBObHHQ5VYlgSQjs6h/bfAa57xT1i2UIeAUrFIgMJrunPpxs+nwmPD5KAb8bXQkBtgQichfpZSAvR6u0cIdW4JuIg/sX07iufQyWjHHjRSs+I= X-Yahoo-Newman-Id: 7221.14179.bm@smtp107.sbc.mail.mud.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: qXhIT5QVM1mdoKc7Qs3vYF1rvdZbnUN0s7VamOhztoa4oWL E1pbxDarsnGZav4Fel.ooKtQxfRvvgRqjCZIlhcq2qGt8r.yVi5QNfe.RFf1 tIRGo8aQ.6cPDRfFMZrLcumx0t_Y4JBtSXER8vU0k0ExaE1wd2Bc.yEQcuAt ltdvPD4EGMAcbpDvargN_h8H36pXl.IfBcIWQz6Rt5kTAGbtYCSXE4YooP73 MndbR1v_Y_nPH5KQSiAK26J_x0cK3wJN.S8nf2soIl7VhRW638IuQ6Kf3_HY U7lxVnsgrAemHR3p3y2gnZh7LqZ7VEC__QXZ8v3iHOB2044rt2lJPqlOcdgW nW3Um0mzwUhv.lj9jKDsMx8X79B.FoAAYZJyekSisMXzzxf5_k_5ofBtCXXr 4HexeNVR1sddG79TZewLIFyl3ll3Wsygq.kprs_NSHja59yhkaH36f5mk7qm sH9hqzN_0Xam6IEYoW4rhSQ-- X-Yahoo-SMTP: pPvqnOaswBBbYZLVYFzvU7GaowLcbNioPp.aF8KvOjZk Received: from slowcat.example.org (scratch65535@72.70.2.67 with login) by smtp107.sbc.mail.mud.yahoo.com with SMTP; 07 Mar 2013 07:38:52 -0800 PST From: Auld Besom To: gecko@freebsd.org Subject: Date: Thu, 07 Mar 2013 10:38:42 -0500 Message-ID: X-Mailer: Forte Agent 4.2/32.1118 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Mar 2013 15:38:54 -0000 Firefox v19, built from a freshly-updated ports tree under xfce4 and 8.3 generic, crashes the moment I try to enter a url in the edit box. The situation seems to be getting worse with each release. 3.6.25 wouldn't let me log into disqus so that I could post at commondreams, but otherwise seemed to work correctly. v10, installed as a package, had the same problem plus others that I can't now remember, prompting me to upgrade to 17 v17 had the same problem, plus it would crash unexpectedly v18 had the same problem, plus it would crash unexpectedly and, seemingly, more frequently v19 probably has the same problem, but since it crashes when I try to type in a url, I can't be sure. The build (I just rebuilt it a few minutes ago) reported no errors, and running pkg_libchk also returned nothing. I wonder whether being pieced together from 133 components has any significance. From owner-freebsd-ports@FreeBSD.ORG Thu Mar 7 15:49:13 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 77EA4449; Thu, 7 Mar 2013 15:49:13 +0000 (UTC) (envelope-from c.kworr@gmail.com) Received: from mail-fa0-x229.google.com (mail-fa0-x229.google.com [IPv6:2a00:1450:4001:c02::229]) by mx1.freebsd.org (Postfix) with ESMTP id DCC02227; Thu, 7 Mar 2013 15:49:12 +0000 (UTC) Received: by mail-fa0-f41.google.com with SMTP id p1so29489fad.28 for ; Thu, 07 Mar 2013 07:49:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=SSwC4HGD9/GTG255MuvWl2dLeaO1xLoecd62jQUi+Jc=; b=qFRijytpSbvakLAKNV2ypM3+ElEnzmn8MF/hS5CJnvY+x4B+pvNDzNe6gduXtgghrR 0ng7tgyB971T8EnVijg4BEowl9ziKzDzk6a93KqRONG5Iy1QZ0Kb+2NWGTyTkIjrg2Up LBKK25SvaQN87PikfHUVCI4kgKBBBXTs02YN2wTN83b29FA8s/yMw9VgNdVynWBrT6rb sc9fDEX7d8QQFpKWuuFASbyxtn0dz5oBWXuYuLcRY7Obwt4AQ56d3GclCHW9UN/fqznV 6UhRrfK4gmsu9r/hG3gGwrZcvnwfgQRO7yWWSPJrvo2YVYtahKu/WXMKeisowlM43QO9 kCZg== X-Received: by 10.204.155.73 with SMTP id r9mr13558048bkw.51.1362671351877; Thu, 07 Mar 2013 07:49:11 -0800 (PST) Received: from [192.168.1.129] ([91.196.229.122]) by mx.google.com with ESMTPS id k15sm930511bku.0.2013.03.07.07.49.09 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 07 Mar 2013 07:49:10 -0800 (PST) Message-ID: <5138B6F4.7050902@gmail.com> Date: Thu, 07 Mar 2013 17:49:08 +0200 From: Volodymyr Kostyrko User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:19.0) Gecko/20100101 Firefox/19.0 SeaMonkey/2.16 MIME-Version: 1.0 To: Auld Besom , gecko@freebsd.org Subject: Re: (unknown) References: In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Mar 2013 15:49:13 -0000 07.03.2013 17:38, Auld Besom: > Firefox v19, built from a freshly-updated ports tree under xfce4 > and 8.3 generic, crashes the moment I try to enter a url in the > edit box. > > The situation seems to be getting worse with each release. 3.6.25 > wouldn't let me log into disqus so that I could post at > commondreams, but otherwise seemed to work correctly. > > v10, installed as a package, had the same problem plus others > that I can't now remember, prompting me to upgrade to 17 > > v17 had the same problem, plus it would crash unexpectedly > > v18 had the same problem, plus it would crash unexpectedly and, > seemingly, more frequently > > v19 probably has the same problem, but since it crashes when I > try to type in a url, I can't be sure. > > The build (I just rebuilt it a few minutes ago) reported no > errors, and running pkg_libchk also returned nothing. > > I wonder whether being pieced together from 133 components has > any significance. Does `kldload sem` fixes anything for you? -- Sphinx of black quartz, judge my vow. From owner-freebsd-ports@FreeBSD.ORG Thu Mar 7 17:12:26 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id DF255B7D for ; Thu, 7 Mar 2013 17:12:26 +0000 (UTC) (envelope-from meta@vmeta.jp) Received: from glory.vmeta.jp (7c293911.i-revonet.jp [124.41.57.17]) by mx1.freebsd.org (Postfix) with ESMTP id AB5A17F4 for ; Thu, 7 Mar 2013 17:12:26 +0000 (UTC) Received: from ssl.vmeta.jp (localhost [127.0.0.1]) by glory.vmeta.jp (Postfix) with ESMTP id 19748DFB; Fri, 8 Mar 2013 02:12:19 +0900 (JST) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Date: Fri, 08 Mar 2013 02:12:19 +0900 From: meta To: Subject: Call for test and review net/freerdp 1.0.2 (was: Re: please update net/freerdp) In-Reply-To: <01b4eef982361c1d943f84a809f97dad@vmeta.jp> References: <01b4eef982361c1d943f84a809f97dad@vmeta.jp> Message-ID: <2fdc6ba9ab91757d4f27dec3907a6941@vmeta.jp> X-Sender: meta@vmeta.jp User-Agent: Roundcube Webmail/0.8.4 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Mar 2013 17:12:26 -0000 I did it myself as nobody seems to be interested in updating freerdp. It is available on my redports repository. It looks fine but probably still has some point to improve. Please let me know if you find any problem on my port. https://svn.redports.org/meta/net/freerdp/ Regards, PS: I tried to build it on redports but it just says "finished". What's going non redports? https://redports.org/buildarchive/20130307162600-4637/ 2013-02-28 10:44 meta wrote: > Whould someone update net/freerdp? The latest release is 1.0.2. > I asked maintainer to update in private email but no reply almost 5 > months. -- `whois vmeta.jp | nkf -w` meta From owner-freebsd-ports@FreeBSD.ORG Thu Mar 7 17:55:05 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 8138617E for ; Thu, 7 Mar 2013 17:55:05 +0000 (UTC) (envelope-from kurt.lidl@cello.com) Received: from Mail.Fairview-Park.Com (Mail.Fairview-Park.Com [98.141.206.6]) by mx1.freebsd.org (Postfix) with ESMTP id 2B05399D for ; Thu, 7 Mar 2013 17:55:04 +0000 (UTC) Received: from [192.168.8.101] (Kurt.Fairview-Park.Com [192.168.8.101]) (authenticated bits=0) by Mail.Fairview-Park.Com (8.14.5/8.14.5) with ESMTP id r27HmWIn037658 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO) for ; Thu, 7 Mar 2013 12:48:33 -0500 (EST) (envelope-from kurt.lidl@cello.com) X-FVP-rcvd: Kurt.Fairview-Park.Com [192.168.8.101] Thu, 7 Mar 2013 12:48:33 -0500 (EST) Message-ID: <5138D2F3.4060507@cello.com> Date: Thu, 07 Mar 2013 12:48:35 -0500 From: Kurt Lidl User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:17.0) Gecko/20130215 Thunderbird/17.0.3 MIME-Version: 1.0 To: freebsd-ports@freebsd.org Subject: Re: Call for test and review net/freerdp 1.0.2 (was: Re: please update net/freerdp) References: <2fdc6ba9ab91757d4f27dec3907a6941@vmeta.jp> In-Reply-To: <2fdc6ba9ab91757d4f27dec3907a6941@vmeta.jp> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Mar 2013 17:55:05 -0000 > I did it myself as nobody seems to be interested in updating freerdp. > It is available on my redports repository. It looks fine but probably > still has some point to improve. Please let me know if you find any > problem on my port. > https://svn.redports.org/meta/net/freerdp/ In the Makefile, OPTIONS_DEFAULT is spelled as "OPTIONS_DEFUALT". That probably needs to be fixed. -Kurt From owner-freebsd-ports@FreeBSD.ORG Thu Mar 7 19:07:52 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id EC7E31BF for ; Thu, 7 Mar 2013 19:07:52 +0000 (UTC) (envelope-from matthias.andree@gmx.de) Received: from mout.gmx.net (mout.gmx.net [212.227.15.18]) by mx1.freebsd.org (Postfix) with ESMTP id 6B361D85 for ; Thu, 7 Mar 2013 19:07:51 +0000 (UTC) Received: from mailout-de.gmx.net ([10.1.76.1]) by mrigmx.server.lan (mrigmx001) with ESMTP (Nemesis) id 0Ld2ys-1UduBK2Vc0-00iAhb for ; Thu, 07 Mar 2013 20:07:50 +0100 Received: (qmail invoked by alias); 07 Mar 2013 19:07:50 -0000 Received: from f048136181.adsl.alicedsl.de (EHLO mandree.no-ip.org) [78.48.136.181] by mail.gmx.net (mp001) with SMTP; 07 Mar 2013 20:07:50 +0100 X-Authenticated: #428038 X-Provags-ID: V01U2FsdGVkX186Q8Rsndc67wsHDMJJiLALhPmVUgGKY6Z/Qd+OnY Y1p2JIbqnNo4R4 Received: from [127.0.0.1] (localhost.localdomain [127.0.0.1]) by apollo.emma.line.org (Postfix) with ESMTP id 13BB523CEA7; Thu, 7 Mar 2013 20:07:46 +0100 (CET) Message-ID: <5138E581.6070601@gmx.de> Date: Thu, 07 Mar 2013 20:07:45 +0100 From: Matthias Andree User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: freebsd-ports@freebsd.org Subject: Re: fetchmail/sendmail: Domain of sender address does not exist References: <201303071512.r27FCT1p001710@mech-cluster241.men.bris.ac.uk> In-Reply-To: <201303071512.r27FCT1p001710@mech-cluster241.men.bris.ac.uk> X-Enigmail-Version: 1.4.6 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 Cc: "fetchmail-users@lists.berlios.de" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Mar 2013 19:07:53 -0000 (Since freebsd-ports is a public list, too, I am copying to fetchmail-users mailing list for future reference. Note that the fetchmail lists only permit subscribers to post.) Am 07.03.2013 16:12, schrieb Anton Shterenlikht: > I see e.g.: > > fetchmail: IMAP> A0021 FETCH 14 RFC822.HEADER > fetchmail: IMAP< * 14 FETCH (RFC822.HEADER {4833} > reading message mexas@epo.bris.ac.uk:14 of 14 (4833 header octets) > fetchmail: SMTP> MAIL FROM: BODY=8BITMIME SIZE=5930 > fetchmail: SMTP< 553 5.1.8 ... Domain of sender address fsde_1e2ciclos@mrsevangelineschafers.localdomain does not exist > fetchmail: SMTP error: 553 5.1.8 ... Domain of sender address fsde_1e2ciclos@mrsevangelineschafers.localdomain does not exist > fetchmail: SMTP> RSET > fetchmail: SMTP< 250 2.0.0 Reset state > > fetchmail: IMAP< ) > fetchmail: IMAP< A0021 OK Completed (0.000 sec) > > not flushed > > I'm also confused by this section of fetchmail > man page: > > *quote* > SMTP/ESMTP ERROR HANDLING > Besides the spam-blocking described above, fetchmail takes special > actions on the following SMTP/ESMTP error responses > ... > > 553 (invalid sending domain) > Delete the message from the server. Don't even try to send > bounce-mail to the originator. > *end quote* > > I do get error 553 here, but the emails are not > deleted from the server. I tried running fetchmail > dosens of times, but this email (and others, about 15 > in total), just wouldn't go away, and I cannot > get those either. > > Maybe I should ask in fetchmail lists. Indeed you should. However, look for "softbounce" in the manual page, it is on by default in fetchmail versions >= 6.3.10 and < 7.0.0 (not yet released) to avoid mail loss. --nosoftbounce on the command line, or "set no softbounce" early in the .fetchmailrc will cause fetchmail to delete such messages (I should add a pointer to that section). I will add a pointer to these options to the quoted section, though, to appear in v6.3.25. HTH Matthias From owner-freebsd-ports@FreeBSD.ORG Thu Mar 7 21:03:54 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 4A3E7AE1 for ; Thu, 7 Mar 2013 21:03:54 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [188.252.31.196]) by mx1.freebsd.org (Postfix) with ESMTP id A33962B9 for ; Thu, 7 Mar 2013 21:03:53 +0000 (UTC) Received: from wojtek.tensor.gdynia.pl (localhost [127.0.0.1]) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5) with ESMTP id r27L3evR038547; Thu, 7 Mar 2013 22:03:40 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.6/8.14.5/Submit) with ESMTP id r27L3eL3038544; Thu, 7 Mar 2013 22:03:40 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Thu, 7 Mar 2013 22:03:40 +0100 (CET) From: Wojciech Puchar To: Daniel Nebdal Subject: Re: non-WWW calendar/diary software In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender passed SPF test, not delayed by milter-greylist-4.2.7 (wojtek.tensor.gdynia.pl [127.0.0.1]); Thu, 07 Mar 2013 22:03:40 +0100 (CET) Cc: ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Mar 2013 21:03:54 -0000 > I have not tried it, but how about the Lightning extension for > Thunderbird? (It's an option in make config; I think it's on by > default.) tried. if you like CPU always utilized - it is OK ;) > > -- > Daniel Nebdal > > On Thu, Mar 7, 2013 at 12:42 PM, Wojciech Puchar > wrote: >> anyone knows such a thing - with polish translation (or translations at all >> so i can translate)? preferably integrated with GNOME2, not a must, but >> DEFINITELY evolution bloatware. >> >> Something simple, just like gnote. >> >> I know davical+web browser and it works, but something that doesn't require >> browser would be much better. >> >> _______________________________________________ >> freebsd-ports@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-ports >> To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" > > From owner-freebsd-ports@FreeBSD.ORG Thu Mar 7 21:52:58 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 06F3AC4D for ; Thu, 7 Mar 2013 21:52:58 +0000 (UTC) (envelope-from mexas@bristol.ac.uk) Received: from dirj.bris.ac.uk (dirj.bris.ac.uk [137.222.10.78]) by mx1.freebsd.org (Postfix) with ESMTP id C155D6D5 for ; Thu, 7 Mar 2013 21:52:57 +0000 (UTC) Received: from irix.bris.ac.uk ([137.222.10.39] helo=ncs.bris.ac.uk) by dirj.bris.ac.uk with esmtp (Exim 4.72) (envelope-from ) id 1UDik9-0002AN-Hp; Thu, 07 Mar 2013 21:52:56 +0000 Received: from mech-cluster241.men.bris.ac.uk ([137.222.187.241]) by ncs.bris.ac.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1UDik9-000150-4X; Thu, 07 Mar 2013 21:52:53 +0000 Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.6/8.14.6) with ESMTP id r27LqqVM002788; Thu, 7 Mar 2013 21:52:52 GMT (envelope-from mexas@mech-cluster241.men.bris.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.6/8.14.6/Submit) id r27LqqVE002787; Thu, 7 Mar 2013 21:52:52 GMT (envelope-from mexas) Date: Thu, 7 Mar 2013 21:52:52 GMT From: Anton Shterenlikht Message-Id: <201303072152.r27LqqVE002787@mech-cluster241.men.bris.ac.uk> To: freebsd-ports@freebsd.org, matthias.andree@gmx.de Subject: Re: fetchmail/sendmail: Domain of sender address does not exist In-Reply-To: <5138E581.6070601@gmx.de> X-Spam-Score: -3.9 X-Spam-Level: --- Cc: fetchmail-users@lists.berlios.de X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: mexas@bristol.ac.uk List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Mar 2013 21:52:58 -0000 Date: Thu, 07 Mar 2013 20:07:45 +0100 From: Matthias Andree To: freebsd-ports@freebsd.org Subject: Re: fetchmail/sendmail: Domain of sender address does not exist Cc: "fetchmail-users@lists.berlios.de" (Since freebsd-ports is a public list, too, I am copying to fetchmail-users mailing list for future reference. Note that the fetchmail lists only permit subscribers to post.) Am 07.03.2013 16:12, schrieb Anton Shterenlikht: > I see e.g.: > > fetchmail: IMAP> A0021 FETCH 14 RFC822.HEADER > fetchmail: IMAP< * 14 FETCH (RFC822.HEADER {4833} > reading message mexas@epo.bris.ac.uk:14 of 14 (4833 header octets) > fetchmail: SMTP> MAIL FROM: BODY=8BITMIME SIZE=5930 > fetchmail: SMTP< 553 5.1.8 ... Domain of sender address fsde_1e2ciclos@mrsevangelineschafers.localdomain does not exist > fetchmail: SMTP error: 553 5.1.8 ... Domain of sender address fsde_1e2ciclos@mrsevangelineschafers.localdomain does not exist > fetchmail: SMTP> RSET > fetchmail: SMTP< 250 2.0.0 Reset state > > fetchmail: IMAP< ) > fetchmail: IMAP< A0021 OK Completed (0.000 sec) > > not flushed > > I'm also confused by this section of fetchmail > man page: > > *quote* > SMTP/ESMTP ERROR HANDLING > Besides the spam-blocking described above, fetchmail takes special > actions on the following SMTP/ESMTP error responses > ... > > 553 (invalid sending domain) > Delete the message from the server. Don't even try to send > bounce-mail to the originator. > *end quote* > > I do get error 553 here, but the emails are not > deleted from the server. I tried running fetchmail > dosens of times, but this email (and others, about 15 > in total), just wouldn't go away, and I cannot > get those either. > > Maybe I should ask in fetchmail lists. Indeed you should. However, look for "softbounce" in the manual page, it is on by default in fetchmail versions >= 6.3.10 and < 7.0.0 (not yet released) to avoid mail loss. --nosoftbounce on the command line, or "set no softbounce" early in the .fetchmailrc will cause fetchmail to delete such messages (I should add a pointer to that section). I will add a pointer to these options to the quoted section, though, to appear in v6.3.25. HTH Matthias Thank you for the reply. I've forgotten that I'm actually subscribed to fetchmail-users. Anton From owner-freebsd-ports@FreeBSD.ORG Fri Mar 8 06:00:43 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id D8312AFE for ; Fri, 8 Mar 2013 06:00:43 +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 8968B99B for ; Fri, 8 Mar 2013 06:00:43 +0000 (UTC) Received: from [46.244.226.132] (helo=localhost.my.domain) by ms16-1.1blu.de with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1UDqMD-0007lx-49; Fri, 08 Mar 2013 07:00:41 +0100 Received: from localhost.my.domain (localhost [127.0.0.1]) by localhost.my.domain (8.14.4/8.14.3) with ESMTP id r2860duZ002325; Fri, 8 Mar 2013 07:00:39 +0100 (CET) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by localhost.my.domain (8.14.4/8.14.3/Submit) id r2860cGH002324; Fri, 8 Mar 2013 07:00:38 +0100 (CET) (envelope-from guru@unixarea.de) X-Authentication-Warning: localhost.my.domain: guru set sender to guru@unixarea.de using -f Date: Fri, 8 Mar 2013 07:00:38 +0100 From: Matthias Apitz To: Wojciech Puchar Subject: Re: non-WWW calendar/diary software Message-ID: <20130308060038.GB2279@tinyCurrent> References: <20130307123445.GA31520@sh4-5.1blu.de> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: X-Operating-System: FreeBSD 9.0-CURRENT r214444 (i386) User-Agent: Mutt/1.5.21 (2010-09-15) X-Con-Id: 51246 X-Con-U: 0-guru X-Originating-IP: 46.244.226.132 Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 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, 08 Mar 2013 06:00:43 -0000 El día Thursday, March 07, 2013 a las 10:06:40PM +0100, Wojciech Puchar escribió: > quite good at first glance. at least complete, but english only. > > i will do a translation if not seeing anything better I remember remotely that there are languages to be installed, maybe not in the ports... I used it already before in Linux matthias -- Matthias Apitz | /"\ ASCII Ribbon Campaign: www.asciiribbon.org E-mail: guru@unixarea.de | \ / - No HTML/RTF in E-mail WWW: http://www.unixarea.de/ | X - No proprietary attachments phone: +49-170-4527211 | / \ - Respect for open standards From owner-freebsd-ports@FreeBSD.ORG Fri Mar 8 06:55:40 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id AA002540 for ; Fri, 8 Mar 2013 06:55:40 +0000 (UTC) (envelope-from bah@bananmonarki.se) Received: from feeder.usenet4all.se (1-1-1-38a.far.sth.bostream.se [82.182.32.53]) by mx1.freebsd.org (Postfix) with ESMTP id 1B69AC04 for ; Fri, 8 Mar 2013 06:55:39 +0000 (UTC) Received: from kw.news4all.se (usenet4all.se [82.182.32.53]) by feeder.usenet4all.se (8.13.1/8.13.1) with ESMTP id r286tU7a099149; Fri, 8 Mar 2013 07:55:31 +0100 (CET) (envelope-from bah@bananmonarki.se) Message-ID: <51398B47.3090803@bananmonarki.se> Date: Fri, 08 Mar 2013 07:55:03 +0100 From: Bernt Hansson User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:17.0) Gecko/20130301 Thunderbird/17.0.3 MIME-Version: 1.0 To: Wojciech Puchar Subject: Re: non-WWW calendar/diary software References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Mar 2013 06:55:40 -0000 2013-03-07 12:42, Wojciech Puchar skrev: > anyone knows such a thing - with polish translation (or translations at > all so i can translate)? preferably integrated with GNOME2, not a must, > but DEFINITELY evolution bloatware. > > Something simple, just like gnote. > > I know davical+web browser and it works, but something that doesn't > require browser would be much better. > At a prompt type cal or ncal From owner-freebsd-ports@FreeBSD.ORG Fri Mar 8 07:00:27 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 657EE675 for ; Fri, 8 Mar 2013 07:00:27 +0000 (UTC) (envelope-from mickael.maillot@gmail.com) Received: from mail-bk0-x22b.google.com (mail-bk0-x22b.google.com [IPv6:2a00:1450:4008:c01::22b]) by mx1.freebsd.org (Postfix) with ESMTP id F3102C2C for ; Fri, 8 Mar 2013 07:00:26 +0000 (UTC) Received: by mail-bk0-f43.google.com with SMTP id jm19so570321bkc.16 for ; Thu, 07 Mar 2013 23:00:26 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=YVnlUVFTIFEGBP3uGkNgi3Qkh5afn7Y0KktVPZunbvA=; b=L6bDfwynnLgm/ttqm7YCiR7l6elRo282FalMFv+lzJeXar/9ZOA0Zm1bzQWCUVtIiq X/q+xEvLEzuzkH4eFbsg4lHk2Hha+SLP2jrOGekyK2nI51z15i82FvZiklK34g74UwRC +sxsd5P9HZCySjbTcZby5V1d5AaHo4z5D0qoRTGl3+myXfH4t2RDfrpyTCl5POpQNod5 eDk8hEbvnSr+VI3edMSJzvUi/Xkz8luDH4pReWOJglz71+oQoIisnG+LTNdJzAZ2W8IK NHk6zGhY2YYMaM0lrcHkz30iH/sSQKL91E1c8+e9FgY0b+Lq2fs8rRlQ0TF+Brvbst59 gy0A== MIME-Version: 1.0 X-Received: by 10.204.201.135 with SMTP id fa7mr230215bkb.9.1362726026017; Thu, 07 Mar 2013 23:00:26 -0800 (PST) Received: by 10.205.82.133 with HTTP; Thu, 7 Mar 2013 23:00:25 -0800 (PST) In-Reply-To: References: <1621063.4o9VRTxcAU@wolfgang> Date: Fri, 8 Mar 2013 08:00:25 +0100 Message-ID: Subject: Re: xbmc and poudriere compile error From: =?ISO-8859-1?Q?Micka=EBl_Maillot?= To: Wolfgang Riegler Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Mar 2013 07:00:27 -0000 2013/3/7 Micka=EBl Maillot > Hi, > > 2013/3/6 Wolfgang Riegler > >> Hi, >> >> I have problems compiling xbmc with poudriere-devel. >> >> Logfile says: >> DVDAudioCodecFFmpeg.cpp: In member function 'virtual int >> CDVDAudioCodecFFmpeg::Decode(BYTE*, int)': >> DVDAudioCodecFFmpeg.cpp:163: error: 'struct AVFrame' has no member named >> 'nb_samples' >> DVDAudioCodecFFmpeg.cpp: In member function 'void >> CDVDAudioCodecFFmpeg::ConvertToFloat()': >> DVDAudioCodecFFmpeg.cpp:208: error: 'struct AVFrame' has no member named >> 'nb_samples' >> gmake[1]: *** [DVDAudioCodecFFmpeg.o] Error 1 >> gmake: *** [xbmc/cores/dvdplayer/DVDCodecs/Audio/Audio.a] Error 2 >> *** [do-build] Error code 1 >> >> >> >> I tried several options, EXTERNAL_FFMPEG, NONFREE and LIBBLURAY on and >> off, but no changes. I also tried compiling without CCACHE >> >> Poudriere uses a FreeBSD 9.1-RELEASE AMD64 Jail. >> >> >> >> Any help is appreciated, thanks in advance. >> >> kind regards >> >> Wolfgang Riegler >> _______________________________________________ >> 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" >> > > which ffmpeg port are installed ? i think multimedia/ffmpeg can conflict > with xbmc build. > Also: can you try my last patch from PR ports/175933 ? From owner-freebsd-ports@FreeBSD.ORG Fri Mar 8 07:02:32 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 24512721 for ; Fri, 8 Mar 2013 07:02:32 +0000 (UTC) (envelope-from bah@bananmonarki.se) Received: from feeder.usenet4all.se (1-1-1-38a.far.sth.bostream.se [82.182.32.53]) by mx1.freebsd.org (Postfix) with ESMTP id 81BFDCB0 for ; Fri, 8 Mar 2013 07:02:30 +0000 (UTC) Received: from kw.news4all.se (usenet4all.se [82.182.32.53]) by feeder.usenet4all.se (8.13.1/8.13.1) with ESMTP id r2872Q1Q099443; Fri, 8 Mar 2013 08:02:27 +0100 (CET) (envelope-from bah@bananmonarki.se) Message-ID: <51398CE7.2040409@bananmonarki.se> Date: Fri, 08 Mar 2013 08:01:59 +0100 From: Bernt Hansson User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:17.0) Gecko/20130301 Thunderbird/17.0.3 MIME-Version: 1.0 To: Wojciech Puchar Subject: Re: non-WWW calendar/diary software References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org, Daniel Nebdal X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Mar 2013 07:02:32 -0000 2013-03-07 22:03, Wojciech Puchar skrev: >> I have not tried it, but how about the Lightning extension for >> Thunderbird? (It's an option in make config; I think it's on by >> default.) > > tried. if you like CPU always utilized - it is OK ;) Of course one want that. A turned off cpu is of no use. From owner-freebsd-ports@FreeBSD.ORG Fri Mar 8 07:45:25 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 1B91ACAE for ; Fri, 8 Mar 2013 07:45:25 +0000 (UTC) (envelope-from culot@0xd0.org) Received: from 0xd0.org (culot.org [91.121.92.146]) by mx1.freebsd.org (Postfix) with ESMTP id B8B94E4A for ; Fri, 8 Mar 2013 07:45:23 +0000 (UTC) Received: from 0xd0.org (doudou.0xd0.org [172.16.0.254]) by 0xd0.org (8.14.5/8.14.5) with ESMTP id r287jGgm043469; Fri, 8 Mar 2013 08:45:16 +0100 (CET) (envelope-from culot@0xd0.org) Received: (from culot@localhost) by 0xd0.org (8.14.5/8.14.5/Submit) id r287jGYl043468; Fri, 8 Mar 2013 08:45:16 +0100 (CET) (envelope-from culot) Date: Fri, 8 Mar 2013 08:45:16 +0100 From: Frederic Culot To: Wojciech Puchar Subject: Re: non-WWW calendar/diary software Message-ID: <20130308074516.GH47216@culot.org> References: <51398B47.3090803@bananmonarki.se> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <51398B47.3090803@bananmonarki.se> X-PGP-Key: http://culot.org/public/pgp-key.txt User-Agent: Mutt/1.5.21 (2010-09-15) Cc: ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Mar 2013 07:45:25 -0000 > 2013-03-07 12:42, Wojciech Puchar skrev: > >anyone knows such a thing - with polish translation (or translations at > >all so i can translate)? preferably integrated with GNOME2, not a must, > >but DEFINITELY evolution bloatware. > > > >Something simple, just like gnote. > > > >I know davical+web browser and it works, but something that doesn't > >require browser would be much better. > > > > At a prompt type cal or ncal If you are not afraid of text user interfaces you also have deskutils/calcurse, with which you can do a bit more than cal or ncal. It has polish translation (unfinished so if you want to help), and the good point is that I am the author of the project and also the port maintainer so if you have issues you know who to ask ;) Regards, Frederic From owner-freebsd-ports@FreeBSD.ORG Fri Mar 8 10:31:45 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id D585940C; Fri, 8 Mar 2013 10:31:45 +0000 (UTC) (envelope-from paul@ifdnrg.com) Received: from outbound.ifdnrg.com (outbound.ifdnrg.com [193.200.98.76]) by mx1.freebsd.org (Postfix) with ESMTP id 9DE9F85F; Fri, 8 Mar 2013 10:31:44 +0000 (UTC) Received: from [192.168.1.105] (cpc15-sgyl30-2-0-cust460.18-2.cable.virginmedia.com [82.39.117.205]) (authenticated bits=0) by outbound.ifdnrg.com (8.14.5/8.14.5) with ESMTP id r28A1eu4035419; Fri, 8 Mar 2013 10:01:41 GMT (envelope-from paul@ifdnrg.com) Message-ID: <5139B6FF.8090007@ifdnrg.com> Date: Fri, 08 Mar 2013 10:01:35 +0000 From: Paul Macdonald User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130215 Thunderbird/17.0.3 MIME-Version: 1.0 To: ports@freebsd.org Subject: proftpd-1.3.4b Error in port Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Cc: "info@ifdnrg.com" , mm@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Mar 2013 10:31:45 -0000 Hi, FYI we're seeing an issue upgrading proftpd.. proftpd-1.3.4b < needs updating (index has 1.3.4c) proftpd-mod_sql_mysql-1.3.4b < needs updating (index has 1.3.4c) Under: FreeBSD XXX 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243825: Tue Dec 4 09:23:10 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 Error: cc -DHAVE_CONFIG_H -DFREEBSD9_1 -DFREEBSD9 -I.. -I../include -I/usr/local/include -O2 -pipe -DHAVE_OPENSSL -I/usr/include -fno-strict-aliasing -Wall -c str.c cc -DHAVE_CONFIG_H -DFREEBSD9_1 -DFREEBSD9 -I.. -I../include -I/usr/local/include -O2 -pipe -DHAVE_OPENSSL -I/usr/include -fno-strict-aliasing -Wall -c table.c cc -DHAVE_CONFIG_H -DFREEBSD9_1 -DFREEBSD9 -I.. -I../include -I/usr/local/include -O2 -pipe -DHAVE_OPENSSL -I/usr/include -fno-strict-aliasing -Wall -c regexp.c cc -DHAVE_CONFIG_H -DFREEBSD9_1 -DFREEBSD9 -I.. -I../include -I/usr/local/include -O2 -pipe -DHAVE_OPENSSL -I/usr/include -fno-strict-aliasing -Wall -c dirtree.c cc -DHAVE_CONFIG_H -DFREEBSD9_1 -DFREEBSD9 -I.. -I../include -I/usr/local/include -O2 -pipe -DHAVE_OPENSSL -I/usr/include -fno-strict-aliasing -Wall -c expr.c cc -DHAVE_CONFIG_H -DFREEBSD9_1 -DFREEBSD9 -I.. -I../include -I/usr/local/include -O2 -pipe -DHAVE_OPENSSL -I/usr/include -fno-strict-aliasing -Wall -c support.c cc -DHAVE_CONFIG_H -DFREEBSD9_1 -DFREEBSD9 -I.. -I../include -I/usr/local/include -O2 -pipe -DHAVE_OPENSSL -I/usr/include -fno-strict-aliasing -Wall -c netaddr.c netaddr.c:696: error: expected identifier or '(' before 'return' netaddr.c:697: error: expected identifier or '(' before '}' token gmake[1]: *** [netaddr.o] Error 1 gmake[1]: Leaving directory `/usr/ports/ftp/proftpd/work/proftpd-1.3.4c/src' gmake: *** [src] Error 2 *** [do-build] Error code 1 best regards Paul. -- ------------------------- Paul Macdonald IFDNRG Ltd Web and video hosting ------------------------- t: 0131 5548070 m: 07970339546 e: paul@ifdnrg.com w: http://www.ifdnrg.com ------------------------- IFDNRG 40 Maritime Street Edinburgh EH6 6SA ---------------------------------------------------- High Specification Dedicated Servers from £100.00pm ---------------------------------------------------- From owner-freebsd-ports@FreeBSD.ORG Fri Mar 8 11:55:12 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id B1D82B74; Fri, 8 Mar 2013 11:55:12 +0000 (UTC) (envelope-from lumiwa@gmail.com) Received: from mail-ie0-x22d.google.com (mail-ie0-x22d.google.com [IPv6:2607:f8b0:4001:c03::22d]) by mx1.freebsd.org (Postfix) with ESMTP id 7DFF7B52; Fri, 8 Mar 2013 11:55:12 +0000 (UTC) Received: by mail-ie0-f173.google.com with SMTP id 9so1874830iec.32 for ; Fri, 08 Mar 2013 03:55:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:subject:date:message-id:user-agent:mime-version :content-transfer-encoding:content-type; bh=dFT+Zlbc0RJYSbFCkydcG9+3XMEI+5JMWWzHXbFYw8c=; b=Bf0EKXOJX4iX4G1JIveyHxMdq8LXi0vqXLW8fjfIDo/5BdZnPQxTBzy1lamUbWH6dV UP6kYvRfhI53fSSdK7xR8mmD4j5o748wkpLnZSuI957nQy1FYDaSOEzrGAbyIT9FshJe SnhJgE+77ZlE2iJ+J8GiTMq0oO/CzbzHG51ZdaajGjvvU8tbsWH6ZvZslGJzWZG+YiiA py0jtQHJDotLgZBAEZf8hYduX5FxjJAdOQhhUIVgWTyLjVi6ch2uounZGHSQJy6xRkCp DKNH6fbme/rC0G34u7QdmEqxDnb2AZX1O/OYUz6esZ2+8zezYc0P6v+xESb2N576Y4Ui gkfw== X-Received: by 10.50.53.146 with SMTP id b18mr1404922igp.82.1362743711983; Fri, 08 Mar 2013 03:55:11 -0800 (PST) Received: from luna.wi.rr.com (cpe-184-58-138-79.wi.res.rr.com. [184.58.138.79]) by mx.google.com with ESMTPS id ua6sm30684991igb.0.2013.03.08.03.55.09 (version=TLSv1 cipher=RC4-SHA bits=128/128); Fri, 08 Mar 2013 03:55:10 -0800 (PST) From: ajtiM To: freebsd-ports@freebsd.org, freebsd-gnome@freebsd.org Subject: update glib20 Date: Fri, 08 Mar 2013 05:54:59 -0600 Message-ID: <3430048.ebNYIKijIj@luna.wi.rr.com> User-Agent: KMail/4.9.5 (FreeBSD/9.1-RELEASE; KDE/4.9.5; i386; ; ) MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Mar 2013 11:55:12 -0000 FreeBSD 9.1-RELEASE #0 r243826: Tue Dec 4 06:55:39 UTC 2012 root@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 gcc -v Using built-in specs. Target: i386-undermydesk-freebsd Configured with: FreeBSD/i386 system compiler Thread model: posix gcc version 4.2.1 20070831 patched [FreeBSD] Try to update the stystem and it start with error when building glibl20: gunicollate.c:50: warning: data definition has no type or storage class gunicollate.c:50: warning: type defaults to 'int' in declaration of 'G_LOCK_DEFINE_STATIC' gunicollate.c:50: warning: parameter names (without types) in function declaration gunicollate.c: In function 'init_icu_collator': gunicollate.c:55: warning: implicit declaration of function 'G_LOCK' gunicollate.c:66: warning: implicit declaration of function 'G_UNLOCK' gunicollate.c: In function 'g_utf8_collate_key': gunicollate.c:503: warning: pointer targets in passing argument 4 of 'ucol_getSortKey_50' differ in signedness CC gunidecomp.lo CC gurifuncs.lo CC gutils.lo CC gvariant.lo CC gvariant-core.lo CC gvariant-parser.lo CC gvariant-serialiser.lo CC gvarianttypeinfo.lo CC gvarianttype.lo CC gversion.lo CC gwakeup.lo CC gprintf.lo CC glib-unix.lo CC gthread-posix.lo CC giounix.lo CC gspawn.lo CC gtester.o echo glib-unix.h glib-object.h glib.h galloca.h garray.h gasyncqueue.h gatomic.h gbacktrace.h gbase64.h gbitlock.h gbookmarkfile.h gbytes.h gcharset.h gchecksum.h gconvert.h gdataset.h gdate.h gdatetime.h gdir.h genviron.h gerror.h gfileutils.h ggettext.h ghash.h ghmac.h ghook.h ghostutils.h gi18n.h gi18n-lib.h giochannel.h gkeyfile.h glist.h gmacros.h gmain.h gmappedfile.h gmarkup.h gmem.h gmessages.h gnode.h goption.h gpattern.h gpoll.h gprimes.h gqsort.h gquark.h gqueue.h grand.h gregex.h gscanner.h gsequence.h gshell.h gslice.h gslist.h gspawn.h gstdio.h gstrfuncs.h gtestutils.h gstring.h gstringchunk.h gthread.h gthreadpool.h gtimer.h gtimezone.h gtrashstack.h gtree.h gtypes.h gunicode.h gurifuncs.h gutils.h gvarianttype.h gvariant.h gversion.h gversionmacros.h gwin32.h gprintf.h > glib-public-headers.txt.tmp && mv glib-public-headers.txt.tmp glib-public-headers.txt CCLD libglib-2.0.la CCLD gtester ./.libs/libglib-2.0.so: undefined reference to `G_LOCK' ./.libs/libglib-2.0.so: undefined reference to `G_UNLOCK' gmake[4]: *** [gtester] Error 1 gmake[4]: Leaving directory `/usr/ports/devel/glib20/work/glib-2.34.3/glib' gmake[3]: *** [all-recursive] Error 1 gmake[3]: Leaving directory `/usr/ports/devel/glib20/work/glib-2.34.3/glib' gmake[2]: *** [all] Error 2 gmake[2]: Leaving directory `/usr/ports/devel/glib20/work/glib-2.34.3/glib' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/devel/glib20/work/glib-2.34.3' gmake: *** [all] Error 2 *** [do-build] Error code 1 Stop in /usr/ports/devel/glib20. *** [build] Error code 1 Stop in /usr/ports/devel/glib20. ===>>> make failed for devel/glib20 ===>>> Aborting update Terminated ===>>> You can restart from the point of failure with this command line: portmaster devel/glib20 Thank you. Mitja ---------- http://www.redbubble.com/people/lumiwa From owner-freebsd-ports@FreeBSD.ORG Fri Mar 8 12:24:04 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 5CFEEC3B; Fri, 8 Mar 2013 12:24:04 +0000 (UTC) (envelope-from kwm@rainbow-runner.nl) Received: from fep23.mx.upcmail.net (fep23.mx.upcmail.net [62.179.121.43]) by mx1.freebsd.org (Postfix) with ESMTP id 7CC81DB0; Fri, 8 Mar 2013 12:24:03 +0000 (UTC) Received: from edge01.upcmail.net ([192.168.13.236]) by viefep23-int.chello.at (InterMail vM.8.01.05.05 201-2260-151-110-20120111) with ESMTP id <20130308122356.VKKY17478.viefep23-int.chello.at@edge01.upcmail.net>; Fri, 8 Mar 2013 13:23:56 +0100 Received: from [127.0.0.1] ([178.84.132.32]) by edge01.upcmail.net with edge id 90Pv1l00U0i5fp6010PvcJ; Fri, 08 Mar 2013 13:23:56 +0100 X-SourceIP: 178.84.132.32 Message-ID: <5139D85B.5020101@rainbow-runner.nl> Date: Fri, 08 Mar 2013 13:23:55 +0100 From: Koop Mast User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130215 Thunderbird/17.0.3 MIME-Version: 1.0 To: ajtiM Subject: Re: update glib20 References: <3430048.ebNYIKijIj@luna.wi.rr.com> In-Reply-To: <3430048.ebNYIKijIj@luna.wi.rr.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 130307-3, 07-03-2013), Outbound message X-Antivirus-Status: Clean Cc: freebsd-gnome@freebsd.org, freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Mar 2013 12:24:04 -0000 On 8-3-2013 12:54, ajtiM wrote: > FreeBSD 9.1-RELEASE #0 r243826: Tue Dec 4 06:55:39 UTC 2012 > root@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 > gcc -v > Using built-in specs. > Target: i386-undermydesk-freebsd > Configured with: FreeBSD/i386 system compiler > Thread model: posix > gcc version 4.2.1 20070831 patched [FreeBSD] > > Try to update the stystem and it start with error when building glibl20: Fix in revision 313639. Thanks for reporting! -Koop From owner-freebsd-ports@FreeBSD.ORG Fri Mar 8 10:35:03 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 6DDEB4E8 for ; Fri, 8 Mar 2013 10:35:03 +0000 (UTC) (envelope-from wolfgang.riegler@gmx.de) Received: from slave1.cbt-l.de (slave1.cbt-l.de [178.77.79.191]) by mx1.freebsd.org (Postfix) with ESMTP id E250488E for ; Fri, 8 Mar 2013 10:35:00 +0000 (UTC) Received: from localhost (slave1.cbt-l.de [127.0.0.1]) by slave1.cbt-l.de (Postfix) with ESMTP id 9341D15F0016 for ; Fri, 8 Mar 2013 11:27:55 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at slave1.cbt-l.de Received: from slave1.cbt-l.de ([127.0.0.1]) by localhost (slave1.cbt-l.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Wp8FdobnGo2Y for ; Fri, 8 Mar 2013 11:27:55 +0100 (CET) Received: from mail.cbt-l.de (mail.cbt-l.de [212.185.49.146]) by slave1.cbt-l.de (Postfix) with ESMTP id C27F615F0002 for ; Fri, 8 Mar 2013 11:27:54 +0100 (CET) Received: (qmail 47434 invoked by uid 1009); 8 Mar 2013 10:27:54 -0000 Received: from 192.168.40.46 by mail.cbt-l.de (envelope-from , uid 1008) with qmail-scanner-1.25-st-qms (clamdscan: ClamAV 0.97.6/15380. spamassassin: 3.3.0. perlscan: 1.25-st-qms. Clear:RC:1(192.168.40.46):. Processed in 0.578933 secs); 08 Mar 2013 10:27:54 -0000 X-Antivirus-CBTL-Mail-From: wolfgang.riegler@gmx.de via mail.cbt-l.de X-Antivirus-CBTL: 1.25-st-qms (Clear:RC:1(192.168.40.46):. Processed in 0.578933 secs Process 47427) Received: from wolfgang.cbt-l.de (HELO wolfgang.localnet) (w.riegler@cbt-l.de@192.168.40.46) by mail.cbt-l.de with SMTP; 8 Mar 2013 10:27:54 -0000 From: Wolfgang Riegler To: freebsd-ports@freebsd.org Subject: Re: xbmc and poudriere compile error Date: Fri, 08 Mar 2013 11:27:13 +0100 Message-ID: <4655524.4kmxkI0HV0@wolfgang> User-Agent: KMail/4.9.5 (Linux/3.7.5-pf-sepp1; KDE/4.9.5; x86_64; ; ) In-Reply-To: References: <1621063.4o9VRTxcAU@wolfgang> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="utf-8" X-Mailman-Approved-At: Fri, 08 Mar 2013 12:35:54 +0000 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Mar 2013 10:35:03 -0000 Hi, I do a portsnap fetch update before running poudriere bulk. Is ports/175933 newer? I have Last night same error. I have to install svn first to test the port revision. Below the poudriere log file from this morning: build started at Fri Mar 8 01:35:25 CET 2013 port directory: /usr/ports/multimedia/xbmc building for: 9.1-RELEASE amd64 maintained by: mickael.maillot@gmail.com Makefile ident: $FreeBSD: multimedia/xbmc/Makefile 313402 2013-03-04 10:55:23Z lwhsu $ ---Begin Environment--- OSVERSION=901000 UNAME_v=FreeBSD 9.1-RELEASE UNAME_r=9.1-RELEASE BLOCKSIZE=K MAIL=/var/mail/root PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin STATUS=1 PKG_EXT=txz WITH_CCACHE_BUILD=yes FORCE_PACKAGE=yes tpid=57161 POUDRIERE_BUILD_TYPE=bulk PKGNG=1 PKG_DELETE=/usr/local/sbin/pkg delete -y -f PKG_ADD=/usr/local/sbin/pkg add CCACHE_DIR=/var/cache/ccache PWD=/root LOGS=/mnt/system/DATEN/poudriere/basefs/data/logs HOME=/root USER=root SKIPSANITY=0 LOCALBASE=/usr/local PACKAGE_BUILDING=yes ---End Environment--- ---Begin OPTIONS List--- ===> The following configuration options are available for xbmc-12.0.r3_2: AVAHI=on: Zeroconf via Avahi EXTERNAL_FFMPEG=off: Use external ffmpeg HAL=on: HAL (Hardware Abstraction Layer) LIBBLURAY=off: Blu-ray discs via libbluray LIRC=on: Infrared remote control support NONFREE=off: Enable non-free components (rar, ccx, ffmpeg) PULSEAUDIO=on: PulseAudio sound server RTMP=on: RTMP protocol via librtmp VAAPI=off: VAAPI (GPU video acceleration) VDPAU=on: VDPAU (GPU video acceleration) WEBSERVER=on: Build and/or install internal web server ===> Use 'make config' to modify these settings ---End OPTIONS List--- ================================================= ===> xbmc-12.0.r3_2 depends on file: /usr/local/sbin/pkg - not found ===> Verifying install for /usr/local/sbin/pkg in /usr/ports/ports-mgmt/pkg ===> Installing existing package /usr/ports/packages/All/pkg-1.0.8.txz Installing pkg-1.0.8... done If you are upgrading from the old package format, first run: # pkg2ng ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on executable: enca - not found ===> Verifying install for enca in /usr/ports/converters/enca ===> Installing existing package /usr/ports/packages/All/enca-1.13.txz Installing enca-1.13...Installing gettext-0.18.1.1...Installing libiconv-1.14... done done Installing p5-Unicode-Map8-0.13...Installing p5-Unicode-String-2.09...Installing perl-5.14.2_2...Removing stale symlinks from /usr/bin... Skipping /usr/bin/perl Skipping /usr/bin/perl5 Done. Creating various symlinks in /usr/bin... Symlinking /usr/local/bin/perl5.14.2 to /usr/bin/perl Symlinking /usr/local/bin/perl5.14.2 to /usr/bin/perl5 Done. Cleaning up /etc/make.conf... Done. Spamming /etc/make.conf... Done. done done done Installing pkgconf-0.8.9... done Installing recode-3.6_8... done done ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on executable: gawk - not found ===> Verifying install for gawk in /usr/ports/lang/gawk ===> Installing existing package /usr/ports/packages/All/gawk-4.0.2.txz Installing gawk-4.0.2...Installing libsigsegv-2.10... done done ==== Note that the stackoverflow handling functions of this library need procfs mounted on /proc. ==== ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on executable: gperf - found ===> xbmc-12.0.r3_2 depends on executable: cmake - not found ===> Verifying install for cmake in /usr/ports/devel/cmake ===> Installing existing package /usr/ports/packages/All/cmake-2.8.9.txz Installing cmake-2.8.9...Installing cmake-modules-2.8.9... done done ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on executable: zip - not found ===> Verifying install for zip in /usr/ports/archivers/zip ===> Installing existing package /usr/ports/packages/All/zip-3.0.txz Installing zip-3.0... done ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on executable: unzip - found ===> xbmc-12.0.r3_2 depends on executable: nasm - not found ===> Verifying install for nasm in /usr/ports/devel/nasm ===> Installing existing package /usr/ports/packages/All/nasm-2.10.03,1.txz Installing nasm-2.10.03,1... done ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on executable: dvdread-config - not found ===> Verifying install for dvdread-config in /usr/ports/multimedia/libdvdread ===> Installing existing package /usr/ports/packages/All/libdvdread-4.2.0_2.txz Installing libdvdread-4.2.0_2...Installing libdvdcss-1.2.12... done done ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on executable: gtk-update-icon-cache - not found ===> Verifying install for gtk-update-icon-cache in /usr/ports/x11-toolkits/gtk20 ===> Installing existing package /usr/ports/packages/All/gtk-2.24.6_2.txz Installing gtk-2.24.6_2...Installing atk-2.0.1...Installing gamin-0.1.10_4...Installing glib-2.28.8_5...Installing pcre-8.32... done Installing python27-2.7.3_6... done No schema files found: doing nothing. done done Installing gio-fam-backend-2.28.8_1... done done Installing bitstream-vera-1.10_5...Installing expat-2.0.1_2... done Installing fontconfig-2.9.0,1...Installing freetype2-2.4.11... done Running fc-cache to build fontconfig cache... /usr/local/share/fonts: skipping, no such directory /usr/local/lib/X11/fonts: caching, new cache contents: 0 fonts, 1 dirs /usr/local/lib/X11/fonts/local: caching, new cache contents: 0 fonts, 0 dirs /root/.fonts: skipping, no such directory /var/db/fontconfig: cleaning cache directory /root/.fontconfig: not cleaning non-existent cache directory fc-cache: succeeded done /usr/local/lib/X11/fonts/bitstream-vera: caching, new cache contents: 10 fonts, 0 dirs /var/db/fontconfig: cleaning cache directory /var/db/fontconfig: invalid cache file: deea84fa067eec67b69dab1b2344175b-le64.cache-3 /root/.fontconfig: not cleaning non-existent cache directory /usr/local/bin/fc-cache: succeeded done Installing cairo-1.10.2_5,2...Installing damageproto-1.2.1... done Installing dri2proto-2.6... done Installing fixesproto-5.0... done Installing glproto-1.4.15... done Installing kbproto-1.0.5... done Installing libGL-7.11.2_3...Installing libX11-1.4.4,1...Installing libXau-1.0.6...Installing xproto-7.0.22... done done Installing libXdmcp-1.1.0... done Installing libpthread-stubs-0.3_3... done Installing libxcb-1.7... done done Installing libXdamage-1.1.3...Installing libXfixes-5.0... done done Installing libXext-1.3.0_1,1...Installing xextproto-7.2.0... done done Installing libXxf86vm-1.1.1...Installing xf86vidmodeproto-2.3.1... done done Installing libdrm-2.4.31_1...Installing libpciaccess-0.12.1...Installing pciids-20130220... done done done done Installing libXrender-0.9.6...Installing renderproto-0.11.1... done done Installing pixman-0.24.2... done Installing png-1.5.14... done Installing xcb-util-renderutil-0.3.8...Installing xcb-util-0.3.9_1,1... done done done Installing compositeproto-0.4.2... done Installing cups-client-1.5.4_1... done Installing encodings-1.0.4,1...Installing font-util-1.2.0... done done Installing font-bh-ttf-1.0.3...Installing libfontenc-1.1.0... done Installing mkfontdir-1.0.6...Installing mkfontscale-1.0.9... done done done Installing font-misc-ethiopic-1.0.3... done Installing font-misc-meltho-1.0.3... done Installing freeglut-2.8.0...Installing inputproto-2.0.2... done Installing libGLU-7.11.2_2... done Installing libICE-1.0.7,1... done Installing libXi-1.4.5,1... done Installing libXrandr-1.3.2...Installing randrproto-1.3.2... done done done Installing gdk-pixbuf-2.23.5_3...Installing jasper-1.900.1_10...Installing jpeg-8_4... done Installing libSM-1.2.0,1... done Installing libXmu-1.1.0,1...Installing libXt-1.1.1,1... done done done Installing jbigkit-1.6... done Installing tiff-4.0.3... done done Installing gobject-introspection-0.10.8_3...Installing libffi-3.0.12... done done Installing gtk-update-icon-cache-2.24.6_1...Installing hicolor-icon-theme-0.12... done Installing libXcomposite-0.4.3,1... done Installing libXcursor-1.1.12... done Installing libXft-2.1.14... done Installing libXinerama-1.1.1,1...Installing xineramaproto-1.2.1... done done Installing libxml2-2.7.8_5... done Installing pango-1.28.4_1...Installing xorg-fonts-truetype-7.5.1... done done Installing shared-mime-info-1.0_2... done done done ==== Note that some of the standard modules are provided as separate ports since they require extra dependencies: bsddb databases/py-bsddb gdbm databases/py-gdbm sqlite3 databases/py-sqlite3 tkinter x11-toolkits/py-tkinter Install them as needed. ==== =============================================================================== Gamin will only provide realtime notification of changes for at most n files, where n is the minimum value between (kern.maxfiles * 0.7) and (kern.maxfilesperproc - 200). Beyond that limit, files will be polled. If you often open several large folders with Nautilus, you might want to increase the kern.maxfiles tunable (you do not need to set kern.maxfilesperproc, since it is computed at boot time from kern.maxfiles). For a typical desktop, add the following line to /boot/loader.conf, then reboot the system: kern.maxfiles="25000" The behavior of gamin can be controlled via the various gaminrc files. See http://www.gnome.org/~veillard/gamin/config.html on how to create these files. In particular, if you find gam_server is taking up too much CPU time polling for changes, something like the following may help in one of the gaminrc files: # reduce polling frequency to once per 10 seconds # for UFS file systems in order to lower CPU load fsset ufs poll 10 =============================================================================== IMPORTANT - READ CAREFULLY: Please read the COPYRIGHT included with these fonts before using. The copyright can be found at /usr/local/lib/X11/fonts/bitstream-vera/COPYRIGHT.TXT. To use these fonts, follow the instructions below. Make sure that the freetype module is loaded. If it is not, add the following line to the "Modules" section of your X Windows configuration file: Load "freetype" Add the following line to the "Files" section of X Windows configuration file: FontPath "/usr/local/lib/X11/fonts/bitstream-vera/" Note: your X Windows configuration file is typically /etc/X11/xorg.conf ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on file: /usr/local/lib/libssh.so - not found ===> Verifying install for /usr/local/lib/libssh.so in /usr/ports/security/libssh ===> Installing existing package /usr/ports/packages/All/libssh-0.5.2.txz Installing libssh-0.5.2... done ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on executable: swig2.0 - not found ===> Verifying install for swig2.0 in /usr/ports/devel/swig20 ===> Installing existing package /usr/ports/packages/All/swig-2.0.8_1.txz Installing swig-2.0.8_1... done ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on file: /usr/local/bin/python2.7 - found ===> xbmc-12.0.r3_2 depends on file: /usr/local/openjdk6/bin/java - not found ===> Verifying install for /usr/local/openjdk6/bin/java in /usr/ports/java/openjdk6 ===> Installing existing package /usr/ports/packages/All/openjdk6-b27_2.txz Installing openjdk6-b27_2...Installing ORBit2-2.14.19...Installing libIDL-0.8.14_1... done done Installing aalib-1.4.r5_6... done Installing alsa-lib-1.0.26... done Installing alsa-plugins-1.0.26...Installing avahi-app-0.6.29_3...Installing dbus-glib-0.94...Installing dbus-1.4.14_4...Installing gnome_subr-1.0... done ===> Creating users and/or groups. Creating group 'messagebus' with gid '556'. Creating user 'messagebus' with uid '556'. done done Installing gdbm-1.9.1... done Installing libdaemon-0.14... done ===> Creating users and/or groups. Creating group 'avahi' with gid '558'. Creating user 'avahi' with uid '558'. done Installing celt-0.11.3_1...Installing libogg-1.3.0,4... done done Installing consolekit-0.4.3...Installing eggdbus-0.6_1... done Installing polkit-0.99... done done Installing dconf-0.5.1_4...Installing libgee-0.6.2.1... done done Installing dirac-1.0.2... done Installing dmidecode-2.11... done Installing faac-1.28_2...Installing mp4v2-1.9.1... done done Installing ffmpeg-0.7.15,1...Installing fftw3-float-3.3.3_1... done Installing fftw3-3.3.3_1... done Installing flac-1.2.1_3... done Installing gconf2-2.32.0_3...Installing gnomehier-2.3_12...share/games changed permissions expected 02775 found 0775 modified done done Installing gpac-libgpac-0.4.5_6,1...Installing libXv-1.0.6,1...Installing videoproto-2.3.1... done done done Installing gsm-1.0.13... done Installing hal-0.5.14_20...Installing libvolume_id-0.81.1... done Installing policykit-0.9_6...===> Creating users and/or groups. Creating group 'polkit' with gid '562'. Creating user 'polkit' with uid '562'. done ===> Creating users and/or groups. Creating group 'haldaemon' with gid '560'. Creating user 'haldaemon' with uid '560'. done Installing jackit-0.121.3_2...Installing libsamplerate-0.1.8_3... done Installing libsndfile-1.0.25_2...Installing libvorbis-1.3.3_1,3... done done Installing portaudio-18.1_3... done done Installing lame-3.99.5_1... done Installing lcms2-2.4... done Installing libXtst-1.2.0...Installing recordproto-1.14.1... done done Installing libaacplus-2.0.2_1... done Installing libexecinfo-1.1_3... done Installing libltdl-2.4.2... done Installing libtheora-1.1.1_3... done Installing libva-1.1.0_3... done Installing libvpx-1.1.0... done Installing opencore-amr-0.1.3... done Installing opencv-core-2.3.1_6... done Installing openjpeg-1.5.0_2... done Installing orc-0.4.16_1... done Installing pulseaudio-0.9.23_2...Installing speex-1.2.r1_4,1... done ===> Creating users and/or groups. Creating group 'pulse' with gid '563'. Creating group 'pulse-access' with gid '564'. Creating group 'pulse-rt' with gid '557'. Creating user 'pulse' with uid '563'. done Installing rtmpdump-2.4_1... done Installing schroedinger-1.0.11_1... done Installing sdl-1.2.15_2,2... done Installing vo-aacenc-0.1.2... done Installing vo-amrwbenc-0.1.2... done Installing x264-0.125.2201... done Installing xvid-1.3.2,1... done done done Installing dejavu-2.33... done Installing java-zoneinfo-2012.j... done Installing javavmwrapper-2.4_3... done Installing libXaw-1.0.9,2...Installing libXp-1.0.1,1...Installing printproto-1.0.5... done done Installing libXpm-3.5.9... done done Installing open-motif-2.3.4...Installing xbitmaps-1.1.1... done done mkdir: /usr/local/openjdk6/jre/lib/applet: File exists done ------------------------------------------------------------------------------ Your SDL library has been built with libvgl support, which means that you can run almost any SDL application straight on your console (VESA 2.0 compatible videocard is required). To do this you have to load the vesa kernel module or enable it in your kernel, and set environment variable "SDL_VIDEODRIVER=vgl". ------------------------------------------------------------------------------ Make sure that the freetype module is loaded. If it is not, add the following line to the "Modules" section of your X Windows configuration file: Load "freetype" Add the following line to the "Files" section of X Windows configuration file: FontPath "/usr/local/lib/X11/fonts/dejavu/" Note: your X Windows configuration file is typically /etc/X11/XF86Config if you are using XFree86, and /etc/X11/xorg.conf if you are using X.Org. ====================================================================== This OpenJDK implementation requires fdescfs(5) mounted on /dev/fd and procfs(5) mounted on /proc. If you have not done it yet, please do the following: mount -t fdescfs fdesc /dev/fd mount -t procfs proc /proc To make it permanent, you need the following lines in /etc/fstab: fdesc /dev/fd fdescfs rw 0 0 proc /proc procfs rw 0 0 ====================================================================== ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on file: /usr/local/bin/sdl-config - found ===> xbmc-12.0.r3_2 depends on executable: gmake - not found ===> Verifying install for gmake in /usr/ports/devel/gmake ===> Installing existing package /usr/ports/packages/All/gmake-3.82_1.txz Installing gmake-3.82_1... done ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on executable: pkgconf - found ===> xbmc-12.0.r3_2 depends on file: /usr/local/libdata/pkgconfig/xt.pc - found ===> xbmc-12.0.r3_2 depends on file: /usr/local/libdata/pkgconfig/xmu.pc - found ===> xbmc-12.0.r3_2 depends on file: /usr/local/libdata/pkgconfig/xrandr.pc - found ===> xbmc-12.0.r3_2 depends on file: /usr/local/libdata/pkgconfig/xtst.pc - found ===> xbmc-12.0.r3_2 depends on file: /usr/local/bin/automake-1.12 - not found ===> Verifying install for /usr/local/bin/automake-1.12 in /usr/ports/devel/automake ===> Installing existing package /usr/ports/packages/All/automake-1.12.6.txz Installing automake-1.12.6...Installing autoconf-wrapper-20101119... done Installing autoconf-2.69...Installing m4-1.4.16_1,1... done done Installing automake-wrapper-20101119... done done ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on file: /usr/local/bin/autoconf-2.69 - found ===> xbmc-12.0.r3_2 depends on package: libtool>=2.4 - not found ===> Verifying install for libtool>=2.4 in /usr/ports/devel/libtool ===> Installing existing package /usr/ports/packages/All/libtool-2.4.2.txz Installing libtool-2.4.2... done ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on executable: pkgconf - found ===> xbmc-12.0.r3_2 depends on executable: gtk-update-icon-cache - found ===> xbmc-12.0.r3_2 depends on file: /usr/local/bin/ccache - not found ===> Verifying install for /usr/local/bin/ccache in /usr/ports/devel/ccache ===> Installing existing package /usr/ports/packages/All/ccache-3.1.9.txz Installing ccache-3.1.9...Create compiler links... create symlink for cc create symlink for cc (world) create symlink for c++ create symlink for c++ (world) create symlink for gcc create symlink for gcc (world) create symlink for g++ create symlink for g++ (world) create symlink for clang create symlink for clang (world) create symlink for clang++ create symlink for clang++ (world) done NOTE: Please read /usr/local/share/doc/ccache/ccache-howto-freebsd.txt for information on using ccache with FreeBSD ports and src. ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on shared library: ass - not found ===> Verifying install for ass in /usr/ports/multimedia/libass ===> Installing existing package /usr/ports/packages/All/libass-0.10.1.txz Installing libass-0.10.1...Installing fribidi-0.19.2_1... done done ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on shared library: boost_thread - not found ===> Verifying install for boost_thread in /usr/ports/devel/boost-libs ===> Installing existing package /usr/ports/packages/All/boost-libs-1.52.0_1.txz Installing boost-libs-1.52.0_1...Installing icu-50.1.2... done done You have built the Boost library with thread support. Don't forget to add -pthread to your linker options when linking your code. ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on shared library: cdio - not found ===> Verifying install for cdio in /usr/ports/sysutils/libcdio ===> Installing existing package /usr/ports/packages/All/libcdio-0.83_1.txz Installing libcdio-0.83_1...Installing cdparanoia-3.9.8_9... done Installing libcddb-1.3.2_1... done Installing popt-1.16... done done ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on shared library: curl - not found ===> Verifying install for curl in /usr/ports/ftp/curl ===> Installing existing package /usr/ports/packages/All/curl-7.24.0_2.txz Installing curl-7.24.0_2...Installing ca_root_nss-3.14.3... done Installing libssh2-1.4.3,2... done done ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on shared library: dbus-1 - found ===> xbmc-12.0.r3_2 depends on shared library: enca - found ===> xbmc-12.0.r3_2 depends on shared library: GLEW - not found ===> Verifying install for GLEW in /usr/ports/graphics/glew ===> Installing existing package /usr/ports/packages/All/glew-1.9.0.txz Installing glew-1.9.0... done ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on shared library: FLAC - found ===> xbmc-12.0.r3_2 depends on shared library: fontconfig - found ===> xbmc-12.0.r3_2 depends on shared library: freetype - found ===> xbmc-12.0.r3_2 depends on shared library: fribidi - found ===> xbmc-12.0.r3_2 depends on shared library: lzo2 - not found ===> Verifying install for lzo2 in /usr/ports/archivers/lzo2 ===> Installing existing package /usr/ports/packages/All/lzo2-2.06.txz Installing lzo2-2.06... done ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on shared library: jasper - found ===> xbmc-12.0.r3_2 depends on shared library: jpeg - found ===> xbmc-12.0.r3_2 depends on shared library: mad - not found ===> Verifying install for mad in /usr/ports/audio/libmad ===> Installing existing package /usr/ports/packages/All/libmad-0.15.1b_2.txz Installing libmad-0.15.1b_2... done ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on shared library: modplug - not found ===> Verifying install for modplug in /usr/ports/audio/libmodplug ===> Installing existing package /usr/ports/packages/All/libmodplug-0.8.8.4.txz Installing libmodplug-0.8.8.4... done ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on shared library: mp3lame - found ===> xbmc-12.0.r3_2 depends on shared library: mpeg2 - not found ===> Verifying install for mpeg2 in /usr/ports/multimedia/libmpeg2 ===> Installing existing package /usr/ports/packages/All/libmpeg2-0.5.1_1.txz Installing libmpeg2-0.5.1_1... done ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on shared library: ogg - found ===> xbmc-12.0.r3_2 depends on shared library: pcre - found ===> xbmc-12.0.r3_2 depends on shared library: plist - not found ===> Verifying install for plist in /usr/ports/devel/libplist ===> Installing existing package /usr/ports/packages/All/libplist-1.8.txz Installing libplist-1.8... done ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on shared library: png15 - found ===> xbmc-12.0.r3_2 depends on shared library: samplerate - found ===> xbmc-12.0.r3_2 depends on shared library: smbclient - not found ===> Verifying install for smbclient in /usr/ports/net/samba-libsmbclient ===> Installing existing package /usr/ports/packages/All/samba36-libsmbclient-3.6.12.txz Installing samba36-libsmbclient-3.6.12...Installing talloc-2.0.8... done Installing tdb-1.2.11,1... done done ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on shared library: sqlite3 - not found ===> Verifying install for sqlite3 in /usr/ports/databases/sqlite3 ===> Installing existing package /usr/ports/packages/All/sqlite3-3.7.14.1.txz Installing sqlite3-3.7.14.1... done ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on shared library: tag - not found ===> Verifying install for tag in /usr/ports/audio/taglib ===> Installing existing package /usr/ports/packages/All/taglib-1.8.txz Installing taglib-1.8... done ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on shared library: tinyxml - not found ===> Verifying install for tinyxml in /usr/ports/textproc/tinyxml ===> Installing existing package /usr/ports/packages/All/tinyxml-2.6.2_1.txz Installing tinyxml-2.6.2_1... done ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on shared library: vorbis - found ===> xbmc-12.0.r3_2 depends on shared library: yajl - not found ===> Verifying install for yajl in /usr/ports/devel/yajl ===> Installing existing package /usr/ports/packages/All/yajl-2.0.4_1.txz Installing yajl-2.0.4_1... done ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on shared library: avahi-common - found ===> xbmc-12.0.r3_2 depends on shared library: hal - found ===> xbmc-12.0.r3_2 depends on shared library: pulse - found ===> xbmc-12.0.r3_2 depends on shared library: rtmp - found ===> xbmc-12.0.r3_2 depends on shared library: vdpau - not found ===> Verifying install for vdpau in /usr/ports/multimedia/libvdpau ===> Installing existing package /usr/ports/packages/All/libvdpau-0.6.txz Installing libvdpau-0.6... done ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on shared library: microhttpd - not found ===> Verifying install for microhttpd in /usr/ports/www/libmicrohttpd ===> Installing existing package /usr/ports/packages/All/libmicrohttpd-0.9.25.txz Installing libmicrohttpd-0.9.25...Installing gmp-5.1.1... done Installing gnutls-2.12.23_1...Installing libgpg-error-1.11... done Installing libtasn1-2.14... done Installing nettle-2.6... done Installing p11-kit-0.14... done done Installing libgcrypt-1.5.0_1... done done ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on shared library: SDL-1.2.11 - found ===> xbmc-12.0.r3_2 depends on shared library: SDL_image-1.2.8 - not found ===> Verifying install for SDL_image-1.2.8 in /usr/ports/graphics/sdl_image ===> Installing existing package /usr/ports/packages/All/sdl_image-1.2.12_1.txz Installing sdl_image-1.2.12_1... done ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on shared library: GLU.1 - found ===> xbmc-12.0.r3_2 depends on shared library: mysqlclient.18 - not found ===> Verifying install for mysqlclient.18 in /usr/ports/databases/mysql55-client ===> Installing existing package /usr/ports/packages/All/mysql-client-5.5.30.txz Installing mysql-client-5.5.30... done ===> Returning to build of xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on shared library: ltdl.7 - found ===> xbmc-12.0.r3_2 depends on shared library: atk-1.0.0 - found ===> xbmc-12.0.r3_2 depends on shared library: gdk_pixbuf-2.0.0 - found ===> xbmc-12.0.r3_2 depends on shared library: glib-2.0.0 - found ===> xbmc-12.0.r3_2 depends on shared library: pango-1.0.0 - found ====================================================================== ===> Cleaning for xbmc-12.0.r3_2 ================================================= ====================================================================== ================================================= ===> License GPLv2 accepted by the user ===> Found saved configuration for xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on file: /usr/local/sbin/pkg - found ====================================================================== ================================================= ===> License GPLv2 accepted by the user ===> Found saved configuration for xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on file: /usr/local/sbin/pkg - found => SHA256 Checksum OK for xbmc-12.0.rc3.tar.gz. ====================================================================== ================================================= ===> License GPLv2 accepted by the user ===> Found saved configuration for xbmc-12.0.r3_2 ===> xbmc-12.0.r3_2 depends on file: /usr/local/sbin/pkg - found ===> Extracting for xbmc-12.0.r3_2 => SHA256 Checksum OK for xbmc-12.0.rc3.tar.gz. ====================================================================== ================================================= ===> Patching for xbmc-12.0.r3_2 ===> Applying FreeBSD patches for xbmc-12.0.r3_2 /usr/bin/sed -i.bak 's;"event\.h";"sidplay/event.h";' /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libsidplay2/libsidplay/src/event.cpp /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libsidplay2/libsidplay/src/mos6510/mos6510.h /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libsidplay2/libsidplay/src/mos6526/mos6526.h /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libsidplay2/libsidplay/src/mos656x/mos656x.h /usr/bin/sed -i.bak 's;make;gmake;' /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/bootstrap /usr/bin/sed -i.bak 's;which swig;&2.0;' /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/codegenerator.mk ====================================================================== ================================================= ===> xbmc-12.0.r3_2 depends on executable: enca - found ===> xbmc-12.0.r3_2 depends on executable: gawk - found ===> xbmc-12.0.r3_2 depends on executable: gperf - found ===> xbmc-12.0.r3_2 depends on executable: cmake - found ===> xbmc-12.0.r3_2 depends on executable: zip - found ===> xbmc-12.0.r3_2 depends on executable: unzip - found ===> xbmc-12.0.r3_2 depends on executable: nasm - found ===> xbmc-12.0.r3_2 depends on executable: dvdread-config - found ===> xbmc-12.0.r3_2 depends on executable: gtk-update-icon-cache - found ===> xbmc-12.0.r3_2 depends on file: /usr/local/lib/libssh.so - found ===> xbmc-12.0.r3_2 depends on executable: swig2.0 - found ===> xbmc-12.0.r3_2 depends on file: /usr/local/bin/python2.7 - found ===> xbmc-12.0.r3_2 depends on file: /usr/local/openjdk6/bin/java - found ===> xbmc-12.0.r3_2 depends on file: /usr/local/bin/sdl-config - found ===> xbmc-12.0.r3_2 depends on executable: gmake - found ===> xbmc-12.0.r3_2 depends on executable: pkgconf - found ===> xbmc-12.0.r3_2 depends on file: /usr/local/libdata/pkgconfig/xt.pc - found ===> xbmc-12.0.r3_2 depends on file: /usr/local/libdata/pkgconfig/xmu.pc - found ===> xbmc-12.0.r3_2 depends on file: /usr/local/libdata/pkgconfig/xrandr.pc - found ===> xbmc-12.0.r3_2 depends on file: /usr/local/libdata/pkgconfig/xtst.pc - found ===> xbmc-12.0.r3_2 depends on file: /usr/local/bin/automake-1.12 - found ===> xbmc-12.0.r3_2 depends on file: /usr/local/bin/autoconf-2.69 - found ===> xbmc-12.0.r3_2 depends on package: libtool>=2.4 - found ===> xbmc-12.0.r3_2 depends on executable: pkgconf - found ===> xbmc-12.0.r3_2 depends on executable: gtk-update-icon-cache - found ===> xbmc-12.0.r3_2 depends on file: /usr/local/bin/ccache - found ===> xbmc-12.0.r3_2 depends on shared library: ass - found ===> xbmc-12.0.r3_2 depends on shared library: boost_thread - found ===> xbmc-12.0.r3_2 depends on shared library: cdio - found ===> xbmc-12.0.r3_2 depends on shared library: curl - found ===> xbmc-12.0.r3_2 depends on shared library: dbus-1 - found ===> xbmc-12.0.r3_2 depends on shared library: enca - found ===> xbmc-12.0.r3_2 depends on shared library: GLEW - found ===> xbmc-12.0.r3_2 depends on shared library: FLAC - found ===> xbmc-12.0.r3_2 depends on shared library: fontconfig - found ===> xbmc-12.0.r3_2 depends on shared library: freetype - found ===> xbmc-12.0.r3_2 depends on shared library: fribidi - found ===> xbmc-12.0.r3_2 depends on shared library: lzo2 - found ===> xbmc-12.0.r3_2 depends on shared library: jasper - found ===> xbmc-12.0.r3_2 depends on shared library: jpeg - found ===> xbmc-12.0.r3_2 depends on shared library: mad - found ===> xbmc-12.0.r3_2 depends on shared library: modplug - found ===> xbmc-12.0.r3_2 depends on shared library: mp3lame - found ===> xbmc-12.0.r3_2 depends on shared library: mpeg2 - found ===> xbmc-12.0.r3_2 depends on shared library: ogg - found ===> xbmc-12.0.r3_2 depends on shared library: pcre - found ===> xbmc-12.0.r3_2 depends on shared library: plist - found ===> xbmc-12.0.r3_2 depends on shared library: png15 - found ===> xbmc-12.0.r3_2 depends on shared library: samplerate - found ===> xbmc-12.0.r3_2 depends on shared library: smbclient - found ===> xbmc-12.0.r3_2 depends on shared library: sqlite3 - found ===> xbmc-12.0.r3_2 depends on shared library: tag - found ===> xbmc-12.0.r3_2 depends on shared library: tinyxml - found ===> xbmc-12.0.r3_2 depends on shared library: vorbis - found ===> xbmc-12.0.r3_2 depends on shared library: yajl - found ===> xbmc-12.0.r3_2 depends on shared library: avahi-common - found ===> xbmc-12.0.r3_2 depends on shared library: hal - found ===> xbmc-12.0.r3_2 depends on shared library: pulse - found ===> xbmc-12.0.r3_2 depends on shared library: rtmp - found ===> xbmc-12.0.r3_2 depends on shared library: vdpau - found ===> xbmc-12.0.r3_2 depends on shared library: microhttpd - found ===> xbmc-12.0.r3_2 depends on shared library: SDL-1.2.11 - found ===> xbmc-12.0.r3_2 depends on shared library: SDL_image-1.2.8 - found ===> xbmc-12.0.r3_2 depends on shared library: GLU.1 - found ===> xbmc-12.0.r3_2 depends on shared library: mysqlclient.18 - found ===> xbmc-12.0.r3_2 depends on shared library: ltdl.7 - found ===> xbmc-12.0.r3_2 depends on shared library: atk-1.0.0 - found ===> xbmc-12.0.r3_2 depends on shared library: gdk_pixbuf-2.0.0 - found ===> xbmc-12.0.r3_2 depends on shared library: glib-2.0.0 - found ===> xbmc-12.0.r3_2 depends on shared library: pango-1.0.0 - found ===> Configuring for xbmc-12.0.r3_2 autoreconf -vif . autoreconf-2.69: Entering directory `.' autoreconf-2.69: configure.in: not using Gettext autoreconf-2.69: running: aclocal --force aclocal-1.12: warning: autoconf input should be named 'configure.ac', not 'configure.in' autoreconf-2.69: configure.in: tracing autoreconf-2.69: running: libtoolize --copy --force libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, `build-aux'. libtoolize: copying file `build-aux/ltmain.sh' libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.in and libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree. libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am. aclocal-1.12: warning: autoconf input should be named 'configure.ac', not 'configure.in' autoreconf-2.69: running: /usr/local/bin/autoconf-2.69 --force autoreconf-2.69: running: /usr/local/bin/autoheader-2.69 --force autoreconf-2.69: running: automake --add-missing --copy --force-missing automake-1.12: warning: autoconf input should be named 'configure.ac', not 'configure.in' configure.in:12: installing 'build-aux/config.guess' configure.in:12: installing 'build-aux/config.sub' configure.in:11: installing 'build-aux/install-sh' configure.in:11: installing 'build-aux/missing' configure.in:2410: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') autoreconf-2.69: Leaving directory `.' autoreconf -vif xbmc/screensavers/rsxs-0.9 autoreconf-2.69: Entering directory `xbmc/screensavers/rsxs-0.9' autoreconf-2.69: configure.ac: not using Gettext autoreconf-2.69: running: aclocal --force -I m4 configure.ac:28: warning: AC_COMPILE_IFELSE was called before gl_USE_SYSTEM_EXTENSIONS m4/extensions.m4:15: gl_USE_SYSTEM_EXTENSIONS is expanded from... m4/gnulib-comp.m4:20: gl_EARLY is expanded from... configure.ac:28: the top level configure.ac:28: warning: AC_RUN_IFELSE was called before gl_USE_SYSTEM_EXTENSIONS m4/extensions.m4:15: gl_USE_SYSTEM_EXTENSIONS is expanded from... m4/gnulib-comp.m4:20: gl_EARLY is expanded from... configure.ac:28: the top level configure.ac:146: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body ../../lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from... ../../lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from... ../../lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from... ../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... ../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... ../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... ../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... ../../lib/autoconf/headers.m4:162: _AC_CHECK_HEADER_COMPILE is expanded from... ../../lib/autoconf/headers.m4:67: AC_CHECK_HEADER is expanded from... ../../lib/m4sugar/m4sh.m4:607: AS_FOR is expanded from... ../../lib/autoconf/headers.m4:249: AC_CHECK_HEADERS is expanded from... acinclude.m4:1: _MAC_SAVE is expanded from... acinclude.m4:434: MAC_PKG_PNG is expanded from... configure.ac:146: the top level autoreconf-2.69: configure.ac: tracing configure.ac:28: warning: AC_COMPILE_IFELSE was called before gl_USE_SYSTEM_EXTENSIONS m4/extensions.m4:15: gl_USE_SYSTEM_EXTENSIONS is expanded from... m4/gnulib-comp.m4:20: gl_EARLY is expanded from... configure.ac:28: the top level configure.ac:28: warning: AC_RUN_IFELSE was called before gl_USE_SYSTEM_EXTENSIONS m4/extensions.m4:15: gl_USE_SYSTEM_EXTENSIONS is expanded from... m4/gnulib-comp.m4:20: gl_EARLY is expanded from... configure.ac:28: the top level configure.ac:146: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body ../../lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from... ../../lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from... ../../lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from... ../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... ../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... ../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... ../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... ../../lib/autoconf/headers.m4:162: _AC_CHECK_HEADER_COMPILE is expanded from... ../../lib/autoconf/headers.m4:67: AC_CHECK_HEADER is expanded from... ../../lib/m4sugar/m4sh.m4:607: AS_FOR is expanded from... ../../lib/autoconf/headers.m4:249: AC_CHECK_HEADERS is expanded from... acinclude.m4:1: _MAC_SAVE is expanded from... acinclude.m4:434: MAC_PKG_PNG is expanded from... configure.ac:146: the top level autoreconf-2.69: configure.ac: not using Libtool autoreconf-2.69: running: /usr/local/bin/autoconf-2.69 --force configure.ac:28: warning: AC_COMPILE_IFELSE was called before gl_USE_SYSTEM_EXTENSIONS m4/extensions.m4:15: gl_USE_SYSTEM_EXTENSIONS is expanded from... m4/gnulib-comp.m4:20: gl_EARLY is expanded from... configure.ac:28: the top level configure.ac:28: warning: AC_RUN_IFELSE was called before gl_USE_SYSTEM_EXTENSIONS m4/extensions.m4:15: gl_USE_SYSTEM_EXTENSIONS is expanded from... m4/gnulib-comp.m4:20: gl_EARLY is expanded from... configure.ac:28: the top level configure.ac:146: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body ../../lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from... ../../lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from... ../../lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from... ../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... ../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... ../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... ../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... ../../lib/autoconf/headers.m4:162: _AC_CHECK_HEADER_COMPILE is expanded from... ../../lib/autoconf/headers.m4:67: AC_CHECK_HEADER is expanded from... ../../lib/m4sugar/m4sh.m4:607: AS_FOR is expanded from... ../../lib/autoconf/headers.m4:249: AC_CHECK_HEADERS is expanded from... acinclude.m4:1: _MAC_SAVE is expanded from... acinclude.m4:434: MAC_PKG_PNG is expanded from... configure.ac:146: the top level autoreconf-2.69: running: /usr/local/bin/autoheader-2.69 --force configure.ac:28: warning: AC_COMPILE_IFELSE was called before gl_USE_SYSTEM_EXTENSIONS m4/extensions.m4:15: gl_USE_SYSTEM_EXTENSIONS is expanded from... m4/gnulib-comp.m4:20: gl_EARLY is expanded from... configure.ac:28: the top level configure.ac:28: warning: AC_RUN_IFELSE was called before gl_USE_SYSTEM_EXTENSIONS m4/extensions.m4:15: gl_USE_SYSTEM_EXTENSIONS is expanded from... m4/gnulib-comp.m4:20: gl_EARLY is expanded from... configure.ac:28: the top level configure.ac:146: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body ../../lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from... ../../lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from... ../../lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from... ../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... ../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... ../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... ../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... ../../lib/autoconf/headers.m4:162: _AC_CHECK_HEADER_COMPILE is expanded from... ../../lib/autoconf/headers.m4:67: AC_CHECK_HEADER is expanded from... ../../lib/m4sugar/m4sh.m4:607: AS_FOR is expanded from... ../../lib/autoconf/headers.m4:249: AC_CHECK_HEADERS is expanded from... acinclude.m4:1: _MAC_SAVE is expanded from... acinclude.m4:434: MAC_PKG_PNG is expanded from... configure.ac:146: the top level autoreconf-2.69: running: automake --add-missing --copy --force-missing configure.ac:28: warning: AC_COMPILE_IFELSE was called before gl_USE_SYSTEM_EXTENSIONS m4/extensions.m4:15: gl_USE_SYSTEM_EXTENSIONS is expanded from... m4/gnulib-comp.m4:20: gl_EARLY is expanded from... configure.ac:28: the top level configure.ac:28: warning: AC_RUN_IFELSE was called before gl_USE_SYSTEM_EXTENSIONS m4/extensions.m4:15: gl_USE_SYSTEM_EXTENSIONS is expanded from... m4/gnulib-comp.m4:20: gl_EARLY is expanded from... configure.ac:28: the top level configure.ac:146: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body ../../lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from... ../../lib/autoconf/general.m4:2590: _AC_COMPILE_IFELSE is expanded from... ../../lib/autoconf/general.m4:2606: AC_COMPILE_IFELSE is expanded from... ../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... ../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from... ../../lib/autoconf/general.m4:2052: AC_CACHE_CHECK is expanded from... ../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from... ../../lib/autoconf/headers.m4:162: _AC_CHECK_HEADER_COMPILE is expanded from... ../../lib/autoconf/headers.m4:67: AC_CHECK_HEADER is expanded from... ../../lib/m4sugar/m4sh.m4:607: AS_FOR is expanded from... ../../lib/autoconf/headers.m4:249: AC_CHECK_HEADERS is expanded from... acinclude.m4:1: _MAC_SAVE is expanded from... acinclude.m4:434: MAC_PKG_PNG is expanded from... configure.ac:146: the top level configure.ac:27: installing './compile' configure.ac:64: installing './config.guess' configure.ac:64: installing './config.sub' configure.ac:7: installing './install-sh' configure.ac:7: installing './missing' Makefile.am: installing './INSTALL' libltdl/Makefile.am: installing './depcomp' autoreconf-2.69: Leaving directory `xbmc/screensavers/rsxs-0.9' autoreconf -vif xbmc/visualizations/Goom/goom2k4-0 autoreconf-2.69: Entering directory `xbmc/visualizations/Goom/goom2k4-0' autoreconf-2.69: configure.in: not using Gettext autoreconf-2.69: running: aclocal --force aclocal-1.12: warning: autoconf input should be named 'configure.ac', not 'configure.in' autoreconf-2.69: configure.in: tracing autoreconf-2.69: running: libtoolize --copy --force libtoolize: putting auxiliary files in `.'. libtoolize: copying file `./ltmain.sh' libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.in and libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree. libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am. aclocal-1.12: warning: autoconf input should be named 'configure.ac', not 'configure.in' autoreconf-2.69: running: /usr/local/bin/autoconf-2.69 --force autoreconf-2.69: configure.in: not using Autoheader autoreconf-2.69: running: automake --add-missing --copy --force-missing automake-1.12: warning: autoconf input should be named 'configure.ac', not 'configure.in' configure.in:4: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: configure.in:4: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_INIT_AUTOMAKE-invocation configure.in:8: installing './config.guess' configure.in:8: installing './config.sub' configure.in:4: installing './install-sh' configure.in:4: installing './missing' Makefile.am: installing './INSTALL' automake-1.12: warning: autoconf input should be named 'configure.ac', not 'configure.in' sdl-goom/Makefile.am:9: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') sdl-goom/Makefile.am: installing './depcomp' configure.in: installing './ylwrap' xmms-goom/Makefile.am:8: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') autoreconf-2.69: Leaving directory `xbmc/visualizations/Goom/goom2k4-0' autoreconf -vif lib/cpluff autoreconf-2.69: Entering directory `lib/cpluff' autoreconf-2.69: running: autopoint --force Copying file ABOUT-NLS Copying file m4/codeset.m4 Copying file m4/glibc2.m4 Copying file m4/glibc21.m4 Copying file m4/intdiv0.m4 Copying file m4/intl.m4 Copying file m4/intldir.m4 Copying file m4/intmax.m4 Copying file m4/inttypes-pri.m4 Copying file m4/inttypes_h.m4 Copying file m4/lcmessage.m4 Copying file m4/lock.m4 Copying file m4/longdouble.m4 Copying file m4/longlong.m4 Copying file m4/printf-posix.m4 Copying file m4/size_max.m4 Copying file m4/stdint_h.m4 Copying file m4/uintmax_t.m4 Copying file m4/ulonglong.m4 Copying file m4/visibility.m4 Copying file m4/wchar_t.m4 Copying file m4/wint_t.m4 Copying file m4/xsize.m4 Copying file po/Makevars.template Copying file po/en@boldquot.header Copying file po/en@quot.header autoreconf-2.69: running: aclocal --force -I m4 autoreconf-2.69: configure.ac: tracing autoreconf-2.69: running: libtoolize --copy --force libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, `auxliary'. libtoolize: copying file `auxliary/ltmain.sh' libtoolize: putting macros in `m4'. libtoolize: copying file `m4/libtool.m4' libtoolize: copying file `m4/ltoptions.m4' libtoolize: copying file `m4/ltsugar.m4' libtoolize: copying file `m4/ltversion.m4' libtoolize: copying file `m4/lt~obsolete.m4' libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree. autoreconf-2.69: running: /usr/local/bin/autoconf-2.69 --force autoreconf-2.69: running: /usr/local/bin/autoheader-2.69 --force autoreconf-2.69: running: automake --add-missing --copy --force-missing configure.ac:49: warning: The 'AM_PROG_MKDIR_P' macro is deprecated, and will soon be removed. configure.ac:49: You should use the Autoconf-provided 'AC_PROG_MKDIR_P' macro instead, configure.ac:49: and use '$(MKDIR_P)' instead of '$(mkdir_p)'in your Makefile.am files. configure.ac:49: installing 'auxliary/config.guess' configure.ac:49: installing 'auxliary/config.sub' configure.ac:47: installing 'auxliary/install-sh' configure.ac:47: installing 'auxliary/missing' console/Makefile.am: installing 'auxliary/depcomp' autoreconf-2.69: Leaving directory `lib/cpluff' autoreconf -vif lib/gtest autoreconf-2.69: Entering directory `lib/gtest' autoreconf-2.69: configure.ac: not using Gettext autoreconf-2.69: running: aclocal --force -I m4 autoreconf-2.69: configure.ac: tracing autoreconf-2.69: running: libtoolize --copy --force libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, `build-aux'. libtoolize: copying file `build-aux/ltmain.sh' libtoolize: putting macros in AC_CONFIG_MACRO_DIR, `m4'. libtoolize: copying file `m4/libtool.m4' libtoolize: copying file `m4/ltoptions.m4' libtoolize: copying file `m4/ltsugar.m4' libtoolize: copying file `m4/ltversion.m4' libtoolize: copying file `m4/lt~obsolete.m4' autoreconf-2.69: running: /usr/local/bin/autoconf-2.69 --force autoreconf-2.69: running: /usr/local/bin/autoheader-2.69 --force autoreconf-2.69: running: automake --add-missing --copy --force-missing configure.ac:30: installing 'build-aux/config.guess' configure.ac:30: installing 'build-aux/config.sub' configure.ac:24: installing 'build-aux/install-sh' configure.ac:24: installing 'build-aux/missing' Makefile.am: installing 'build-aux/depcomp' autoreconf-2.69: Leaving directory `lib/gtest' autoreconf -vif lib/libdvd/libdvdcss autoreconf-2.69: Entering directory `lib/libdvd/libdvdcss' autoreconf-2.69: configure.ac: not using Gettext autoreconf-2.69: running: aclocal --force autoreconf-2.69: configure.ac: tracing autoreconf-2.69: configure.ac: creating directory .auto autoreconf-2.69: running: libtoolize --copy --force libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, `.auto'. libtoolize: copying file `.auto/ltmain.sh' libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree. libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am. autoreconf-2.69: running: /usr/local/bin/autoconf-2.69 --force autoreconf-2.69: running: /usr/local/bin/autoheader-2.69 --force autoreconf-2.69: running: automake --add-missing --copy --force-missing configure.ac:7: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: configure.ac:7: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_INIT_AUTOMAKE-invocation configure.ac:5: installing '.auto/config.guess' configure.ac:5: installing '.auto/config.sub' configure.ac:7: installing '.auto/install-sh' configure.ac:7: installing '.auto/missing' src/Makefile.am: installing '.auto/depcomp' test/Makefile.am:4: warning: compiling 'csstest.c' with per-target flags requires 'AM_PROG_CC_C_O' in 'configure.ac' autoreconf-2.69: Leaving directory `lib/libdvd/libdvdcss' autoreconf -vif lib/libdvd/libdvdread autoreconf-2.69: Entering directory `lib/libdvd/libdvdread' autoreconf-2.69: configure.ac: not using Gettext autoreconf-2.69: running: aclocal --force autoreconf-2.69: configure.ac: tracing autoreconf-2.69: running: libtoolize --copy --force libtoolize: putting auxiliary files in `.'. libtoolize: copying file `./ltmain.sh' libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree. libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am. autoreconf-2.69: running: /usr/local/bin/autoconf-2.69 --force autoreconf-2.69: running: /usr/local/bin/autoheader-2.69 --force autoreconf-2.69: running: automake --add-missing --copy --force-missing configure.ac:26: installing './config.guess' configure.ac:26: installing './config.sub' configure.ac:22: installing './install-sh' configure.ac:22: installing './missing' configure.ac:196: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') Makefile.am: installing './INSTALL' configure.ac:196: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') configure.ac:196: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') configure.ac:196: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') src/Makefile.am: installing './depcomp' autoreconf-2.69: Leaving directory `lib/libdvd/libdvdread' autoreconf -vif lib/libdvd/libdvdnav autoreconf-2.69: Entering directory `lib/libdvd/libdvdnav' autoreconf-2.69: configure.ac: not using Gettext autoreconf-2.69: running: aclocal --force autoreconf-2.69: configure.ac: tracing autoreconf-2.69: running: libtoolize --copy --force libtoolize: putting auxiliary files in `.'. libtoolize: copying file `./ltmain.sh' libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree. libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am. autoreconf-2.69: running: /usr/local/bin/autoconf-2.69 --force autoreconf-2.69: running: /usr/local/bin/autoheader-2.69 --force autoreconf-2.69: running: automake --add-missing --copy --force-missing configure.ac:26: installing './config.guess' configure.ac:26: installing './config.sub' configure.ac:22: installing './install-sh' configure.ac:22: installing './missing' configure.ac:235: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') Makefile.am: installing './INSTALL' configure.ac:235: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') configure.ac:235: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') examples/Makefile.am: installing './depcomp' configure.ac:235: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') configure.ac:235: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') configure.ac:235: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') configure.ac:235: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') autoreconf-2.69: Leaving directory `lib/libdvd/libdvdnav' Warning: No doxygen installed. The Api will not have any docstrings. mkdir -p xbmc/interfaces/python/generated/doxygenxml mkdir -p xbmc/interfaces/python/generated /usr/local/bin/swig2.0 -w401 -c++ -o xbmc/interfaces/python/generated/AddonModuleXbmc.xml -xml -I./xbmc -xmllang python xbmc/interfaces/swig/AddonModuleXbmc.i /usr/local/bin/java -cp "./lib/groovy/groovy-all-1.8.4.jar:./lib/groovy/commons-lang-2.6.jar:./tools/codegenerator:xbmc/interfaces/python" \ groovy.ui.GroovyMain ./tools/codegenerator/Generator.groovy xbmc/interfaces/python/generated/AddonModuleXbmc.xml xbmc/interfaces/python/PythonSwig.cpp.template xbmc/interfaces/python/generated/AddonModuleXbmc.cpp [xbmc/interfaces/python/generated/AddonModuleXbmc.xml, xbmc/interfaces/python/PythonSwig.cpp.template, xbmc/interfaces/python/generated/AddonModuleXbmc.cpp] Processing "xbmc/interfaces/python/PythonSwig.cpp.template" using the module specification for module "xbmc/interfaces/python/generated/AddonModuleXbmc.xml" writing rm xbmc/interfaces/python/generated/AddonModuleXbmc.xml mkdir -p xbmc/interfaces/python/generated /usr/local/bin/swig2.0 -w401 -c++ -o xbmc/interfaces/python/generated/AddonModuleXbmcgui.xml -xml -I./xbmc -xmllang python xbmc/interfaces/swig/AddonModuleXbmcgui.i /usr/local/bin/java -cp "./lib/groovy/groovy-all-1.8.4.jar:./lib/groovy/commons-lang-2.6.jar:./tools/codegenerator:xbmc/interfaces/python" \ groovy.ui.GroovyMain ./tools/codegenerator/Generator.groovy xbmc/interfaces/python/generated/AddonModuleXbmcgui.xml xbmc/interfaces/python/PythonSwig.cpp.template xbmc/interfaces/python/generated/AddonModuleXbmcgui.cpp [xbmc/interfaces/python/generated/AddonModuleXbmcgui.xml, xbmc/interfaces/python/PythonSwig.cpp.template, xbmc/interfaces/python/generated/AddonModuleXbmcgui.cpp] Processing "xbmc/interfaces/python/PythonSwig.cpp.template" using the module specification for module "xbmc/interfaces/python/generated/AddonModuleXbmcgui.xml" writing rm xbmc/interfaces/python/generated/AddonModuleXbmcgui.xml mkdir -p xbmc/interfaces/python/generated /usr/local/bin/swig2.0 -w401 -c++ -o xbmc/interfaces/python/generated/AddonModuleXbmcplugin.xml -xml -I./xbmc -xmllang python xbmc/interfaces/swig/AddonModuleXbmcplugin.i /usr/local/bin/java -cp "./lib/groovy/groovy-all-1.8.4.jar:./lib/groovy/commons-lang-2.6.jar:./tools/codegenerator:xbmc/interfaces/python" \ groovy.ui.GroovyMain ./tools/codegenerator/Generator.groovy xbmc/interfaces/python/generated/AddonModuleXbmcplugin.xml xbmc/interfaces/python/PythonSwig.cpp.template xbmc/interfaces/python/generated/AddonModuleXbmcplugin.cpp [xbmc/interfaces/python/generated/AddonModuleXbmcplugin.xml, xbmc/interfaces/python/PythonSwig.cpp.template, xbmc/interfaces/python/generated/AddonModuleXbmcplugin.cpp] Processing "xbmc/interfaces/python/PythonSwig.cpp.template" using the module specification for module "xbmc/interfaces/python/generated/AddonModuleXbmcplugin.xml" writing rm xbmc/interfaces/python/generated/AddonModuleXbmcplugin.xml mkdir -p xbmc/interfaces/python/generated /usr/local/bin/swig2.0 -w401 -c++ -o xbmc/interfaces/python/generated/AddonModuleXbmcaddon.xml -xml -I./xbmc -xmllang python xbmc/interfaces/swig/AddonModuleXbmcaddon.i /usr/local/bin/java -cp "./lib/groovy/groovy-all-1.8.4.jar:./lib/groovy/commons-lang-2.6.jar:./tools/codegenerator:xbmc/interfaces/python" \ groovy.ui.GroovyMain ./tools/codegenerator/Generator.groovy xbmc/interfaces/python/generated/AddonModuleXbmcaddon.xml xbmc/interfaces/python/PythonSwig.cpp.template xbmc/interfaces/python/generated/AddonModuleXbmcaddon.cpp [xbmc/interfaces/python/generated/AddonModuleXbmcaddon.xml, xbmc/interfaces/python/PythonSwig.cpp.template, xbmc/interfaces/python/generated/AddonModuleXbmcaddon.cpp] Processing "xbmc/interfaces/python/PythonSwig.cpp.template" using the module specification for module "xbmc/interfaces/python/generated/AddonModuleXbmcaddon.xml" writing rm xbmc/interfaces/python/generated/AddonModuleXbmcaddon.xml mkdir -p xbmc/interfaces/python/generated /usr/local/bin/swig2.0 -w401 -c++ -o xbmc/interfaces/python/generated/AddonModuleXbmcvfs.xml -xml -I./xbmc -xmllang python xbmc/interfaces/swig/AddonModuleXbmcvfs.i /usr/local/bin/java -cp "./lib/groovy/groovy-all-1.8.4.jar:./lib/groovy/commons-lang-2.6.jar:./tools/codegenerator:xbmc/interfaces/python" \ groovy.ui.GroovyMain ./tools/codegenerator/Generator.groovy xbmc/interfaces/python/generated/AddonModuleXbmcvfs.xml xbmc/interfaces/python/PythonSwig.cpp.template xbmc/interfaces/python/generated/AddonModuleXbmcvfs.cpp [xbmc/interfaces/python/generated/AddonModuleXbmcvfs.xml, xbmc/interfaces/python/PythonSwig.cpp.template, xbmc/interfaces/python/generated/AddonModuleXbmcvfs.cpp] Processing "xbmc/interfaces/python/PythonSwig.cpp.template" using the module specification for module "xbmc/interfaces/python/generated/AddonModuleXbmcvfs.xml" writing rm xbmc/interfaces/python/generated/AddonModuleXbmcvfs.xml checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... build-aux/install-sh -c -d checking for gawk... gawk checking whether gmake sets $(MAKE)... yes checking build system type... amd64-portbld-freebsd9.1 checking host system type... amd64-portbld-freebsd9.1 checking whether the C++ compiler works... yes checking for C++ compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C++ compiler... yes checking whether c++ accepts -g... yes checking for style of include used by gmake... GNU checking dependency style of c++... none checking for gcc... cc checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking dependency style of cc... none checking how to print strings... printf checking for a sed that does not truncate output... /usr/bin/sed checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for fgrep... /usr/bin/grep -F checking for ld used by cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... no checking how to convert amd64-portbld-freebsd9.1 file names to amd64-portbld-freebsd9.1 format... func_convert_file_noop checking how to convert amd64-portbld-freebsd9.1 file names to toolchain format... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... no checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from cc object... ok checking for sysroot... no checking for mt... mt checking if mt is a manifest tool... no checking how to run the C preprocessor... cpp checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking for dlfcn.h... yes checking for objdir... .libs checking if cc supports -fno-rtti -fno-exceptions... no checking for cc option to produce PIC... -fPIC -DPIC checking if cc PIC flag -fPIC -DPIC works... yes checking if cc static flag -static works... yes checking if cc supports -c -o file.o... yes checking if cc supports -c -o file.o... (cached) yes checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... freebsd9.1 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking how to run the C++ preprocessor... c++ -E checking for ld used by c++... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking whether the c++ linker (/usr/bin/ld) supports shared libraries... yes checking for c++ option to produce PIC... -fPIC -DPIC checking if c++ PIC flag -fPIC -DPIC works... yes checking if c++ static flag -static works... yes checking if c++ supports -c -o file.o... yes checking if c++ supports -c -o file.o... (cached) yes checking whether the c++ linker (/usr/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... freebsd9.1 ld.so checking how to hardcode library paths into programs... immediate checking for gawk... (cached) gawk checking whether ln -s works... yes checking whether gmake sets $(MAKE)... (cached) yes checking for size_t... yes checking for working alloca.h... no checking for alloca... yes checking for uid_t in sys/types.h... yes checking for unistd.h... (cached) yes checking for working chown... yes checking for dirent.h that defines DIR... yes checking for library containing opendir... none required checking whether closedir returns void... no checking for error_at_line... no checking for _LARGEFILE_SOURCE value needed for large files... no checking whether cc needs -traditional... no checking whether lstat correctly handles trailing slash... yes checking whether lstat accepts an empty string... no checking whether lstat correctly handles trailing slash... (cached) yes checking for working memcmp... yes checking whether time.h and sys/time.h may both be included... yes checking for sys/time.h... yes checking for unistd.h... (cached) yes checking for stdlib.h... (cached) yes checking for sys/param.h... yes checking for utime.h... yes checking for alarm... yes checking for working mktime... no checking for getpagesize... yes checking for working mmap... yes checking sys/select.h usability... yes checking sys/select.h presence... yes checking for sys/select.h... yes checking sys/socket.h usability... yes checking sys/socket.h presence... yes checking for sys/socket.h... yes checking types of arguments for select... int,fd_set *,struct timeval * checking return type of signal handlers... void checking whether stat accepts an empty string... no checking for working strcoll... yes checking for strftime... yes checking for working strtod... yes checking whether utime accepts a null argument... yes checking for vprintf... yes checking for _doprnt... no checking for atexit... yes checking for dup2... yes checking for fdatasync... no checking for floor... no checking for fs_stat_dev... no checking for ftime... no checking for ftruncate... yes checking for getcwd... yes checking for gethostbyaddr... yes checking for gethostbyname... yes checking for gethostname... yes checking for getpagesize... (cached) yes checking for getpass... yes checking for gettimeofday... yes checking for inet_ntoa... yes checking for lchown... yes checking for localeconv... yes checking for memchr... yes checking for memmove... yes checking for memset... yes checking for mkdir... yes checking for modf... yes checking for munmap... yes checking for pow... no checking for rmdir... yes checking for select... yes checking for setenv... yes checking for setlocale... yes checking for socket... yes checking for sqrt... no checking for strcasecmp... yes checking for strchr... yes checking for strcspn... yes checking for strdup... yes checking for strerror... yes checking for strncasecmp... yes checking for strpbrk... yes checking for strrchr... yes checking for strspn... yes checking for strstr... yes checking for strtol... yes checking for strtoul... yes checking for sysinfo... no checking for tzset... yes checking for utime... yes checking size of int... 4 checking size of size_t... 8 checking for __sync_add_and_fetch(temp, 1)... yes checking for __sync_sub_and_fetch(temp, 1)... yes checking for __sync_val_compare_and_swap(temp, 1, 1)... yes checking sys/inotify.h usability... no checking sys/inotify.h presence... no checking for sys/inotify.h... no checking for main in -linotify... no checking boost/shared_ptr.hpp usability... yes checking boost/shared_ptr.hpp presence... yes checking for boost/shared_ptr.hpp... yes checking for pythonpython2.7... /usr/local/bin/python2.7 checking for a version of Python >= '2.1.0'... yes checking for a version of Python >= 2.4... yes checking for the distutils Python package... yes checking for Python include path... -I/usr/local/include/python2.7 checking for Python library path... -L/usr/local/lib/python2.7/config -lpython2.7 checking for Python site-packages path... /usr/local/lib/python2.7/site-packages checking python extra libraries... -lutil checking python extra linking flags... -Wl,--export-dynamic checking consistency of all components of python development environment... yes configure: Using Python 2.7 checking for main in -lGL... yes checking for main in -lGLEW... yes checking for main in -lGLU... yes checking for mysql_config... /usr/local/bin/mysql_config checking ass/ass.h usability... yes checking ass/ass.h presence... yes checking for ass/ass.h... yes checking mpeg2dec/mpeg2.h usability... yes checking mpeg2dec/mpeg2.h presence... yes checking for mpeg2dec/mpeg2.h... yes checking for mpeg2dec/mpeg2convert.h... yes checking mad.h usability... yes checking mad.h presence... yes checking for mad.h... yes checking jpeglib.h usability... yes checking jpeglib.h presence... yes checking for jpeglib.h... yes checking samplerate.h usability... yes checking samplerate.h presence... yes checking for samplerate.h... yes checking ogg/ogg.h usability... yes checking ogg/ogg.h presence... yes checking for ogg/ogg.h... yes checking vorbis/vorbisfile.h usability... yes checking vorbis/vorbisfile.h presence... yes checking for vorbis/vorbisfile.h... yes checking libmodplug/modplug.h usability... yes checking libmodplug/modplug.h presence... yes checking for libmodplug/modplug.h... yes checking curl/curl.h usability... yes checking curl/curl.h presence... yes checking for curl/curl.h... yes checking FLAC/stream_decoder.h usability... yes checking FLAC/stream_decoder.h presence... yes checking for FLAC/stream_decoder.h... yes checking openssl/crypto.h usability... yes checking openssl/crypto.h presence... yes checking for openssl/crypto.h... yes checking gcrypt.h usability... yes checking gcrypt.h presence... yes checking for gcrypt.h... yes checking for main in -lgpg-error... yes checking for gcry_control in -lgcrypt... yes checking for main in -lbz2... yes checking for main in -ljpeg... yes checking for main in -ltiff... yes checking for main in -lpthread... yes checking for main in -llzo2... yes checking for main in -lz... yes checking for main in -lcrypto... yes checking for main in -lssl... yes checking for main in -lmysqlclient... yes checking for hci_devid in -lbluetooth... no Could not find suitable version of libbluetooth checking for main in -lyajl... yes checking for main in -ltinyxml... yes checking pkg-config is at least version 0.9.0... yes checking for FRIBIDI... yes checking for SQLITE3... yes checking for PNG... yes checking for PCRECPP... yes checking for PCRE... yes checking for CDIO... yes checking for SAMPLERATE... yes checking for FREETYPE2... yes checking for TAGLIB... yes checking for main in -liconv... yes checking for main in -ljasper... yes checking for clock_gettime in -lrt... yes checking for DBUS... yes checking for SDL... yes checking for main in -lSDL_image... yes checking for libmad soname... libmad.so.2 checking for libogg soname... libogg.so.8 checking for libcurl soname... libcurl.so.6 checking for libFLAC soname... libFLAC.so.10 checking for libvorbis soname... libvorbis.so.4 checking for libvorbisfile soname... libvorbisfile.so.6 checking for libmodplug soname... libmodplug.so.1 checking for libass soname... libass.so.5 checking for libmpeg2 soname... libmpeg2.so.0 checking for libmp3lame soname... libmp3lame.so.0 checking lame/lame.h usability... yes checking lame/lame.h presence... yes checking for lame/lame.h... yes checking for libvorbisenc soname... libvorbisenc.so.2 checking vorbis/vorbisenc.h usability... yes checking vorbis/vorbisenc.h presence... yes checking for vorbis/vorbisenc.h... yes checking for main in -lmicrohttpd... yes == ALSA support disabled. == checking for main in -lpulse... yes checking for main in -lpulse-simple... yes checking for HAL... yes checking for HAL_STORAGE... yes checking for main in -lavahi-common... yes checking for main in -lavahi-client... yes configure: == X11 enabled. == checking for X11... yes checking for XEXT... yes checking for main in -lXrandr... yes configure: == GOOM disabled. == configure: == RSXS enabled. == checking for XT... yes checking for XMU... yes configure: == ProjectM enabled. == checking for sftp_tell64 in -lssh... yes checking librtmp/log.h usability... yes checking librtmp/log.h presence... yes checking for librtmp/log.h... yes checking librtmp/amf.h usability... yes checking librtmp/amf.h presence... yes checking for librtmp/amf.h... yes checking librtmp/rtmp.h usability... yes checking librtmp/rtmp.h presence... yes checking for librtmp/rtmp.h... yes checking for librtmp soname... librtmp.so.0 checking for main in -lsmbclient... yes configure: == NFS support disabled. == checking afpfs-ng/libafpclient.h usability... no checking afpfs-ng/libafpclient.h presence... no checking for afpfs-ng/libafpclient.h... no configure: == Could not find libafpclient. AFP client support disabled. == checking plist/plist.h usability... yes checking plist/plist.h presence... yes checking for plist/plist.h... yes checking for libplist soname... libplist.so.1 checking shairport/shairport.h usability... no checking shairport/shairport.h presence... no checking for shairport/shairport.h... no configure: == Could not find libshairport. AirTunes support disabled. == checking for UDEV... no == Could not find libudev. Will use polling to check for device changes. == checking for main in -lusb... yes will not check for RPi support (unsupported cpu: amd64) checking for CEC... no == libcec disabled. CEC adapter support will not be available. == configure: == libcec disabled. CEC adapter support will not be available. == checking sys/capability.h usability... yes checking sys/capability.h presence... yes checking for sys/capability.h... yes checking for main in -lcap... no configure: == Use of external ffmpeg disabled. == Checking for SWIG installation checking for swig... none checking for swig2.0... /usr/local/bin/swig2.0 Checking for a jre installation checking for java... /usr/local/bin/java Checking for doxygen installation checking for doxygen... none configure: WARNING: Unable to find doxygen installation. Will not be able to make docstrings for the python api checking vdpau/vdpau.h usability... yes checking vdpau/vdpau.h presence... yes checking for vdpau/vdpau.h... yes configure: == VAAPI support manually disabled. == checking libcrystalhd/libcrystalhd_if.h usability... no checking libcrystalhd/libcrystalhd_if.h presence... no checking for libcrystalhd/libcrystalhd_if.h... no == Could not find libcrystalhd. CrystalHD support disabled. == checking for libcrystalhd soname... no configure: WARNING: Unable to determine soname of libcrystalhd library configure: WARNING: libcrystalhd support disabled configure: == VDADecoder support manually disabled. == configure: == VTBDecoder support manually disabled. == configure: == OpenMax support manually disabled. == checking yajl/yajl_version.h usability... yes checking yajl/yajl_version.h presence... yes checking for yajl/yajl_version.h... yes checking for gawk... yes checking for cmake... yes checking for gperf... yes checking for unzip... yes checking for zip... yes checking for git... no checking for dirent.h that defines DIR... (cached) yes checking for library containing opendir... (cached) none required checking for ANSI C header files... (cached) yes checking for sys/wait.h that is POSIX.1 compatible... yes checking arpa/inet.h usability... yes checking arpa/inet.h presence... yes checking for arpa/inet.h... yes checking fcntl.h usability... yes checking fcntl.h presence... yes checking for fcntl.h... yes checking float.h usability... yes checking float.h presence... yes checking for float.h... yes checking for inttypes.h... (cached) yes checking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking locale.h usability... yes checking locale.h presence... yes checking for locale.h... yes checking malloc.h usability... no checking malloc.h presence... no checking for malloc.h... no checking for memory.h... (cached) yes checking netdb.h usability... yes checking netdb.h presence... yes checking for netdb.h... yes checking netinet/in.h usability... yes checking netinet/in.h presence... yes checking for netinet/in.h... yes checking stddef.h usability... yes checking stddef.h presence... yes checking for stddef.h... yes checking for stdint.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for strings.h... (cached) yes checking sys/file.h usability... yes checking sys/file.h presence... yes checking for sys/file.h... yes checking sys/ioctl.h usability... yes checking sys/ioctl.h presence... yes checking for sys/ioctl.h... yes checking sys/mount.h usability... yes checking sys/mount.h presence... yes checking for sys/mount.h... yes checking for sys/param.h... (cached) yes checking for sys/socket.h... (cached) yes checking for sys/time.h... (cached) yes checking sys/timeb.h usability... yes checking sys/timeb.h presence... yes checking for sys/timeb.h... yes checking sys/vfs.h usability... no checking sys/vfs.h presence... no checking for sys/vfs.h... no checking termios.h usability... yes checking termios.h presence... yes checking for termios.h... yes checking for unistd.h... (cached) yes checking for utime.h... (cached) yes checking wchar.h usability... yes checking wchar.h presence... yes checking for wchar.h... yes checking wctype.h usability... yes checking wctype.h presence... yes checking for wctype.h... yes checking cdio/iso9660.h usability... yes checking cdio/iso9660.h presence... yes checking for cdio/iso9660.h... yes checking whether stat file-mode macros are broken... no checking for stdbool.h that conforms to C99... yes checking for _Bool... yes checking for an ANSI C-conforming const... yes checking for uid_t in sys/types.h... (cached) yes checking for inline... inline checking for int8_t... yes checking for int16_t... yes checking for int32_t... yes checking for int64_t... yes checking for mode_t... yes checking for off_t... yes checking for pid_t... yes checking for C/C++ restrict keyword... __restrict checking for size_t... (cached) yes checking for ssize_t... yes checking for struct stat.st_rdev... yes checking whether time.h and sys/time.h may both be included... (cached) yes checking whether struct tm is in sys/time.h or time.h... time.h checking for uint8_t... yes checking for uint16_t... yes checking for uint32_t... yes checking for uint64_t... yes checking whether byte ordering is bigendian... no checking for ccache... /usr/local/bin/ccache configure: enabling ccache configure: == DVDCSS support enabled. == configure: == Google Test Framework will not be configured. == checking that generated files are newer than configure... done configure: creating ./config.status install prefix /usr/local source path . C compiler /usr/local/bin/ccache cc ARCH x86 (generic) big-endian no runtime cpu detection yes nasm yes MMX enabled yes MMX2 enabled yes 3DNow! enabled yes 3DNow! extended enabled yes SSE enabled yes SSSE3 enabled yes AVX enabled yes CMOV enabled yes CMOV is fast yes EBX available yes EBP available yes debug symbols no strip symbols yes optimize for size no optimizations yes static no shared yes postprocessing support yes new filter support yes network support yes threading support pthreads safe bitstream reader yes SDL support yes Sun medialib support no libdxva2 enabled no libva enabled no libvdpau enabled yes AVISynth enabled no frei0r enabled no gnutls enabled no libaacplus enabled no libass enabled no libcdio support no libcelt enabled no libdc1394 support no libdirac enabled no libfaac enabled no libgsm enabled no libmodplug enabled no libmp3lame enabled no libnut enabled no libopencore-amrnb support no libopencore-amrwb support no libopencv support no libopenjpeg enabled no libpulse enabled no librtmp enabled no libschroedinger enabled no libspeex enabled no libstagefright-h264 enabled no libtheora enabled no libutvideo enabled no libv4l2 enabled no libvo-aacenc support no libvo-amrwbenc support no libvorbis enabled no libvpx enabled no libx264 enabled no libxavs enabled no libxvid enabled no openal enabled no openssl enabled no zlib enabled yes bzlib enabled yes Enabled decoders: aac cscd mace6 aac_latm cyuv mdec aasc dca mimic ac3 dfa mjpeg adpcm_4xm dirac mjpegb adpcm_adx dnxhd mlp adpcm_ct dpx mmvideo adpcm_ea dsicinaudio motionpixels adpcm_ea_maxis_xa dsicinvideo mp1 adpcm_ea_r1 dvbsub mp1float adpcm_ea_r2 dvdsub mp2 adpcm_ea_r3 dvvideo mp2float adpcm_ea_xas dxa mp3 adpcm_g722 dxtory mp3adu adpcm_g726 eac3 mp3adufloat adpcm_ima_amv eacmv mp3float adpcm_ima_apc eamad mp3on4 adpcm_ima_dk3 eatgq mp3on4float adpcm_ima_dk4 eatgv mpc7 adpcm_ima_ea_eacs eatqi mpc8 adpcm_ima_ea_sead eightbps mpeg1_vdpau adpcm_ima_iss eightsvx_exp mpeg1video adpcm_ima_qt eightsvx_fib mpeg2video adpcm_ima_smjpeg escape124 mpeg4 adpcm_ima_wav escape130 mpeg4_vdpau adpcm_ima_ws ffv1 mpeg_vdpau adpcm_ms ffvhuff mpegvideo adpcm_sbpro_2 ffwavesynth msmpeg4v1 adpcm_sbpro_3 flac msmpeg4v2 adpcm_sbpro_4 flashsv msmpeg4v3 adpcm_swf flashsv2 msrle adpcm_thp flic msvideo1 adpcm_xa flv mszh adpcm_yamaha fourxm mxpeg alac fraps nellymoser als frwu nuv amrnb g723_1 pam amrwb g729 pbm amv gif pcm_alaw anm gsm pcm_bluray ansi gsm_ms pcm_dvd ape h261 pcm_f32be ass h263 pcm_f32le asv1 h263i pcm_f64be asv2 h264 pcm_f64le atrac1 h264_vdpau pcm_lxf atrac3 huffyuv pcm_mulaw aura idcin pcm_s16be aura2 idf pcm_s16le avrp iff_byterun1 pcm_s16le_planar avs iff_ilbm pcm_s24be bethsoftvid imc pcm_s24daud bfi indeo2 pcm_s24le bink indeo3 pcm_s32be binkaudio_dct indeo4 pcm_s32le binkaudio_rdft indeo5 pcm_s8 bintext interplay_dpcm pcm_s8_planar bmp interplay_video pcm_u16be bmv_audio jpeg2000 pcm_u16le bmv_video jpegls pcm_u24be c93 jv pcm_u24le cavs kgv1 pcm_u32be cdgraphics kmvc pcm_u32le cinepak lagarith pcm_u8 cljr loco pcm_zork cook mace3 pcx pgm sol_dpcm vmnc pgmyuv sonic vorbis pgssub sp5x vp3 pictor srt vp5 png sunrast vp6 ppm svq1 vp6a prores svq3 vp6f prores_lgpl targa vp8 ptx theora vqa qcelp thp wavpack qdm2 tiertexseqvideo wmalossless qdraw tiff wmapro qpeg tmv wmav1 qtrle truehd wmav2 r10k truemotion1 wmavoice r210 truemotion2 wmv1 ra_144 truespeech wmv2 ra_288 tscc wmv3 rawvideo tta wmv3_vdpau rl2 twinvq wmv3image roq txd wnv1 roq_dpcm ulti ws_snd1 rpza utvideo xan_dpcm rv10 v210 xan_wc3 rv20 v210x xan_wc4 rv30 v308 xbin rv40 v410 xl s302m vb xsub sgi vble xwd shorten vc1 y41p sipr vc1_vdpau yop smackaud vc1image yuv4 smacker vcr1 zlib smc vmdaudio zmbv snow vmdvideo Enabled encoders: aac ac3 Enabled hwaccels: mpeg1_vdpau mpeg2_vdpau Enabled parsers: aac dvdsub mpegaudio aac_latm flac mpegvideo ac3 gsm pnm adx h261 rv30 cavsvideo h263 rv40 dca h264 vc1 dirac mjpeg vp3 dnxhd mlp vp8 dvbsub mpeg4video Enabled demuxers: aac iff pcm_u32be ac3 image2 pcm_u32le act image2pipe pcm_u8 adf ingenient pmp adx ipmovie pva aea iss qcp aiff iv8 r3d amr ivf rawvideo anm jv rl2 apc latm rm ape lmlm4 roq applehttp loas rpl asf lxf rso ass m4v rtp au matroska rtsp avi microdvd sap avs mjpeg sbg bethsoftvid mlp sdp bfi mm segafilm bink mmf shorten bintext mov siff bit mp3 smacker bmv mpc smjpeg c93 mpc8 sol caf mpegps sox cavsvideo mpegts spdif cdg mpegtsraw srt daud mpegvideo str dfa msnwc_tcp swf dirac mtv thp dnxhd mvi tiertexseq dsicin mxf tmv dts mxg truehd dv nc tta dxa nsv tty ea nut txd ea_cdata nuv vc1 eac3 ogg vc1t ffm oma vmd ffmetadata pcm_alaw voc filmstrip pcm_f32be vqf flac pcm_f32le w64 flic pcm_f64be wav flv pcm_f64le wc3 fourxm pcm_mulaw wsaud g722 pcm_s16be wsvqa g723_1 pcm_s16le wtv g729 pcm_s24be wv gsm pcm_s24le xa gxf pcm_s32be xbin h261 pcm_s32le xmv h263 pcm_s8 xwma h264 pcm_u16be yop ico pcm_u16le yuv4mpegpipe idcin pcm_u24be idf pcm_u24le Enabled muxers: adts spdif Enabled protocols: applehttp httpproxy rtmps cache md5 rtmpt concat mmsh rtmpte crypto mmst rtp file pipe tcp gopher rtmp udp http rtmpe Enabled filters: abuffer drawbox pan abuffersink earwax pixdesctest aconvert fade rgbtestsrc aevalsrc fieldorder scale aformat fifo select amerge format setdar amovie gradfun setpts anull hflip setsar anullsink hqdn3d settb anullsrc life showinfo aresample lut silencedetect ashowinfo lutrgb slicify asplit lutyuv split astreamsync mandelbrot swapuv blackframe movie testsrc boxblur mp thumbnail buffersink mptestsrc tinterlace cellauto negate transpose color noformat unsharp copy null vflip crop nullsink volume cropdetect nullsrc yadif delogo overlay deshake pad Enabled bsfs: aac_adtstoasc mjpeg2jpeg noise chomp mjpega_dump_header remove_extradata dump_extradata mov2textsub text2movsub h264_mp4toannexb mp3_header_compress imx_dump_header mp3_header_decompress Enabled indevs: Enabled outdevs: License: GPL version 2 or later Creating config.mak and config.h... checking build system type... amd64-portbld-freebsd9.1 checking host system type... amd64-portbld-freebsd9.1 checking target system type... amd64-portbld-freebsd9.1 checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... .auto/install-sh -c -d checking for gawk... gawk checking whether gmake sets $(MAKE)... yes checking for gcc... /usr/local/bin/ccache cc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether /usr/local/bin/ccache cc accepts -g... yes checking for /usr/local/bin/ccache cc option to accept ISO C89... none needed checking for style of include used by gmake... GNU checking dependency style of /usr/local/bin/ccache cc... gcc3 checking how to run the C preprocessor... cpp checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for ANSI C header files... yes checking how to print strings... printf checking for a sed that does not truncate output... /usr/bin/sed checking for fgrep... /usr/bin/grep -F checking for ld used by /usr/local/bin/ccache cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... no checking how to convert amd64-portbld-freebsd9.1 file names to amd64-portbld-freebsd9.1 format... func_convert_file_noop checking how to convert amd64-portbld-freebsd9.1 file names to toolchain format... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... dlltool checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... no checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from /usr/local/bin/ccache cc object... ok checking for sysroot... no checking for mt... mt checking if mt is a manifest tool... no checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking for dlfcn.h... yes checking for objdir... .libs checking if /usr/local/bin/ccache cc supports -fno-rtti -fno-exceptions... no checking for /usr/local/bin/ccache cc option to produce PIC... -fPIC -DPIC checking if /usr/local/bin/ccache cc PIC flag -fPIC -DPIC works... yes checking if /usr/local/bin/ccache cc static flag -static works... yes checking if /usr/local/bin/ccache cc supports -c -o file.o... yes checking if /usr/local/bin/ccache cc supports -c -o file.o... (cached) yes checking whether the /usr/local/bin/ccache cc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... freebsd9.1 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for an ANSI C-conforming const... yes checking for inline... inline checking for size_t... yes checking for unistd.h... (cached) yes checking sys/param.h usability... yes checking sys/param.h presence... yes checking for sys/param.h... yes checking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking pwd.h usability... yes checking pwd.h presence... yes checking for pwd.h... yes checking errno.h usability... yes checking errno.h presence... yes checking for errno.h... yes checking windows.h usability... no checking windows.h presence... no checking for windows.h... no checking sys/ioctl.h usability... yes checking sys/ioctl.h presence... yes checking for sys/ioctl.h... yes checking sys/cdio.h usability... yes checking sys/cdio.h presence... yes checking for sys/cdio.h... yes checking sys/dvdio.h usability... yes checking sys/dvdio.h presence... yes checking for sys/dvdio.h... yes checking linux/cdrom.h usability... no checking linux/cdrom.h presence... no checking for linux/cdrom.h... no checking dvd.h usability... no checking dvd.h presence... no checking for dvd.h... no checking /sys/dev/scsi/scsi_ioctl.h usability... no checking /sys/dev/scsi/scsi_ioctl.h presence... no checking for /sys/dev/scsi/scsi_ioctl.h... no checking sys/scsi/scsi_types.h usability... no checking sys/scsi/scsi_types.h presence... no checking for sys/scsi/scsi_types.h... no checking sys/scsi.h usability... no checking sys/scsi.h presence... no checking for sys/scsi.h... no checking IOKit/storage/IODVDMediaBSDClient.h usability... no checking IOKit/storage/IODVDMediaBSDClient.h presence... no checking for IOKit/storage/IODVDMediaBSDClient.h... no checking if $CC accepts -Wall... yes checking if $CC accepts -Wsign-compare... yes checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating doc/Makefile config.status: creating src/Makefile config.status: creating src/dvdcss/Makefile config.status: creating test/Makefile config.status: creating src/libdvdcss.pc config.status: creating config.h config.status: executing depfiles commands config.status: executing libtool commands Done, type 'make install' to build and install cat /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread/misc/dvdread-config.sh >> obj/dvdread-config chmod 0755 obj/dvdread-config Done, type 'make install' to build and install + rm -f CMakeCache.txt + CC=cc CXX=c++ LDFLAGS=' -L/usr/local/lib' cmake -DCMAKE_BUILD_TYPE=None -DUSE_FTGL:BOOL=OFF '-DCMAKE_C_FLAGS:STRING= -I/usr/local/include -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include' '-DCMAKE_CXX_FLAGS:STRING= -I/usr/local/include -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include' -DCMAKE_INSTALL_PREFIX=/usr/local '-DCMAKE_INSTALL_LIBDIR:PATH=${exec_prefix}/lib' '-DINCLUDE_INSTALL_DIR:PATH=${prefix}/include' '-DLIB_INSTALL_DIR:PATH=${exec_prefix}/lib' '-DSYSCONF_INSTALL_DIR:PATH=${prefix}/etc' '-DSHARE_INSTALL_PREFIX:PATH=${datarootdir}' . -- The C compiler identification is GNU 4.2.1 -- The CXX compiler identification is GNU 4.2.1 -- Check for working C compiler: /usr/bin/cc -- Check for working C compiler: /usr/bin/cc -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Check for working CXX compiler: /usr/bin/c++ -- Check for working CXX compiler: /usr/bin/c++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Looking for XOpenDisplay in /usr/local/lib/libX11.so;/usr/local/lib/libXext.so -- Looking for XOpenDisplay in /usr/local/lib/libX11.so;/usr/local/lib/libXext.so - found -- Looking for gethostbyname -- Looking for gethostbyname - found -- Looking for connect -- Looking for connect - found -- Looking for remove -- Looking for remove - found -- Looking for shmat -- Looking for shmat - found -- Looking for IceConnectionNumber in ICE -- Looking for IceConnectionNumber in ICE - found -- Found X11: /usr/local/lib/libX11.so -- Found OpenGL: /usr/local/lib/libGL.so -- checking for one of the modules 'ftgl' -- [projectM] Warning: FTGL font support was not detected. Visit http://ftgl.wiki.sourceforge.net/ for help on installing FTGL. CMake Warning (dev) at CMakeLists.txt:125 (LINK_DIRECTORIES): This command specifies the relative path . as a link directory. Policy CMP0015 is not set: link_directories() treats paths relative to the source dir. Run "cmake --help-policy CMP0015" for policy details. Use the cmake_policy command to set the policy and suppress this warning. This warning is for project developers. Use -Wno-dev to suppress it. -- Configuring done -- Generating done CMake Warning: Manually-specified variables were not used by the project: CMAKE_INSTALL_LIBDIR INCLUDE_INSTALL_DIR LIB_INSTALL_DIR SHARE_INSTALL_PREFIX SYSCONF_INSTALL_DIR -- Build files have been written to: /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/visualizations/XBMCProjectM/libprojectM + test portbld = apple + set +x configure: Skipping configuration of submodule xbmc/visualizations/Goom/goom2k4-0. checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... ./install-sh -c -d checking for gawk... gawk checking whether gmake sets $(MAKE)... yes checking for style of include used by gmake... GNU checking for gcc... /usr/local/bin/ccache cc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether /usr/local/bin/ccache cc accepts -g... yes checking for /usr/local/bin/ccache cc option to accept ISO C89... none needed checking dependency style of /usr/local/bin/ccache cc... gcc3 checking how to run the C preprocessor... cpp checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking minix/config.h usability... no checking minix/config.h presence... no checking for minix/config.h... no checking whether it is safe to define __EXTENSIONS__... yes checking for a sed that does not truncate output... /usr/bin/sed checking whether we are using the GNU C++ compiler... yes checking whether /usr/local/bin/ccache c++ accepts -g... yes checking dependency style of /usr/local/bin/ccache c++... gcc3 checking how to run the C++ preprocessor... /usr/local/bin/ccache c++ -E checking for gcc... (cached) /usr/local/bin/ccache cc checking whether we are using the GNU C compiler... (cached) yes checking whether /usr/local/bin/ccache cc accepts -g... (cached) yes checking for /usr/local/bin/ccache cc option to accept ISO C89... (cached) none needed checking dependency style of /usr/local/bin/ccache cc... (cached) gcc3 checking whether /usr/local/bin/ccache cc and cc understand -c and -o together... yes checking for ranlib... ranlib checking whether it is safe to define __EXTENSIONS__... (cached) yes checking for ranlib... (cached) ranlib checking how to print strings... printf checking build system type... amd64-portbld-freebsd9.1 checking host system type... amd64-portbld-freebsd9.1 checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for fgrep... /usr/bin/grep -F checking for ld used by /usr/local/bin/ccache cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for dirent.h that defines DIR... yes checking for library containing opendir... none required checking for objdump... objdump checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... no checking dynamic linker characteristics... freebsd9.1 ld.so checking which extension is used for runtime loadable modules... .so checking which variable specifies run-time module search path... LD_LIBRARY_PATH checking for the default library search path... /lib /usr/lib checking for library containing dlopen... none required checking for dlerror... yes checking for shl_load... no checking for shl_load in -ldld... no checking for dld_link in -ldld... no checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking command to parse /usr/bin/nm -B output from /usr/local/bin/ccache cc object... ok checking for _ prefix in compiled symbols... no checking for dlfcn.h... yes checking whether deplibs are loaded by dlopen... yes checking assert.h usability... yes checking assert.h presence... yes checking for assert.h... yes checking ctype.h usability... yes checking ctype.h presence... yes checking for ctype.h... yes checking errno.h usability... yes checking errno.h presence... yes checking for errno.h... yes checking malloc.h usability... no checking malloc.h presence... no checking for malloc.h... no checking for memory.h... (cached) yes checking for stdlib.h... (cached) yes checking stdio.h usability... yes checking stdio.h presence... yes checking for stdio.h... yes checking for unistd.h... (cached) yes checking dl.h usability... no checking dl.h presence... no checking for dl.h... no checking sys/dl.h usability... no checking sys/dl.h presence... no checking for sys/dl.h... no checking dld.h usability... no checking dld.h presence... no checking for dld.h... no checking mach-o/dyld.h usability... no checking mach-o/dyld.h presence... no checking for mach-o/dyld.h... no checking for string.h... (cached) yes checking for strings.h... (cached) yes checking features.h usability... no checking features.h presence... no checking for features.h... no checking linewrap.h usability... no checking linewrap.h presence... no checking for linewrap.h... no checking wchar.h usability... yes checking wchar.h presence... yes checking for wchar.h... yes checking wctype.h usability... yes checking wctype.h presence... yes checking for wctype.h... yes checking setjmp.h usability... yes checking setjmp.h presence... yes checking for setjmp.h... yes checking for sys/types.h... (cached) yes checking sys/select.h usability... yes checking sys/select.h presence... yes checking for sys/select.h... yes checking for strchr... yes checking for index... yes checking for strrchr... yes checking for rindex... yes checking for memcpy... yes checking for bcopy... yes checking for memmove... yes checking for strcmp... yes checking for closedir... yes checking for opendir... yes checking for readdir... yes checking for flockfile... yes checking for funlockfile... yes checking for iswprint... yes checking for wcwidth... yes checking for setjmp... yes checking for select... yes checking whether the compiler recognizes bool as a built-in type... yes checking whether the compiler accepts the new for scoping rules... yes checking whether the compiler implements namespaces... yes checking whether the compiler supports ISO C++ standard library... yes checking whether the C++ standard library uses stringstream or strstream... stringstream checking whether ln -s works... yes checking for size_t... yes checking for working alloca.h... no checking for alloca... yes checking for inline... inline checking whether getenv is declared... yes checking whether clearerr_unlocked is declared... yes checking whether feof_unlocked is declared... yes checking whether ferror_unlocked is declared... yes checking whether fflush_unlocked is declared... no checking whether fgets_unlocked is declared... no checking whether fputc_unlocked is declared... no checking whether fputs_unlocked is declared... no checking whether fread_unlocked is declared... no checking whether fwrite_unlocked is declared... no checking whether getc_unlocked is declared... yes checking whether getchar_unlocked is declared... yes checking whether putc_unlocked is declared... yes checking whether putchar_unlocked is declared... yes checking whether system is Windows or MSDOS... no checking whether // is distinct from /... no checking whether strerror_r is declared... yes checking for strerror_r... yes checking whether strerror_r returns char *... no checking whether time.h and sys/time.h may both be included... yes checking for mbstate_t... yes checking whether mbrtowc and mbstate_t are properly declared... yes checking whether defines MIN and MAX... no checking whether defines MIN and MAX... yes checking for stdbool.h that conforms to C99... no checking for _Bool... no checking whether strndup is declared... yes checking whether strnlen is declared... yes checking for EOVERFLOW... yes checking for signed... yes checking for long long int... yes checking for long double... yes checking for wchar_t... yes checking for wint_t... yes checking for inttypes.h... yes checking for stdint.h... yes checking for intmax_t... yes checking whether vsnprintf is declared... yes checking whether program_invocation_name is declared... no checking whether program_invocation_short_name is declared... no checking whether program_invocation_name is defined... no checking whether program_invocation_short_name is defined... no checking for argz.h... no checking for error_t... no checking for argz_append... no checking for argz_create_sep... no checking for argz_insert... no checking for argz_next... no checking for argz_stringify... no checking for error_at_line... no checking whether gettimeofday clobbers localtime buffer... no checking for memchr... yes checking for mempcpy... no checking for C/C++ restrict keyword... __restrict checking for stdint.h... (cached) yes checking for SIZE_MAX... (((1UL << 63) - 1) * 2 + 1) checking for strncasecmp... yes checking for strchrnul... no checking for working strndup... yes checking for working strnlen... yes checking sysexits.h usability... yes checking sysexits.h presence... yes checking for sysexits.h... yes checking for unistd.h... (cached) yes checking for vasnprintf... no checking for ptrdiff_t... yes checking for snprintf... yes checking for wcslen... yes checking for vsnprintf... yes checking whether wcwidth is declared... yes checking for stdint.h... (cached) yes checking for X... libraries , headers checking for gethostbyname... yes checking for connect... yes checking for remove... yes checking for shmat... yes checking for IceConnectionNumber in -lICE... yes checking for XmuLookupStandardColormap in -lXmu... yes checking for X11/Xlib.h... yes checking for library containing glXChooseVisual... -lGL checking for library containing gluErrorString... -lGLU checking for GL/gl.h... yes checking for GL/glext.h... yes checking for GL/glu.h... yes checking for GL/glx.h... yes checking for libpng-config... libpng-config checking for libpng preprocessor flags... -I/usr/local/include/libpng15 checking for libpng compiler flags... checking for libpng linker flags... -L/usr/local/lib checking for libpng libraries... -lpng15 checking for png.h... yes checking whether libpng supports setjmp... yes checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating config/Makefile config.status: creating lib/Makefile config.status: creating libltdl/Makefile config.status: creating src/Makefile config.status: creating src/cyclone/Makefile config.status: creating src/euphoria/Makefile config.status: creating src/fieldlines/Makefile config.status: creating src/flocks/Makefile config.status: creating src/flux/Makefile config.status: creating src/helios/Makefile config.status: creating src/hyperspace/Makefile config.status: creating src/lattice/Makefile config.status: creating src/plasma/Makefile config.status: creating src/skyrocket/Makefile config.status: creating src/solarwinds/Makefile config.status: creating rsxs.spec config.status: creating config.h config.status: executing depfiles commands ==================================== XScreenSaver support : no PNG image support : yes OGG Vorbis sound support : no ------------------------------------ Enabled screensavers: - Cyclone : no - Euphoria : yes - Field Lines : no - Flocks : no - Flux : no - Helios : no - Hyperspace : no - Lattice : no - Plasma : yes - Skyrocket : no - Solar Winds : yes ==================================== checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... auxliary/install-sh -c -d checking for gawk... gawk checking whether gmake sets $(MAKE)... yes checking whether gmake supports nested variables... yes checking whether NLS is requested... no checking for msgfmt... /usr/local/bin/msgfmt checking for gmsgfmt... /usr/local/bin/msgfmt checking for xgettext... /usr/local/bin/xgettext checking for msgmerge... /usr/local/bin/msgmerge checking for style of include used by gmake... GNU checking for gcc... /usr/local/bin/ccache cc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether /usr/local/bin/ccache cc accepts -g... yes checking for /usr/local/bin/ccache cc option to accept ISO C89... none needed checking dependency style of /usr/local/bin/ccache cc... gcc3 checking build system type... amd64-portbld-freebsd9.1 checking host system type... amd64-portbld-freebsd9.1 checking for ld used by GCC... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for shared library run path origin... done checking for CFPreferencesCopyAppValue... no checking for CFLocaleCopyCurrent... no checking whether to use NLS... no checking for gcc... (cached) /usr/local/bin/ccache cc checking whether we are using the GNU C compiler... (cached) yes checking whether /usr/local/bin/ccache cc accepts -g... (cached) yes checking for /usr/local/bin/ccache cc option to accept ISO C89... (cached) none needed checking dependency style of /usr/local/bin/ccache cc... (cached) gcc3 checking whether /usr/local/bin/ccache cc and cc understand -c and -o together... yes checking for an ANSI C-conforming const... yes checking how to print strings... printf checking for a sed that does not truncate output... /usr/bin/sed checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for fgrep... /usr/bin/grep -F checking for ld used by /usr/local/bin/ccache cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... no checking how to convert amd64-portbld-freebsd9.1 file names to amd64-portbld-freebsd9.1 format... func_convert_file_noop checking how to convert amd64-portbld-freebsd9.1 file names to toolchain format... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... dlltool checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... no checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from /usr/local/bin/ccache cc object... ok checking for sysroot... no checking for mt... mt checking if mt is a manifest tool... no checking how to run the C preprocessor... cpp checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking for dlfcn.h... yes checking for objdir... .libs checking if /usr/local/bin/ccache cc supports -fno-rtti -fno-exceptions... no checking for /usr/local/bin/ccache cc option to produce PIC... -fPIC -DPIC checking if /usr/local/bin/ccache cc PIC flag -fPIC -DPIC works... yes checking if /usr/local/bin/ccache cc static flag -static works... yes checking if /usr/local/bin/ccache cc supports -c -o file.o... yes checking if /usr/local/bin/ccache cc supports -c -o file.o... (cached) yes checking whether the /usr/local/bin/ccache cc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... freebsd9.1 ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... no checking for shl_load in -ldld... no checking for dlopen... yes checking whether a program can dlopen itself... yes checking whether a statically linked program can dlopen itself... no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking whether ln -s works... yes checking for Posix threads... yes checking for dlfcn.h... (cached) yes checking for dlopen in -ldl... no checking for dlopen in -lc... yes checking expat.h usability... yes checking expat.h presence... yes checking for expat.h... yes checking for XML_ParseBuffer in -lexpat... yes checking readline/readline.h usability... yes checking readline/readline.h presence... yes checking for readline/readline.h... yes checking for add_history in -lreadline... yes checking for stat... yes checking for lstat... yes checking which file name separator to use... '/' checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating libcpluff/Makefile config.status: creating libcpluff/cpluffdef.h config.status: creating libcpluff/docsrc/Makefile config.status: creating libcpluff/docsrc/Doxyfile-ref config.status: creating libcpluff/docsrc/Doxyfile-impl config.status: creating loader/Makefile config.status: creating console/Makefile config.status: creating po/Makefile.in config.status: creating doc/Makefile config.status: creating doc/img/Makefile config.status: creating docsrc/Makefile config.status: creating test/Makefile config.status: creating test/plugins-source/Makefile config.status: creating test/plugins-source/callbackcounter/Makefile config.status: creating test/plugins-source/symuser/Makefile config.status: creating test/plugins-source/symprovider/Makefile config.status: creating examples/Makefile config.status: creating examples/cpfile/Makefile config.status: creating examples/cpfile/cpfile config.status: creating examples/cpfile/plugins/Makefile config.status: creating examples/cpfile/plugins/core/Makefile config.status: creating examples/cpfile/plugins/special/Makefile config.status: creating examples/cpfile/plugins/extension/Makefile config.status: creating examples/cpfile/plugins/cext/Makefile config.status: creating config.h config.status: executing po-directories commands config.status: creating po/POTFILES config.status: creating po/Makefile config.status: executing depfiles commands config.status: executing libtool commands configure: ----------------------------------------------------------- configure: C-Pluff configuration configure: release version: 0.1.3 configure: multi-threading support: yes (Posix) configure: dlopening mechanism: dlopen configure: localization support: no configure: use GNU readline library: yes configure: assertion checks for debugging: no configure: file name separator character: '/' configure: compiler and linker settings: configure: CC='/usr/local/bin/ccache cc' configure: CPPFLAGS=' -I/usr/local/include -I$(top_builddir) -I$(top_builddir)/libcpluff -I$(top_srcdir)/libcpluff -DNDEBUG' configure: CFLAGS='-O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include' configure: LDFLAGS=' -L/usr/local/lib' configure: LIBS='' configure: LIBS_LIBCPLUFF='-lexpat ' configure: LIBS_OTHER='$(top_builddir)/libcpluff/libcpluff.la ' configure: LIB_READLINE='-lreadline' configure: LTLIBINTL='' configure: ----------------------------------------------------------- configure: Skipping configuration of submodule lib/gtest. configure: Skipping configuration of submodule pvr-addons. config.status: creating .dummy config.status: creating Makefile config.status: creating Makefile.include config.status: creating addons/skin.confluence/media/Makefile config.status: creating xbmc/Makefile config.status: creating xbmc/cdrip/Makefile config.status: creating xbmc/cores/Makefile config.status: creating xbmc/cores/VideoRenderers/Makefile config.status: creating xbmc/cores/dvdplayer/Makefile config.status: creating lib/Makefile config.status: creating lib/libdvd/Makefile config.status: creating xbmc/cores/DllLoader/Makefile config.status: creating xbmc/cores/DllLoader/exports/Makefile config.status: creating xbmc/cores/dvdplayer/DVDCodecs/Makefile config.status: creating xbmc/cores/dvdplayer/DVDCodecs/Audio/Makefile config.status: creating xbmc/cores/dvdplayer/DVDCodecs/Overlay/Makefile config.status: creating xbmc/cores/dvdplayer/DVDCodecs/Video/Makefile config.status: creating xbmc/cores/dvdplayer/DVDDemuxers/Makefile config.status: creating xbmc/cores/dvdplayer/DVDSubtitles/Makefile config.status: creating xbmc/cores/AudioEngine/Makefile config.status: creating xbmc/cores/paplayer/Makefile config.status: creating xbmc/cores/amlplayer/Makefile config.status: creating xbmc/cores/omxplayer/Makefile config.status: creating lib/timidity/Makefile config.status: creating lib/xbadpcm/Makefile config.status: creating lib/asap/Makefile config.status: creating lib/nosefart/Makefile config.status: creating lib/libsidplay2/Makefile config.status: creating lib/vgmstream/Makefile config.status: creating lib/snesapu/SNES/SNESAPU/Makefile config.status: creating lib/stsound/StSoundLibrary/Makefile config.status: creating xbmc/cores/playercorefactory/Makefile config.status: creating xbmc/music/karaoke/Makefile config.status: creating xbmc/osx/Makefile config.status: creating xbmc/guilib/Makefile config.status: creating xbmc/interfaces/Makefile config.status: creating xbmc/network/Makefile config.status: creating xbmc/network/upnp/Makefile config.status: creating lib/libRTV/Makefile config.status: creating lib/libexif/Makefile config.status: creating lib/libXDAAP/Makefile config.status: creating lib/cmyth/Makefile config.status: creating lib/libhdhomerun/Makefile config.status: creating lib/libsquish/Makefile config.status: creating lib/cximage-6.0/Makefile config.status: creating lib/addons/script.module.pil/Makefile config.status: creating lib/libUPnP/Makefile config.status: creating xbmc/DllPaths_generated.h config.status: creating xbmc/DllPaths_generated_android.h config.status: creating xbmc/freebsd/Makefile config.status: creating xbmc/linux/Makefile config.status: creating xbmc/filesystem/Makefile config.status: creating xbmc/screensavers/rsxs-0.9/xbmc/Makefile config.status: creating xbmc/visualizations/XBMCProjectM/Makefile config.status: creating xbmc/visualizations/Goom/Makefile config.status: creating xbmc/visualizations/OpenGLSpectrum/Makefile config.status: creating xbmc/visualizations/WaveForm/Makefile config.status: creating lib/addons/library.xbmc.addon/Makefile config.status: creating lib/addons/library.xbmc.gui/Makefile config.status: creating lib/addons/library.xbmc.pvr/Makefile config.status: creating xbmc/visualizations/EGLHelpers/Makefile config.status: creating tools/Linux/xbmc.sh config.status: creating tools/Linux/xbmc-standalone.sh config.status: creating tools/TexturePacker/Makefile config.status: creating tools/EventClients/Clients/OSXRemote/Makefile config.status: creating xbmc/peripherals/bus/Makefile config.status: creating xbmc/peripherals/devices/Makefile config.status: creating xbmc/android/activity/Makefile config.status: creating xbmc/android/loader/Makefile config.status: creating xbmc/main/Makefile config.status: creating xbmc/interfaces/python/Makefile config.status: creating xbmc/interfaces/python/test/Makefile config.status: creating xbmc/config.h config.status: executing depfiles commands config.status: executing libtool commands ------------------------ XBMC Configuration: ------------------------ Debugging: No Profiling: No Optimization: Yes SWIG Available: Yes JRE Available: Yes Doxygen Available: No Crosscomp.: No target ARCH: no target CPU: no OpenGL: Yes ALSA: No DBUS: Yes VDPAU: Yes VAAPI: No CrystalHD: No VDADecoder: No VTBDecoder: No OpenMax: No Joystick: Yes XRandR: Yes GOOM: No RSXS: Yes ProjectM: Yes Skin Touched: No X11: Yes Bluray: No TexturePacker:Yes MID Support: No ccache: Yes ALSA Support: No PulseAudio: Yes HAL Support: Yes DVDCSS: Yes Google Test Framework Configured: No Avahi: Yes Non-free: No ASAP Codec: No MySQL: Yes Webserver: Yes libssh support: Yes libRTMP support: Yes libsmbclient support: Yes libnfs client support:No libafpclient support: No AirPlay support: Yes AirTunes support: No UPnP support: Yes Optical drive: Yes libudev support: No libusb support: Yes libcec support: No libmp3lame support: Yes libvorbisenc support: Yes libcap support: No additional players: No External FFmpeg: No PVR add-ons: No prefix: /usr/local ------------------------ ====================================================================== ================================================= ===> Building for xbmc-12.0.r3_2 gmake -C xbmc/main gmake[1]: Entering directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/main' CPP xbmc/main/main.o AR xbmc/main/main.a gmake[1]: Leaving directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/main' CPP xbmc/cores/DllLoader/exports/emu_dummy.o CPP xbmc/cores/DllLoader/exports/emu_kernel32.o CPP xbmc/cores/DllLoader/exports/emu_msvcrt.o AR xbmc/cores/DllLoader/exports/exports.a CPP xbmc/cores/DllLoader/exports/util/EmuFileWrapper.o AR xbmc/cores/DllLoader/exports/util/exports_utils.a gmake -C xbmc/cores/DllLoader/exports wrapper.def gmake[1]: Entering directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/cores/DllLoader/exports' nm wrapper.o | grep __wrap | awk '{printf("%s ", $3);}' | sed "s/___wrap_/__wrap_/g" | sed "s/__wrap_/-Wl,-wrap,/g" > wrapper.def gmake[1]: Leaving directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/cores/DllLoader/exports' CPP xbmc/cores/DllLoader/coff.o CPP xbmc/cores/DllLoader/dll.o CPP xbmc/cores/DllLoader/DllLoader.o CPP xbmc/cores/DllLoader/DllLoaderContainer.o CPP xbmc/cores/DllLoader/dll_tracker.o CPP xbmc/cores/DllLoader/dll_tracker_file.o CPP xbmc/cores/DllLoader/dll_tracker_library.o CPP xbmc/cores/DllLoader/dll_util.o CPP xbmc/cores/DllLoader/LibraryLoader.o CPP xbmc/cores/DllLoader/SoLoader.o CC xbmc/cores/DllLoader/mmap_anon.o AR xbmc/cores/DllLoader/dllloader.a gmake -C lib gmake[1]: Entering directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib' gmake -C ffmpeg gmake[2]: Entering directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/ffmpeg' gmake[2]: Leaving directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/ffmpeg' gmake[2]: Entering directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/ffmpeg' CC libavdevice/alldevices.o CC libavdevice/avdevice.o CC libavformat/4xm.o CC libavformat/aacdec.o CC libavformat/ac3dec.o CC libavformat/act.o CC libavformat/adtsenc.o CC libavformat/adxdec.o CC libavformat/aea.o CC libavformat/aiffdec.o CC libavformat/allformats.o CC libavformat/amr.o CC libavformat/anm.o libavformat/anm.c: In function 'read_header': libavformat/anm.c:166: warning: null format string CC libavformat/apc.o CC libavformat/ape.o CC libavformat/apetag.o CC libavformat/applehttp.o CC libavformat/applehttpproto.o CC libavformat/asf.o CC libavformat/asfcrypt.o CC libavformat/asfdec.o CC libavformat/assdec.o CC libavformat/au.o CC libavformat/avidec.o CC libavformat/avio.o libavformat/avio.c: In function 'avio_enum_protocols': libavformat/avio.c:99: warning: initialization from incompatible pointer type libavformat/avio.c: In function 'url_set_interrupt_cb': libavformat/avio.c:275: warning: 'avio_set_interrupt_cb' is deprecated (declared at libavformat/avio.h:409) libavformat/avio.c: In function 'ffurl_write': libavformat/avio.c:392: warning: passing argument 2 of 'retry_transfer_wrapper' discards qualifiers from pointer target type libavformat/avio.c:392: warning: passing argument 2 of 'retry_transfer_wrapper' discards qualifiers from pointer target type CC libavformat/aviobuf.o libavformat/aviobuf.c: In function 'ffio_init_context': libavformat/aviobuf.c:93: warning: 'is_streamed' is deprecated (declared at libavformat/avio.h:101) libavformat/aviobuf.c: In function 'ffio_fdopen': libavformat/aviobuf.c:886: warning: passing argument 5 of 'avio_alloc_context' from incompatible pointer type libavformat/aviobuf.c:886: warning: passing argument 6 of 'avio_alloc_context' from incompatible pointer type libavformat/aviobuf.c:886: warning: passing argument 7 of 'avio_alloc_context' from incompatible pointer type libavformat/aviobuf.c:893: warning: 'is_streamed' is deprecated (declared at libavformat/avio.h:101) CC libavformat/avlanguage.o CC libavformat/avs.o CC libavformat/bethsoftvid.o CC libavformat/bfi.o CC libavformat/bink.o CC libavformat/bintext.o libavformat/bintext.c: In function 'init_stream': libavformat/bintext.c:112: warning: 'time_base' is deprecated (declared at libavformat/avformat.h:350) libavformat/bintext.c:115: warning: 'time_base' is deprecated (declared at libavformat/avformat.h:350) libavformat/bintext.c:115: warning: 'time_base' is deprecated (declared at libavformat/avformat.h:350) libavformat/bintext.c:119: warning: 'sample_rate' is deprecated (declared at libavformat/avformat.h:351) libavformat/bintext.c:119: warning: 'sample_rate' is deprecated (declared at libavformat/avformat.h:351) libavformat/bintext.c:119: warning: 'sample_rate' is deprecated (declared at libavformat/avformat.h:351) libavformat/bintext.c:119: warning: 'sample_rate' is deprecated (declared at libavformat/avformat.h:351) libavformat/bintext.c:121: warning: 'width' is deprecated (declared at libavformat/avformat.h:353) libavformat/bintext.c:121: warning: 'width' is deprecated (declared at libavformat/avformat.h:353) libavformat/bintext.c:122: warning: 'height' is deprecated (declared at libavformat/avformat.h:354) libavformat/bintext.c:122: warning: 'height' is deprecated (declared at libavformat/avformat.h:354) libavformat/bintext.c: In function 'bintext_read_header': libavformat/bintext.c:149: warning: 'width' is deprecated (declared at libavformat/avformat.h:353) libavformat/bintext.c:151: warning: 'height' is deprecated (declared at libavformat/avformat.h:354) libavformat/bintext.c: In function 'adf_read_header': libavformat/bintext.c:250: warning: 'height' is deprecated (declared at libavformat/avformat.h:354) libavformat/bintext.c: In function 'idf_read_header': libavformat/bintext.c:304: warning: 'height' is deprecated (declared at libavformat/avformat.h:354) CC libavformat/bit.o CC libavformat/bmv.o CC libavformat/c93.o CC libavformat/cache.o libavformat/cache.c: In function 'cache_open': libavformat/cache.c:59: warning: passing argument 2 of 'av_tempfile' from incompatible pointer type CC libavformat/caf.o CC libavformat/cafdec.o CC libavformat/cavsvideodec.o CC libavformat/cdg.o CC libavformat/concat.o CC libavformat/crypto.o CC libavformat/cutils.o CC libavformat/daud.o libavformat/daud.c:51: warning: 'daud_write_header' defined but not used libavformat/daud.c:59: warning: 'daud_write_packet' defined but not used CC libavformat/dfa.o CC libavformat/diracdec.o CC libavformat/dnxhddec.o CC libavformat/dsicin.o CC libavformat/dtsdec.o CC libavformat/dv.o CC libavformat/dxa.o CC libavformat/eacdata.o CC libavformat/electronicarts.o CC libavformat/ffmdec.o libavformat/ffmdec.c: In function 'ffm_read_data': libavformat/ffmdec.c:127: warning: 'url_setbufsize' is deprecated (declared at libavformat/avio.h:331) libavformat/ffmdec.c: In function 'ffm_read_header': libavformat/ffmdec.c:353: warning: 'partitions' is deprecated (declared at ./libavcodec/avcodec.h:2780) libavformat/ffmdec.c:363: warning: 'directpred' is deprecated (declared at ./libavcodec/avcodec.h:2792) CC libavformat/ffmetadec.o CC libavformat/file.o CC libavformat/filmstripdec.o CC libavformat/flacdec.o CC libavformat/flic.o CC libavformat/flvdec.o CC libavformat/g723_1.o CC libavformat/g729dec.o CC libavformat/gopher.o libavformat/gopher.c: In function 'gopher_open': libavformat/gopher.c:93: warning: null format string CC libavformat/gsmdec.o CC libavformat/gxf.o CC libavformat/h261dec.o CC libavformat/h263dec.o CC libavformat/h264dec.o CC libavformat/http.o libavformat/http.c: In function 'http_open_cnx': libavformat/http.c:114: warning: null format string libavformat/http.c:140: warning: null format string libavformat/http.c: In function 'http_proxy_open': libavformat/http.c:613: warning: null format string libavformat/http.c:619: warning: null format string CC libavformat/httpauth.o CC libavformat/icodec.o CC libavformat/id3v1.o CC libavformat/id3v2.o libavformat/id3v2.c: In function 'read_ttag': libavformat/id3v2.c:259: warning: assignment discards qualifiers from pointer target type CC libavformat/idcin.o CC libavformat/idroqdec.o CC libavformat/iff.o CC libavformat/img2.o libavformat/img2.c: In function 'read_header': libavformat/img2.c:244: warning: 'loop_input' is deprecated (declared at libavformat/avformat.h:1078) libavformat/img2.c:245: warning: 'loop_input' is deprecated (declared at libavformat/avformat.h:1078) CC libavformat/ingenientdec.o CC libavformat/ipmovie.o CC libavformat/isom.o CC libavformat/iss.o CC libavformat/iv8.o CC libavformat/ivfdec.o CC libavformat/jvdec.o CC libavformat/lmlm4.o CC libavformat/loasdec.o CC libavformat/lxfdec.o CC libavformat/m4vdec.o CC libavformat/matroska.o CC libavformat/matroskadec.o CC libavformat/md5proto.o CC libavformat/metadata.o CC libavformat/microdvddec.o CC libavformat/mm.o CC libavformat/mmf.o CC libavformat/mms.o CC libavformat/mmsh.o CC libavformat/mmst.o libavformat/mmst.c: In function 'mms_open': libavformat/mmst.c:521: warning: null format string CC libavformat/mov.o libavformat/mov.c:2484: warning: 'mov_read_chan2' defined but not used CC libavformat/mov_chan.o CC libavformat/mp3dec.o CC libavformat/mpc.o CC libavformat/mpc8.o CC libavformat/mpeg.o CC libavformat/mpegts.o libavformat/mpegts.c: In function 'init_MP4DescrParseContext': libavformat/mpegts.c:1021: warning: cast discards qualifiers from pointer target type libavformat/mpegts.c: In function 'mpegts_read_header': libavformat/mpegts.c:2018: warning: 'url_is_streamed' is deprecated (declared at libavformat/avio.h:363) libavformat/mpegts.c: At top level: libavformat/mpegts.c:2199: warning: 'mpegts_get_dts' defined but not used CC libavformat/mpegvideodec.o CC libavformat/msnwc_tcp.o CC libavformat/mtv.o CC libavformat/mvi.o CC libavformat/mxf.o CC libavformat/mxfdec.o CC libavformat/mxg.o CC libavformat/ncdec.o CC libavformat/network.o CC libavformat/nsvdec.o CC libavformat/nut.o CC libavformat/nutdec.o libavformat/nutdec.c: In function 'decode_main_header': libavformat/nutdec.c:278: warning: passing argument 2 of 'avio_read' discards qualifiers from pointer target type CC libavformat/nuv.o CC libavformat/oggdec.o CC libavformat/oggparsecelt.o CC libavformat/oggparsedirac.o CC libavformat/oggparseflac.o CC libavformat/oggparseogm.o CC libavformat/oggparseskeleton.o CC libavformat/oggparsespeex.o CC libavformat/oggparsetheora.o CC libavformat/oggparsevorbis.o CC libavformat/oma.o CC libavformat/omadec.o CC libavformat/options.o libavformat/options.c:92: warning: 'mux_rate' is deprecated (declared at libavformat/avformat.h:1038) CC libavformat/os_support.o CC libavformat/pcm.o CC libavformat/pcmdec.o CC libavformat/pmpdec.o CC libavformat/psxstr.o CC libavformat/pva.o CC libavformat/qcp.o CC libavformat/r3d.o CC libavformat/rawdec.o CC libavformat/rawvideodec.o CC libavformat/rdt.o libavformat/rdt.c: In function 'rdt_parse_packet': libavformat/rdt.c:304: warning: passing argument 2 of 'ffio_init_context' discards qualifiers from pointer target type CC libavformat/riff.o CC libavformat/rl2.o CC libavformat/rm.o CC libavformat/rmdec.o libavformat/rmdec.c: In function 'rm_read_index': libavformat/rmdec.c:384: warning: format '%d' expects type 'int', but argument 7 has type 'int64_t' libavformat/rmdec.c: In function 'ff_rm_parse_packet': libavformat/rmdec.c:619: warning: 'seq' may be used uninitialized in this function libavformat/rmdec.c:619: note: 'seq' was declared here libavformat/rmdec.c:619: warning: 'pos' may be used uninitialized in this function libavformat/rmdec.c:619: note: 'pos' was declared here libavformat/rmdec.c:619: warning: 'len2' may be used uninitialized in this function libavformat/rmdec.c:619: note: 'len2' was declared here libavformat/rmdec.c:619: warning: 'pic_num' may be used uninitialized in this function libavformat/rmdec.c:619: note: 'pic_num' was declared here libavformat/rmdec.c: In function 'rm_read_packet': libavformat/rmdec.c:860: warning: 'st' may be used uninitialized in this function CC libavformat/rpl.o CC libavformat/rso.o CC libavformat/rsodec.o CC libavformat/rtmppkt.o CC libavformat/rtmpproto.o libavformat/rtmpproto.c: In function 'get_packet': libavformat/rtmpproto.c:754: warning: assignment discards qualifiers from pointer target type libavformat/rtmpproto.c: In function 'rtmp_open': libavformat/rtmpproto.c:816: warning: null format string CC libavformat/rtp.o CC libavformat/rtpdec.o CC libavformat/rtpdec_amr.o CC libavformat/rtpdec_asf.o libavformat/rtpdec_asf.c: In function 'asfrtp_parse_packet': libavformat/rtpdec_asf.c:183: warning: passing argument 2 of 'ffio_init_context' discards qualifiers from pointer target type CC libavformat/rtpdec_g726.o CC libavformat/rtpdec_h263.o CC libavformat/rtpdec_h264.o CC libavformat/rtpdec_latm.o CC libavformat/rtpdec_mpeg4.o CC libavformat/rtpdec_qcelp.o CC libavformat/rtpdec_qdm2.o CC libavformat/rtpdec_qt.o libavformat/rtpdec_qt.c: In function 'qt_rtp_parse_packet': libavformat/rtpdec_qt.c:74: warning: passing argument 2 of 'ffio_init_context' discards qualifiers from pointer target type CC libavformat/rtpdec_svq3.o CC libavformat/rtpdec_vp8.o CC libavformat/rtpdec_xiph.o CC libavformat/rtpproto.o libavformat/rtpproto.c: In function 'build_udp_url': libavformat/rtpproto.c:109: warning: null format string CC libavformat/rtsp.o libavformat/rtsp.c: In function 'rtsp_parse_range': libavformat/rtsp.c:639: warning: cast discards qualifiers from pointer target type libavformat/rtsp.c:643: warning: cast discards qualifiers from pointer target type libavformat/rtsp.c: In function 'rtsp_parse_transport': libavformat/rtsp.c:728: warning: cast discards qualifiers from pointer target type libavformat/rtsp.c: In function 'ff_rtsp_connect': libavformat/rtsp.c:1582: warning: null format string libavformat/rtsp.c:1404: warning: 'err' may be used uninitialized in this function CC libavformat/rtspdec.o CC libavformat/sapdec.o CC libavformat/sauce.o CC libavformat/sbgdec.o libavformat/sbgdec.c:1477:5: warning: "FF_API_READ_SEEK" is not defined libavformat/sbgdec.c:1512:5: warning: "FF_API_READ_SEEK" is not defined libavformat/sbgdec.c: In function 'parse_time_sequence': libavformat/sbgdec.c:491: warning: 'f.slide' may be used uninitialized in this function libavformat/sbgdec.c:491: note: 'f.slide' was declared here CC libavformat/sdp.o CC libavformat/seek.o CC libavformat/segafilm.o CC libavformat/sierravmd.o CC libavformat/siff.o CC libavformat/smacker.o CC libavformat/smjpeg.o CC libavformat/smjpegdec.o CC libavformat/sol.o CC libavformat/soxdec.o CC libavformat/spdif.o CC libavformat/spdifdec.o CC libavformat/spdifenc.o libavformat/spdifenc.c: In function 'spdif_header_truehd': libavformat/spdifenc.c:417: warning: null format string CC libavformat/srtdec.o CC libavformat/swfdec.o CC libavformat/tcp.o CC libavformat/thp.o CC libavformat/tiertexseq.o CC libavformat/tmv.o CC libavformat/tta.o CC libavformat/tty.o CC libavformat/txd.o CC libavformat/udp.o CC libavformat/utils.o libavformat/utils.c: In function 'convert_format_parameters': libavformat/utils.c:457: warning: 'time_base' is deprecated (declared at libavformat/avformat.h:350) libavformat/utils.c:457: warning: 'time_base' is deprecated (declared at libavformat/avformat.h:350) libavformat/utils.c:457: warning: 'time_base' is deprecated (declared at libavformat/avformat.h:350) libavformat/utils.c:457: warning: 'sample_rate' is deprecated (declared at libavformat/avformat.h:351) libavformat/utils.c:457: warning: 'sample_rate' is deprecated (declared at libavformat/avformat.h:351) libavformat/utils.c:457: warning: 'channels' is deprecated (declared at libavformat/avformat.h:352) libavformat/utils.c:457: warning: 'channels' is deprecated (declared at libavformat/avformat.h:352) libavformat/utils.c:457: warning: 'width' is deprecated (declared at libavformat/avformat.h:353) libavformat/utils.c:457: warning: 'height' is deprecated (declared at libavformat/avformat.h:354) libavformat/utils.c:457: warning: 'width' is deprecated (declared at libavformat/avformat.h:353) libavformat/utils.c:457: warning: 'height' is deprecated (declared at libavformat/avformat.h:354) libavformat/utils.c:457: warning: 'pix_fmt' is deprecated (declared at libavformat/avformat.h:355) libavformat/utils.c:457: warning: 'pix_fmt' is deprecated (declared at libavformat/avformat.h:355) libavformat/utils.c:457: warning: 'channel' is deprecated (declared at libavformat/avformat.h:356) libavformat/utils.c:457: warning: 'channel' is deprecated (declared at libavformat/avformat.h:356) libavformat/utils.c:457: warning: 'standard' is deprecated (declared at libavformat/avformat.h:357) libavformat/utils.c:457: warning: 'standard' is deprecated (declared at libavformat/avformat.h:357) libavformat/utils.c:457: warning: 'mpeg2ts_compute_pcr' is deprecated (declared at libavformat/avformat.h:360) libavformat/utils.c:457: warning: 'initial_pause' is deprecated (declared at libavformat/avformat.h:361) libavformat/utils.c: In function 'av_open_input_stream': libavformat/utils.c:512: warning: 'prealloced_context' is deprecated (declared at libavformat/avformat.h:363) libavformat/utils.c: In function 'av_open_input_file': libavformat/utils.c:641: warning: 'prealloced_context' is deprecated (declared at libavformat/avformat.h:363) libavformat/utils.c: In function 'av_estimate_timings_from_pts2': libavformat/utils.c:2205: warning: 'url_fsize' is deprecated (declared at libavformat/avio.h:328) CC libavformat/vc1test.o CC libavformat/voc.o CC libavformat/vocdec.o CC libavformat/vorbiscomment.o CC libavformat/vqf.o CC libavformat/wav.o CC libavformat/wc3movie.o CC libavformat/westwood_aud.o CC libavformat/westwood_vqa.o CC libavformat/wtv.o CC libavformat/wtvdec.o CC libavformat/wv.o CC libavformat/xa.o CC libavformat/xmv.o CC libavformat/xwma.o libavformat/xwma.c: In function 'xwma_read_header': libavformat/xwma.c:90: warning: null format string libavformat/xwma.c:106: warning: null format string CC libavformat/yop.o CC libavformat/yuv4mpeg.o CC libavcodec/4xm.o CC libavcodec/8bps.o CC libavcodec/8svx.o CC libavcodec/aac_ac3_parser.o CC libavcodec/aac_adtstoasc_bsf.o libavcodec/aac_adtstoasc_bsf.c: In function 'aac_adtstoasc_filter': libavcodec/aac_adtstoasc_bsf.c:51: warning: cast discards qualifiers from pointer target type libavcodec/aac_adtstoasc_bsf.c:104: warning: cast discards qualifiers from pointer target type CC libavcodec/aac_parser.o CC libavcodec/aacadtsdec.o CC libavcodec/aaccoder.o CC libavcodec/aacdec.o libavcodec/aacdec.c: In function 'aac_decode_frame_int': libavcodec/aacdec.c:2175: warning: missing braces around initializer libavcodec/aacdec.c:2175: warning: (near initialization for 'new_che_pos[0]') CC libavcodec/aacenc.o CC libavcodec/aacps.o libavcodec/aacps.c: In function 'hybrid_analysis': libavcodec/aacps.c:369: warning: passing argument 3 of 'hybrid4_8_12_cx' from incompatible pointer type libavcodec/aacps.c:370: warning: passing argument 3 of 'hybrid4_8_12_cx' from incompatible pointer type libavcodec/aacps.c:371: warning: passing argument 3 of 'hybrid4_8_12_cx' from incompatible pointer type libavcodec/aacps.c:372: warning: passing argument 3 of 'hybrid4_8_12_cx' from incompatible pointer type libavcodec/aacps.c:373: warning: passing argument 3 of 'hybrid4_8_12_cx' from incompatible pointer type libavcodec/aacps.c:381: warning: passing argument 3 of 'hybrid6_cx' from incompatible pointer type libavcodec/aacps.c: In function 'stereo_processing': libavcodec/aacps.c:813: warning: initialization from incompatible pointer type libavcodec/aacps.c: In function 'ff_ps_apply': libavcodec/aacps.c:989: warning: passing argument 3 of 'decorrelation' from incompatible pointer type libavcodec/aacps.c:369: warning: passing argument 3 of 'hybrid4_8_12_cx' from incompatible pointer type libavcodec/aacps.c:370: warning: passing argument 3 of 'hybrid4_8_12_cx' from incompatible pointer type libavcodec/aacps.c:371: warning: passing argument 3 of 'hybrid4_8_12_cx' from incompatible pointer type libavcodec/aacps.c:372: warning: passing argument 3 of 'hybrid4_8_12_cx' from incompatible pointer type libavcodec/aacps.c:373: warning: passing argument 3 of 'hybrid4_8_12_cx' from incompatible pointer type libavcodec/aacps.c:381: warning: passing argument 3 of 'hybrid6_cx' from incompatible pointer type libavcodec/aacps.c:989: warning: passing argument 3 of 'decorrelation' from incompatible pointer type libavcodec/aacps.c:911: warning: 'h22i_step' may be used uninitialized in this function libavcodec/aacps.c:911: note: 'h22i_step' was declared here libavcodec/aacps.c:911: warning: 'h21i_step' may be used uninitialized in this function libavcodec/aacps.c:911: note: 'h21i_step' was declared here libavcodec/aacps.c:911: warning: 'h12i_step' may be used uninitialized in this function libavcodec/aacps.c:911: note: 'h12i_step' was declared here libavcodec/aacps.c:911: warning: 'h11i_step' may be used uninitialized in this function libavcodec/aacps.c:911: note: 'h11i_step' was declared here libavcodec/aacps.c:909: warning: 'h22i' may be used uninitialized in this function libavcodec/aacps.c:909: note: 'h22i' was declared here libavcodec/aacps.c:909: warning: 'h21i' may be used uninitialized in this function libavcodec/aacps.c:909: note: 'h21i' was declared here libavcodec/aacps.c:909: warning: 'h12i' may be used uninitialized in this function libavcodec/aacps.c:909: note: 'h12i' was declared here libavcodec/aacps.c:909: warning: 'h11i' may be used uninitialized in this function libavcodec/aacps.c:909: note: 'h11i' was declared here CC libavcodec/aacpsy.o libavcodec/aacpsy.c: In function 'psy_3gpp_analyze': libavcodec/aacpsy.c:567: warning: 'reduction' may be used uninitialized in this function libavcodec/aacpsy.c:567: note: 'reduction' was declared here CC libavcodec/aacsbr.o libavcodec/aacsbr.c: In function 'ff_sbr_apply': libavcodec/aacsbr.c:1734: warning: passing argument 4 of 'sbr_lf_gen' from incompatible pointer type libavcodec/aacsbr.c:1736: warning: passing argument 3 of 'sbr_hf_inverse_filter' from incompatible pointer type libavcodec/aacsbr.c:1740: warning: passing argument 4 of 'sbr_hf_gen' from incompatible pointer type libavcodec/aacsbr.c:1740: warning: passing argument 5 of 'sbr_hf_gen' from incompatible pointer type libavcodec/aacsbr.c:1740: warning: passing argument 6 of 'sbr_hf_gen' from incompatible pointer type libavcodec/aacsbr.c:1747: warning: passing argument 2 of 'sbr_hf_assemble' from incompatible pointer type libavcodec/aacsbr.c:1751: warning: passing argument 3 of 'sbr_x_gen' from incompatible pointer type libavcodec/aacsbr.c:1751: warning: passing argument 4 of 'sbr_x_gen' from incompatible pointer type libavcodec/aacsbr.c: In function 'ff_decode_sbr_extension': libavcodec/aacsbr.c:317: warning: 'max_qmf_subbands' may be used uninitialized in this function libavcodec/aacsbr.c:317: note: 'max_qmf_subbands' was declared here CC libavcodec/aactab.o CC libavcodec/aandcttab.o CC libavcodec/aasc.o CC libavcodec/ac3.o CC libavcodec/ac3_parser.o CC libavcodec/ac3dec.o libavcodec/ac3dec.c: In function 'ac3_decode_init': libavcodec/ac3dec.c:166: warning: 'drc_scale' is deprecated (declared at libavcodec/avcodec.h:2905) libavcodec/ac3dec.c:167: warning: 'drc_scale' is deprecated (declared at libavcodec/avcodec.h:2905) CC libavcodec/ac3dec_data.o CC libavcodec/ac3dsp.o CC libavcodec/ac3enc.o libavcodec/ac3enc.c: In function 'ff_ac3_apply_rematrixing': libavcodec/ac3enc.c:276: warning: 'flags' may be used uninitialized in this function CC libavcodec/ac3enc_float.o CC libavcodec/ac3tab.o CC libavcodec/acelp_filters.o CC libavcodec/acelp_pitch_delay.o CC libavcodec/acelp_vectors.o CC libavcodec/adpcm.o libavcodec/adpcm.c: In function 'adpcm_decode_frame': libavcodec/adpcm.c:473: warning: 'samples_per_byte' may be used uninitialized in this function libavcodec/adpcm.c:473: note: 'samples_per_byte' was declared here CC libavcodec/adpcm_data.o CC libavcodec/adx.o CC libavcodec/adx_parser.o CC libavcodec/adxdec.o CC libavcodec/alac.o CC libavcodec/allcodecs.o CC libavcodec/alsdec.o CC libavcodec/amrnbdec.o CC libavcodec/amrwbdec.o CC libavcodec/anm.o CC libavcodec/ansi.o libavcodec/ansi.c: In function 'decode_frame': libavcodec/ansi.c:162: warning: 'height' may be used uninitialized in this function libavcodec/ansi.c:162: note: 'height' was declared here libavcodec/ansi.c:162: warning: 'width' may be used uninitialized in this function libavcodec/ansi.c:162: note: 'width' was declared here CC libavcodec/apedec.o CC libavcodec/ass.o CC libavcodec/ass_split.o CC libavcodec/assdec.o CC libavcodec/asv1.o CC libavcodec/atrac.o CC libavcodec/atrac1.o CC libavcodec/atrac3.o CC libavcodec/audioconvert.o CC libavcodec/aura.o CC libavcodec/avfft.o CC libavcodec/avpacket.o libavcodec/avpacket.c: In function 'av_dup_packet': libavcodec/avpacket.c:130: warning: 'av_destruct_packet_nofree' is deprecated (declared at libavcodec/avpacket.c:28) CC libavcodec/avs.o libavcodec/avs.c: In function 'avs_decode_frame': libavcodec/avs.c:60: warning: 'change_map.buffer' may be used uninitialized in this function libavcodec/avs.c:60: warning: 'change_map.size_in_bits_plus8' may be used uninitialized in this function CC libavcodec/bethsoftvideo.o CC libavcodec/bfi.o CC libavcodec/bgmc.o CC libavcodec/bink.o libavcodec/bink.c: In function 'binkb_decode_plane': libavcodec/bink.c:860: warning: passing argument 4 of 'read_dct_coeffs' from incompatible pointer type libavcodec/bink.c:893: warning: passing argument 4 of 'read_dct_coeffs' from incompatible pointer type CC libavcodec/binkaudio.o CC libavcodec/binkdsp.o CC libavcodec/bintext.o libavcodec/bintext.c:93: warning: 'hscroll' defined but not used CC libavcodec/bitstream.o CC libavcodec/bitstream_filter.o libavcodec/bitstream_filter.c: In function 'av_bitstream_filter_filter': libavcodec/bitstream_filter.c:62: warning: cast discards qualifiers from pointer target type CC libavcodec/bmp.o libavcodec/bmp.c: In function 'bmp_decode_frame': libavcodec/bmp.c:51: warning: 'rgb[0]' may be used uninitialized in this function libavcodec/bmp.c:51: warning: 'rgb[1]' may be used uninitialized in this function libavcodec/bmp.c:51: warning: 'rgb[2]' may be used uninitialized in this function CC libavcodec/bmv.o CC libavcodec/c93.o CC libavcodec/cabac.o CC libavcodec/cavs.o CC libavcodec/cavs_parser.o CC libavcodec/cavsdec.o CC libavcodec/cavsdsp.o CC libavcodec/cdgraphics.o CC libavcodec/celp_filters.o CC libavcodec/celp_math.o CC libavcodec/cga_data.o CC libavcodec/chomp_bsf.o libavcodec/chomp_bsf.c: In function 'chomp_filter': libavcodec/chomp_bsf.c:34: warning: cast discards qualifiers from pointer target type CC libavcodec/cinepak.o CC libavcodec/cljr.o CC libavcodec/cook.o CC libavcodec/cscd.o CC libavcodec/cyuv.o CC libavcodec/dca.o CC libavcodec/dca_parser.o CC libavcodec/dcadsp.o CC libavcodec/dct.o CC libavcodec/dct32_fixed.o CC libavcodec/dct32_float.o CC libavcodec/dfa.o CC libavcodec/dirac.o CC libavcodec/dirac_arith.o CC libavcodec/dirac_parser.o CC libavcodec/diracdec.o CC libavcodec/diracdsp.o CC libavcodec/dnxhd_parser.o CC libavcodec/dnxhddata.o CC libavcodec/dnxhddec.o CC libavcodec/dpcm.o CC libavcodec/dpx.o CC libavcodec/dsicinav.o CC libavcodec/dsputil.o CC libavcodec/dump_extradata_bsf.o CC libavcodec/dv.o libavcodec/dv.c: In function 'dvvideo_decode_frame': libavcodec/dv.c:1097: warning: assignment discards qualifiers from pointer target type libavcodec/dv.c: At top level: libavcodec/dv.c:351: warning: 'dvvideo_init_encoder' defined but not used libavcodec/dv.c:931: warning: 'dv_encode_video_segment' defined but not used CC libavcodec/dvbsub_parser.o CC libavcodec/dvbsubdec.o CC libavcodec/dvdata.o CC libavcodec/dvdsub_parser.o CC libavcodec/dvdsubdec.o CC libavcodec/dwt.o libavcodec/dwt.c: In function 'spatial_compose_dd97i_dy': libavcodec/dwt.c:1080: warning: initialization from incompatible pointer type libavcodec/dwt.c:1081: warning: initialization from incompatible pointer type libavcodec/dwt.c: In function 'spatial_compose_dirac53i_dy': libavcodec/dwt.c:1104: warning: initialization from incompatible pointer type libavcodec/dwt.c:1105: warning: initialization from incompatible pointer type libavcodec/dwt.c: In function 'spatial_compose_dd137i_dy': libavcodec/dwt.c:1127: warning: initialization from incompatible pointer type libavcodec/dwt.c:1128: warning: initialization from incompatible pointer type libavcodec/dwt.c: In function 'spatial_compose_haari_dy': libavcodec/dwt.c:1152: warning: initialization from incompatible pointer type libavcodec/dwt.c: In function 'spatial_compose_fidelity': libavcodec/dwt.c:1168: warning: initialization from incompatible pointer type libavcodec/dwt.c:1169: warning: initialization from incompatible pointer type libavcodec/dwt.c: In function 'spatial_compose_daub97i_dy': libavcodec/dwt.c:1193: warning: initialization from incompatible pointer type libavcodec/dwt.c:1194: warning: initialization from incompatible pointer type libavcodec/dwt.c:1195: warning: initialization from incompatible pointer type libavcodec/dwt.c:1196: warning: initialization from incompatible pointer type libavcodec/dwt.c: In function 'ff_spatial_idwt_init2': libavcodec/dwt.c:1303: warning: assignment from incompatible pointer type libavcodec/dwt.c:1304: warning: assignment from incompatible pointer type libavcodec/dwt.c:1310: warning: assignment from incompatible pointer type libavcodec/dwt.c:1311: warning: assignment from incompatible pointer type libavcodec/dwt.c:1317: warning: assignment from incompatible pointer type libavcodec/dwt.c:1318: warning: assignment from incompatible pointer type libavcodec/dwt.c:1325: warning: assignment from incompatible pointer type libavcodec/dwt.c:1334: warning: assignment from incompatible pointer type libavcodec/dwt.c:1335: warning: assignment from incompatible pointer type libavcodec/dwt.c:1340: warning: assignment from incompatible pointer type libavcodec/dwt.c:1341: warning: assignment from incompatible pointer type libavcodec/dwt.c:1342: warning: assignment from incompatible pointer type libavcodec/dwt.c:1343: warning: assignment from incompatible pointer type CC libavcodec/dxa.o CC libavcodec/dxtory.o CC libavcodec/eac3_data.o CC libavcodec/eac3dec.o CC libavcodec/eacmv.o CC libavcodec/eaidct.o CC libavcodec/eamad.o libavcodec/eamad.c: In function 'decode_frame': libavcodec/eamad.c:198: warning: 'mv_y' may be used uninitialized in this function libavcodec/eamad.c:198: note: 'mv_y' was declared here libavcodec/eamad.c:198: warning: 'mv_x' may be used uninitialized in this function libavcodec/eamad.c:198: note: 'mv_x' was declared here CC libavcodec/eatgq.o CC libavcodec/eatgv.o CC libavcodec/eatqi.o CC libavcodec/error_resilience.o CC libavcodec/escape124.o CC libavcodec/escape130.o CC libavcodec/faandct.o CC libavcodec/faanidct.o CC libavcodec/faxcompr.o CC libavcodec/fft_fixed.o CC libavcodec/fft_float.o CC libavcodec/ffv1.o libavcodec/ffv1.c:238: warning: 'find_best_state' defined but not used libavcodec/ffv1.c:327: warning: 'put_symbol' defined but not used libavcodec/ffv1.c: In function 'decode_frame': libavcodec/ffv1.c:1544: warning: 'context_count' may be used uninitialized in this function libavcodec/ffv1.c:1544: note: 'context_count' was declared here CC libavcodec/ffwavesynth.o CC libavcodec/flac.o CC libavcodec/flac_parser.o libavcodec/flac_parser.c: In function 'flac_parse': libavcodec/flac_parser.c:572: warning: cast discards qualifiers from pointer target type CC libavcodec/flacdata.o CC libavcodec/flacdec.o CC libavcodec/flashsv.o CC libavcodec/flicvideo.o CC libavcodec/flvdec.o CC libavcodec/fmtconvert.o CC libavcodec/fraps.o CC libavcodec/frwu.o CC libavcodec/g722.o CC libavcodec/g722dec.o CC libavcodec/g723_1.o CC libavcodec/g726.o CC libavcodec/g729dec.o libavcodec/g729dec.c: In function 'decode_frame': libavcodec/g729dec.c:423: warning: assignment from incompatible pointer type CC libavcodec/g729postfilter.o CC libavcodec/gifdec.o CC libavcodec/golomb.o CC libavcodec/gsm_parser.o CC libavcodec/gsmdec.o CC libavcodec/gsmdec_data.o CC libavcodec/h261.o CC libavcodec/h261_parser.o CC libavcodec/h261dec.o CC libavcodec/h263.o CC libavcodec/h263_parser.o CC libavcodec/h263dec.o CC libavcodec/h264.o libavcodec/h264.c: In function 'fill_filter_caches_inter': libavcodec/h264.c:3282: warning: initialization from incompatible pointer type libavcodec/h264.c:3297: warning: initialization from incompatible pointer type libavcodec/h264.c:3330: warning: initialization from incompatible pointer type libavcodec/h264.c: In function 'decode_slice': libavcodec/h264.c:3632: warning: format '%d' expects type 'int', but argument 6 has type 'long int' libavcodec/h264.c: In function 'decode_frame': libavcodec/h264.c:4078: warning: initialization discards qualifiers from pointer target type libavcodec/h264.c: In function 'decode_nal_units': libavcodec/h264.c:3766: warning: 'context_count' may be used uninitialized in this function libavcodec/h264.c:3765: warning: 'buf_index' may be used uninitialized in this function CC libavcodec/h264_cabac.o CC libavcodec/h264_cavlc.o CC libavcodec/h264_direct.o libavcodec/h264_direct.c: In function 'pred_spatial_direct_motion': libavcodec/h264_direct.c:292: warning: assignment from incompatible pointer type libavcodec/h264_direct.c:293: warning: assignment from incompatible pointer type libavcodec/h264_direct.c: In function 'pred_temp_direct_motion': libavcodec/h264_direct.c:483: warning: assignment from incompatible pointer type libavcodec/h264_direct.c:484: warning: assignment from incompatible pointer type CC libavcodec/h264_loopfilter.o CC libavcodec/h264_mp4toannexb_bsf.o libavcodec/h264_mp4toannexb_bsf.c: In function 'h264_mp4toannexb_filter': libavcodec/h264_mp4toannexb_bsf.c:70: warning: cast discards qualifiers from pointer target type CC libavcodec/h264_parser.o CC libavcodec/h264_ps.o CC libavcodec/h264_refs.o CC libavcodec/h264_sei.o CC libavcodec/h264dsp.o CC libavcodec/h264idct.o CC libavcodec/h264pred.o CC libavcodec/huffman.o CC libavcodec/huffyuv.o CC libavcodec/idcinvideo.o CC libavcodec/iff.o CC libavcodec/iirfilter.o CC libavcodec/imc.o CC libavcodec/imgconvert.o libavcodec/imgconvert.c: In function 'av_picture_copy': libavcodec/imgconvert.c:535: warning: passing argument 3 of 'av_image_copy' from incompatible pointer type CC libavcodec/imx_dump_header_bsf.o CC libavcodec/indeo2.o CC libavcodec/indeo3.o CC libavcodec/indeo4.o CC libavcodec/indeo5.o CC libavcodec/intelh263dec.o CC libavcodec/interplayvideo.o CC libavcodec/intrax8.o CC libavcodec/intrax8dsp.o CC libavcodec/inverse.o CC libavcodec/ituh263dec.o CC libavcodec/ivi_common.o libavcodec/ivi_common.c: In function 'ff_ivi_decode_blocks': libavcodec/ivi_common.c:338: warning: 'sym' may be used uninitialized in this function libavcodec/ivi_common.c:335: warning: 'mv_y' may be used uninitialized in this function libavcodec/ivi_common.c:335: warning: 'mv_x' may be used uninitialized in this function libavcodec/ivi_common.c:335: warning: 'mc_type' may be used uninitialized in this function CC libavcodec/ivi_dsp.o libavcodec/ivi_dsp.c: In function 'ff_ivi_recompose53': libavcodec/ivi_dsp.c:41: warning: 'b3_9' may be used uninitialized in this function libavcodec/ivi_dsp.c:41: warning: 'b3_8' may be used uninitialized in this function libavcodec/ivi_dsp.c:41: warning: 'b3_6' may be used uninitialized in this function libavcodec/ivi_dsp.c:41: warning: 'b3_5' may be used uninitialized in this function libavcodec/ivi_dsp.c:41: warning: 'b3_3' may be used uninitialized in this function libavcodec/ivi_dsp.c:41: warning: 'b3_2' may be used uninitialized in this function libavcodec/ivi_dsp.c:40: warning: 'b2_6' may be used uninitialized in this function libavcodec/ivi_dsp.c:40: warning: 'b2_5' may be used uninitialized in this function libavcodec/ivi_dsp.c:40: warning: 'b2_3' may be used uninitialized in this function libavcodec/ivi_dsp.c:40: warning: 'b2_2' may be used uninitialized in this function libavcodec/ivi_dsp.c:40: warning: 'b1_3' may be used uninitialized in this function libavcodec/ivi_dsp.c:40: warning: 'b1_2' may be used uninitialized in this function libavcodec/ivi_dsp.c:40: warning: 'b1_1' may be used uninitialized in this function libavcodec/ivi_dsp.c:40: warning: 'b0_2' may be used uninitialized in this function libavcodec/ivi_dsp.c:40: warning: 'b0_1' may be used uninitialized in this function CC libavcodec/j2k.o CC libavcodec/j2k_dwt.o CC libavcodec/j2kdec.o libavcodec/j2kdec.c: In function 'decode_tile': libavcodec/j2kdec.c:877: warning: assignment from incompatible pointer type CC libavcodec/jfdctfst.o CC libavcodec/jfdctint.o CC libavcodec/jpegls.o CC libavcodec/jpeglsdec.o CC libavcodec/jrevdct.o CC libavcodec/jvdec.o CC libavcodec/kbdwin.o CC libavcodec/kgv1dec.o CC libavcodec/kmvc.o CC libavcodec/lagarith.o CC libavcodec/lagarithrac.o CC libavcodec/latm_parser.o CC libavcodec/lcldec.o libavcodec/lcldec.c: In function 'zlib_decomp': libavcodec/lcldec.c:142: warning: assignment discards qualifiers from pointer target type libavcodec/lcldec.c: In function 'decode_frame': libavcodec/lcldec.c:171: warning: cast discards qualifiers from pointer target type CC libavcodec/loco.o CC libavcodec/lsp.o CC libavcodec/lzw.o CC libavcodec/mace.o CC libavcodec/mdct_fixed.o CC libavcodec/mdct_float.o CC libavcodec/mdec.o CC libavcodec/mimic.o CC libavcodec/mjpeg.o CC libavcodec/mjpeg2jpeg_bsf.o CC libavcodec/mjpeg_parser.o CC libavcodec/mjpega_dump_header_bsf.o CC libavcodec/mjpegbdec.o CC libavcodec/mjpegdec.o libavcodec/mjpegdec.c: In function 'ljpeg_decode_yuv_scan': libavcodec/mjpegdec.c:851: warning: assignment from incompatible pointer type libavcodec/mjpegdec.c:907: warning: assignment from incompatible pointer type libavcodec/mjpegdec.c: In function 'ff_mjpeg_decode_frame': libavcodec/mjpegdec.c:1578: warning: format '%x' expects type 'unsigned int', but argument 5 has type 'const uint8_t *' libavcodec/mjpegdec.c: In function 'ff_mjpeg_decode_sos': libavcodec/mjpegdec.c:953: warning: 'mb_bitmask_gb.buffer' may be used uninitialized in this function libavcodec/mjpegdec.c:953: note: 'mb_bitmask_gb.buffer' was declared here libavcodec/mjpegdec.c:953: warning: 'mb_bitmask_gb.size_in_bits_plus8' may be used uninitialized in this function libavcodec/mjpegdec.c:953: note: 'mb_bitmask_gb.size_in_bits_plus8' was declared here CC libavcodec/mlp.o CC libavcodec/mlp_parser.o CC libavcodec/mlpdec.o CC libavcodec/mlpdsp.o CC libavcodec/mmvideo.o CC libavcodec/motionpixels.o CC libavcodec/movsub_bsf.o CC libavcodec/mp3_header_compress_bsf.o libavcodec/mp3_header_compress_bsf.c: In function 'mp3_header_compress': libavcodec/mp3_header_compress_bsf.c:42: warning: cast discards qualifiers from pointer target type CC libavcodec/mp3_header_decompress_bsf.o libavcodec/mp3_header_decompress_bsf.c: In function 'mp3_header_decompress': libavcodec/mp3_header_decompress_bsf.c:37: warning: cast discards qualifiers from pointer target type CC libavcodec/mpc.o CC libavcodec/mpc7.o CC libavcodec/mpc8.o CC libavcodec/mpeg12.o CC libavcodec/mpeg12data.o CC libavcodec/mpeg4audio.o CC libavcodec/mpeg4video.o CC libavcodec/mpeg4video_parser.o CC libavcodec/mpeg4videodec.o libavcodec/mpeg4videodec.c: In function 'mpeg4_decode_mb': libavcodec/mpeg4videodec.c:1496: warning: 'error_recognition' is deprecated (declared at libavcodec/avcodec.h:1722) libavcodec/mpeg4videodec.c: In function 'mpeg4_decode_block': libavcodec/mpeg4videodec.c:850: warning: 'dc_pred_dir' may be used uninitialized in this function CC libavcodec/mpegaudio.o CC libavcodec/mpegaudio_parser.o CC libavcodec/mpegaudiodata.o CC libavcodec/mpegaudiodec.o libavcodec/mpegaudiodec.c: In function 'mp_decode_layer3': libavcodec/mpegaudiodec.c:1382: warning: unused variable 'skip' libavcodec/mpegaudiodec.c: In function 'decode_frame_adu': libavcodec/mpegaudiodec.c:1732: warning: 'parse_only' is deprecated (declared at libavcodec/avcodec.h:1819) CC libavcodec/mpegaudiodec_float.o In file included from libavcodec/mpegaudiodec_float.c:24: libavcodec/mpegaudiodec.c: In function 'mp_decode_layer3': libavcodec/mpegaudiodec.c:1382: warning: unused variable 'skip' libavcodec/mpegaudiodec.c: In function 'decode_frame_adu': libavcodec/mpegaudiodec.c:1732: warning: 'parse_only' is deprecated (declared at libavcodec/avcodec.h:1819) CC libavcodec/mpegaudiodecheader.o CC libavcodec/mpegaudiodsp.o CC libavcodec/mpegaudiodsp_fixed.o CC libavcodec/mpegaudiodsp_float.o CC libavcodec/mpegvideo.o CC libavcodec/mpegvideo_parser.o CC libavcodec/mqc.o CC libavcodec/mqcdec.o CC libavcodec/msgsmdec.o CC libavcodec/msmpeg4.o libavcodec/msmpeg4.c: In function 'ff_msmpeg4_encode_block': libavcodec/msmpeg4.c:842: warning: 'extquant' may be used uninitialized in this function libavcodec/msmpeg4.c:842: note: 'extquant' was declared here CC libavcodec/msmpeg4data.o CC libavcodec/msrle.o CC libavcodec/msrledec.o libavcodec/msrledec.c: In function 'ff_msrle_decode': libavcodec/msrledec.c:204: warning: 'pix[0]' may be used uninitialized in this function libavcodec/msrledec.c:204: note: 'pix[0]' was declared here libavcodec/msrledec.c:204: warning: 'pix[1]' may be used uninitialized in this function libavcodec/msrledec.c:204: note: 'pix[1]' was declared here libavcodec/msrledec.c:204: warning: 'pix[2]' may be used uninitialized in this function libavcodec/msrledec.c:204: note: 'pix[2]' was declared here CC libavcodec/msvideo1.o CC libavcodec/mxpegdec.o CC libavcodec/nellymoser.o CC libavcodec/nellymoserdec.o CC libavcodec/noise_bsf.o CC libavcodec/nuv.o libavcodec/nuv.c: In function 'copy_frame': libavcodec/nuv.c:76: warning: passing argument 2 of 'avpicture_fill' discards qualifiers from pointer target type CC libavcodec/options.o libavcodec/options.c:757:2: warning: no newline at end of file libavcodec/options.c:165: warning: 'weighted_p_pred' is deprecated (declared at libavcodec/avcodec.h:3044) libavcodec/options.c:205: warning: 'error_recognition' is deprecated (declared at libavcodec/avcodec.h:1722) libavcodec/options.c:223: warning: 'parse_only' is deprecated (declared at libavcodec/avcodec.h:1819) libavcodec/options.c:372: warning: 'antialias_algo' is deprecated (declared at libavcodec/avcodec.h:2431) libavcodec/options.c:421: warning: 'crf' is deprecated (declared at libavcodec/avcodec.h:2703) libavcodec/options.c:422: warning: 'cqp' is deprecated (declared at libavcodec/avcodec.h:2711) libavcodec/options.c:428: warning: 'bframebias' is deprecated (declared at libavcodec/avcodec.h:2741) libavcodec/options.c:432: warning: 'directpred' is deprecated (declared at libavcodec/avcodec.h:2792) libavcodec/options.c:442: warning: 'complexityblur' is deprecated (declared at libavcodec/avcodec.h:2757) libavcodec/options.c:443: warning: 'deblockalpha' is deprecated (declared at libavcodec/avcodec.h:2765) libavcodec/options.c:444: warning: 'deblockbeta' is deprecated (declared at libavcodec/avcodec.h:2773) libavcodec/options.c:445: warning: 'partitions' is deprecated (declared at libavcodec/avcodec.h:2780) libavcodec/options.c:462: warning: 'lpc_coeff_precision' is deprecated (declared at libavcodec/avcodec.h:2855) libavcodec/options.c:463: warning: 'prediction_order_method' is deprecated (declared at libavcodec/avcodec.h:2862) libavcodec/options.c:464: warning: 'min_partition_order' is deprecated (declared at libavcodec/avcodec.h:2868) libavcodec/options.c:465: warning: 'max_partition_order' is deprecated (declared at libavcodec/avcodec.h:2874) libavcodec/options.c:476: warning: 'drc_scale' is deprecated (declared at libavcodec/avcodec.h:2905) libavcodec/options.c:497: warning: 'psy_rd' is deprecated (declared at libavcodec/avcodec.h:3070) libavcodec/options.c:498: warning: 'psy_trellis' is deprecated (declared at libavcodec/avcodec.h:3078) libavcodec/options.c:499: warning: 'aq_mode' is deprecated (declared at libavcodec/avcodec.h:3054) libavcodec/options.c:500: warning: 'aq_strength' is deprecated (declared at libavcodec/avcodec.h:3062) libavcodec/options.c:501: warning: 'rc_lookahead' is deprecated (declared at libavcodec/avcodec.h:3086) libavcodec/options.c:504: warning: 'crf_max' is deprecated (declared at libavcodec/avcodec.h:3095) libavcodec/options.c:508: warning: 'lpc_type' is deprecated (declared at libavcodec/avcodec.h:3106) libavcodec/options.c:513: warning: 'lpc_passes' is deprecated (declared at libavcodec/avcodec.h:3113) libavcodec/options.c: In function 'avcodec_get_context_defaults3': libavcodec/options.c:576: warning: 'av_opt_set_defaults2' is deprecated (declared at ./libavutil/opt.h:370) libavcodec/options.c: In function 'avcodec_alloc_context2': libavcodec/options.c:634: warning: 'avcodec_get_context_defaults2' is deprecated (declared at libavcodec/options.c:556) libavcodec/options.c: In function 'avcodec_get_context_defaults': libavcodec/options.c:640: warning: 'avcodec_get_context_defaults2' is deprecated (declared at libavcodec/options.c:556) libavcodec/options.c: In function 'avcodec_alloc_context': libavcodec/options.c:644: warning: 'avcodec_alloc_context2' is deprecated (declared at libavcodec/options.c:629) CC libavcodec/parser.o libavcodec/parser.c: In function 'av_parser_change': libavcodec/parser.c:185: warning: cast discards qualifiers from pointer target type CC libavcodec/pcm-mpeg.o CC libavcodec/pcm.o CC libavcodec/pcx.o CC libavcodec/pgssubdec.o libavcodec/pgssubdec.c:544:3: warning: no newline at end of file CC libavcodec/pictordec.o CC libavcodec/png.o CC libavcodec/pngdec.o libavcodec/pngdec.c: In function 'png_decode_idat': libavcodec/pngdec.c:365: warning: assignment discards qualifiers from pointer target type CC libavcodec/pnm.o CC libavcodec/pnm_parser.o libavcodec/pnm_parser.c: In function 'pnm_parse': libavcodec/pnm_parser.c:44: warning: cast discards qualifiers from pointer target type libavcodec/pnm_parser.c:45: warning: cast discards qualifiers from pointer target type CC libavcodec/pnmdec.o libavcodec/pnmdec.c: In function 'pnm_decode_frame': libavcodec/pnmdec.c:40: warning: assignment discards qualifiers from pointer target type libavcodec/pnmdec.c:41: warning: assignment discards qualifiers from pointer target type CC libavcodec/proresdec2.o libavcodec/proresdec2.c: In function 'decode_slice_luma': libavcodec/proresdec2.c:381: warning: passing argument 1 of 'ctx->prodsp.idct_put' from incompatible pointer type libavcodec/proresdec2.c:382: warning: passing argument 1 of 'ctx->prodsp.idct_put' from incompatible pointer type libavcodec/proresdec2.c:383: warning: passing argument 1 of 'ctx->prodsp.idct_put' from incompatible pointer type libavcodec/proresdec2.c:384: warning: passing argument 1 of 'ctx->prodsp.idct_put' from incompatible pointer type libavcodec/proresdec2.c: In function 'decode_slice_chroma': libavcodec/proresdec2.c:412: warning: passing argument 1 of 'ctx->prodsp.idct_put' from incompatible pointer type libavcodec/proresdec2.c:413: warning: passing argument 1 of 'ctx->prodsp.idct_put' from incompatible pointer type CC libavcodec/proresdec_lgpl.o CC libavcodec/proresdsp.o CC libavcodec/psymodel.o CC libavcodec/pthread.o CC libavcodec/ptx.o CC libavcodec/qcelpdec.o CC libavcodec/qdm2.o CC libavcodec/qdrw.o CC libavcodec/qpeg.o CC libavcodec/qtrle.o CC libavcodec/r210dec.o CC libavcodec/ra144.o CC libavcodec/ra144dec.o CC libavcodec/ra288.o CC libavcodec/rangecoder.o libavcodec/rangecoder.c: In function 'ff_init_range_decoder': libavcodec/rangecoder.c:54: warning: cast discards qualifiers from pointer target type libavcodec/rangecoder.c:56: warning: passing argument 1 of 'bytestream_get_be16' from incompatible pointer type CC libavcodec/raw.o CC libavcodec/rawdec.o libavcodec/rawdec.c: In function 'raw_decode': libavcodec/rawdec.c:188: warning: passing argument 2 of 'avpicture_fill' discards qualifiers from pointer target type libavcodec/rawdec.c:192: warning: assignment from incompatible pointer type CC libavcodec/rdft.o CC libavcodec/remove_extradata_bsf.o libavcodec/remove_extradata_bsf.c: In function 'remove_extradata': libavcodec/remove_extradata_bsf.c:45: warning: cast discards qualifiers from pointer target type CC libavcodec/resample.o CC libavcodec/resample2.o CC libavcodec/rl2.o CC libavcodec/roqvideo.o CC libavcodec/roqvideodec.o CC libavcodec/rpza.o CC libavcodec/rtjpeg.o CC libavcodec/rv10.o CC libavcodec/rv30.o CC libavcodec/rv30dsp.o CC libavcodec/rv34.o CC libavcodec/rv34_parser.o CC libavcodec/rv34dsp.o CC libavcodec/rv40.o CC libavcodec/rv40dsp.o CC libavcodec/s302m.o CC libavcodec/s3tc.o CC libavcodec/sgidec.o CC libavcodec/shorten.o CC libavcodec/simple_idct.o CC libavcodec/sinewin.o CC libavcodec/sipr.o CC libavcodec/sipr16k.o CC libavcodec/smacker.o CC libavcodec/smc.o CC libavcodec/snow.o CC libavcodec/snowdec.o CC libavcodec/sonic.o libavcodec/sonic.c: In function 'sonic_decode_frame': libavcodec/sonic.c:872: warning: assignment from incompatible pointer type CC libavcodec/sp5xdec.o CC libavcodec/srtdec.o CC libavcodec/sunrast.o CC libavcodec/svq1.o CC libavcodec/svq1dec.o libavcodec/svq1dec.c: In function 'svq1_decode_frame': libavcodec/svq1dec.c:648: warning: cast discards qualifiers from pointer target type CC libavcodec/svq3.o libavcodec/svq3.c: In function 'svq3_decode_mb': libavcodec/svq3.c:663: warning: passing argument 2 of 'svq3_decode_block' from incompatible pointer type libavcodec/svq3.c: In function 'svq3_decode_slice_header': libavcodec/svq3.c:750: warning: cast discards qualifiers from pointer target type libavcodec/svq3.c:753: warning: cast discards qualifiers from pointer target type CC libavcodec/synth_filter.o CC libavcodec/targa.o CC libavcodec/tiertexseqv.o CC libavcodec/tiff.o libavcodec/tiff.c: In function 'tiff_uncompress': libavcodec/tiff.c:89: warning: assignment discards qualifiers from pointer target type CC libavcodec/timecode.o CC libavcodec/tmv.o CC libavcodec/truemotion1.o CC libavcodec/truemotion2.o CC libavcodec/truespeech.o CC libavcodec/tscc.o libavcodec/tscc.c: In function 'decode_frame': libavcodec/tscc.c:96: warning: assignment discards qualifiers from pointer target type CC libavcodec/tta.o CC libavcodec/twinvq.o CC libavcodec/txd.o CC libavcodec/ulti.o CC libavcodec/codec_names.h CC libavcodec/utils.o libavcodec/utils.c: In function 'avcodec_register': libavcodec/utils.c:137: warning: 'avcodec_init' is deprecated (declared at libavcodec/utils.c:114) libavcodec/utils.c: In function 'avcodec_fill_audio_frame': libavcodec/utils.c:315: warning: passing argument 3 of 'av_samples_fill_arrays' discards qualifiers from pointer target type libavcodec/utils.c: In function 'avcodec_open2': libavcodec/utils.c:754: warning: assignment discards qualifiers from pointer target type libavcodec/utils.c:815: warning: 'error_recognition' is deprecated (declared at libavcodec/avcodec.h:1722) libavcodec/utils.c:816: warning: 'error_recognition' is deprecated (declared at libavcodec/avcodec.h:1722) libavcodec/utils.c:826: warning: 'error_recognition' is deprecated (declared at libavcodec/avcodec.h:1722) libavcodec/utils.c: In function 'avcodec_encode_audio': libavcodec/utils.c:1116: warning: passing argument 4 of 'avcodec_fill_audio_frame' from incompatible pointer type libavcodec/utils.c: In function 'avcodec_encode_video': libavcodec/utils.c:1159: warning: passing argument 4 of 'avctx->codec->encode' discards qualifiers from pointer target type libavcodec/utils.c: In function 'avcodec_encode_subtitle': libavcodec/utils.c:1177: warning: passing argument 4 of 'avctx->codec->encode' discards qualifiers from pointer target type libavcodec/utils.c: In function 'av_log_missing_feature': libavcodec/utils.c:1885: warning: null format string CC libavcodec/utvideo.o CC libavcodec/v210dec.o CC libavcodec/v210x.o CC libavcodec/v308dec.o CC libavcodec/v410dec.o CC libavcodec/vb.o CC libavcodec/vble.o CC libavcodec/vc1.o CC libavcodec/vc1_parser.o CC libavcodec/vc1data.o CC libavcodec/vc1dec.o libavcodec/vc1dec.c: In function 'vc1_decode_p_mb_intfr': libavcodec/vc1dec.c:3818: warning: 'dmv_y' may be used uninitialized in this function libavcodec/vc1dec.c:3818: warning: 'dmv_x' may be used uninitialized in this function libavcodec/vc1dec.c: In function 'vc1_decode_p_mb_intfi': libavcodec/vc1dec.c:4030: warning: 'pred_flag' may be used uninitialized in this function libavcodec/vc1dec.c: In function 'vc1_decode_b_blocks': libavcodec/vc1dec.c:4305: warning: 'interpmvp' may be used uninitialized in this function libavcodec/vc1dec.c:4305: note: 'interpmvp' was declared here CC libavcodec/vc1dsp.o libavcodec/vc1dsp.c: In function 'ff_vc1dsp_init': libavcodec/vc1dsp.c:803: warning: assignment from incompatible pointer type libavcodec/vc1dsp.c:820: warning: assignment from incompatible pointer type CC libavcodec/vcr1.o CC libavcodec/vdpau.o CC libavcodec/vmdav.o CC libavcodec/vmnc.o CC libavcodec/vorbis.o CC libavcodec/vorbis_data.o CC libavcodec/vorbisdec.o CC libavcodec/vp3.o CC libavcodec/vp3_parser.o CC libavcodec/vp3dsp.o CC libavcodec/vp5.o CC libavcodec/vp56.o CC libavcodec/vp56data.o CC libavcodec/vp56dsp.o CC libavcodec/vp56rac.o CC libavcodec/vp6.o CC libavcodec/vp6dsp.o CC libavcodec/vp8.o CC libavcodec/vp8_parser.o CC libavcodec/vp8dsp.o CC libavcodec/vqavideo.o CC libavcodec/wavpack.o CC libavcodec/wma.o CC libavcodec/wmadec.o CC libavcodec/wmalosslessdec.o libavcodec/wmalosslessdec.c: In function 'revert_acfilter': libavcodec/wmalosslessdec.c:1034: warning: unused variable 'icoef' libavcodec/wmalosslessdec.c: At top level: libavcodec/wmalosslessdec.c:117: warning: 'sin64' defined but not used libavcodec/wmalosslessdec.c:294: warning: 'num_logged_tiles' defined but not used libavcodec/wmalosslessdec.c:296: warning: 'num_lms_update_call' defined but not used libavcodec/wmalosslessdec.c:303: warning: 'dump_context' defined but not used libavcodec/wmalosslessdec.c:317: warning: 'dump_int_buffer' defined but not used libavcodec/wmalosslessdec.c:583: warning: 'my_log2' defined but not used CC libavcodec/wmaprodec.o CC libavcodec/wmavoice.o libavcodec/wmavoice.c: In function 'postfilter': libavcodec/wmavoice.c:518: warning: 'best_hist_ptr' may be used uninitialized in this function libavcodec/wmavoice.c:518: note: 'best_hist_ptr' was declared here libavcodec/wmavoice.c:690: warning: 'remainder' may be used uninitialized in this function libavcodec/wmavoice.c:690: note: 'remainder' was declared here libavcodec/wmavoice.c: In function 'synth_superframe': libavcodec/wmavoice.c:1439: warning: 'cur_pitch_val' may be used uninitialized in this function libavcodec/wmavoice.c:1439: note: 'cur_pitch_val' was declared here CC libavcodec/wmv2.o CC libavcodec/wmv2dec.o CC libavcodec/wnv1.o CC libavcodec/ws-snd1.o YASM libavcodec/x86/ac3dsp.o CC libavcodec/x86/ac3dsp_mmx.o CC libavcodec/x86/cavsdsp_mmx.o YASM libavcodec/x86/dct32_sse.o YASM libavcodec/x86/deinterlace.o libavcodec/x86/deinterlace.asm:81: warning: label alone on a line without a colon might be in error libavcodec/x86/deinterlace.asm:83: warning: label alone on a line without a colon might be in error CC libavcodec/x86/diracdsp_mmx.o YASM libavcodec/x86/diracdsp_yasm.o libavcodec/x86/diracdsp_yasm.asm:255: warning: label alone on a line without a colon might be in error CC libavcodec/x86/dsputil_mmx.o YASM libavcodec/x86/dsputil_yasm.o libavcodec/x86/dsputil_yasm.asm:1049: warning: signed dword immediate exceeds bounds libavcodec/x86/dsputil_yasm.asm:1049: warning: signed dword immediate exceeds bounds libavcodec/x86/dsputil_yasm.asm:1049: warning: signed dword immediate exceeds bounds CC libavcodec/x86/dsputilenc_mmx.o YASM libavcodec/x86/dsputilenc_yasm.o libavcodec/x86/dsputilenc_yasm.asm:265: warning: label alone on a line without a colon might be in error libavcodec/x86/dsputilenc_yasm.asm:269: warning: label alone on a line without a colon might be in error libavcodec/x86/dsputilenc_yasm.asm:278: warning: label alone on a line without a colon might be in error libavcodec/x86/dsputilenc_yasm.asm:282: warning: label alone on a line without a colon might be in error libavcodec/x86/dsputilenc_yasm.asm:291: warning: label alone on a line without a colon might be in error CC libavcodec/x86/dwt.o libavcodec/x86/dwt.c: In function 'ff_spatial_idwt_init_mmx': libavcodec/x86/dwt.c:172: warning: assignment from incompatible pointer type libavcodec/x86/dwt.c:173: warning: assignment from incompatible pointer type libavcodec/x86/dwt.c:176: warning: assignment from incompatible pointer type libavcodec/x86/dwt.c:177: warning: assignment from incompatible pointer type libavcodec/x86/dwt.c:180: warning: assignment from incompatible pointer type libavcodec/x86/dwt.c:181: warning: assignment from incompatible pointer type libavcodec/x86/dwt.c:184: warning: assignment from incompatible pointer type libavcodec/x86/dwt.c:188: warning: assignment from incompatible pointer type YASM libavcodec/x86/dwt_yasm.o CC libavcodec/x86/fdct_mmx.o CC libavcodec/x86/fft.o CC libavcodec/x86/fft_3dn.o CC libavcodec/x86/fft_3dn2.o YASM libavcodec/x86/fft_mmx.o CC libavcodec/x86/fft_sse.o YASM libavcodec/x86/fmtconvert.o libavcodec/x86/fmtconvert.asm:364: warning: label alone on a line without a colon might be in error libavcodec/x86/fmtconvert.asm:369: warning: label alone on a line without a colon might be in error CC libavcodec/x86/fmtconvert_mmx.o YASM libavcodec/x86/h264_chromamc.o libavcodec/x86/h264_chromamc.asm:429: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:429: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:429: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:429: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:429: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:429: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:430: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:430: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:430: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:430: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:430: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:430: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:431: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:431: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:431: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:431: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:431: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:431: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:432: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:433: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:434: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:439: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:439: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:439: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:439: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:439: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:439: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:440: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:440: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:440: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:440: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:440: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:440: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:441: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:441: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:441: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:441: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:441: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:441: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:442: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:443: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:444: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:447: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:447: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:447: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:447: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:447: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:447: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:448: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:448: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:448: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:448: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:448: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:448: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:449: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:449: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:449: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:449: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:449: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:449: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:450: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:451: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:656: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:656: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:656: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:656: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:656: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:656: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:656: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:657: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:657: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:657: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:657: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:657: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:657: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:657: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:659: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:664: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:664: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:664: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:664: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:664: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:664: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:664: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:665: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:665: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:665: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:665: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:665: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:665: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:665: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc.asm:667: warning: label alone on a line without a colon might be in error YASM libavcodec/x86/h264_chromamc_10bit.o libavcodec/x86/h264_chromamc_10bit.asm:254: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc_10bit.asm:254: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc_10bit.asm:254: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc_10bit.asm:254: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc_10bit.asm:254: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc_10bit.asm:254: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc_10bit.asm:257: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc_10bit.asm:257: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc_10bit.asm:257: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc_10bit.asm:257: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc_10bit.asm:257: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc_10bit.asm:257: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc_10bit.asm:260: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc_10bit.asm:261: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc_10bit.asm:266: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc_10bit.asm:266: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc_10bit.asm:266: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc_10bit.asm:266: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc_10bit.asm:266: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc_10bit.asm:266: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc_10bit.asm:269: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc_10bit.asm:269: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc_10bit.asm:269: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc_10bit.asm:269: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc_10bit.asm:269: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc_10bit.asm:269: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc_10bit.asm:272: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_chromamc_10bit.asm:273: warning: label alone on a line without a colon might be in error YASM libavcodec/x86/h264_deblock.o YASM libavcodec/x86/h264_deblock_10bit.o libavcodec/x86/h264_deblock_10bit.asm:718: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_deblock_10bit.asm:718: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_deblock_10bit.asm:721: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_deblock_10bit.asm:721: warning: label alone on a line without a colon might be in error YASM libavcodec/x86/h264_idct.o libavcodec/x86/h264_idct.asm:309: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:317: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:334: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:348: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:363: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:392: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:396: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:410: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:419: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:433: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:446: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:464: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:481: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:514: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:524: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:541: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:573: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:581: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:590: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:605: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:634: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:635: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:654: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:668: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:761: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:762: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:763: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:764: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:765: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:766: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:767: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:768: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:806: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:806: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:807: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:807: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:808: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:808: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:809: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:809: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:810: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:810: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:811: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:811: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:812: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:812: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:813: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:813: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:858: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:858: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:859: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:859: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:865: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:865: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:866: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct.asm:866: warning: label alone on a line without a colon might be in error YASM libavcodec/x86/h264_idct_10bit.o libavcodec/x86/h264_idct_10bit.asm:307: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct_10bit.asm:307: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct_10bit.asm:307: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct_10bit.asm:307: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct_10bit.asm:307: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct_10bit.asm:307: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct_10bit.asm:307: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct_10bit.asm:307: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct_10bit.asm:310: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct_10bit.asm:310: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct_10bit.asm:310: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct_10bit.asm:310: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct_10bit.asm:310: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct_10bit.asm:310: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct_10bit.asm:310: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct_10bit.asm:310: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct_10bit.asm:344: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct_10bit.asm:344: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct_10bit.asm:344: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct_10bit.asm:344: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct_10bit.asm:347: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct_10bit.asm:347: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct_10bit.asm:347: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_idct_10bit.asm:347: warning: label alone on a line without a colon might be in error YASM libavcodec/x86/h264_intrapred.o libavcodec/x86/h264_intrapred.asm:572: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_intrapred.asm:573: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_intrapred.asm:574: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_intrapred.asm:575: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_intrapred.asm:576: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_intrapred.asm:577: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_intrapred.asm:579: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_intrapred.asm:580: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_intrapred.asm:581: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_intrapred.asm:582: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_intrapred.asm:583: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_intrapred.asm:584: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_intrapred.asm:772: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_intrapred.asm:773: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_intrapred.asm:775: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_intrapred.asm:776: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_intrapred.asm:1133: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_intrapred.asm:1135: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_intrapred.asm:1236: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_intrapred.asm:1238: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_intrapred.asm:1359: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_intrapred.asm:1361: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_intrapred.asm:1645: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_intrapred.asm:1891: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_intrapred.asm:2042: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_intrapred.asm:2045: warning: label alone on a line without a colon might be in error YASM libavcodec/x86/h264_intrapred_10bit.o CC libavcodec/x86/h264_intrapred_init.o YASM libavcodec/x86/h264_qpel_10bit.o libavcodec/x86/h264_qpel_10bit.asm:312: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:312: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:312: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:312: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:312: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:312: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:312: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:312: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:390: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:390: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:390: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:390: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:390: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:390: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:390: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:390: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:390: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:390: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:390: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:390: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:390: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:390: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:390: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:390: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:465: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:465: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:465: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:465: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:558: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:558: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:558: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:558: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:809: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:809: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:809: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:809: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:858: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:860: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:880: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:880: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:880: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_qpel_10bit.asm:880: warning: label alone on a line without a colon might be in error YASM libavcodec/x86/h264_weight.o libavcodec/x86/h264_weight.asm:76: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight.asm:99: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight.asm:101: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight.asm:124: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight.asm:126: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight.asm:181: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight.asm:213: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight.asm:215: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight.asm:242: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight.asm:244: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight.asm:288: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight.asm:291: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight.asm:307: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight.asm:312: warning: label alone on a line without a colon might be in error YASM libavcodec/x86/h264_weight_10bit.o libavcodec/x86/h264_weight_10bit.asm:108: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight_10bit.asm:108: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight_10bit.asm:109: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight_10bit.asm:109: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight_10bit.asm:126: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight_10bit.asm:126: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight_10bit.asm:127: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight_10bit.asm:127: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight_10bit.asm:147: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight_10bit.asm:147: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight_10bit.asm:148: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight_10bit.asm:148: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight_10bit.asm:237: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight_10bit.asm:237: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight_10bit.asm:238: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight_10bit.asm:238: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight_10bit.asm:255: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight_10bit.asm:255: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight_10bit.asm:256: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight_10bit.asm:256: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight_10bit.asm:276: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight_10bit.asm:276: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight_10bit.asm:277: warning: label alone on a line without a colon might be in error libavcodec/x86/h264_weight_10bit.asm:277: warning: label alone on a line without a colon might be in error CC libavcodec/x86/h264dsp_mmx.o CC libavcodec/x86/idct_mmx.o CC libavcodec/x86/idct_mmx_xvid.o CC libavcodec/x86/idct_sse2_xvid.o YASM libavcodec/x86/imdct36_sse.o CC libavcodec/x86/mlpdsp.o CC libavcodec/x86/motion_est_mmx.o CC libavcodec/x86/mpegaudiodec_mmx.o CC libavcodec/x86/mpegvideo_mmx.o CC libavcodec/x86/png_mmx.o CC libavcodec/x86/proresdsp-init.o YASM libavcodec/x86/proresdsp.o YASM libavcodec/x86/rv34dsp.o CC libavcodec/x86/rv34dsp_init.o CC libavcodec/x86/rv40dsp.o CC libavcodec/x86/simple_idct_mmx.o CC libavcodec/x86/snowdsp_mmx.o CC libavcodec/x86/v210-init.o YASM libavcodec/x86/v210.o libavcodec/x86/v210.asm:78: warning: label alone on a line without a colon might be in error libavcodec/x86/v210.asm:81: warning: label alone on a line without a colon might be in error libavcodec/x86/v210.asm:85: warning: label alone on a line without a colon might be in error libavcodec/x86/v210.asm:88: warning: label alone on a line without a colon might be in error CC libavcodec/x86/vc1dsp_mmx.o YASM libavcodec/x86/vc1dsp_yasm.o YASM libavcodec/x86/vp3dsp.o YASM libavcodec/x86/vp56dsp.o libavcodec/x86/vp56dsp.asm:168: warning: label alone on a line without a colon might be in error libavcodec/x86/vp56dsp.asm:168: warning: label alone on a line without a colon might be in error libavcodec/x86/vp56dsp.asm:173: warning: label alone on a line without a colon might be in error libavcodec/x86/vp56dsp.asm:173: warning: label alone on a line without a colon might be in error CC libavcodec/x86/vp56dsp_init.o CC libavcodec/x86/vp8dsp-init.o YASM libavcodec/x86/vp8dsp.o libavcodec/x86/vp8dsp.asm:337: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:337: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:337: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:337: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:339: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:339: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:339: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:339: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:352: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:400: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:460: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:510: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:675: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:675: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:677: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:677: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:773: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:773: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:775: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:775: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:852: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:852: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:854: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:854: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:1615: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:1616: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:1618: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:1619: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:2123: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:2124: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:2125: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:2126: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:2129: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:2130: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:2131: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:2132: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:2819: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:2820: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:2821: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:2822: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:2825: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:2826: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:2827: warning: label alone on a line without a colon might be in error libavcodec/x86/vp8dsp.asm:2828: warning: label alone on a line without a colon might be in error CC libavcodec/xan.o CC libavcodec/xiph.o CC libavcodec/xl.o CC libavcodec/xsubdec.o CC libavcodec/xwddec.o CC libavcodec/xxan.o CC libavcodec/y41pdec.o CC libavcodec/yop.o CC libavcodec/yuv4dec.o CC libavcodec/zmbv.o libavcodec/zmbv.c: In function 'decode_frame': libavcodec/zmbv.c:508: warning: assignment discards qualifiers from pointer target type CC libavutil/adler32.o CC libavutil/aes.o CC libavutil/audioconvert.o CC libavutil/avstring.o CC libavutil/base64.o CC libavutil/cpu.o CC libavutil/crc.o CC libavutil/des.o CC libavutil/dict.o CC libavutil/error.o CC libavutil/eval.o CC libavutil/fifo.o CC libavutil/file.o CC libavutil/imgutils.o CC libavutil/intfloat_readwrite.o CC libavutil/inverse.o CC libavutil/lfg.o CC libavutil/lls.o CC libavutil/log.o CC libavutil/lzo.o CC libavutil/mathematics.o CC libavutil/md5.o CC libavutil/mem.o CC libavutil/opt.o libavutil/opt.c: In function 'av_find_opt': libavutil/opt.c:41: warning: 'av_next_option' is deprecated (declared at libavutil/opt.h:347) libavutil/opt.c: In function 'av_opt_set_defaults': libavutil/opt.c:601: warning: 'av_opt_set_defaults2' is deprecated (declared at libavutil/opt.h:370) CC libavutil/parseutils.o CC libavutil/pixdesc.o CC libavutil/random_seed.o CC libavutil/rational.o CC libavutil/rc4.o CC libavutil/samplefmt.o CC libavutil/sha.o CC libavutil/tree.o CC libavutil/utils.o CC libavutil/x86/cpu.o LD libavutil/avutil-51-x86_64-freebsd.so LD libavcodec/avcodec-53-x86_64-freebsd.so LD libavformat/avformat-53-x86_64-freebsd.so LD libavdevice/avdevice-53-x86_64-freebsd.so CC libavfilter/af_aconvert.o libavfilter/af_aconvert.c:53: warning: function declaration isn't a prototype libavfilter/af_aconvert.c:105: warning: function declaration isn't a prototype CC libavfilter/af_aformat.o CC libavfilter/af_amerge.o CC libavfilter/af_anull.o CC libavfilter/af_aresample.o CC libavfilter/af_ashowinfo.o CC libavfilter/af_asplit.o CC libavfilter/af_astreamsync.o CC libavfilter/af_earwax.o CC libavfilter/af_pan.o CC libavfilter/af_silencedetect.o CC libavfilter/af_volume.o CC libavfilter/allfilters.o CC libavfilter/asink_anullsink.o CC libavfilter/asrc_abuffer.o CC libavfilter/asrc_aevalsrc.o CC libavfilter/asrc_anullsrc.o CC libavfilter/avcodec.o CC libavfilter/avfilter.o CC libavfilter/avfiltergraph.o CC libavfilter/defaults.o CC libavfilter/drawutils.o CC libavfilter/formats.o CC libavfilter/graphdump.o CC libavfilter/graphparser.o CC libavfilter/libmpcodecs/img_format.o CC libavfilter/libmpcodecs/mp_image.o CC libavfilter/libmpcodecs/pullup.o CC libavfilter/libmpcodecs/vf_2xsai.o CC libavfilter/libmpcodecs/vf_decimate.o CC libavfilter/libmpcodecs/vf_denoise3d.o CC libavfilter/libmpcodecs/vf_detc.o CC libavfilter/libmpcodecs/vf_dint.o CC libavfilter/libmpcodecs/vf_divtc.o CC libavfilter/libmpcodecs/vf_down3dright.o CC libavfilter/libmpcodecs/vf_dsize.o CC libavfilter/libmpcodecs/vf_eq.o libavfilter/libmpcodecs/vf_eq.c:38: warning: useless storage class specifier in empty declaration CC libavfilter/libmpcodecs/vf_eq2.o CC libavfilter/libmpcodecs/vf_field.o CC libavfilter/libmpcodecs/vf_fil.o CC libavfilter/libmpcodecs/vf_fixpts.o CC libavfilter/libmpcodecs/vf_framestep.o CC libavfilter/libmpcodecs/vf_fspp.o CC libavfilter/libmpcodecs/vf_geq.o CC libavfilter/libmpcodecs/vf_harddup.o CC libavfilter/libmpcodecs/vf_hqdn3d.o CC libavfilter/libmpcodecs/vf_hue.o CC libavfilter/libmpcodecs/vf_il.o CC libavfilter/libmpcodecs/vf_ilpack.o CC libavfilter/libmpcodecs/vf_ivtc.o CC libavfilter/libmpcodecs/vf_kerndeint.o CC libavfilter/libmpcodecs/vf_mcdeint.o libavfilter/libmpcodecs/vf_mcdeint.c: In function 'config': libavfilter/libmpcodecs/vf_mcdeint.c:199: warning: 'avcodec_alloc_context' is deprecated (declared at ./libavcodec/avcodec.h:4040) libavfilter/libmpcodecs/vf_mcdeint.c:227: warning: 'avcodec_open' is deprecated (declared at ./libavcodec/avcodec.h:4170) CC libavfilter/libmpcodecs/vf_mirror.o CC libavfilter/libmpcodecs/vf_noise.o CC libavfilter/libmpcodecs/vf_ow.o CC libavfilter/libmpcodecs/vf_palette.o CC libavfilter/libmpcodecs/vf_perspective.o CC libavfilter/libmpcodecs/vf_phase.o CC libavfilter/libmpcodecs/vf_pp7.o CC libavfilter/libmpcodecs/vf_pullup.o CC libavfilter/libmpcodecs/vf_qp.o CC libavfilter/libmpcodecs/vf_rectangle.o CC libavfilter/libmpcodecs/vf_remove_logo.o CC libavfilter/libmpcodecs/vf_rotate.o CC libavfilter/libmpcodecs/vf_sab.o CC libavfilter/libmpcodecs/vf_screenshot.o libavfilter/libmpcodecs/vf_screenshot.c: In function 'scale_image': libavfilter/libmpcodecs/vf_screenshot.c:137: warning: passing argument 2 of 'sws_scale' from incompatible pointer type libavfilter/libmpcodecs/vf_screenshot.c: In function 'draw_slice': libavfilter/libmpcodecs/vf_screenshot.c:160: warning: passing argument 2 of 'sws_scale' from incompatible pointer type libavfilter/libmpcodecs/vf_screenshot.c: In function 'vf_open': libavfilter/libmpcodecs/vf_screenshot.c:303: warning: 'avcodec_alloc_context' is deprecated (declared at ./libavcodec/avcodec.h:4040) libavfilter/libmpcodecs/vf_screenshot.c:305: warning: 'avcodec_open' is deprecated (declared at ./libavcodec/avcodec.h:4170) CC libavfilter/libmpcodecs/vf_smartblur.o CC libavfilter/libmpcodecs/vf_softpulldown.o CC libavfilter/libmpcodecs/vf_softskip.o CC libavfilter/libmpcodecs/vf_spp.o libavfilter/libmpcodecs/vf_spp.c: In function 'vf_open': libavfilter/libmpcodecs/vf_spp.c:581: warning: 'avcodec_alloc_context' is deprecated (declared at ./libavcodec/avcodec.h:4040) CC libavfilter/libmpcodecs/vf_stereo3d.o libavfilter/libmpcodecs/vf_stereo3d.c: In function 'vf_open': libavfilter/libmpcodecs/vf_stereo3d.c:389: warning: format '%d' expects type 'int *', but argument 3 has type 'enum stereo_code *' libavfilter/libmpcodecs/vf_stereo3d.c:389: warning: format '%d' expects type 'int *', but argument 4 has type 'enum stereo_code *' CC libavfilter/libmpcodecs/vf_swapuv.o CC libavfilter/libmpcodecs/vf_telecine.o CC libavfilter/libmpcodecs/vf_tile.o libavfilter/libmpcodecs/vf_tile.c: In function 'vf_open': libavfilter/libmpcodecs/vf_tile.c:289: warning: assignment discards qualifiers from pointer target type CC libavfilter/libmpcodecs/vf_tinterlace.o CC libavfilter/libmpcodecs/vf_unsharp.o CC libavfilter/libmpcodecs/vf_uspp.o libavfilter/libmpcodecs/vf_uspp.c: In function 'config': libavfilter/libmpcodecs/vf_uspp.c:227: warning: 'avcodec_alloc_context' is deprecated (declared at ./libavcodec/avcodec.h:4040) libavfilter/libmpcodecs/vf_uspp.c:237: warning: 'avcodec_open' is deprecated (declared at ./libavcodec/avcodec.h:4170) CC libavfilter/libmpcodecs/vf_yuvcsp.o CC libavfilter/libmpcodecs/vf_yvu9.o CC libavfilter/sink_buffer.o CC libavfilter/src_movie.o CC libavfilter/transform.o CC libavfilter/vf_aspect.o CC libavfilter/vf_blackframe.o CC libavfilter/vf_boxblur.o CC libavfilter/vf_copy.o CC libavfilter/vf_crop.o CC libavfilter/vf_cropdetect.o CC libavfilter/vf_delogo.o CC libavfilter/vf_deshake.o CC libavfilter/vf_drawbox.o CC libavfilter/vf_fade.o CC libavfilter/vf_fieldorder.o CC libavfilter/vf_fifo.o CC libavfilter/vf_format.o CC libavfilter/vf_gradfun.o CC libavfilter/vf_hflip.o CC libavfilter/vf_hqdn3d.o CC libavfilter/vf_lut.o CC libavfilter/vf_mp.o libavfilter/vf_mp.c: In function 'init': libavfilter/vf_mp.c:763: warning: passing argument 2 of 'm->vf.info->vf_open' discards qualifiers from pointer target type CC libavfilter/vf_null.o CC libavfilter/vf_overlay.o CC libavfilter/vf_pad.o CC libavfilter/vf_pixdesctest.o CC libavfilter/vf_scale.o CC libavfilter/vf_select.o CC libavfilter/vf_setpts.o CC libavfilter/vf_settb.o CC libavfilter/vf_showinfo.o CC libavfilter/vf_slicify.o CC libavfilter/vf_split.o CC libavfilter/vf_swapuv.o CC libavfilter/vf_thumbnail.o CC libavfilter/vf_tinterlace.o CC libavfilter/vf_transpose.o CC libavfilter/vf_unsharp.o CC libavfilter/vf_vflip.o CC libavfilter/vf_yadif.o CC libavfilter/vsink_nullsink.o CC libavfilter/vsrc_buffer.o CC libavfilter/vsrc_cellauto.o CC libavfilter/vsrc_color.o CC libavfilter/vsrc_life.o CC libavfilter/vsrc_mandelbrot.o CC libavfilter/vsrc_mptestsrc.o CC libavfilter/vsrc_testsrc.o CC libavfilter/x86/gradfun.o CC libavfilter/x86/yadif.o CC libswresample/audioconvert.o CC libswresample/rematrix.o CC libswresample/resample.o CC libswresample/swresample.o LD libswresample/swresample-0-x86_64-freebsd.so CC libswscale/options.o CC libswscale/rgb2rgb.o libswscale/rgb2rgb.c: In function 'rgb12tobgr12': libswscale/rgb2rgb.c:307: warning: cast discards qualifiers from pointer target type CC libswscale/swscale.o libswscale/swscale.c: In function 'swScale': libswscale/swscale.c:2742: warning: assignment from incompatible pointer type libswscale/swscale.c:2743: warning: assignment from incompatible pointer type libswscale/swscale.c:2769: warning: assignment from incompatible pointer type libswscale/swscale.c: In function 'sws_init_swScale_c': libswscale/swscale.c:2844: warning: assignment from incompatible pointer type libswscale/swscale.c:2851: warning: assignment from incompatible pointer type libswscale/swscale.c:2882: warning: assignment from incompatible pointer type libswscale/swscale.c:2891: warning: assignment from incompatible pointer type libswscale/swscale.c:2896: warning: assignment from incompatible pointer type libswscale/swscale.c:2908: warning: assignment from incompatible pointer type libswscale/swscale.c:2917: warning: assignment from incompatible pointer type libswscale/swscale.c:2936: warning: assignment from incompatible pointer type libswscale/swscale.c:2963: warning: assignment from incompatible pointer type libswscale/swscale.c:2970: warning: assignment from incompatible pointer type libswscale/swscale.c:2981: warning: assignment from incompatible pointer type libswscale/swscale.c:2982: warning: assignment from incompatible pointer type libswscale/swscale.c:2983: warning: assignment from incompatible pointer type libswscale/swscale.c:2996: warning: assignment from incompatible pointer type libswscale/swscale.c:2998: warning: assignment from incompatible pointer type libswscale/swscale.c:3000: warning: assignment from incompatible pointer type CC libswscale/swscale_unscaled.o CC libswscale/utils.o YASM libswscale/x86/input.o YASM libswscale/x86/output.o CC libswscale/x86/rgb2rgb.o YASM libswscale/x86/scale.o CC libswscale/x86/swscale_mmx.o In file included from libswscale/x86/swscale_mmx.c:90: libswscale/x86/swscale_template.c: In function 'sws_init_swScale_MMX': libswscale/x86/swscale_template.c:1839: warning: assignment from incompatible pointer type libswscale/x86/swscale_template.c:1840: warning: assignment from incompatible pointer type libswscale/x86/swscale_template.c:1846: warning: assignment from incompatible pointer type libswscale/x86/swscale_template.c:1847: warning: assignment from incompatible pointer type In file included from libswscale/x86/swscale_mmx.c:99: libswscale/x86/swscale_template.c: In function 'sws_init_swScale_MMX2': libswscale/x86/swscale_template.c:1839: warning: assignment from incompatible pointer type libswscale/x86/swscale_template.c:1840: warning: assignment from incompatible pointer type libswscale/x86/swscale_template.c:1846: warning: assignment from incompatible pointer type libswscale/x86/swscale_template.c:1847: warning: assignment from incompatible pointer type libswscale/x86/swscale_mmx.c: In function 'ff_sws_init_swScale_mmx': libswscale/x86/swscale_mmx.c:472: warning: assignment from incompatible pointer type libswscale/x86/swscale_mmx.c:474: warning: assignment from incompatible pointer type libswscale/x86/swscale_mmx.c:477: warning: assignment from incompatible pointer type libswscale/x86/swscale_mmx.c:478: warning: assignment from incompatible pointer type libswscale/x86/swscale_mmx.c:481: warning: assignment from incompatible pointer type libswscale/x86/swscale_mmx.c:482: warning: assignment from incompatible pointer type libswscale/x86/swscale_mmx.c:485: warning: assignment from incompatible pointer type libswscale/x86/swscale_mmx.c:488: warning: assignment from incompatible pointer type libswscale/x86/swscale_mmx.c:512: warning: assignment from incompatible pointer type libswscale/x86/swscale_mmx.c:515: warning: assignment from incompatible pointer type libswscale/x86/swscale_mmx.c:518: warning: assignment from incompatible pointer type libswscale/x86/swscale_mmx.c:521: warning: assignment from incompatible pointer type CC libswscale/x86/yuv2rgb_mmx.o CC libswscale/yuv2rgb.o LD libswscale/swscale-2-x86_64-freebsd.so LD libavfilter/avfilter-2-x86_64-freebsd.so CC libpostproc/postprocess.o LD libpostproc/postproc-52-x86_64-freebsd.so gmake[2]: Leaving directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/ffmpeg' cp ffmpeg/libavutil/libavutil.so /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/system/players/dvdplayer/avutil-51-x86_64-freebsd.so cp ffmpeg/libavcodec/libavcodec.so /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/system/players/dvdplayer/avcodec-53-x86_64-freebsd.so cp ffmpeg/libavformat/libavformat.so /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/system/players/dvdplayer/avformat-53-x86_64-freebsd.so cp ffmpeg/libpostproc/libpostproc.so /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/system/players/dvdplayer/postproc-52-x86_64-freebsd.so cp ffmpeg/libavfilter/libavfilter.so /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/system/players/dvdplayer/avfilter-2-x86_64-freebsd.so cp ffmpeg/libswscale/libswscale.so /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/system/players/dvdplayer/swscale-2-x86_64-freebsd.so cp ffmpeg/libswresample/libswresample.so /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/system/players/dvdplayer/swresample-0-x86_64-freebsd.so gmake[1]: Leaving directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib' gmake -C lib/libdvd gmake[1]: Entering directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd' gmake -C libdvdcss gmake[2]: Entering directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdcss' gmake all-recursive gmake[3]: Entering directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdcss' Making all in src gmake[4]: Entering directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdcss/src' Making all in dvdcss gmake[5]: Entering directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdcss/src/dvdcss' gmake[5]: Nothing to be done for `all'. gmake[5]: Leaving directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdcss/src/dvdcss' gmake[5]: Entering directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdcss/src' /bin/sh ../libtool --tag=CC --mode=compile /usr/local/bin/ccache cc -DHAVE_CONFIG_H -I. -I.. -I/usr/local/include -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DDVDCSS_DIST -Wsign-compare -Wall -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -MT libdvdcss.lo -MD -MP -MF .deps/libdvdcss.Tpo -c -o libdvdcss.lo libdvdcss.c libtool: compile: /usr/local/bin/ccache cc -DHAVE_CONFIG_H -I. -I.. -I/usr/local/include -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DDVDCSS_DIST -Wsign-compare -Wall -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -MT libdvdcss.lo -MD -MP -MF .deps/libdvdcss.Tpo -c libdvdcss.c -fPIC -DPIC -o .libs/libdvdcss.o libtool: compile: /usr/local/bin/ccache cc -DHAVE_CONFIG_H -I. -I.. -I/usr/local/include -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DDVDCSS_DIST -Wsign-compare -Wall -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -MT libdvdcss.lo -MD -MP -MF .deps/libdvdcss.Tpo -c libdvdcss.c -fPIC -DPIC -o libdvdcss.o >/dev/null 2>&1 mv -f .deps/libdvdcss.Tpo .deps/libdvdcss.Plo /bin/sh ../libtool --tag=CC --mode=compile /usr/local/bin/ccache cc -DHAVE_CONFIG_H -I. -I.. -I/usr/local/include -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DDVDCSS_DIST -Wsign-compare -Wall -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -MT device.lo -MD -MP -MF .deps/device.Tpo -c -o device.lo device.c libtool: compile: /usr/local/bin/ccache cc -DHAVE_CONFIG_H -I. -I.. -I/usr/local/include -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DDVDCSS_DIST -Wsign-compare -Wall -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -MT device.lo -MD -MP -MF .deps/device.Tpo -c device.c -fPIC -DPIC -o .libs/device.o libtool: compile: /usr/local/bin/ccache cc -DHAVE_CONFIG_H -I. -I.. -I/usr/local/include -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DDVDCSS_DIST -Wsign-compare -Wall -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -MT device.lo -MD -MP -MF .deps/device.Tpo -c device.c -fPIC -DPIC -o device.o >/dev/null 2>&1 mv -f .deps/device.Tpo .deps/device.Plo /bin/sh ../libtool --tag=CC --mode=compile /usr/local/bin/ccache cc -DHAVE_CONFIG_H -I. -I.. -I/usr/local/include -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DDVDCSS_DIST -Wsign-compare -Wall -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -MT css.lo -MD -MP -MF .deps/css.Tpo -c -o css.lo css.c libtool: compile: /usr/local/bin/ccache cc -DHAVE_CONFIG_H -I. -I.. -I/usr/local/include -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DDVDCSS_DIST -Wsign-compare -Wall -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -MT css.lo -MD -MP -MF .deps/css.Tpo -c css.c -fPIC -DPIC -o .libs/css.o libtool: compile: /usr/local/bin/ccache cc -DHAVE_CONFIG_H -I. -I.. -I/usr/local/include -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DDVDCSS_DIST -Wsign-compare -Wall -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -MT css.lo -MD -MP -MF .deps/css.Tpo -c css.c -fPIC -DPIC -o css.o >/dev/null 2>&1 mv -f .deps/css.Tpo .deps/css.Plo /bin/sh ../libtool --tag=CC --mode=compile /usr/local/bin/ccache cc -DHAVE_CONFIG_H -I. -I.. -I/usr/local/include -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DDVDCSS_DIST -Wsign-compare -Wall -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -MT ioctl.lo -MD -MP -MF .deps/ioctl.Tpo -c -o ioctl.lo ioctl.c libtool: compile: /usr/local/bin/ccache cc -DHAVE_CONFIG_H -I. -I.. -I/usr/local/include -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DDVDCSS_DIST -Wsign-compare -Wall -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -MT ioctl.lo -MD -MP -MF .deps/ioctl.Tpo -c ioctl.c -fPIC -DPIC -o .libs/ioctl.o libtool: compile: /usr/local/bin/ccache cc -DHAVE_CONFIG_H -I. -I.. -I/usr/local/include -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DDVDCSS_DIST -Wsign-compare -Wall -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -MT ioctl.lo -MD -MP -MF .deps/ioctl.Tpo -c ioctl.c -fPIC -DPIC -o ioctl.o >/dev/null 2>&1 mv -f .deps/ioctl.Tpo .deps/ioctl.Plo /bin/sh ../libtool --tag=CC --mode=compile /usr/local/bin/ccache cc -DHAVE_CONFIG_H -I. -I.. -I/usr/local/include -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DDVDCSS_DIST -Wsign-compare -Wall -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -MT error.lo -MD -MP -MF .deps/error.Tpo -c -o error.lo error.c libtool: compile: /usr/local/bin/ccache cc -DHAVE_CONFIG_H -I. -I.. -I/usr/local/include -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DDVDCSS_DIST -Wsign-compare -Wall -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -MT error.lo -MD -MP -MF .deps/error.Tpo -c error.c -fPIC -DPIC -o .libs/error.o libtool: compile: /usr/local/bin/ccache cc -DHAVE_CONFIG_H -I. -I.. -I/usr/local/include -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DDVDCSS_DIST -Wsign-compare -Wall -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -MT error.lo -MD -MP -MF .deps/error.Tpo -c error.c -fPIC -DPIC -o error.o >/dev/null 2>&1 mv -f .deps/error.Tpo .deps/error.Plo /bin/sh ../libtool --tag=CC --mode=link /usr/local/bin/ccache cc -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DDVDCSS_DIST -Wsign-compare -Wall -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -version-info 3:0:1 -no-undefined -L/usr/local/lib -o libdvdcss.la -rpath /usr/local/lib libdvdcss.lo device.lo css.lo ioctl.lo error.lo libtool: link: /usr/local/bin/ccache cc -shared -fPIC -DPIC .libs/libdvdcss.o .libs/device.o .libs/css.o .libs/ioctl.o .libs/error.o -L/usr/local/lib -O2 -O2 -Wl,-soname -Wl,libdvdcss.so.3 -o .libs/libdvdcss.so.3 libtool: link: (cd ".libs" && rm -f "libdvdcss.so" && ln -s "libdvdcss.so.3" "libdvdcss.so") libtool: link: (cd ".libs" && rm -f "libdvdcss.so" && ln -s "libdvdcss.so.3" "libdvdcss.so") libtool: link: ar cru .libs/libdvdcss.a libdvdcss.o device.o css.o ioctl.o error.o libtool: link: ranlib .libs/libdvdcss.a libtool: link: ( cd ".libs" && rm -f "libdvdcss.la" && ln -s "../libdvdcss.la" "libdvdcss.la" ) gmake[5]: Leaving directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdcss/src' gmake[4]: Leaving directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdcss/src' Making all in test gmake[4]: Entering directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdcss/test' /usr/local/bin/ccache cc -DHAVE_CONFIG_H -I. -I.. -I/usr/local/include -I../src -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DDVDCSS_DIST -Wsign-compare -Wall -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -MT csstest-csstest.o -MD -MP -MF .deps/csstest-csstest.Tpo -c -o csstest-csstest.o `test -f 'csstest.c' || echo './'`csstest.c mv -f .deps/csstest-csstest.Tpo .deps/csstest-csstest.Po /bin/sh ../libtool --tag=CC --mode=link /usr/local/bin/ccache cc -I../src -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DDVDCSS_DIST -Wsign-compare -Wall -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -L/usr/local/lib -o csstest csstest-csstest.o ../src/libdvdcss.la libtool: link: /usr/local/bin/ccache cc -I../src -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DDVDCSS_DIST -Wsign-compare -Wall -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -o .libs/csstest csstest-csstest.o -L/usr/local/lib ../src/.libs/libdvdcss.so -Wl,-rpath -Wl,/usr/local/lib gmake[4]: Leaving directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdcss/test' Making all in doc gmake[4]: Entering directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdcss/doc' rm -f doxygen.cfg sed 's|@SRCDIR@|.|g; s|@TOP_SRCDIR@|..|g' doxygen.cfg.in > doxygen.cfg gmake[4]: Leaving directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdcss/doc' gmake[4]: Entering directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdcss' gmake[4]: Nothing to be done for `all-am'. gmake[4]: Leaving directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdcss' gmake[3]: Leaving directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdcss' gmake[2]: Leaving directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdcss' gmake -C libdvdread gmake[2]: Entering directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread' cd obj && /usr/local/bin/ccache cc -MD -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -D_XBMC -DHAVE_DVDCSS_DVDCSS_H -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread/../libdvdcss/src -g -Wall -funsigned-char -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread"/src -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -DHAVE_CONFIG_H -DHAVE_DLFCN_H -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread"/src -c -o dvd_input.o /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread/src/dvd_input.c cd obj && /usr/local/bin/ccache cc -MD -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -D_XBMC -DHAVE_DVDCSS_DVDCSS_H -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread/../libdvdcss/src -g -Wall -funsigned-char -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread"/src -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -DHAVE_CONFIG_H -DHAVE_DLFCN_H -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread"/src -c -o dvd_reader.o /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread/src/dvd_reader.c cd obj && /usr/local/bin/ccache cc -MD -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -D_XBMC -DHAVE_DVDCSS_DVDCSS_H -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread/../libdvdcss/src -g -Wall -funsigned-char -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread"/src -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -DHAVE_CONFIG_H -DHAVE_DLFCN_H -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread"/src -c -o dvd_udf.o /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread/src/dvd_udf.c cd obj && /usr/local/bin/ccache cc -MD -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -D_XBMC -DHAVE_DVDCSS_DVDCSS_H -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread/../libdvdcss/src -g -Wall -funsigned-char -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread"/src -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -DHAVE_CONFIG_H -DHAVE_DLFCN_H -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread"/src -c -o ifo_print.o /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread/src/ifo_print.c cd obj && /usr/local/bin/ccache cc -MD -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -D_XBMC -DHAVE_DVDCSS_DVDCSS_H -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread/../libdvdcss/src -g -Wall -funsigned-char -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread"/src -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -DHAVE_CONFIG_H -DHAVE_DLFCN_H -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread"/src -c -o ifo_read.o /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread/src/ifo_read.c cd obj && /usr/local/bin/ccache cc -MD -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -D_XBMC -DHAVE_DVDCSS_DVDCSS_H -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread/../libdvdcss/src -g -Wall -funsigned-char -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread"/src -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -DHAVE_CONFIG_H -DHAVE_DLFCN_H -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread"/src -c -o md5.o /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread/src/md5.c cd obj && /usr/local/bin/ccache cc -MD -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -D_XBMC -DHAVE_DVDCSS_DVDCSS_H -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread/../libdvdcss/src -g -Wall -funsigned-char -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread"/src -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -DHAVE_CONFIG_H -DHAVE_DLFCN_H -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread"/src -c -o nav_print.o /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread/src/nav_print.c cd obj && /usr/local/bin/ccache cc -MD -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -D_XBMC -DHAVE_DVDCSS_DVDCSS_H -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread/../libdvdcss/src -g -Wall -funsigned-char -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread"/src -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -DHAVE_CONFIG_H -DHAVE_DLFCN_H -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread"/src -c -o nav_read.o /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread/src/nav_read.c cd obj && /usr/local/bin/ccache cc -MD -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -D_XBMC -DHAVE_DVDCSS_DVDCSS_H -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread/../libdvdcss/src -g -Wall -funsigned-char -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread"/src -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -DHAVE_CONFIG_H -DHAVE_DLFCN_H -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread"/src -c -o bitreader.o /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread/src/bitreader.c cd obj && ar rc libdvdread.a dvd_input.o dvd_reader.o dvd_udf.o ifo_print.o ifo_read.o md5.o nav_print.o nav_read.o bitreader.o cd obj && ranlib libdvdread.a sed -e 's,@prefix@,/usr/local,' -e 's,@exec_prefix@,/usr/local,' -e 's,@libdir@,/usr/local/lib,' -e 's,@includedir@,/usr/local/include,' -e 's,@VERSION@,4.1.3,' misc/dvdread.pc.in > obj/dvdread.pc gmake[2]: Leaving directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdread' gmake -C libdvdnav gmake[2]: Entering directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav' cd obj && /usr/local/bin/ccache cc -MD -O3 -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -D_XBMC -DHAVE_DVDCSS_DVDCSS_H -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav/../includes -g -Wall -funsigned-char -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav"/src -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav"/src/vm -DDVDNAV_COMPILE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -DHAVE_CONFIG_H -DHAVE_DLFCN_H -I/usr/local/include -c -o dvdnav.o /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav/src/dvdnav.c cd obj && /usr/local/bin/ccache cc -MD -O3 -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -D_XBMC -DHAVE_DVDCSS_DVDCSS_H -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav/../includes -g -Wall -funsigned-char -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav"/src -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav"/src/vm -DDVDNAV_COMPILE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -DHAVE_CONFIG_H -DHAVE_DLFCN_H -I/usr/local/include -c -o highlight.o /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav/src/highlight.c cd obj && /usr/local/bin/ccache cc -MD -O3 -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -D_XBMC -DHAVE_DVDCSS_DVDCSS_H -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav/../includes -g -Wall -funsigned-char -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav"/src -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav"/src/vm -DDVDNAV_COMPILE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -DHAVE_CONFIG_H -DHAVE_DLFCN_H -I/usr/local/include -c -o navigation.o /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav/src/navigation.c cd obj && /usr/local/bin/ccache cc -MD -O3 -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -D_XBMC -DHAVE_DVDCSS_DVDCSS_H -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav/../includes -g -Wall -funsigned-char -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav"/src -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav"/src/vm -DDVDNAV_COMPILE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -DHAVE_CONFIG_H -DHAVE_DLFCN_H -I/usr/local/include -c -o read_cache.o /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav/src/read_cache.c cd obj && /usr/local/bin/ccache cc -MD -O3 -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -D_XBMC -DHAVE_DVDCSS_DVDCSS_H -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav/../includes -g -Wall -funsigned-char -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav"/src -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav"/src/vm -DDVDNAV_COMPILE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -DHAVE_CONFIG_H -DHAVE_DLFCN_H -I/usr/local/include -c -o remap.o /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav/src/remap.c cd obj && /usr/local/bin/ccache cc -MD -O3 -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -D_XBMC -DHAVE_DVDCSS_DVDCSS_H -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav/../includes -g -Wall -funsigned-char -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav"/src -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav"/src/vm -DDVDNAV_COMPILE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -DHAVE_CONFIG_H -DHAVE_DLFCN_H -I/usr/local/include -c -o searching.o /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav/src/searching.c /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav/src/searching.c: In function 'dvdnav_time_search': /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav/src/searching.c:106: warning: 'target' may be used uninitialized in this function cd obj && /usr/local/bin/ccache cc -MD -O3 -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -D_XBMC -DHAVE_DVDCSS_DVDCSS_H -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav/../includes -g -Wall -funsigned-char -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav"/src -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav"/src/vm -DDVDNAV_COMPILE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -DHAVE_CONFIG_H -DHAVE_DLFCN_H -I/usr/local/include -c -o settings.o /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav/src/settings.c cd obj && /usr/local/bin/ccache cc -MD -O3 -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -D_XBMC -DHAVE_DVDCSS_DVDCSS_H -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav/../includes -g -Wall -funsigned-char -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav"/src -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav"/src/vm -DDVDNAV_COMPILE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -DHAVE_CONFIG_H -DHAVE_DLFCN_H -I/usr/local/include -c -o decoder.o /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav/src/vm/decoder.c cd obj && /usr/local/bin/ccache cc -MD -O3 -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -D_XBMC -DHAVE_DVDCSS_DVDCSS_H -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav/../includes -g -Wall -funsigned-char -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav"/src -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav"/src/vm -DDVDNAV_COMPILE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -DHAVE_CONFIG_H -DHAVE_DLFCN_H -I/usr/local/include -c -o vm.o /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav/src/vm/vm.c /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav/src/vm/vm.c:137: warning: 'dvd_read_name' defined but not used cd obj && /usr/local/bin/ccache cc -MD -O3 -O2 -O2 -pipe -fno-strict-aliasing -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG=1 -I/usr/local/include -D_XBMC -DHAVE_DVDCSS_DVDCSS_H -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav/../includes -g -Wall -funsigned-char -I/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav"/src -I"/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav"/src/vm -DDVDNAV_COMPILE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -DHAVE_CONFIG_H -DHAVE_DLFCN_H -I/usr/local/include -c -o vmcmd.o /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav/src/vm/vmcmd.c cd obj && ar rc libdvdnav.a dvdnav.o highlight.o navigation.o read_cache.o remap.o searching.o settings.o decoder.o vm.o vmcmd.o cd obj && ranlib libdvdnav.a cat /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav/misc/dvdnav-config2.sh >> obj/dvdnav-config chmod 0755 obj/dvdnav-config sed -e 's,@prefix@,/usr/local,' -e 's,@exec_prefix@,/usr/local,' -e 's,@libdir@,/usr/local/lib,' -e 's,@includedir@,/usr/local/include,' -e 's,@VERSION@,4.1.3,' -e 's,@THREAD_CFLAGS@,,' -e 's,@THREAD_LIBS@,-lpthread,' -e 's,@DVDREAD_CFLAGS@,-I/usr/local/include,' misc/dvdnav.pc.in > obj/dvdnav.pc sed -e 's,@prefix@,/usr/local,' -e 's,@exec_prefix@,/usr/local,' -e 's,@libdir@,/usr/local/lib,' -e 's,@includedir@,/usr/local/include,' -e 's,@VERSION@,4.1.3,' -e 's,@THREAD_CFLAGS@,,' -e 's,@THREAD_LIBS@,-lpthread,' -e 's,@DVDREAD_CFLAGS@,-I/usr/local/include,' misc/dvdnavmini.pc.in > obj/dvdnavmini.pc gmake[2]: Leaving directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd/libdvdnav' /usr/local/bin/ccache cc -o /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/system/players/dvdplayer/libdvdnav-x86_64-freebsd.so -L/usr/local/lib -L/usr/local/lib -shared -fPIC -rdynamic -L/usr/local/lib -Wl,--soname,/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/system/players/dvdplayer/libdvdnav-x86_64-freebsd.so libdvdcss/src/.libs/*.o libdvdread/obj/*.o libdvdnav/obj/*.o -lm \ -Wl,--unresolved-symbols=ignore-all \ `cat /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/cores/DllLoader/exports/wrapper.def` /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/cores/DllLoader/exports/wrapper.o /usr/local/bin/ccache cc -o /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/system/players/dvdplayer/libdvdcss-x86_64-freebsd.so -L/usr/local/lib -L/usr/local/lib -shared -fPIC -rdynamic -L/usr/local/lib -Wl,--soname,/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/system/players/dvdplayer/libdvdcss-x86_64-freebsd.so \ libdvdcss/src/*.o -Wl,--unresolved-symbols=ignore-all -lm \ `cat /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/cores/DllLoader/exports/wrapper.def` /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/cores/DllLoader/exports/wrapper.o gmake[1]: Leaving directory `/wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/libdvd' CPP xbmc/cores/dvdplayer/DVDAudio.o CPP xbmc/cores/dvdplayer/DVDClock.o CPP xbmc/cores/dvdplayer/DVDDemuxSPU.o CPP xbmc/cores/dvdplayer/DVDFileInfo.o In file included from DVDFileInfo.cpp:42: DVDDemuxers/DVDDemuxFFmpeg.h:127:1: warning: "MAX_STREAMS" redefined In file included from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/DllAvFormat.h:48, from DVDDemuxers/DVDDemuxFFmpeg.h:24, from DVDFileInfo.cpp:42: /usr/local/include/libavformat/avformat.h:715:1: warning: this is the location of the previous definition In file included from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/DllAvFormat.h:49, from DVDDemuxers/DVDDemuxFFmpeg.h:25, from DVDFileInfo.cpp:43: /usr/local/include/libavformat/avformat.h:158: warning: 'AVMetadata' is deprecated (declared at /usr/local/include/libavformat/avformat.h:131) CPP xbmc/cores/dvdplayer/DVDMessage.o CPP xbmc/cores/dvdplayer/DVDMessageQueue.o CPP xbmc/cores/dvdplayer/DVDMessageTracker.o CPP xbmc/cores/dvdplayer/DVDOverlayContainer.o In file included from DVDInputStreams/dvdnav/dvdnav_internal.h:50, from DVDInputStreams/DllDvdNav.h:37, from DVDInputStreams/DVDInputStreamNavigator.h:28, from DVDOverlayContainer.cpp:22: /usr/include/sys/timeb.h:42:2: warning: #warning "this file includes which is deprecated" CPP xbmc/cores/dvdplayer/DVDOverlayRenderer.o CPP xbmc/cores/dvdplayer/DVDPerformanceCounter.o CPP xbmc/cores/dvdplayer/DVDPlayer.o In file included from DVDInputStreams/dvdnav/dvdnav_internal.h:50, from DVDInputStreams/DllDvdNav.h:37, from DVDInputStreams/DVDInputStreamNavigator.h:28, from DVDPlayer.cpp:28: /usr/include/sys/timeb.h:42:2: warning: #warning "this file includes which is deprecated" In file included from DVDPlayer.cpp:36: DVDDemuxers/DVDDemuxFFmpeg.h:127:1: warning: "MAX_STREAMS" redefined In file included from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/DllAvFormat.h:48, from DVDDemuxers/DVDDemuxFFmpeg.h:24, from DVDPlayer.cpp:36: /usr/local/include/libavformat/avformat.h:715:1: warning: this is the location of the previous definition In file included from /usr/local/include/cdio/types.h:34, from /usr/local/include/cdio/cdio.h:35, from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/storage/cdioSupport.h:37, from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/storage/IStorageProvider.h:24, from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/storage/MediaManager.h:25, from DVDPlayer.cpp:79: /usr/local/include/cdio/cdio_config.h:306:1: warning: "PACKAGE" redefined In file included from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/system.h:24, from DVDPlayer.cpp:22: /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/config.h:670:1: warning: this is the location of the previous definition In file included from /usr/local/include/cdio/types.h:34, from /usr/local/include/cdio/cdio.h:35, from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/storage/cdioSupport.h:37, from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/storage/IStorageProvider.h:24, from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/storage/MediaManager.h:25, from DVDPlayer.cpp:79: /usr/local/include/cdio/cdio_config.h:309:1: warning: "PACKAGE_BUGREPORT" redefined In file included from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/system.h:24, from DVDPlayer.cpp:22: /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/config.h:673:1: warning: this is the location of the previous definition In file included from /usr/local/include/cdio/types.h:34, from /usr/local/include/cdio/cdio.h:35, from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/storage/cdioSupport.h:37, from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/storage/IStorageProvider.h:24, from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/storage/MediaManager.h:25, from DVDPlayer.cpp:79: /usr/local/include/cdio/cdio_config.h:312:1: warning: "PACKAGE_NAME" redefined In file included from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/system.h:24, from DVDPlayer.cpp:22: /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/config.h:676:1: warning: this is the location of the previous definition In file included from /usr/local/include/cdio/types.h:34, from /usr/local/include/cdio/cdio.h:35, from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/storage/cdioSupport.h:37, from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/storage/IStorageProvider.h:24, from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/storage/MediaManager.h:25, from DVDPlayer.cpp:79: /usr/local/include/cdio/cdio_config.h:315:1: warning: "PACKAGE_STRING" redefined In file included from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/system.h:24, from DVDPlayer.cpp:22: /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/config.h:679:1: warning: this is the location of the previous definition In file included from /usr/local/include/cdio/types.h:34, from /usr/local/include/cdio/cdio.h:35, from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/storage/cdioSupport.h:37, from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/storage/IStorageProvider.h:24, from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/storage/MediaManager.h:25, from DVDPlayer.cpp:79: /usr/local/include/cdio/cdio_config.h:318:1: warning: "PACKAGE_TARNAME" redefined In file included from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/system.h:24, from DVDPlayer.cpp:22: /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/config.h:682:1: warning: this is the location of the previous definition In file included from /usr/local/include/cdio/types.h:34, from /usr/local/include/cdio/cdio.h:35, from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/storage/cdioSupport.h:37, from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/storage/IStorageProvider.h:24, from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/storage/MediaManager.h:25, from DVDPlayer.cpp:79: /usr/local/include/cdio/cdio_config.h:324:1: warning: "PACKAGE_VERSION" redefined In file included from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/system.h:24, from DVDPlayer.cpp:22: /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/config.h:688:1: warning: this is the location of the previous definition In file included from /usr/local/include/cdio/types.h:34, from /usr/local/include/cdio/cdio.h:35, from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/storage/cdioSupport.h:37, from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/storage/IStorageProvider.h:24, from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/storage/MediaManager.h:25, from DVDPlayer.cpp:79: /usr/local/include/cdio/cdio_config.h:352:1: warning: "VERSION" redefined In file included from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/system.h:24, from DVDPlayer.cpp:22: /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/xbmc/config.h:744:1: warning: this is the location of the previous definition In file included from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/DllAvFormat.h:49, from DVDDemuxers/DVDDemuxFFmpeg.h:25, from DVDPlayer.cpp:37: /usr/local/include/libavformat/avformat.h:158: warning: 'AVMetadata' is deprecated (declared at /usr/local/include/libavformat/avformat.h:131) CPP xbmc/cores/dvdplayer/DVDPlayerAudio.o CPP xbmc/cores/dvdplayer/DVDPlayerAudioResampler.o CPP xbmc/cores/dvdplayer/DVDPlayerSubtitle.o In file included from DVDInputStreams/dvdnav/dvdnav_internal.h:50, from DVDInputStreams/DllDvdNav.h:37, from DVDInputStreams/DVDInputStreamNavigator.h:28, from DVDPlayerSubtitle.cpp:29: /usr/include/sys/timeb.h:42:2: warning: #warning "this file includes which is deprecated" CPP xbmc/cores/dvdplayer/DVDPlayerTeletext.o CPP xbmc/cores/dvdplayer/DVDPlayerVideo.o In file included from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/DllAvFormat.h:49, from DVDCodecs/Video/DVDVideoCodecFFmpeg.h:27, from DVDPlayerVideo.cpp:35: /usr/local/include/libavformat/avformat.h:158: warning: 'AVMetadata' is deprecated (declared at /usr/local/include/libavformat/avformat.h:131) CPP xbmc/cores/dvdplayer/DVDStreamInfo.o CPP xbmc/cores/dvdplayer/DVDTSCorrection.o CPP xbmc/cores/dvdplayer/Edl.o AR xbmc/cores/dvdplayer/DVDPlayer.a CPP xbmc/cores/dvdplayer/DVDCodecs/DVDCodecUtils.o CPP xbmc/cores/dvdplayer/DVDCodecs/DVDFactoryCodec.o In file included from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/DllAvFormat.h:49, from Video/DVDVideoCodecFFmpeg.h:27, from DVDFactoryCodec.cpp:34: /usr/local/include/libavformat/avformat.h:158: warning: 'AVMetadata' is deprecated (declared at /usr/local/include/libavformat/avformat.h:131) AR xbmc/cores/dvdplayer/DVDCodecs/DVDCodecs.a CPP xbmc/cores/dvdplayer/DVDCodecs/Audio/DVDAudioCodecFFmpeg.o In file included from /wrkdirs/usr/ports/multimedia/xbmc/work/xbmc-xbmc-7a6cb7f/lib/DllAvFormat.h:49, from DVDAudioCodecFFmpeg.h:26, from DVDAudioCodecFFmpeg.cpp:22: /usr/local/include/libavformat/avformat.h:158: warning: 'AVMetadata' is deprecated (declared at /usr/local/include/libavformat/avformat.h:131) DVDAudioCodecFFmpeg.cpp: In member function 'virtual int CDVDAudioCodecFFmpeg::Decode(BYTE*, int)': DVDAudioCodecFFmpeg.cpp:163: error: 'struct AVFrame' has no member named 'nb_samples' DVDAudioCodecFFmpeg.cpp: In member function 'void CDVDAudioCodecFFmpeg::ConvertToFloat()': DVDAudioCodecFFmpeg.cpp:208: error: 'struct AVFrame' has no member named 'nb_samples' gmake[1]: *** [DVDAudioCodecFFmpeg.o] Error 1 gmake: *** [xbmc/cores/dvdplayer/DVDCodecs/Audio/Audio.a] Error 2 *** [do-build] Error code 1 Stop in /usr/ports/multimedia/xbmc. ===> Cleaning for xbmc-12.0.r3_2 build of /usr/ports/multimedia/xbmc ended at Fri Mar 8 01:42:04 CET 2013 From owner-freebsd-ports@FreeBSD.ORG Fri Mar 8 14:05:51 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id C3CE47CE for ; Fri, 8 Mar 2013 14:05:51 +0000 (UTC) (envelope-from portscout@portscout.freebsd.org) Received: from null.zi0r.com (null.zi0r.com [71.245.171.204]) by mx1.freebsd.org (Postfix) with ESMTP id 855EC2AB for ; Fri, 8 Mar 2013 14:05:51 +0000 (UTC) Received: from null.zi0r.com (localhost [127.0.0.1]) by null.zi0r.com (8.14.5/8.14.5) with ESMTP id r28E5jBx011242 for ; Fri, 8 Mar 2013 09:05:45 -0500 (EST) (envelope-from portscout@null.zi0r.com) Received: (from portscout@localhost) by null.zi0r.com (8.14.5/8.14.5/Submit) id r28E5jvq010979; Fri, 8 Mar 2013 09:05:45 -0500 (EST) (envelope-from portscout) Message-Id: <201303081405.r28E5jvq010979@null.zi0r.com> MIME-Version: 1.0 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain Date: Fri, 8 Mar 2013 09:05:45 -0500 From: portscout@portscout.freebsd.org To: ports@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Mar 2013 14:05:51 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/ports@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ misc/freeswitch-scripts-devel | 1.2.3 | 1.2.7 ------------------------------------------------+-----------------+------------ net/freeswitch-curl-devel | 1.2.3 | 1.2.7 ------------------------------------------------+-----------------+------------ net/freeswitch-insideout-devel | 1.2.3 | 1.2.7 ------------------------------------------------+-----------------+------------ net/freeswitch-sbc-devel | 1.2.3 | 1.2.7 ------------------------------------------------+-----------------+------------ net/freeswitch-vanilla-devel | 1.2.3 | 1.2.7 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt If wish to stop receiving portscout reminders, please contact portscout@portscout.freebsd.org Thanks. From owner-freebsd-ports@FreeBSD.ORG Fri Mar 8 14:45:34 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 2A1FDFB8 for ; Fri, 8 Mar 2013 14:45:34 +0000 (UTC) (envelope-from lenzi.sergio@gmail.com) Received: from mail-yh0-x22e.google.com (mail-yh0-x22e.google.com [IPv6:2607:f8b0:4002:c01::22e]) by mx1.freebsd.org (Postfix) with ESMTP id E70EF746 for ; Fri, 8 Mar 2013 14:45:33 +0000 (UTC) Received: by mail-yh0-f46.google.com with SMTP id q15so263376yhf.5 for ; Fri, 08 Mar 2013 06:45:33 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:subject:from:to:references:in-reply-to :disposition-notification-to:content-type:date:message-id :mime-version:x-mailer; bh=8vGheHepPy4RSd1YoQ7L1h/O5gKx2RfcNLhrdC2n2gE=; b=qgYyApv66Bcwn3gCy2Y++gorvKQJVRoNEC1KihrDBlGtuJ/+L9tNu06Vx3Cxf61gxL n6gAi58b6SVW87vtxBdH/kbeloVaIGpuyzXuicnUYW3or6Q3XZppT+ROkkAw/SrROQ6q S7LSK+rEuk1mRZYN23giTUKx0NkzNl+Dw+jC9TI6JZVYS4tzsKKYC6iF/64bZlhIIzsm MLkRca18jEgzbwXT2wCeUTbkGcpf+e3Os4ppn7YP8YI7IssoifJK8RqYHEVrrbPEtleS Rvh1rY9KDXCIBPNBY/r7CaOuB4GNFlMGC113O/Cd98qMHUyjfdbLDzBPUdxkWGaexmLM uXtQ== X-Received: by 10.236.197.71 with SMTP id s47mr1648951yhn.78.1362753933520; Fri, 08 Mar 2013 06:45:33 -0800 (PST) Received: from [192.168.6.230] ([177.82.45.55]) by mx.google.com with ESMTPS id e8sm8049775yhh.16.2013.03.08.06.45.31 (version=SSLv3 cipher=RC4-SHA bits=128/128); Fri, 08 Mar 2013 06:45:32 -0800 (PST) Subject: Freedesktop.org connection refused From: Sergio de Almeida Lenzi To: ports References: <3430048.ebNYIKijIj@luna.wi.rr.com> In-Reply-To: <3430048.ebNYIKijIj@luna.wi.rr.com> Date: Fri, 08 Mar 2013 11:45:28 -0300 Message-ID: <1362753929.34817.2.camel@z6000.lenzicasa> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Mar 2013 14:45:34 -0000 Hello, Can someone please inform me about a mirror for freedesktop.org??? Seems the master site is refusing connections... TIA, Sergio From owner-freebsd-ports@FreeBSD.ORG Fri Mar 8 15:52:24 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 7B4EB66F for ; Fri, 8 Mar 2013 15:52:24 +0000 (UTC) (envelope-from mickael.maillot@gmail.com) Received: from mail-bk0-x22e.google.com (mail-bk0-x22e.google.com [IPv6:2a00:1450:4008:c01::22e]) by mx1.freebsd.org (Postfix) with ESMTP id EF797D77 for ; Fri, 8 Mar 2013 15:52:23 +0000 (UTC) Received: by mail-bk0-f46.google.com with SMTP id j5so769231bkw.5 for ; Fri, 08 Mar 2013 07:52:23 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=p7Hvacc+GM0v+GvJ8d34wZB63g+XX9hQ/wKHg0NhKEQ=; b=Fr4KmP1j5GFnnMWNISMIgnG+hSmL/czEQ5ugnShCW2TzxmVncWH8m2glubt3t49IG/ WKWpVgL9iCIguDbxeczug/RUT9lpJ6qDrkzkWbnKzjah2f1rntaYTGv53yT7ZjY0lTfC wAQlpb7p0ubz0Bd8tHCpToVltEutzzXhGWW0X4Wp/oqBFy9Sea7SfHTZuWsD3mczO8vE AaprLSQnYWGxVwWrGUQqM7wYmNt24gZ0RUsDnMSjfIsQKlsoaTZv2touif/93tOSE3Lg LnbsK61fXYBsQzVr6qD6INeuWdx2wQZMzkD74IaELnT+j+NeQKRhI96Ceypq4sVuRXo0 e12A== MIME-Version: 1.0 X-Received: by 10.205.23.4 with SMTP id qy4mr1081752bkb.89.1362757942950; Fri, 08 Mar 2013 07:52:22 -0800 (PST) Received: by 10.205.82.133 with HTTP; Fri, 8 Mar 2013 07:52:22 -0800 (PST) In-Reply-To: <4655524.4kmxkI0HV0@wolfgang> References: <1621063.4o9VRTxcAU@wolfgang> <4655524.4kmxkI0HV0@wolfgang> Date: Fri, 8 Mar 2013 16:52:22 +0100 Message-ID: Subject: Re: xbmc and poudriere compile error From: =?ISO-8859-1?Q?Micka=EBl_Maillot?= To: Wolfgang Riegler Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Mar 2013 15:52:24 -0000 2013/3/8 Wolfgang Riegler > Hi, > > I do a portsnap fetch update before running poudriere bulk. Is > ports/175933 newer? I have Last night same error. I have to install svn > first to test the port revision. > > that it: Installing ffmpeg-0.7.15,1 currently xbmc can not be build with ffmpeg 0.7 installed, in PR 175933, you'll find update to 12.0 final and a fix for that. but the fix does not work with clang. From owner-freebsd-ports@FreeBSD.ORG Fri Mar 8 16:57:23 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id D4EA39D3 for ; Fri, 8 Mar 2013 16:57:23 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-wg0-f46.google.com (mail-wg0-f46.google.com [74.125.82.46]) by mx1.freebsd.org (Postfix) with ESMTP id 62E752E7 for ; Fri, 8 Mar 2013 16:57:23 +0000 (UTC) Received: by mail-wg0-f46.google.com with SMTP id fg15so2713171wgb.1 for ; Fri, 08 Mar 2013 08:57:22 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:sender:date:from:to:cc:subject:message-id:references :mime-version:content-type:content-disposition:in-reply-to :user-agent; bh=O+XxfH7RUscguTnx1XAeCdELg4eqbFeKZLi+ZpuRjCM=; b=DHyu0EPiFe9tX27zQA17Ls28WEyNOy57HFVRXfG4fy6zwKHmPdFmyPuzKIlO9do/BL F6wgzPE0Gz8WFJ8OXCYpBI/EBVu/eetdJfkZx9kQat8lWIh+RAXg6A1KDe1jz8uLH+sZ pOnrFwy6OLKnSulrMMl1R1OVs9XrbrXSEY08vFlSIe8TBjFqLDwf0pGo8mICZH1hd4Wq X5e75tYbiSX4QR4aLyVQtYwf/y0tSygBONuuSl8Y/Yn+WN3fUyg1IFQFMYUbgH8pnymi yRpoQHr9zj8vzoUQV8xn24HvKT8LuvrazrdnuQwx3lAToEsVCKD6NsR7XjFr5xxGOWM8 bVIQ== X-Received: by 10.194.178.9 with SMTP id cu9mr5503958wjc.39.1362761840239; Fri, 08 Mar 2013 08:57:20 -0800 (PST) Received: from ithaqua.etoilebsd.net (ithaqua.etoilebsd.net. [37.59.37.188]) by mx.google.com with ESMTPS id er3sm40551937wib.1.2013.03.08.08.57.18 (version=TLSv1 cipher=RC4-SHA bits=128/128); Fri, 08 Mar 2013 08:57:18 -0800 (PST) Sender: Baptiste Daroussin Date: Fri, 8 Mar 2013 17:57:16 +0100 From: Baptiste Daroussin To: =?iso-8859-1?Q?Micka=EBl?= Maillot Subject: Re: xbmc and poudriere compile error Message-ID: <20130308165716.GR18971@ithaqua.etoilebsd.net> References: <1621063.4o9VRTxcAU@wolfgang> <4655524.4kmxkI0HV0@wolfgang> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="b2ktwntdbf0dPnbx" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: Wolfgang Riegler , freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Mar 2013 16:57:23 -0000 --b2ktwntdbf0dPnbx Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Mar 08, 2013 at 04:52:22PM +0100, Micka=EBl Maillot wrote: > 2013/3/8 Wolfgang Riegler >=20 > > Hi, > > > > I do a portsnap fetch update before running poudriere bulk. Is > > ports/175933 newer? I have Last night same error. I have to install svn > > first to test the port revision. > > > > > that it: Installing ffmpeg-0.7.15,1 > currently xbmc can not be build with ffmpeg 0.7 installed, Actually that just mean that ffmpeg 0.7 is in the dependency graph of xbmc, meaning something needs to be fixed so that xbmc does not depends by anyway= on ffmpeg 0.7. regards, Bapt --b2ktwntdbf0dPnbx Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlE6GGwACgkQ8kTtMUmk6ExzqACglfyR49kOSZf86hHHD4bMq4pl 7pYAn2v8aTnaBS+00i08vXe+ZatV/2Xt =ONRL -----END PGP SIGNATURE----- --b2ktwntdbf0dPnbx-- From owner-freebsd-ports@FreeBSD.ORG Fri Mar 8 18:36:33 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 656324F0 for ; Fri, 8 Mar 2013 18:36:33 +0000 (UTC) (envelope-from hiren.panchasara@gmail.com) Received: from mail-ee0-f47.google.com (mail-ee0-f47.google.com [74.125.83.47]) by mx1.freebsd.org (Postfix) with ESMTP id E2BDCE94 for ; Fri, 8 Mar 2013 18:36:32 +0000 (UTC) Received: by mail-ee0-f47.google.com with SMTP id e52so1199272eek.34 for ; Fri, 08 Mar 2013 10:36:25 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=4ur4e5gQ5hw47+7k+KVBOwBX2PpBBjV+QC5cdwd3nmY=; b=Hu+l3Nq853VBGjRFI8GKwv8ZXr5jLp95WSqgA/6dKdBEIin+z0zoLd/ceubV8dgWCw cRvfatf7lVcZM3xiB2q34kvWOUw0tCyJsm1VGT4lOPpMQRCEd0gmykOohG/7vMDuHuwN xC4s7fZ4Ui6SI/XP2FDFWzGo/p9GbIKHPMyngKpa75lMii0ZRYdwI7XYaRxICsfCuKCh YETsaIAKJvYatMaNmkdPPc7ZcBo5lMle+j8DaWyF+mmuBYlXbtDshXGi0K1DGIAPtZBl xMvWa3c51kIqsHajvxa8m91eIfJ4hQTz6Xsq3zarzCMSGKXzSrlZBA/j3WdaTxKF+iRH vPDw== MIME-Version: 1.0 X-Received: by 10.14.194.198 with SMTP id m46mr8351450een.8.1362767785731; Fri, 08 Mar 2013 10:36:25 -0800 (PST) Received: by 10.14.133.204 with HTTP; Fri, 8 Mar 2013 10:36:25 -0800 (PST) In-Reply-To: <1362753929.34817.2.camel@z6000.lenzicasa> References: <3430048.ebNYIKijIj@luna.wi.rr.com> <1362753929.34817.2.camel@z6000.lenzicasa> Date: Fri, 8 Mar 2013 10:36:25 -0800 Message-ID: Subject: Re: Freedesktop.org connection refused From: hiren panchasara To: Sergio de Almeida Lenzi Content-Type: text/plain; charset=UTF-8 Cc: ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Mar 2013 18:36:33 -0000 On Fri, Mar 8, 2013 at 6:45 AM, Sergio de Almeida Lenzi wrote: > Hello, > > Can someone please inform me about > a mirror for freedesktop.org??? > > Seems the master site is refusing connections... I was having trouble accessing xcb.freedesktop.org yesterday too. So, something is definitely going on. cheers, Hiren > > TIA, > > Sergio > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" From owner-freebsd-ports@FreeBSD.ORG Fri Mar 8 18:44:01 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id D34E17CE for ; Fri, 8 Mar 2013 18:44:01 +0000 (UTC) (envelope-from goksin.akdeniz@gmail.com) Received: from mail-ee0-f52.google.com (mail-ee0-f52.google.com [74.125.83.52]) by mx1.freebsd.org (Postfix) with ESMTP id 61256F3D for ; Fri, 8 Mar 2013 18:44:01 +0000 (UTC) Received: by mail-ee0-f52.google.com with SMTP id b15so1200169eek.11 for ; Fri, 08 Mar 2013 10:44:00 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:date:from:to:subject:message-id:in-reply-to:references :reply-to:x-mailer:mime-version:content-type; bh=rOPRPYD0gHtmYOS/G04qXY3KU+nu0IdlwZmgnTBrgP0=; b=iSMO3rRHbQHNIYpzeys0Smvy7dxHZ8glErbL2dkAqQp14Q92VAFgletJVCZoOJaalA ZW9gDs7k0IFZWJRykMfQEfmwMgpQdu1cUFfbuwr0JbPQ7+D8lLr9uZnNYiWbj8Ovh8kz BgD43Hkb/r7prJg3RKJ/wvIQ8E4trTpdHy0Jxp2TLqgy+TCHZV5ot3kMZDr3b1Jsq4CW BHlotMk6KuIXZUMvui0wIME1Lifod+Z+MVVrVSl7N28cLTsHanu1PYfVqWJbHpMvA+mV Uib8nq0WJalIA3r6Cm87pwrCPShRZD01lm7Fmy6ajm6DMvF7C7Gp5aMc1XtRCWYa0h9o k6Ig== X-Received: by 10.14.183.67 with SMTP id p43mr8406910eem.10.1362768240079; Fri, 08 Mar 2013 10:44:00 -0800 (PST) Received: from localhost ([78.163.20.193]) by mx.google.com with ESMTPS id u44sm9236903eel.7.2013.03.08.10.43.58 (version=TLSv1 cipher=RC4-SHA bits=128/128); Fri, 08 Mar 2013 10:43:58 -0800 (PST) Date: Fri, 8 Mar 2013 20:43:50 +0200 From: =?ISO-8859-9?Q?G=F6k=FEin?= Akdeniz To: freebsd-ports@freebsd.org Subject: Re: Freedesktop.org connection refused Message-Id: <20130308204350.b52f230f70c876fee6ee588b@gmail.com> In-Reply-To: <1362753929.34817.2.camel@z6000.lenzicasa> References: <3430048.ebNYIKijIj@luna.wi.rr.com> <1362753929.34817.2.camel@z6000.lenzicasa> X-Mailer: Sylpheed 3.3.0 (GTK+ 2.24.6; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="PGP-SHA1"; boundary="Signature=_Fri__8_Mar_2013_20_43_50_+0200_8vcW77WjwdLRniTg" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: goksin.akdeniz@gmail.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Mar 2013 18:44:01 -0000 --Signature=_Fri__8_Mar_2013_20_43_50_+0200_8vcW77WjwdLRniTg Content-Type: text/plain; charset=ISO-8859-9 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Fri, 08 Mar 2013 11:45:28 -0300 tarihinde Sergio de Almeida Lenzi yazm=FD=FE: > Hello, >=20 > Can someone please inform me about > a mirror for freedesktop.org??? >=20 Try Google for those distfiles. It will return a Fedora mirror. So you can download/fetch distfiles manually.=20 --=20 G=F6k=FEin Akdeniz --Signature=_Fri__8_Mar_2013_20_43_50_+0200_8vcW77WjwdLRniTg Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iQIcBAEBAgAGBQJROjFqAAoJEBDAvVQzTymiA6oP/Rgv0NyEvi6ZQsTEYjfP8uFg Lgt5hcXe/lW5c1a4jH78j39MO/42yS5J+GUp9JZWqRwkksdE09eu6XXOr1ef8hti UdoUjZ9mFtTF6rGMJTartSwu9pe/s7UKSFQW3hIsUnQD/RTyg0032YuUT0cYPAVj Ex/LI4s788j+Cjzv4vYdKAKlwTQnkPh/cLLLvpEKPA+NxBljTpfVBe72FPnT5Aqa ppJKO7cnImHS0rs4dRTfN6ohavFse9b/WZgm93EqE0fTso6TCmEOlAo+BfYjEa3h WxiCdmRVzkPOtD20eMlY2mJCMN0RlrUtwtpfQkkbUVQV5ELepUBwZdCLet6MkuLg vjWoOuCTbphvsmXVqZxa9VtXp01dnxTfHFvYt72cJERMGMiUeoVXV5Tt9v0nnacg nQ9vgXgYKlt2X9RSS4VMMAGQrxFGbwOwkF0uNayrzOIXy/6o0FjutslaICeX3C7y FgHhzNsiU/giqWCV55TTTmEZzK7rZN0cDMVwc0b7enBabzhI7tyuBHorO5kLBEYw 0JiAm0/uQAHAERhT9ffQPmAV/dut1zdPkr7tBsAKPcAsn9mBkL4dCmt41RaOPmmo IoO+kQTqA56oj2SplSocyTVKmGZkL1XRr9ukKI5V1wAlFi6HckzmZofRfuisdYi+ 0ord3lxKp+Qmq0oqgqXb =KBDG -----END PGP SIGNATURE----- --Signature=_Fri__8_Mar_2013_20_43_50_+0200_8vcW77WjwdLRniTg-- From owner-freebsd-ports@FreeBSD.ORG Fri Mar 8 21:33:55 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id E0D1C20E for ; Fri, 8 Mar 2013 21:33:55 +0000 (UTC) (envelope-from hiren.panchasara@gmail.com) Received: from mail-ea0-x229.google.com (mail-ea0-x229.google.com [IPv6:2a00:1450:4013:c01::229]) by mx1.freebsd.org (Postfix) with ESMTP id 62E14B44 for ; Fri, 8 Mar 2013 21:33:55 +0000 (UTC) Received: by mail-ea0-f169.google.com with SMTP id z7so397350eaf.28 for ; Fri, 08 Mar 2013 13:33:54 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:date:message-id:subject:from:to :content-type; bh=yPgOdXBd5xiy5+86Kf/Aa6GKZn7viIS14Xcsq8edYQU=; b=W6HN+4qZNcqz6zMUy+JRp/gbaCTIvEJ6s3hsvm2sc0A7kIGAQK4AkrQaQd5TBpZ1Cg 9nI9x2xpjMa7rN68bsJG9TITnu/t2qtCWwjyQt6rXBQTHSMGwSGFyUl4dPQFAvl46MMK VtgrvG1pk4ywilrqc0nhbe+zulnCElp7qyll21vqF8wg+fsi4+zdECSbmgwBUSIlHwNq OMOzM7tDvs6+dk4WMrLKLjsVfQTFLmJh5SFGpy8bQ66IxJgsxDb2eKRZnd/JdJQpkol2 maLShDgbPOrnLL+w5DkMEe5p+2IP7N7EUyQPv9jj1VHABE4KeNNiHF57Pj9GZFR+6qeV t+TA== MIME-Version: 1.0 X-Received: by 10.14.184.68 with SMTP id r44mr9715175eem.40.1362778434511; Fri, 08 Mar 2013 13:33:54 -0800 (PST) Received: by 10.14.133.204 with HTTP; Fri, 8 Mar 2013 13:33:54 -0800 (PST) Date: Fri, 8 Mar 2013 13:33:54 -0800 Message-ID: Subject: Regarding net-im/ari-yahoo From: hiren panchasara To: ports Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Mar 2013 21:33:55 -0000 I was looking for something irssi like for y! messenger and came across this port. It failed with clang so I opened a PR with a "fix". http://www.freebsd.org/cgi/query-pr.cgi?pr=176767 But, after installing/starting it, it seems this is completely broken port. Am I missing something? Can we not remove non-fuctional ports. I am new here. Please advise. cheers, Hiren From owner-freebsd-ports@FreeBSD.ORG Fri Mar 8 21:40:10 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 70EE62E7 for ; Fri, 8 Mar 2013 21:40:10 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-ee0-f50.google.com (mail-ee0-f50.google.com [74.125.83.50]) by mx1.freebsd.org (Postfix) with ESMTP id 0B5B3B64 for ; Fri, 8 Mar 2013 21:40:09 +0000 (UTC) Received: by mail-ee0-f50.google.com with SMTP id e51so1313288eek.37 for ; Fri, 08 Mar 2013 13:40:03 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=Ddgawp6KZrU4bc96hruNdD07IAZdm/vcHu1cJZdu9E8=; b=RhpoMiXAJ5u8ao0e9RTD70rp27fbBpApsW1eJlBG0x4eiAkVsPcI/m6uoKhkFGep6v fyCr2WcFE8iAl0xoycjN/C4L/x2doyvYVaEBG7QqiRBQdf54aKLTUD1CjAPZMk06e+CC GRyMCBeituylxcP3vr2XSNKdFKwv5edhTXkh4evVKUONvHBo468UrRc+ojSufL9WMPu/ o5LNtxg9crnfWBnowgnTJ5F4Z1vo1ydo2BxZfPsRnsmrIkCH/enSgdSIL2c4CDeYEQmX E+5rL03p5/+YY1uz2mcw0TJ2BzFfdC2FhPW9H1+HRhitjJOFCNKiwkzRs+RzWxQYtaWR /qwg== MIME-Version: 1.0 X-Received: by 10.15.67.134 with SMTP id u6mr9915585eex.6.1362778803019; Fri, 08 Mar 2013 13:40:03 -0800 (PST) Received: by 10.14.124.7 with HTTP; Fri, 8 Mar 2013 13:40:02 -0800 (PST) Received: by 10.14.124.7 with HTTP; Fri, 8 Mar 2013 13:40:02 -0800 (PST) In-Reply-To: References: Date: Fri, 8 Mar 2013 21:40:02 +0000 Message-ID: Subject: Re: Regarding net-im/ari-yahoo From: Chris Rees To: hiren panchasara Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: FreeBSD Mailing List X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Mar 2013 21:40:10 -0000 On 8 Mar 2013 21:34, "hiren panchasara" wrote: > > I was looking for something irssi like for y! messenger and came > across this port. It failed with clang so I opened a PR with a "fix". > > http://www.freebsd.org/cgi/query-pr.cgi?pr=176767 > > But, after installing/starting it, it seems this is completely broken > port. Am I missing something? > Can we not remove non-fuctional ports. > > I am new here. Please advise. I don't know about that port, I can look into it. In the meantime, irc/bitlbee will allow you to actually use irssi for Y! Chris From owner-freebsd-ports@FreeBSD.ORG Fri Mar 8 21:48:48 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 19EB3827; Fri, 8 Mar 2013 21:48:48 +0000 (UTC) (envelope-from coco@executive-computing.de) Received: from mail.moehre.org (mail.moehre.org [195.96.35.7]) by mx1.freebsd.org (Postfix) with ESMTP id AEA1CC27; Fri, 8 Mar 2013 21:48:47 +0000 (UTC) Received: from mail.moehre.org (unknown [195.96.35.7]) by mail.moehre.org (Postfix) with ESMTP id 400338B143B; Fri, 8 Mar 2013 22:38:51 +0100 (CET) X-Spam-Flag: NO X-Spam-Score: -100.966 X-Spam-Level: X-Spam-Status: No, score=-100.966 tagged_above=-999 required=5 tests=[ALL_TRUSTED=-1, AWL=0.034, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mail.moehre.org ([195.96.35.7]) by mail.moehre.org (mail.moehre.org [195.96.35.7]) (amavisd-new, port 10024) with ESMTP id xR5zSzC2SbfK; Fri, 8 Mar 2013 22:38:49 +0100 (CET) Received: from probsd.c0c0.intra (p54B09990.dip.t-dialin.net [84.176.153.144]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: coco@executive-computing.de) by mail.moehre.org (Postfix) with ESMTPSA id 13A798B1420; Fri, 8 Mar 2013 22:38:49 +0100 (CET) Date: Fri, 8 Mar 2013 22:38:47 +0100 (CET) From: Marco Steinbach X-X-Sender: coco@probsd.c0c0.intra To: Paul Macdonald Subject: Re: proftpd-1.3.4b Error in port In-Reply-To: <5139B6FF.8090007@ifdnrg.com> Message-ID: References: <5139B6FF.8090007@ifdnrg.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: ports@freebsd.org, mm@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Mar 2013 21:48:48 -0000 On Fri, 8 Mar 2013, Paul Macdonald wrote: > > Hi, > > FYI we're seeing an issue upgrading proftpd.. > > proftpd-1.3.4b < needs updating (index has 1.3.4c) > proftpd-mod_sql_mysql-1.3.4b < needs updating (index has 1.3.4c) > > Under: > FreeBSD XXX 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243825: Tue Dec 4 09:23:10 > UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 > > > Error: > cc -DHAVE_CONFIG_H -DFREEBSD9_1 -DFREEBSD9 -I.. -I../include > -I/usr/local/include -O2 -pipe -DHAVE_OPENSSL -I/usr/include > -fno-strict-aliasing -Wall -c str.c > cc -DHAVE_CONFIG_H -DFREEBSD9_1 -DFREEBSD9 -I.. -I../include > -I/usr/local/include -O2 -pipe -DHAVE_OPENSSL -I/usr/include > -fno-strict-aliasing -Wall -c table.c > cc -DHAVE_CONFIG_H -DFREEBSD9_1 -DFREEBSD9 -I.. -I../include > -I/usr/local/include -O2 -pipe -DHAVE_OPENSSL -I/usr/include > -fno-strict-aliasing -Wall -c regexp.c > cc -DHAVE_CONFIG_H -DFREEBSD9_1 -DFREEBSD9 -I.. -I../include > -I/usr/local/include -O2 -pipe -DHAVE_OPENSSL -I/usr/include > -fno-strict-aliasing -Wall -c dirtree.c > cc -DHAVE_CONFIG_H -DFREEBSD9_1 -DFREEBSD9 -I.. -I../include > -I/usr/local/include -O2 -pipe -DHAVE_OPENSSL -I/usr/include > -fno-strict-aliasing -Wall -c expr.c > cc -DHAVE_CONFIG_H -DFREEBSD9_1 -DFREEBSD9 -I.. -I../include > -I/usr/local/include -O2 -pipe -DHAVE_OPENSSL -I/usr/include > -fno-strict-aliasing -Wall -c support.c > cc -DHAVE_CONFIG_H -DFREEBSD9_1 -DFREEBSD9 -I.. -I../include > -I/usr/local/include -O2 -pipe -DHAVE_OPENSSL -I/usr/include > -fno-strict-aliasing -Wall -c netaddr.c > netaddr.c:696: error: expected identifier or '(' before 'return' > netaddr.c:697: error: expected identifier or '(' before '}' token > gmake[1]: *** [netaddr.o] Error 1 > gmake[1]: Leaving directory `/usr/ports/ftp/proftpd/work/proftpd-1.3.4c/src' > gmake: *** [src] Error 2 > *** [do-build] Error code 1 [...] Disabling IPV6 triggers this. Looks like the #endif in line 693 should trade places with the curly bracket below it. MfG CoCo From owner-freebsd-ports@FreeBSD.ORG Sat Mar 9 01:23:16 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 206B74CC for ; Sat, 9 Mar 2013 01:23:16 +0000 (UTC) (envelope-from pkgsrccon-2013@NetBSD.org) Received: from einhorn.in-berlin.de (einhorn.in-berlin.de [192.109.42.8]) by mx1.freebsd.org (Postfix) with ESMTP id 9DD122F9 for ; Sat, 9 Mar 2013 01:23:15 +0000 (UTC) X-Envelope-From: pkgsrccon-2013@NetBSD.org X-Envelope-To: Received: from Amnesiac (q827es.in-vpn.de [217.197.85.227]) (authenticated bits=0) by einhorn.in-berlin.de (8.13.6/8.13.6/Debian-1) with ESMTP id r291N670014364 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NOT) for ; Sat, 9 Mar 2013 02:23:07 +0100 Date: Sat, 9 Mar 2013 02:22:59 +0100 From: Julian Djamil Fagir To: freebsd-ports@freebsd.org Subject: Re: 23rd March: Invitation to pkgsrcCon 2013 in Berlin, Germany Message-ID: <20130309022259.29d10516@Amnesiac> In-Reply-To: <20130301143412.7a992401@adolfputzen> References: <20130301143412.7a992401@adolfputzen> X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.13; x86_64--netbsd) Mime-Version: 1.0 Content-Type: multipart/signed; micalg=PGP-SHA1; boundary="Sig_/OpWKLC9kShCfmWHC_XF.ent"; protocol="application/pgp-signature" X-Scanned-By: MIMEDefang_at_IN-Berlin_e.V. on 192.109.42.8 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 01:23:16 -0000 --Sig_/OpWKLC9kShCfmWHC_XF.ent Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Hi, just for your information: The schedule for pkgsrcCon 2013 is now online available at: http://pkgsrc.org/pkgsrcCon/2013/presentations.html Regards, Julian --Sig_/OpWKLC9kShCfmWHC_XF.ent Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (NetBSD) iEYEARECAAYFAlE6jvkACgkQc7h7cu1Hpp6vkQCgmy+2RCP2thWirOeUWkUuP2cY +0UAnAilx8lxyzKQGahLq+zthV+1lUyT =4/on -----END PGP SIGNATURE----- --Sig_/OpWKLC9kShCfmWHC_XF.ent-- From owner-freebsd-ports@FreeBSD.ORG Sat Mar 9 06:04:46 2013 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 58825D20 for ; Sat, 9 Mar 2013 06:04:46 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: from portsindexbuild.ysv.FreeBSD.org (portsindexbuild.ysv.freebsd.org [IPv6:2001:1900:2254:206a::16:6601]) by mx1.freebsd.org (Postfix) with ESMTP id 3EA3ED0D for ; Sat, 9 Mar 2013 06:04:46 +0000 (UTC) Received: from indexbuild (uid 5020) (envelope-from indexbuild@FreeBSD.org) id 99b0 by portsindexbuild.ysv.FreeBSD.org (DragonFly Mail Agent v0.7); Sat, 09 Mar 2013 06:04:45 +0000 To: ports@FreeBSD.org Subject: INDEX build failed for 8.x Date: Sat, 09 Mar 2013 06:04:45 +0000 Message-Id: <513ad0fd.99b0.41980c74@portsindexbuild.ysv.FreeBSD.org> From: X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 06:04:46 -0000 INDEX build failed with errors: Generating INDEX-8 - please wait.."/home/indexbuild/tindex/ports/Mk/bsd.pbi.mk", line 20: warning: duplicate script for target "check-pbimanager" ignored "/home/indexbuild/tindex/ports/Mk/bsd.pbi.mk", line 45: warning: duplicate script for target "pbi-generate" ignored "/home/indexbuild/tindex/ports/Mk/bsd.pbi.mk", line 46: warning: duplicate script for target "pbi-generate" ignored "/home/indexbuild/tindex/ports/Mk/bsd.pbi.mk", line 47: warning: duplicate script for target "pbi-generate" ignored "/home/indexbuild/tindex/ports/Mk/bsd.pbi.mk", line 50: warning: duplicate script for target "clean-pbi" ignored "/home/indexbuild/tindex/ports/Mk/bsd.pbi.mk", line 51: warning: duplicate script for target "clean-pbi" ignored Done. make_index: py_static_check-1.2: no entry for /usr/ports/devel/py-flakes Committers on the hook: koobs kuriyama Most recent SVN update was: Updating '.': U www/p5-Plack-Middleware-ServerStatus-Lite/Makefile U www/p5-Plack-Middleware-ServerStatus-Lite/distinfo D devel/py-flakes A devel/py-pyflakes A devel/py-pyflakes/files A devel/py-pyflakes/files/patch-setup.py A devel/py-pyflakes/pkg-plist A devel/py-pyflakes/Makefile A devel/py-pyflakes/distinfo A devel/py-pyflakes/pkg-descr U devel/Makefile U MOVED Updated to revision 313689. From owner-freebsd-ports@FreeBSD.ORG Sat Mar 9 06:06:01 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 1E427DD8 for ; Sat, 9 Mar 2013 06:06:01 +0000 (UTC) (envelope-from hiren.panchasara@gmail.com) Received: from mail-ve0-f170.google.com (mail-ve0-f170.google.com [209.85.128.170]) by mx1.freebsd.org (Postfix) with ESMTP id C273AD2B for ; Sat, 9 Mar 2013 06:06:00 +0000 (UTC) Received: by mail-ve0-f170.google.com with SMTP id 14so1744211vea.1 for ; Fri, 08 Mar 2013 22:05:54 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=0lYEMDm2Eo67eIm5IWLNyBDV8jVgmK+5fZsVaK+odVI=; b=i84l05muy2pi+9ppShOMarb7GkWCDhjDH1Cb00kLRts1CeOuKc3zLN2J3qkIw1mnWM q7b1DXLTnqCT73a24QO4vkbFLXr4xZYSEHolS93XHrJWqZZGInaIZH6t3+oOBvjj+VTX gTjx5yYRIcZkZ6hlIXOD+L5S39NcKHoyJsJXSxwpGXXS9VPXMzSvloA+sbgMqcBSj/vq HfzK1Hlq+NJt5xpIzEbd2eGGJbs1sWLykX+jRoPMoqj/rg4pSP2kAX3P5okDWOGla4UM nq5Pc405ZOcOLsenLiZmug0gho6wBPKFyZs7YZf9VQGaWY07NVPyHAxQOO3fQvqTeNu9 WPjQ== MIME-Version: 1.0 X-Received: by 10.52.16.40 with SMTP id c8mr1757986vdd.99.1362809154029; Fri, 08 Mar 2013 22:05:54 -0800 (PST) Received: by 10.58.198.107 with HTTP; Fri, 8 Mar 2013 22:05:53 -0800 (PST) Received: by 10.58.198.107 with HTTP; Fri, 8 Mar 2013 22:05:53 -0800 (PST) In-Reply-To: References: Date: Fri, 8 Mar 2013 22:05:53 -0800 Message-ID: Subject: Re: Regarding net-im/ari-yahoo From: hiren panchasara To: Chris Rees Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 06:06:01 -0000 On Mar 8, 2013 1:40 PM, "Chris Rees" wrote: > > > On 8 Mar 2013 21:34, "hiren panchasara" wrote: > > > > I was looking for something irssi like for y! messenger and came > > across this port. It failed with clang so I opened a PR with a "fix". > > > > http://www.freebsd.org/cgi/query-pr.cgi?pr=176767 > > > > But, after installing/starting it, it seems this is completely broken > > port. Am I missing something? > > Can we not remove non-fuctional ports. > > > > I am new here. Please advise. > > I don't know about that port, I can look into it. > > In the meantime, irc/bitlbee will allow you to actually use irssi for Y! Thanks Chris, bitlbee works great. Regarding this particular port, it seems to be using older yahoo api libs. Anyways, I've updated the pr with other details. Cheers, Hiren > > Chris From owner-freebsd-ports@FreeBSD.ORG Sat Mar 9 07:23:18 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 6DB8B819 for ; Sat, 9 Mar 2013 07:23:18 +0000 (UTC) (envelope-from mazhe@alkumuna.eu) Received: from smtp1-g21.free.fr (smtp1-g21.free.fr [IPv6:2a01:e0c:1:1599::10]) by mx1.freebsd.org (Postfix) with ESMTP id ED646E71 for ; Sat, 9 Mar 2013 07:23:16 +0000 (UTC) Received: from yggdrasil.alkumuna.eu (unknown [IPv6:2a01:e35:8a74:6e70:232:36ff:fe5c:3a87]) by smtp1-g21.free.fr (Postfix) with ESMTP id 381F994012F for ; Sat, 9 Mar 2013 08:23:09 +0100 (CET) Received: from freedom.alkumuna.eu ([192.168.10.100]) (authenticated bits=0) by yggdrasil.alkumuna.eu (8.14.5/8.14.5) with ESMTP id r297N7Gj012802 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Sat, 9 Mar 2013 08:23:08 +0100 (CET) (envelope-from mazhe@alkumuna.eu) Date: Sat, 9 Mar 2013 08:23:07 +0100 From: Matthieu Volat To: freebsd-ports@freebsd.org Subject: Re: 9.1-RELEASE is out - is there any hope for an actual graphics/gimp-app? Message-Id: <20130309082307.a31abb667f39582a59fdf20b@alkumuna.eu> In-Reply-To: <5498439.3vMsLfXcYC@luna.wi.rr.com> References: <512C89DD.5060602@yandex.ru> <08guv9-083.ln1@news.hansenet.de> <5498439.3vMsLfXcYC@luna.wi.rr.com> X-Mailer: Sylpheed 3.3.0 (GTK+ 2.24.17; amd64-portbld-freebsd9.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 07:23:18 -0000 On Tue, 26 Feb 2013 05:14:09 -0600 ajtiM wrote: > [...] > > Search in mailing list about GIMP 2.8 and you should find a response from > maintainer. As I remember we will wait on the 2.8 still... > BTW; I use live linux cd and it work very good. There are also OpenBSD Live > CDs and OpenBSD has 2.8. I don't know how is with plugins on OpenBSD. Good news, everybody: many gnome-related ports where bumped to versions high enough to build babl, gegl and gimp in their latest versions. I suppose gimp 2.8 in port is near, but the impatient can more safely use the updated makefiles I updated a while ago : https://github.com/mazhe/gimp28_ports Disclaimer : you still have to revert to gimp 2.6 before tasks like portmaster -r if they impact babl/gegl/gimp, as older gimp do not build with older babl/gegl -- Matthieu Volat From owner-freebsd-ports@FreeBSD.ORG Sat Mar 9 09:04:45 2013 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 33784113 for ; Sat, 9 Mar 2013 09:04:45 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: from portsindexbuild.ysv.FreeBSD.org (portsindexbuild.ysv.freebsd.org [IPv6:2001:1900:2254:206a::16:6601]) by mx1.freebsd.org (Postfix) with ESMTP id 02432677 for ; Sat, 9 Mar 2013 09:04:45 +0000 (UTC) Received: from indexbuild (uid 5020) (envelope-from indexbuild@FreeBSD.org) id 9e96 by portsindexbuild.ysv.FreeBSD.org (DragonFly Mail Agent v0.7); Sat, 09 Mar 2013 09:04:44 +0000 To: ports@FreeBSD.org Subject: INDEX now builds successfully on 8.x Date: Sat, 09 Mar 2013 09:04:44 +0000 Message-Id: <513afb2c.9e96.5dc1a36b@portsindexbuild.ysv.FreeBSD.org> From: X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 09:04:45 -0000 From owner-freebsd-ports@FreeBSD.ORG Sat Mar 9 09:36:46 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 47403A15 for ; Sat, 9 Mar 2013 09:36:46 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) by mx1.freebsd.org (Postfix) with ESMTP id 0B8B779B for ; Sat, 9 Mar 2013 09:36:46 +0000 (UTC) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost1.zedat.fu-berlin.de (Exim 4.80.1) for freebsd-ports@freebsd.org with esmtp (envelope-from ) id <1UEGCr-000lyM-D8>; Sat, 09 Mar 2013 10:36:45 +0100 Received: from e178025158.adsl.alicedsl.de ([85.178.25.158] helo=munin.geoinf.fu-berlin.de) by inpost2.zedat.fu-berlin.de (Exim 4.80.1) for freebsd-ports@freebsd.org with esmtpsa (envelope-from ) id <1UEGCr-0035PI-Ah>; Sat, 09 Mar 2013 10:36:45 +0100 Message-ID: <513B02ED.4040302@zedat.fu-berlin.de> Date: Sat, 09 Mar 2013 10:37:49 +0100 From: "Hartmann, O." Organization: FU Berlin User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130309 Thunderbird/17.0.4 MIME-Version: 1.0 To: freebsd-ports@freebsd.org Subject: lang/ruby19: ruby-1.9.3.392,1 is vulnerable: ** [check-vulnerable] Error code 1 References: <513B02C5.9090406@zedat.fu-berlin.de> In-Reply-To: <513B02C5.9090406@zedat.fu-berlin.de> X-Forwarded-Message-Id: <513B02C5.9090406@zedat.fu-berlin.de> Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit X-Originating-IP: 85.178.25.158 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 09:36:46 -0000 I try to compile port lang/ruby19 and I always get on a FreeBSD 9.1-STABLE box the following error message, which is obviously triggered by some port auditing - but I do not find the "knob" to switch it off. Can someone give a hint, please? Regards, Oliver ===> Cleaning for ruby-1.9.3.392,1 ===> ruby-1.9.3.392,1 has known vulnerabilities: ruby-1.9.3.392,1 is vulnerable: Ruby -- XSS exploit of RDoc documentation generated by rdoc WWW: http://portaudit.FreeBSD.org/d3e96508-056b-4259-88ad-50dc8d1978a6.html ruby-1.9.3.392,1 is vulnerable: Ruby -- Denial of Service and Unsafe Object Creation Vulnerability in JSON WWW: http://portaudit.FreeBSD.org/c79eb109-a754-45d7-b552-a42099eb2265.html => Please update your ports tree and try again. *** [check-vulnerable] Error code 1 Stop in /usr/ports/lang/ruby19. *** [build] Error code 1 Stop in /usr/ports/lang/ruby19. From owner-freebsd-ports@FreeBSD.ORG Sat Mar 9 09:38:57 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 329F1AB8; Sat, 9 Mar 2013 09:38:57 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-ee0-f53.google.com (mail-ee0-f53.google.com [74.125.83.53]) by mx1.freebsd.org (Postfix) with ESMTP id 778947AC; Sat, 9 Mar 2013 09:38:56 +0000 (UTC) Received: by mail-ee0-f53.google.com with SMTP id e53so1461570eek.40 for ; Sat, 09 Mar 2013 01:38:49 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=thdvJ+0cRASO+gtDUhcqxKAwjcLYNH5UeRteiCOxRj0=; b=jYSHVA/eGJXy5Yk2G7U9hwH5nvS8affwD/yzbbs8E8L4tj2CBq3JVfG/jdyqBnvfNz bxD1h/lGZEFkkHw7XEayISXE93FL95AkxiZKxtwdbCXQ3eaF4A2000LTb8lCNOFGiJxB CuyNMDsfJBTNC/ZMDuvysToFEoss5lU6NPN+PYAm6fMhsaBKs18sGb/SDOeKZNV1yBri dW9pKwbrIF4k5nv+WI3mZsSOtWmOBWDRrs/s0dlQbdKucIdBxvoApGbL6Er1phuPo7B4 fct/bHe2a+VT4KZ2J0E7urY2dEMlqdlypuCVtuYZ8XAYvoAFmlNf2SSdFyGjTm33hNZY ePmg== X-Received: by 10.14.0.135 with SMTP id 7mr14482488eeb.5.1362821929275; Sat, 09 Mar 2013 01:38:49 -0800 (PST) MIME-Version: 1.0 Sender: utisoft@gmail.com Received: by 10.14.124.7 with HTTP; Sat, 9 Mar 2013 01:38:19 -0800 (PST) In-Reply-To: <513B02C5.9090406@zedat.fu-berlin.de> References: <513B02C5.9090406@zedat.fu-berlin.de> From: Chris Rees Date: Sat, 9 Mar 2013 09:38:19 +0000 X-Google-Sender-Auth: qQMTIt34kg8Mhn1hUNpxCgBI9pk Message-ID: Subject: Re: lang/ruby19: ruby-1.9.3.392,1 is vulnerable: ** [check-vulnerable] Error code 1 To: "Hartmann, O." Content-Type: text/plain; charset=ISO-8859-1 Cc: "ports@freebsd.org" , FreeBSD Stable X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 09:38:57 -0000 On 9 March 2013 09:37, Hartmann, O. wrote: > I try to compile port lang/ruby19 and I always get on a FreeBSD > 9.1-STABLE box the following error message, which is obviously triggered > by some port auditing - but I do not find the "knob" to switch it off. > > Can someone give a hint, please? I guess you sent it to -stable by mistake-- the knob you need is DISABLE_VULNERABILITIES=yes. I'm sure I don't need to lecture you on "Be careful with this" :) Chris From owner-freebsd-ports@FreeBSD.ORG Sat Mar 9 10:11:37 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id A0EA7264 for ; Sat, 9 Mar 2013 10:11:37 +0000 (UTC) (envelope-from gavin@16degrees.com.au) Received: from enterprise.16degrees.com.au (16degrees.com.au [110.44.30.146]) by mx1.freebsd.org (Postfix) with ESMTP id 5E5CB8B1 for ; Sat, 9 Mar 2013 10:11:36 +0000 (UTC) Received: from destiny (CPE-120-146-242-193.static.sa.bigpond.net.au [120.146.242.193]) by enterprise.16degrees.com.au (Postfix) with ESMTPA id 8240B1902043 for ; Sat, 9 Mar 2013 20:03:04 +1000 (EST) From: "Gavin McDonald" To: References: <201303061345.r26DjSSw034930@null.zi0r.com> In-Reply-To: <201303061345.r26DjSSw034930@null.zi0r.com> Subject: RE: FreeBSD ports you maintain which are out of date Date: Sat, 9 Mar 2013 20:33:06 +1030 Organization: 16 degrees complete web solutions Message-ID: <095101ce1cad$4c88b270$e59a1750$@16degrees.com.au> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Outlook 14.0 Thread-Index: AQGDHQ2HiUfYkFadE7cthXW6LVmoK5kzH8+w Content-Language: en-au X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: gavin@16degrees.com.au List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 10:11:37 -0000 I'm happy to take maintainership of this one. Cheers Gav... > -----Original Message----- > From: owner-freebsd-ports@freebsd.org [mailto:owner-freebsd- > ports@freebsd.org] On Behalf Of portscout@portscout.freebsd.org > Sent: Thursday, 7 March 2013 12:15 AM > To: ports@freebsd.org > Subject: FreeBSD ports you maintain which are out of date > > Dear port maintainer, > > The portscout new distfile checker has detected that one or more of your > ports appears to be out of date. Please take the opportunity to check each of > the ports listed below, and if possible and appropriate, submit/commit an > update. If any ports have already been updated, you can safely ignore the > entry. > > You will not be e-mailed again for any of the port/version combinations > below. > > Full details can be found at the following URL: > http://portscout.freebsd.org/ports@freebsd.org.html > > > Port | Current version | New version > ------------------------------------------------+-----------------+----- > ------------------------------------------------+-----------------+----- > ------------------------------------------------+-----------------+-- > devel/make++ | 2.0 | 2.0.98.3 > ------------------------------------------------+-----------------+----- > ------------------------------------------------+-----------------+----- > ------------------------------------------------+-----------------+-- > > > If any of the above results are invalid, please check the following page for > details on how to improve portscout's detection and selection of distfiles on > a per-port basis: > > http://portscout.freebsd.org/info/portscout-portconfig.txt > > If wish to stop receiving portscout reminders, please contact > portscout@portscout.freebsd.org > > Thanks. > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" From owner-freebsd-ports@FreeBSD.ORG Sat Mar 9 10:24:23 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id B99E271B; Sat, 9 Mar 2013 10:24:23 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) by mx1.freebsd.org (Postfix) with ESMTP id 11EA792E; Sat, 9 Mar 2013 10:24:23 +0000 (UTC) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost1.zedat.fu-berlin.de (Exim 4.80.1) with esmtp (envelope-from ) id <1UEGww-000tDw-E8>; Sat, 09 Mar 2013 11:24:22 +0100 Received: from e178025158.adsl.alicedsl.de ([85.178.25.158] helo=munin.geoinf.fu-berlin.de) by inpost2.zedat.fu-berlin.de (Exim 4.80.1) with esmtpsa (envelope-from ) id <1UEGww-0037pT-Bk>; Sat, 09 Mar 2013 11:24:22 +0100 Message-ID: <513B0E16.40500@zedat.fu-berlin.de> Date: Sat, 09 Mar 2013 11:25:26 +0100 From: "Hartmann, O." Organization: FU Berlin User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130309 Thunderbird/17.0.4 MIME-Version: 1.0 To: Chris Rees Subject: Re: lang/ruby19: ruby-1.9.3.392, 1 is vulnerable: ** [check-vulnerable] Error code 1 References: <513B02C5.9090406@zedat.fu-berlin.de> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Originating-IP: 85.178.25.158 Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 10:24:23 -0000 Am 03/09/13 10:38, schrieb Chris Rees: > On 9 March 2013 09:37, Hartmann, O. wrote: >> I try to compile port lang/ruby19 and I always get on a FreeBSD >> 9.1-STABLE box the following error message, which is obviously triggered >> by some port auditing - but I do not find the "knob" to switch it off. >> >> Can someone give a hint, please? > > I guess you sent it to -stable by mistake-- the knob you need is > DISABLE_VULNERABILITIES=yes. Yes, sorry for the mistake. Thanks for the hint. > > I'm sure I don't need to lecture you on "Be careful with this" :) > Yes :-) > Chris Regards, Oliver From owner-freebsd-ports@FreeBSD.ORG Sat Mar 9 11:42:56 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 2B3AE567 for ; Sat, 9 Mar 2013 11:42:56 +0000 (UTC) (envelope-from jnagyjr1978@gmail.com) Received: from mail-ia0-x231.google.com (mail-ia0-x231.google.com [IPv6:2607:f8b0:4001:c02::231]) by mx1.freebsd.org (Postfix) with ESMTP id EF8A6B14 for ; Sat, 9 Mar 2013 11:42:55 +0000 (UTC) Received: by mail-ia0-f177.google.com with SMTP id y25so2196579iay.8 for ; Sat, 09 Mar 2013 03:42:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=EHCS4ofjcnPeTEp9/9Q0S7N5qQLmTKIJ2yTn/mTPvYc=; b=EX0/JOOQuJVHXtV42Pwd9BaadxPN8y2PNTwDlnGXDq2njOgWRX/4xov2D5igLgVQLo wAVG0YHzE/iVnQaeUSHdOF9B73AvrK9axH59ddt9BjbAY3VHDxGcRDo0iHkxcGE13iOK 83hQSQwdZcWNf9PIOFC92Du0CaDgqa8fBPlJHvsf5TUHhz3rPnFmV66iKzCu6+1OrQyw rtERO9AYoWoOx7ipxbeBPkIWJv3tp65DMlakXJK7iDZ5mNi2MSoTlNZ3gSzpqt33rDyN nnPh7UouwcYHNOqkQ+nJbJmUN/OKwoqE1qBTlTdFTYHmOqoGsp4w04jnaaHp/Fr7Y5tI T9oQ== X-Received: by 10.50.51.226 with SMTP id n2mr2099905igo.25.1362829375646; Sat, 09 Mar 2013 03:42:55 -0800 (PST) Received: from [192.168.1.33] (vid-196.dhcp.grp10.tnmmrl.infoave.net. [204.116.254.196]) by mx.google.com with ESMTPS id px9sm6759299igc.0.2013.03.09.03.42.53 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sat, 09 Mar 2013 03:42:54 -0800 (PST) Message-ID: <513B203A.2000301@gmail.com> Date: Sat, 09 Mar 2013 05:42:50 -0600 From: "Joseph A. Nagy, Jr" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: Matthieu Volat Subject: Re: 9.1-RELEASE is out - is there any hope for an actual graphics/gimp-app? References: <512C89DD.5060602@yandex.ru> <08guv9-083.ln1@news.hansenet.de> <5498439.3vMsLfXcYC@luna.wi.rr.com> <20130309082307.a31abb667f39582a59fdf20b@alkumuna.eu> In-Reply-To: <20130309082307.a31abb667f39582a59fdf20b@alkumuna.eu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 11:42:56 -0000 On 03/09/13 01:23, Matthieu Volat wrote: > On Tue, 26 Feb 2013 05:14:09 -0600 ajtiM wrote: > >> [...] >> >> Search in mailing list about GIMP 2.8 and you should find a >> response from maintainer. As I remember we will wait on the 2.8 >> still... BTW; I use live linux cd and it work very good. There are >> also OpenBSD Live CDs and OpenBSD has 2.8. I don't know how is with >> plugins on OpenBSD. > > Good news, everybody: many gnome-related ports where bumped to > versions high enough to build babl, gegl and gimp in their latest > versions. > > I suppose gimp 2.8 in port is near, but the impatient can more safely > use the updated makefiles I updated a while ago : > https://github.com/mazhe/gimp28_ports Do. Not. Want. Is there any way to prevent GIMP from upgrading when the update in ports is official? > Disclaimer : you still have to revert to gimp 2.6 before tasks like > portmaster -r if they impact babl/gegl/gimp, as older gimp do not > build with older babl/gegl > Maybe not with the latest versions, but I have gegl with Gimp 2.6 -- Yours in Christ, Joseph A Nagy Jr "Whoever loves instruction loves knowledge, But he who hates correction is stupid." -- Proverbs 12:1 Emails are not formal business letters, whatever businesses may want. Original content CopyFree (F) under the OWL http://copyfree.org/licenses/owl/license.txt From owner-freebsd-ports@FreeBSD.ORG Sat Mar 9 12:49:32 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 1902DD6C for ; Sat, 9 Mar 2013 12:49:32 +0000 (UTC) (envelope-from bsam@passap.ru) Received: from forward12.mail.yandex.net (forward12.mail.yandex.net [IPv6:2a02:6b8:0:801::2]) by mx1.freebsd.org (Postfix) with ESMTP id C655FF1D for ; Sat, 9 Mar 2013 12:49:31 +0000 (UTC) Received: from smtp14.mail.yandex.net (smtp14.mail.yandex.net [95.108.131.192]) by forward12.mail.yandex.net (Yandex) with ESMTP id 7D7C3C21E89 for ; Sat, 9 Mar 2013 16:49:28 +0400 (MSK) Received: from smtp14.mail.yandex.net (localhost [127.0.0.1]) by smtp14.mail.yandex.net (Yandex) with ESMTP id 645351B607FC for ; Sat, 9 Mar 2013 16:49:28 +0400 (MSK) Received: from 87.249.28.58.tel.ru (87.249.28.58.tel.ru [87.249.28.58]) by smtp14.mail.yandex.net (nwsmtp/Yandex) with ESMTP id nRxKNdwZ-nSxO48DR; Sat, 9 Mar 2013 16:49:28 +0400 Message-ID: <513B2FD7.2080708@passap.ru> Date: Sat, 09 Mar 2013 16:49:27 +0400 From: Boris Samorodov User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130113 Thunderbird/17.0.2 MIME-Version: 1.0 To: freebsd-ports@freebsd.org Subject: Re: 9.1-RELEASE is out - is there any hope for an actual graphics/gimp-app? References: <512C89DD.5060602@yandex.ru> <08guv9-083.ln1@news.hansenet.de> <5498439.3vMsLfXcYC@luna.wi.rr.com> <20130309082307.a31abb667f39582a59fdf20b@alkumuna.eu> <513B203A.2000301@gmail.com> In-Reply-To: <513B203A.2000301@gmail.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 12:49:32 -0000 09.03.2013 15:42, Joseph A. Nagy, Jr пишет: > Do. Not. Want. Is there any way to prevent GIMP from upgrading when the > update in ports is official? Yes, many: 1. Do not update the portstree. ;-) 2. Create your private port for gimp26. 3. Create, submit and maintain a new port graphics/gimp26. I'd say that the latter is preferrable since other people with the same need will get benefit. -- WBR, Boris Samorodov (bsam) FreeBSD Committer, http://www.FreeBSD.org The Power To Serve From owner-freebsd-ports@FreeBSD.ORG Sat Mar 9 15:34:55 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id F2413BA8; Sat, 9 Mar 2013 15:34:54 +0000 (UTC) (envelope-from david@catwhisker.org) Received: from albert.catwhisker.org (m209-73.dsl.rawbw.com [198.144.209.73]) by mx1.freebsd.org (Postfix) with ESMTP id CE77E986; Sat, 9 Mar 2013 15:34:54 +0000 (UTC) Received: from albert.catwhisker.org (localhost [127.0.0.1]) by albert.catwhisker.org (8.14.6/8.14.6) with ESMTP id r29FYs9h067414; Sat, 9 Mar 2013 07:34:54 -0800 (PST) (envelope-from david@albert.catwhisker.org) Received: (from david@localhost) by albert.catwhisker.org (8.14.6/8.14.6/Submit) id r29FYs6Q067413; Sat, 9 Mar 2013 07:34:54 -0800 (PST) (envelope-from david) Date: Sat, 9 Mar 2013 07:34:54 -0800 From: David Wolfskill To: freebsd-ports@freebsd.org Subject: [PATCH] x11/nvidia-driver fails on head @r248084 Message-ID: <20130309153454.GS13861@albert.catwhisker.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="4StcSGwj0FoelDaN" Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Cc: danfe@FreeBSD.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 15:34:55 -0000 --4StcSGwj0FoelDaN Content-Type: multipart/mixed; boundary="WZgDvI3PL8w3LDGC" Content-Disposition: inline --WZgDvI3PL8w3LDGC Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable During my daily update of the head slice on my laptop, I found that changes made in r248084 broke x11/nvidia-driver. The attached patch worked for me. Caveats: * I'm a hacker, not a developer. Don't assume I know what I'm doing. * I may have got the OSVERSION number wrong (or at least "not optimal"). * I use read-only local private mirrors of the SVN repos, so I was unable to use "svn diff" to generate the diff and still get the added files (AFAIK). So I used "diff -ruN", then edited the result to resemble the output of "svn diff" -- at least enough that "patch -C" says it would apply to a pristine copy of x11/nvidia-driver properly. * My ports working copy is @r313705; src is @248035. Resulting uname output after successful build: FreeBSD g1-235.catwhisker.org 10.0-CURRENT FreeBSD 10.0-CURRENT #832 r2480= 33M/248035: Fri Mar 8 07:36:04 PST 2013 root@localhost:/usr/obj/usr/sr= c/sys/CANARY i386 Peace, david --=20 David H. Wolfskill david@catwhisker.org Taliban: Evil men with guns afraid of truth from a 14-year old girl. See http://www.catwhisker.org/~david/publickey.gpg for my public key. --WZgDvI3PL8w3LDGC Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="nvidia-driver.patch" Content-Transfer-Encoding: quoted-printable Index: x11/nvidia-driver/Makefile --- x11/nvidia-driver/Makefile 2013-03-09 07:11:03.000000000 -0800 +++ x11/nvidia-driver/Makefile 2013-03-09 06:48:18.000000000 -0800 @@ -86,6 +86,10 @@ =20 PLIST_SUB+=3D LINUXBASE=3D${LINUXBASE} SHLIB_VERSION=3D${PORTVERSION} \ MODULESDIR=3D${MODULESDIR} +. if ${OSVERSION} > 1000028 +EXTRA_PATCHES+=3D ${FILESDIR}/r248084-patch-src-nv-freebsd.h +EXTRA_PATCHES+=3D ${FILESDIR}/r248084-patch-src-nvidia_subr.c +. endif =20 .if ${PORT_OPTIONS:MLINUX} CONFLICTS=3D linux[-_]dri-[0-9]* linux-f10-dri-[0-9]* Index: x11/nvidia-driver/files/r248084-patch-src-nv-freebsd.h --- x11/nvidia-driver/files/r248084-patch-src-nv-freebsd.h 1969-12-31 16:00= :00.000000000 -0800 +++ x11/nvidia-driver/files/r248084-patch-src-nv-freebsd.h 2013-03-09 06:39= :54.000000000 -0800 @@ -0,0 +1,10 @@ +--- src/nv-freebsd.h.orig 2013-01-14 14:38:44.000000000 -0800 ++++ src/nv-freebsd.h 2013-03-09 06:36:23.000000000 -0800 +@@ -77,6 +77,7 @@ + #include + #include + #include ++#include + #include + #include +=20 Index: x11/nvidia-driver/files/r248084-patch-src-nvidia_subr.c --- x11/nvidia-driver/files/r248084-patch-src-nvidia_subr.c 1969-12-31 16:0= 0:00.000000000 -0800 +++ x11/nvidia-driver/files/r248084-patch-src-nvidia_subr.c 2013-03-09 06:4= 8:53.000000000 -0800 @@ -0,0 +1,56 @@ +--- src/nvidia_subr.c.orig 2013-01-14 14:38:44.000000000 -0800 ++++ src/nvidia_subr.c 2013-03-09 06:47:05.000000000 -0800 +@@ -83,7 +83,7 @@ + if (!sc->BAR_objects[i]) + goto failed; +=20 +- VM_OBJECT_LOCK(sc->BAR_objects[i]); ++ VM_OBJECT_WLOCK(sc->BAR_objects[i]); + switch (i) { + case NV_GPU_BAR_INDEX_FB: + vm_object_set_memattr(sc->BAR_objects[i], +@@ -95,7 +95,7 @@ + VM_MEMATTR_UNCACHEABLE); + break; + } +- VM_OBJECT_UNLOCK(sc->BAR_objects[i]); ++ VM_OBJECT_WUNLOCK(sc->BAR_objects[i]); + } + } +=20 +@@ -541,9 +541,9 @@ + goto failed; + } +=20 +- VM_OBJECT_LOCK(sc->UD_object); ++ VM_OBJECT_WLOCK(sc->UD_object); + vm_object_set_memattr(sc->UD_object, VM_MEMATTR_UNCACHEABLE); +- VM_OBJECT_UNLOCK(sc->UD_object); ++ VM_OBJECT_WUNLOCK(sc->UD_object); + } +=20 + nv->flags |=3D NV_FLAG_OPEN; +@@ -965,9 +965,9 @@ + goto failed; + } +=20 +- VM_OBJECT_LOCK(at->object); ++ VM_OBJECT_WLOCK(at->object); + vm_object_set_memattr(at->object, attr); +- VM_OBJECT_UNLOCK(at->object); ++ VM_OBJECT_WUNLOCK(at->object); +=20 + *private =3D at; + SLIST_INSERT_HEAD(&sc->alloc_list, at, list); +@@ -1108,9 +1108,9 @@ + goto failed; + } +=20 +- VM_OBJECT_LOCK(at->object); ++ VM_OBJECT_WLOCK(at->object); + vm_object_set_memattr(at->object, attr); +- VM_OBJECT_UNLOCK(at->object); ++ VM_OBJECT_WUNLOCK(at->object); +=20 + *private =3D at; + SLIST_INSERT_HEAD(&sc->alloc_list, at, list); --WZgDvI3PL8w3LDGC-- --4StcSGwj0FoelDaN Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlE7Vp0ACgkQmprOCmdXAD0nAACfR8pZ5SfNVfNy5wGPLavFZXdP y4QAn08TsyH4fsO6QdN6aF+tcEyek16f =Jorv -----END PGP SIGNATURE----- --4StcSGwj0FoelDaN-- From owner-freebsd-ports@FreeBSD.ORG Sat Mar 9 15:35:05 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id E75E8C33; Sat, 9 Mar 2013 15:35:05 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) by mx1.freebsd.org (Postfix) with ESMTP id AD03498C; Sat, 9 Mar 2013 15:35:05 +0000 (UTC) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost1.zedat.fu-berlin.de (Exim 4.80.1) with esmtp (envelope-from ) id <1UELnc-001cbL-Bk>; Sat, 09 Mar 2013 16:35:04 +0100 Received: from e178025158.adsl.alicedsl.de ([85.178.25.158] helo=munin.geoinf.fu-berlin.de) by inpost2.zedat.fu-berlin.de (Exim 4.80.1) with esmtpsa (envelope-from ) id <1UELnc-003NdK-7u>; Sat, 09 Mar 2013 16:35:04 +0100 Message-ID: <513B56E8.2060702@zedat.fu-berlin.de> Date: Sat, 09 Mar 2013 16:36:08 +0100 From: "Hartmann, O." Organization: FU Berlin User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130309 Thunderbird/17.0.4 MIME-Version: 1.0 To: FreeBSD Current , freebsd-ports@freebsd.org Subject: CURRENT: lang/gcc fails to build on CURRENT with error: configure: error: no usable dependency style found Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit X-Originating-IP: 85.178.25.158 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 15:35:06 -0000 I have one specific FreeBSD 10.0-CURRENT box (FreeBSD 10.0-CURRENT #0 r248061: Fri Mar 8 19:44:30 CET 2013 amd64) which rejects to build either lang/gcc or lang/gcc46 with the very same error shown below. The box is compiled with CLANG (buildworld/kernel). It doesn't matter whether I compile those ports with cc (which referes to CLANG 3.2) or "USE_GCC=any", which should use the legacy compiler gcc or the installed lang/gcc (which seems to be outdated). Any attempt ends up with the very same error as shown below. This problem is sticky for a while now and I do not know what to do. I don't dare to delete the package in case the problem is then still present and I couldn't build the port again (I have to many scientific packages which do not compile properly with CLANG). Does anyone has an idea? Can I "rescue" the old installed lang/gcc as a package somehow to attempt a reinstallation in case deletion and recompiling the port will fail? Regards, Oliver [...] cc -O2 -pipe -O3 -march=native -I/usr/local/include -fno-strict-aliasing -o fixincl fixincl.o fixtests.o fixfixes.o server.o procopen.o fixlib.o fixopts.o ../libiberty/libiberty.a echo timestamp > full-stamp srcdir="../.././../gcc-4.6.3/fixincludes" /bin/sh ../.././../gcc-4.6.3/fixincludes/mkfixinc.sh x86_64-portbld-freebsd10.0 sed -e 's/@gcc_version@/4.6.3/' < mkheaders.almost > mkheadersT mv -f mkheadersT mkheaders gmake[3]: Leaving directory `/usr/ports/lang/gcc/work/build/build-x86_64-portbld-freebsd10.0/fixincludes' Configuring stage 1 in ./libcpp configure: creating cache ./config.cache checking build system type... x86_64-portbld-freebsd10.0 checking host system type... x86_64-portbld-freebsd10.0 checking target system type... x86_64-portbld-freebsd10.0 checking whether gmake sets $(MAKE)... yes checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking for x86_64-portbld-freebsd10.0-gcc... cc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking whether we are using the GNU C++ compiler... yes checking whether c++ accepts -g... yes checking for x86_64-portbld-freebsd10.0-ranlib... /usr/local/bin/ranlib checking how to run the C preprocessor... cpp checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking minix/config.h usability... no checking minix/config.h presence... no checking for minix/config.h... no checking whether it is safe to define __EXTENSIONS__... yes checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... no checking for aclocal... aclocal checking for autoconf... autoconf checking for autoheader... autoheader checking whether cc supports -W... yes checking whether cc supports -Wall... yes checking whether cc supports -Wwrite-strings... yes checking whether cc supports -Wmissing-format-attribute... yes checking whether cc supports -Wstrict-prototypes... yes checking whether cc supports -Wmissing-prototypes... yes checking whether cc supports -Wold-style-definition... yes checking whether cc supports -Wc++-compat... yes checking whether cc supports -pedantic -Wno-long-long... yes checking dependency style of cc... none configure: error: no usable dependency style found gmake[2]: *** [configure-stage1-libcpp] Error 1 gmake[2]: Leaving directory `/usr/ports/lang/gcc/work/build' gmake[1]: *** [stage1-bubble] Error 2 gmake[1]: Leaving directory `/usr/ports/lang/gcc/work/build' gmake: *** [all] Error 2 *** [do-build] Error code 1 Stop in /usr/ports/lang/gcc. *** [build] Error code 1 Stop in /usr/ports/lang/gcc. ===>>> make failed for lang/gcc ===>>> Aborting update From owner-freebsd-ports@FreeBSD.ORG Sat Mar 9 15:37:25 2013 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 90AC0F5C; Sat, 9 Mar 2013 15:37:25 +0000 (UTC) (envelope-from poyopoyo@puripuri.plala.or.jp) Received: from msa03b.plala.or.jp (msa03.plala.or.jp [IPv6:2400:7800:0:5010::3]) by mx1.freebsd.org (Postfix) with ESMTP id 885FE9BC; Sat, 9 Mar 2013 15:37:24 +0000 (UTC) Received: from i58-95-249-101.s02.a026.ap.plala.or.jp ([58.95.249.101]) by msa03b.plala.or.jp with ESMTP id <20130309153715.EXEF25053.msa03b.plala.or.jp@i58-95-249-101.s02.a026.ap.plala.or.jp>; Sun, 10 Mar 2013 00:37:15 +0900 Date: Sun, 10 Mar 2013 00:37:15 +0900 Message-ID: <86mwucmvo4.wl%poyopoyo@puripuri.plala.or.jp> From: poyopoyo@puripuri.plala.or.jp To: David Naylor Subject: Re: [RFC] lang/pypy In-Reply-To: <201303021657.27745.dbn@freebsd.org> References: <201303021657.27745.dbn@freebsd.org> Mail-Followup-To: David Naylor , python@freebsd.org, ports@freebsd.org, Eitan Adler , Bryan Drewery , poyopoyo@puripuri.plala.or.jp User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (=?ISO-2022-JP-2?B?R29qGyQoRCtXGyhC?=) APEL/10.8 Emacs/24.2 (amd64-portbld-freebsd10.0) MULE/6.0 (HANACHIRUSATO) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-VirusScan: Outbound; msa03b; Sun, 10 Mar 2013 00:37:16 +0900 Cc: ports@freebsd.org, Eitan Adler , python@freebsd.org, Bryan Drewery X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 15:37:25 -0000 Hi, good work, David. It compiles, packages and works flawlessly here for replacement of 1.9 so far for a week. On my compile box, amd64/Athlon64 5050e 2.6GHz 2 core/8GB, memory requirement for translation processes is far less than warning shown. It prevents build with | warn: this system has insufficient memory, expected at least 9227MiB RAM however my translation processes under -DPYPY_IGNORE_MEMORY take 2GB for normal binary and 2.5GB for sandboxed one so they aggregate 4.5GB to run parallel. This is far less than "expected", no page thrashing, no hang, no stuttering. It does not matter being with pypy1.9 or pypy2.0 (yes, I built twice for 2.0 self hosting. Not tried with cPython.) So I think this warning is a bit excessive that makes everyone just put PYPY_IGNORE_MEMORY=1 in their make.conf. Just in my case. -- kuro From owner-freebsd-ports@FreeBSD.ORG Sat Mar 9 16:03:06 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id A234B8CC; Sat, 9 Mar 2013 16:03:06 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from tensor.andric.com (tensor.andric.com [87.251.56.140]) by mx1.freebsd.org (Postfix) with ESMTP id 68344CE8; Sat, 9 Mar 2013 16:03:06 +0000 (UTC) Received: from [IPv6:2001:7b8:3a7::3859:828a:e508:def0] (unknown [IPv6:2001:7b8:3a7:0:3859:828a:e508:def0]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id 9D8635C44; Sat, 9 Mar 2013 17:02:57 +0100 (CET) Content-Type: text/plain; charset=windows-1252 Mime-Version: 1.0 (Mac OS X Mail 6.2 \(1499\)) Subject: Re: CURRENT: lang/gcc fails to build on CURRENT with error: configure: error: no usable dependency style found From: Dimitry Andric In-Reply-To: <513B56E8.2060702@zedat.fu-berlin.de> Date: Sat, 9 Mar 2013 17:02:56 +0100 Content-Transfer-Encoding: quoted-printable Message-Id: <8F5265A6-396A-426F-A3F8-EFD44D167313@FreeBSD.org> References: <513B56E8.2060702@zedat.fu-berlin.de> To: "Hartmann, O." X-Mailer: Apple Mail (2.1499) Cc: FreeBSD Current , freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 16:03:06 -0000 On Mar 9, 2013, at 16:36 , "Hartmann, O." = wrote: > I have one specific FreeBSD 10.0-CURRENT box (FreeBSD 10.0-CURRENT #0 > r248061: Fri Mar 8 19:44:30 CET 2013 amd64) which rejects to build > either lang/gcc or lang/gcc46 with the very same error shown below. =85 > checking whether cc supports -pedantic -Wno-long-long... yes > checking dependency style of cc... none > configure: error: no usable dependency style found > gmake[2]: *** [configure-stage1-libcpp] Error 1 > gmake[2]: Leaving directory `/usr/ports/lang/gcc/work/build' > gmake[1]: *** [stage1-bubble] Error 2 > gmake[1]: Leaving directory `/usr/ports/lang/gcc/work/build' > gmake: *** [all] Error 2 > *** [do-build] Error code 1 What is the actual error in the resulting config.log file? = Unfortunately autoconf error message are virtually information-free=85 My first guess would be that you have non-default CFLAGS in your build = environment, which confuse gcc's build stages. From owner-freebsd-ports@FreeBSD.ORG Sat Mar 9 16:30:08 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 863492EB; Sat, 9 Mar 2013 16:30:08 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) by mx1.freebsd.org (Postfix) with ESMTP id 329A0E8E; Sat, 9 Mar 2013 16:30:07 +0000 (UTC) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost1.zedat.fu-berlin.de (Exim 4.80.1) with esmtp (envelope-from ) id <1UEMet-001mPa-1N>; Sat, 09 Mar 2013 17:30:07 +0100 Received: from e178004056.adsl.alicedsl.de ([85.178.4.56] helo=munin.geoinf.fu-berlin.de) by inpost2.zedat.fu-berlin.de (Exim 4.80.1) with esmtpsa (envelope-from ) id <1UEMes-003RME-UN>; Sat, 09 Mar 2013 17:30:07 +0100 Message-ID: <513B63CF.50507@zedat.fu-berlin.de> Date: Sat, 09 Mar 2013 17:31:11 +0100 From: "Hartmann, O." Organization: FU Berlin User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130309 Thunderbird/17.0.4 MIME-Version: 1.0 To: FreeBSD Current , freebsd-ports@freebsd.org Subject: CURRENT (r248103): x11/nvidia-driver fails to compile: @/vm/vm_pager.h:127:2: error: use of undeclared identifier 'RA_WLOCKED' Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit X-Originating-IP: 85.178.4.56 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 16:30:08 -0000 I rebuild the kernel module for x11/nvidia-driver on a regular basis via /etc/src.conf setting of PORTS_MODULES+= x11/nvidia-driver but this time, the port gets deleted and - fails to compile (tried 310.32 and 313.26, the latter worked for me before very well). The compilation error is shown below. [...] ===> src (all) cc -O2 -pipe -O3 -march=native -fno-strict-aliasing -O3 -march=native -DNV_VERSION_STRING=\"313.26\" -D__KERNEL__ -DNVRM -Wno-unused-function -Wuninitialized -O -mno-red-zone -mcmodel=kernel -UDEBUG -U_DEBUG -DNDEBUG -O3 -Wno-error=unused-variable -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I. -I. -I@ -I@/contrib/altq -fno-common -fno-omit-frame-pointer -mno-aes -mno-avx -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -std=iso9899:1999 -Qunused-arguments -fstack-protector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -c nvidia_ctl.c In file included from nvidia_ctl.c:14: In file included from ./nv-freebsd.h:77: @/vm/vm_pager.h:127:2: error: implicit declaration of function 'rw_assert' is invalid in C99 [-Werror,-Wimplicit-function-declaration] VM_OBJECT_ASSERT_WLOCKED(object); ^ @/vm/vm_object.h:212:2: note: expanded from macro 'VM_OBJECT_ASSERT_WLOCKED' rw_assert(&(object)->lock, RA_WLOCKED) ^ In file included from nvidia_ctl.c:14: In file included from ./nv-freebsd.h:77: @/vm/vm_pager.h:127:2: error: use of undeclared identifier 'RA_WLOCKED' VM_OBJECT_ASSERT_WLOCKED(object); ^ @/vm/vm_object.h:212:29: note: expanded from macro 'VM_OBJECT_ASSERT_WLOCKED' rw_assert(&(object)->lock, RA_WLOCKED) ^ In file included from nvidia_ctl.c:14: In file included from ./nv-freebsd.h:77: @/vm/vm_pager.h:144:2: error: use of undeclared identifier 'RA_WLOCKED' VM_OBJECT_ASSERT_WLOCKED(object); ^ @/vm/vm_object.h:212:29: note: expanded from macro 'VM_OBJECT_ASSERT_WLOCKED' rw_assert(&(object)->lock, RA_WLOCKED) ^ In file included from nvidia_ctl.c:14: In file included from ./nv-freebsd.h:77: @/vm/vm_pager.h:168:2: error: use of undeclared identifier 'RA_WLOCKED' VM_OBJECT_ASSERT_WLOCKED(object); ^ @/vm/vm_object.h:212:29: note: expanded from macro 'VM_OBJECT_ASSERT_WLOCKED' rw_assert(&(object)->lock, RA_WLOCKED) ^ In file included from nvidia_ctl.c:14: In file included from ./nv-freebsd.h:77: @/vm/vm_pager.h:191:2: error: use of undeclared identifier 'RA_WLOCKED' VM_OBJECT_ASSERT_WLOCKED(m->object); ^ @/vm/vm_object.h:212:29: note: expanded from macro 'VM_OBJECT_ASSERT_WLOCKED' rw_assert(&(object)->lock, RA_WLOCKED) ^ 5 errors generated. *** [nvidia_ctl.o] Error code 1 Stop in /usr/ports/x11/nvidia-driver/work/NVIDIA-FreeBSD-x86_64-313.26/src. *** [all] Error code 1 Stop in /usr/ports/x11/nvidia-driver/work/NVIDIA-FreeBSD-x86_64-313.26. *** [do-build] Error code 1 Stop in /usr/ports/x11/nvidia-driver. *** [build] Error code 1 From owner-freebsd-ports@FreeBSD.ORG Sat Mar 9 16:38:45 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 07207A10; Sat, 9 Mar 2013 16:38:45 +0000 (UTC) (envelope-from cvs-src@yandex.ru) Received: from forward14.mail.yandex.net (forward14.mail.yandex.net [IPv6:2a02:6b8:0:801::4]) by mx1.freebsd.org (Postfix) with ESMTP id 8278CEEA; Sat, 9 Mar 2013 16:38:44 +0000 (UTC) Received: from smtp14.mail.yandex.net (smtp14.mail.yandex.net [95.108.131.192]) by forward14.mail.yandex.net (Yandex) with ESMTP id 34FA71982133; Sat, 9 Mar 2013 20:38:43 +0400 (MSK) Received: from smtp14.mail.yandex.net (localhost [127.0.0.1]) by smtp14.mail.yandex.net (Yandex) with ESMTP id E9C871B60483; Sat, 9 Mar 2013 20:38:42 +0400 (MSK) Received: from unknown (unknown [178.76.224.133]) by smtp14.mail.yandex.net (nwsmtp/Yandex) with ESMTP id cgxCGgEk-cgxmWtlX; Sat, 9 Mar 2013 20:38:42 +0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1362847122; bh=HZy+5N5GjDI8oJTdFAuzlKOYB6ns1HzZ4ahBQe9d8Rc=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:CC:Subject: References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=hSnZyHQ96m3SLtfSeKo8La7vij+3CeR6gKB9WgTqkeSprYu/weX3F2k5flTaEEJQO w92kfie2jD4ANy+sMgwbXqldi1xrl9c2dJgt3A8Yjtp2hYSh3xbSuXRMwZ6m70beeu FD7/dXm3o0Rn2TJct1f0Ms3A5InHuqHuU2Hjde94= Message-ID: <513B6582.2080104@yandex.ru> Date: Sat, 09 Mar 2013 20:38:26 +0400 From: Ruslan Makhmatkhanov User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130225 Thunderbird/17.0.3 MIME-Version: 1.0 To: "Hartmann, O." Subject: Re: CURRENT (r248103): x11/nvidia-driver fails to compile: @/vm/vm_pager.h:127:2: error: use of undeclared identifier 'RA_WLOCKED' References: <513B63CF.50507@zedat.fu-berlin.de> In-Reply-To: <513B63CF.50507@zedat.fu-berlin.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD Current , freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 16:38:45 -0000 Hartmann, O. wrote on 09.03.2013 20:31: > I rebuild the kernel module for x11/nvidia-driver on a regular basis via > /etc/src.conf setting of > > PORTS_MODULES+= x11/nvidia-driver I answered to your pr. Did you tried that? """ If I understand correctly, it should be fixed in r248061 (FreeBSD source): http://svnweb.freebsd.org/base/head/sys/kern/subr_witness.c?r1=244112&r2=248093&pathrev=248093 """ -- Regards, Ruslan Tinderboxing kills... the drives. From owner-freebsd-ports@FreeBSD.ORG Sat Mar 9 16:44:52 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 6BF85C27; Sat, 9 Mar 2013 16:44:52 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) by mx1.freebsd.org (Postfix) with ESMTP id 30227F2D; Sat, 9 Mar 2013 16:44:51 +0000 (UTC) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost1.zedat.fu-berlin.de (Exim 4.80.1) with esmtp (envelope-from ) id <1UEMt9-001oRG-6Q>; Sat, 09 Mar 2013 17:44:51 +0100 Received: from e178004056.adsl.alicedsl.de ([85.178.4.56] helo=munin.geoinf.fu-berlin.de) by inpost2.zedat.fu-berlin.de (Exim 4.80.1) with esmtpsa (envelope-from ) id <1UEMt9-003S3H-42>; Sat, 09 Mar 2013 17:44:51 +0100 Message-ID: <513B6743.10104@zedat.fu-berlin.de> Date: Sat, 09 Mar 2013 17:45:55 +0100 From: "Hartmann, O." Organization: FU Berlin User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130309 Thunderbird/17.0.4 MIME-Version: 1.0 To: Ruslan Makhmatkhanov Subject: Re: CURRENT (r248103): x11/nvidia-driver fails to compile: @/vm/vm_pager.h:127:2: error: use of undeclared identifier 'RA_WLOCKED' References: <513B63CF.50507@zedat.fu-berlin.de> <513B6582.2080104@yandex.ru> In-Reply-To: <513B6582.2080104@yandex.ru> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Originating-IP: 85.178.4.56 Cc: FreeBSD Current , freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 16:44:52 -0000 Am 03/09/13 17:38, schrieb Ruslan Makhmatkhanov: > Hartmann, O. wrote on 09.03.2013 20:31: >> I rebuild the kernel module for x11/nvidia-driver on a regular basis via >> /etc/src.conf setting of >> >> PORTS_MODULES+= x11/nvidia-driver > > I answered to your pr. Did you tried that? > > """ > If I understand correctly, it should be fixed in r248061 (FreeBSD source): > > http://svnweb.freebsd.org/base/head/sys/kern/subr_witness.c?r1=244112&r2=248093&pathrev=248093 > > """ I'm on FreeBSD 10.0-CURRENT #0 r248061: Fri Mar 8 19:44:30 CET 2013 amd64. I just finished compiling r248108 - will reboot and see further. From owner-freebsd-ports@FreeBSD.ORG Sat Mar 9 16:46:43 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 90FDFDD0; Sat, 9 Mar 2013 16:46:43 +0000 (UTC) (envelope-from cvs-src@yandex.ru) Received: from forward3h.mail.yandex.net (forward3h.mail.yandex.net [IPv6:2a02:6b8:0:f05::3]) by mx1.freebsd.org (Postfix) with ESMTP id 46EE6F50; Sat, 9 Mar 2013 16:46:43 +0000 (UTC) Received: from smtp1h.mail.yandex.net (smtp1h.mail.yandex.net [84.201.187.144]) by forward3h.mail.yandex.net (Yandex) with ESMTP id B4E231361640; Sat, 9 Mar 2013 20:46:41 +0400 (MSK) Received: from smtp1h.mail.yandex.net (localhost [127.0.0.1]) by smtp1h.mail.yandex.net (Yandex) with ESMTP id 423751340276; Sat, 9 Mar 2013 20:46:41 +0400 (MSK) Received: from unknown (unknown [178.76.224.133]) by smtp1h.mail.yandex.net (nwsmtp/Yandex) with ESMTP id keDutt2S-keDu48CK; Sat, 9 Mar 2013 20:46:41 +0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1362847601; bh=UEUox/KWDO9ChhDKd24Oe3v2CCDo9BmlK9G7JX55LLc=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:CC:Subject: References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=dW3s9eKE0/V7esHZ0PCLGCyxE4L691xxkQYRQfv5cLDLBqc5owA+4oDbbT0Tg3qNo XXnQndH/kEi+oww0gFqcf2aA1dzqSdD7GEy3D/5zO3hpo5e0nZEpaayXa5EpHvWBF0 wk41UBm2CJvO+oeJ1jmnJNSFF6GVh338ZVqaw/ns= Message-ID: <513B6760.3070804@yandex.ru> Date: Sat, 09 Mar 2013 20:46:24 +0400 From: Ruslan Makhmatkhanov User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130225 Thunderbird/17.0.3 MIME-Version: 1.0 To: "Hartmann, O." Subject: Re: CURRENT (r248103): x11/nvidia-driver fails to compile: @/vm/vm_pager.h:127:2: error: use of undeclared identifier 'RA_WLOCKED' References: <513B63CF.50507@zedat.fu-berlin.de> <513B6582.2080104@yandex.ru> <513B6743.10104@zedat.fu-berlin.de> In-Reply-To: <513B6743.10104@zedat.fu-berlin.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD Current , freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 16:46:43 -0000 Hartmann, O. wrote on 09.03.2013 20:45: > Am 03/09/13 17:38, schrieb Ruslan Makhmatkhanov: >> Hartmann, O. wrote on 09.03.2013 20:31: >>> I rebuild the kernel module for x11/nvidia-driver on a regular basis via >>> /etc/src.conf setting of >>> >>> PORTS_MODULES+= x11/nvidia-driver >> >> I answered to your pr. Did you tried that? >> >> """ >> If I understand correctly, it should be fixed in r248061 (FreeBSD source): >> >> http://svnweb.freebsd.org/base/head/sys/kern/subr_witness.c?r1=244112&r2=248093&pathrev=248093 >> >> """ > > > I'm on FreeBSD 10.0-CURRENT #0 r248061: Fri Mar 8 19:44:30 CET 2013 amd64. > I just finished compiling r248108 - will reboot and see further. Err, I copypasted the yours revision, not the actual fix revision. Should read "it should be fixed in r248093". Sorry. -- Regards, Ruslan Tinderboxing kills... the drives. From owner-freebsd-ports@FreeBSD.ORG Sat Mar 9 16:57:35 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id E7B2F3D3; Sat, 9 Mar 2013 16:57:35 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) by mx1.freebsd.org (Postfix) with ESMTP id 5586FFC5; Sat, 9 Mar 2013 16:57:35 +0000 (UTC) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost1.zedat.fu-berlin.de (Exim 4.80.1) with esmtp (envelope-from ) id <1UEN5S-001qH1-Jj>; Sat, 09 Mar 2013 17:57:34 +0100 Received: from e178004056.adsl.alicedsl.de ([85.178.4.56] helo=munin.geoinf.fu-berlin.de) by inpost2.zedat.fu-berlin.de (Exim 4.80.1) with esmtpsa (envelope-from ) id <1UEN5S-003Skc-9a>; Sat, 09 Mar 2013 17:57:34 +0100 Message-ID: <513B6A3E.1030306@zedat.fu-berlin.de> Date: Sat, 09 Mar 2013 17:58:38 +0100 From: "Hartmann, O." Organization: FU Berlin User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130309 Thunderbird/17.0.4 MIME-Version: 1.0 To: Dimitry Andric Subject: Re: CURRENT: lang/gcc fails to build on CURRENT with error: configure: error: no usable dependency style found References: <513B56E8.2060702@zedat.fu-berlin.de> <8F5265A6-396A-426F-A3F8-EFD44D167313@FreeBSD.org> In-Reply-To: <8F5265A6-396A-426F-A3F8-EFD44D167313@FreeBSD.org> Content-Type: multipart/mixed; boundary="------------010909040709020401000602" X-Originating-IP: 85.178.4.56 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: FreeBSD Current , freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 16:57:36 -0000 This is a multi-part message in MIME format. --------------010909040709020401000602 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit Am 03/09/13 17:02, schrieb Dimitry Andric: > On Mar 9, 2013, at 16:36 , "Hartmann, O." wrote: >> I have one specific FreeBSD 10.0-CURRENT box (FreeBSD 10.0-CURRENT #0 >> r248061: Fri Mar 8 19:44:30 CET 2013 amd64) which rejects to build >> either lang/gcc or lang/gcc46 with the very same error shown below. > … >> checking whether cc supports -pedantic -Wno-long-long... yes >> checking dependency style of cc... none >> configure: error: no usable dependency style found >> gmake[2]: *** [configure-stage1-libcpp] Error 1 >> gmake[2]: Leaving directory `/usr/ports/lang/gcc/work/build' >> gmake[1]: *** [stage1-bubble] Error 2 >> gmake[1]: Leaving directory `/usr/ports/lang/gcc/work/build' >> gmake: *** [all] Error 2 >> *** [do-build] Error code 1 > > What is the actual error in the resulting config.log file? Unfortunately autoconf error message are virtually information-free… > > My first guess would be that you have non-default CFLAGS in your build environment, which confuse gcc's build stages. Hello. CFLAGS settings are either root@thor:/usr/ports/lang/gcc # make -VCFLAGS -O2 -pipe -march=native -I/usr/local/include -fno-strict-aliasing or root@thor:/usr/ports/lang/gcc # make -VCFLAGS -O2 -pipe -O3 -march=native -I/usr/local/include -fno-strict-aliasing There are several config.log files: ./work/build/config.log ./work/build/lto-plugin/config.log ./work/build/gcc/config.log ./work/build/intl/config.log ./work/build/libcpp/config.log ./work/build/build-x86_64-portbld-freebsd10.0/libiberty/config.log ./work/build/build-x86_64-portbld-freebsd10.0/fixincludes/config.log ./work/build/libiberty/config.log Most recent touched is ./work/build/libcpp/config.log and since libcpp occurs in the error, it is the requested log file. I can not see anything useful in that file - I'm sorry :-( It is attached to this post. If you need further material, feel free to ask. By the way, I copied my /etc/make.conf and /etc/src.conf to another CURRENT machine which has the very same revision status (as well as the /usr/src AND /usr/ports, both boxes are up to date even with "portmaster" run this morning). I do not see the problem on this other machine. --------------010909040709020401000602-- From owner-freebsd-ports@FreeBSD.ORG Sat Mar 9 17:05:02 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id A93F97A4; Sat, 9 Mar 2013 17:05:02 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) by mx1.freebsd.org (Postfix) with ESMTP id 6CAC29F; Sat, 9 Mar 2013 17:05:02 +0000 (UTC) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost1.zedat.fu-berlin.de (Exim 4.80.1) with esmtp (envelope-from ) id <1UENCf-001rLO-EF>; Sat, 09 Mar 2013 18:05:01 +0100 Received: from e178004056.adsl.alicedsl.de ([85.178.4.56] helo=munin.geoinf.fu-berlin.de) by inpost2.zedat.fu-berlin.de (Exim 4.80.1) with esmtpsa (envelope-from ) id <1UENCf-003T7Z-Bj>; Sat, 09 Mar 2013 18:05:01 +0100 Message-ID: <513B6BFD.4060706@zedat.fu-berlin.de> Date: Sat, 09 Mar 2013 18:06:05 +0100 From: "Hartmann, O." Organization: FU Berlin User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130309 Thunderbird/17.0.4 MIME-Version: 1.0 To: Ruslan Makhmatkhanov Subject: Re: CURRENT (r248103): x11/nvidia-driver fails to compile: @/vm/vm_pager.h:127:2: error: use of undeclared identifier 'RA_WLOCKED' References: <513B63CF.50507@zedat.fu-berlin.de> <513B6582.2080104@yandex.ru> <513B6743.10104@zedat.fu-berlin.de> <513B6760.3070804@yandex.ru> In-Reply-To: <513B6760.3070804@yandex.ru> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Originating-IP: 85.178.4.56 Cc: FreeBSD Current , freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 17:05:02 -0000 Am 03/09/13 17:46, schrieb Ruslan Makhmatkhanov: > Hartmann, O. wrote on 09.03.2013 20:45: >> Am 03/09/13 17:38, schrieb Ruslan Makhmatkhanov: >>> Hartmann, O. wrote on 09.03.2013 20:31: >>>> I rebuild the kernel module for x11/nvidia-driver on a regular basis >>>> via >>>> /etc/src.conf setting of >>>> >>>> PORTS_MODULES+= x11/nvidia-driver >>> >>> I answered to your pr. Did you tried that? >>> >>> """ >>> If I understand correctly, it should be fixed in r248061 (FreeBSD >>> source): >>> >>> http://svnweb.freebsd.org/base/head/sys/kern/subr_witness.c?r1=244112&r2=248093&pathrev=248093 >>> >>> >>> """ >> >> >> I'm on FreeBSD 10.0-CURRENT #0 r248061: Fri Mar 8 19:44:30 CET 2013 >> amd64. >> I just finished compiling r248108 - will reboot and see further. > > Err, I copypasted the yours revision, not the actual fix revision. > Should read "it should be fixed in r248093". Sorry. > No, it isn't. Same error, system is at revision: FreeBSD 10.0-CURRENT #1 r248106: Sat Mar 9 16:44:58 CET 2013 amd64 The error is the same. From owner-freebsd-ports@FreeBSD.ORG Sat Mar 9 17:07:32 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id BF966957; Sat, 9 Mar 2013 17:07:32 +0000 (UTC) (envelope-from david@catwhisker.org) Received: from albert.catwhisker.org (m209-73.dsl.rawbw.com [198.144.209.73]) by mx1.freebsd.org (Postfix) with ESMTP id 77385C8; Sat, 9 Mar 2013 17:07:32 +0000 (UTC) Received: from albert.catwhisker.org (localhost [127.0.0.1]) by albert.catwhisker.org (8.14.6/8.14.6) with ESMTP id r29H7VIu068459; Sat, 9 Mar 2013 09:07:31 -0800 (PST) (envelope-from david@albert.catwhisker.org) Received: (from david@localhost) by albert.catwhisker.org (8.14.6/8.14.6/Submit) id r29H7VIl068458; Sat, 9 Mar 2013 09:07:31 -0800 (PST) (envelope-from david) Date: Sat, 9 Mar 2013 09:07:31 -0800 From: David Wolfskill To: "Hartmann, O." Subject: Re: CURRENT (r248103): x11/nvidia-driver fails to compile: @/vm/vm_pager.h:127:2: error: use of undeclared identifier 'RA_WLOCKED' Message-ID: <20130309170731.GW13861@albert.catwhisker.org> References: <513B63CF.50507@zedat.fu-berlin.de> <513B6582.2080104@yandex.ru> <513B6743.10104@zedat.fu-berlin.de> <513B6760.3070804@yandex.ru> <513B6BFD.4060706@zedat.fu-berlin.de> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="5b1SvPrUm9of+rZU" Content-Disposition: inline In-Reply-To: <513B6BFD.4060706@zedat.fu-berlin.de> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: FreeBSD Current , freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 17:07:32 -0000 --5b1SvPrUm9of+rZU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Mar 09, 2013 at 06:06:05PM +0100, Hartmann, O. wrote: > ... > No, it isn't. Same error, system is at revision: > FreeBSD 10.0-CURRENT #1 r248106: Sat Mar 9 16:44:58 CET 2013 amd64 >=20 > The error is the same. > ... Please see the message I posted to ports@, a copy of which may be found at . Peace, david --=20 David H. Wolfskill david@catwhisker.org Taliban: Evil men with guns afraid of truth from a 14-year old girl. See http://www.catwhisker.org/~david/publickey.gpg for my public key. --5b1SvPrUm9of+rZU Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlE7bFMACgkQmprOCmdXAD23XACbBU1AaIMGQ3PF/AbCMDbiFT8r M3sAn0QzrputcofeN/0HePM5tZCOMGWV =PhyK -----END PGP SIGNATURE----- --5b1SvPrUm9of+rZU-- From owner-freebsd-ports@FreeBSD.ORG Sat Mar 9 19:08:56 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 0BAF5C1F; Sat, 9 Mar 2013 19:08:56 +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 C452B69F; Sat, 9 Mar 2013 19:08:55 +0000 (UTC) Received: from [127.0.0.1] (graphics [62.49.197.51]) by dns1.vizion2000.net (Postfix) with ESMTP id DD992119C52; Sat, 9 Mar 2013 09:43:17 -0800 (PST) Message-ID: <513B86BA.6020302@vizion2000.net> Date: Sat, 09 Mar 2013 11:00:10 -0800 From: David Southwell Organization: Vision Communications User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130215 Thunderbird/17.0.3 MIME-Version: 1.0 To: freebsd-ports@freebsd.org, office@FreeBSD.org Subject: Open office dev build failure Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 19:08:56 -0000 Hi Getting following 6 module(s): mdds rhino hyphen nss jpeg need(s) to be rebuilt reasons ERROR: 65280 occured whilst making /usr/ports/editors/openoffice-3-devel/work/ooo/main/rhino (Above line repeated for each above mentioned modules Thanks in advance for help to solve this one David -- David Southwell ARPS AFIAP Photographic Arts Trained & experienced competition judge, mentor, trainer, lecturer, Advanced digital techniques, international project photography From owner-freebsd-ports@FreeBSD.ORG Sat Mar 9 20:27:20 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id E557177B; Sat, 9 Mar 2013 20:27:20 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) by mx1.freebsd.org (Postfix) with ESMTP id A56208DC; Sat, 9 Mar 2013 20:27:20 +0000 (UTC) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost1.zedat.fu-berlin.de (Exim 4.80.1) with esmtp (envelope-from ) id <1UEQMR-002JcR-Bi>; Sat, 09 Mar 2013 21:27:19 +0100 Received: from e178004056.adsl.alicedsl.de ([85.178.4.56] helo=munin.geoinf.fu-berlin.de) by inpost2.zedat.fu-berlin.de (Exim 4.80.1) with esmtpsa (envelope-from ) id <1UEQMR-003dMl-9I>; Sat, 09 Mar 2013 21:27:19 +0100 Message-ID: <513B9B67.8070605@zedat.fu-berlin.de> Date: Sat, 09 Mar 2013 21:28:23 +0100 From: "Hartmann, O." Organization: FU Berlin User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130309 Thunderbird/17.0.4 MIME-Version: 1.0 To: David Wolfskill Subject: Re: CURRENT (r248103): x11/nvidia-driver fails to compile: @/vm/vm_pager.h:127:2: error: use of undeclared identifier 'RA_WLOCKED' References: <513B63CF.50507@zedat.fu-berlin.de> <513B6582.2080104@yandex.ru> <513B6743.10104@zedat.fu-berlin.de> <513B6760.3070804@yandex.ru> <513B6BFD.4060706@zedat.fu-berlin.de> <20130309170731.GW13861@albert.catwhisker.org> In-Reply-To: <20130309170731.GW13861@albert.catwhisker.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Originating-IP: 85.178.4.56 Cc: FreeBSD Current , Ruslan Mahmatkhanov , freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 20:27:21 -0000 Am 03/09/13 18:07, schrieb David Wolfskill: > On Sat, Mar 09, 2013 at 06:06:05PM +0100, Hartmann, O. wrote: >> ... >> No, it isn't. Same error, system is at revision: >> FreeBSD 10.0-CURRENT #1 r248106: Sat Mar 9 16:44:58 CET 2013 amd64 >> >> The error is the same. >> ... > > Please see the message I posted to ports@, a copy of which may be found > at . > > Peace, > david > Your patch fixed the problem for me. Thanks, oh From owner-freebsd-ports@FreeBSD.ORG Sat Mar 9 21:21:08 2013 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 391BC190 for ; Sat, 9 Mar 2013 21:21:08 +0000 (UTC) (envelope-from stephen@missouri.edu) Received: from wilberforce.math.missouri.edu (wilberforce.math.missouri.edu [128.206.184.213]) by mx1.freebsd.org (Postfix) with ESMTP id DBEA8A6E for ; Sat, 9 Mar 2013 21:21:07 +0000 (UTC) Received: from [127.0.0.1] (wilberforce.math.missouri.edu [128.206.184.213]) by wilberforce.math.missouri.edu (8.14.6/8.14.6) with ESMTP id r29LL0kt020361 for ; Sat, 9 Mar 2013 15:21:00 -0600 (CST) (envelope-from stephen@missouri.edu) Message-ID: <513BA7BC.3030300@missouri.edu> Date: Sat, 09 Mar 2013 15:21:00 -0600 From: Stephen Montgomery-Smith User-Agent: Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: FreeBSD Ports Subject: Questions about ldconfig X-Enigmail-Version: 1.5.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 21:21:08 -0000 I am looking at committing a port which creates the following files: /usr/local/lib/libGmsh.so /usr/local/lib/libGmsh.so.0 /usr/local/lib/libGmsh.so.2.7 /usr/local/lib/libGmsh.so.2.7.0 libGmsh.so is a link to libGmsh.so.0, which is a link to libGmsh.so.2.7, which is a link to libGmsh.so.2.7.0. My concern is that this will confuse ldconfig. Is my concern justified? From owner-freebsd-ports@FreeBSD.ORG Sat Mar 9 21:30:22 2013 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 7003FAA2 for ; Sat, 9 Mar 2013 21:30:22 +0000 (UTC) (envelope-from peo@intersonic.se) Received: from neonpark.inter-sonic.com (neonpark.inter-sonic.com [212.247.8.98]) by mx1.freebsd.org (Postfix) with ESMTP id 977DAAD5 for ; Sat, 9 Mar 2013 21:30:21 +0000 (UTC) X-Virus-Scanned: amavisd-new at BSDLabs AB Message-ID: <513BA86E.2040907@intersonic.se> Date: Sat, 09 Mar 2013 22:23:58 +0100 From: Per olof Ljungmark Organization: Intersonic AB User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: FreeBSD Ports Subject: Stop in /usr/ports/devel/qt4-corelib. Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 21:30:22 -0000 FreeBSD 9.1-STABLE #0 r248028 Ports tree from an hour ago The error is g++ -c -O2 -pipe -fno-strict-aliasing -pthread -I/usr/local/include/glib-2.0 -I/usr/local/include -O2 -fvisibility=hidden -fvisibility-inlines-hidden -Wall -W -pthread -D_THREAD_SAFE -fPIC -DQT_SHARED -DQT_BUILD_CORE_LIB -DQT_NO_USING_NAMESPACE -DQT_NO_CAST_TO_ASCII -DQT_ASCII_CAST_WARNINGS -DQT3_SUPPORT -DQT_MOC_COMPAT -DQT_USE_QSTRINGBUILDER -DQT_USE_ICU -DHB_EXPORT=Q_CORE_EXPORT -DGNU_LIBICONV -DQT_NO_DEBUG -DQT_HAVE_MMX -DQT_HAVE_SSE -DQT_HAVE_MMXEXT -DQT_HAVE_SSE2 -DQT_HAVE_SSE3 -DQT_HAVE_SSSE3 -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE -I/usr/local/share/qt4/mkspecs/freebsd-g++ -I. -I../../include -I../../include/QtCore -I.rcc/release-shared -Iglobal -I../3rdparty/harfbuzz/src -I../3rdparty/md5 -I../3rdparty/md4 -I.moc/release-shared -I/usr/local/include/qt4 -I/usr/local/include -o .obj/release-shared/qglobal.o global/qglobal.cpp In file included from ../../include/QtCore/qatomic_arch.h:1, from ../../include/QtCore/../../src/corelib/thread/qbasicatomic.h:227, from ../../include/QtCore/qbasicatomic.h:1, from ../../include/QtCore/../../src/corelib/thread/qatomic.h:46, from ../../include/QtCore/qatomic.h:1, from ../../include/QtCore/../../src/corelib/tools/qbytearray.h:45, from ../../include/QtCore/qbytearray.h:1, from ../../include/QtCore/../../src/corelib/kernel/qobject.h:49, from ../../include/QtCore/qobject.h:1, from ../../include/QtCore/../../src/corelib/thread/qthread.h:45, from ../../include/QtCore/qthread.h:1, from ../../include/QtCore/private/../../../src/corelib/thread/qthread_p.h:58, from ../../include/QtCore/private/qthread_p.h:1, from global/qglobal.cpp:52: ../../include/QtCore/../../src/corelib/arch/qatomic_arch.h:96:4: error: #error "Qt has not been ported to this architecture" In file included from ../../include/QtCore/qobjectdefs.h:1, from ../../include/QtCore/../../src/corelib/kernel/qobject.h:47, from ../../include/QtCore/qobject.h:1, from ../../include/QtCore/../../src/corelib/thread/qthread.h:45, from ../../include/QtCore/qthread.h:1, from ../../include/QtCore/private/../../../src/corelib/thread/qthread_p.h:58, from ../../include/QtCore/private/qthread_p.h:1, from global/qglobal.cpp:52: ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h:47: error: 'QT_BEGIN_HEADER' does not name a type ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h:217: error: expected constructor, destructor, or type conversion before 'const' ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h:256: error: function definition does not declare parameters ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h:269: error: function definition does not declare parameters ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h:279: error: expected class-name before '{' token ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h: In constructor 'QArgument::QArgument(const char*, const T&)': ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h:282: error: class 'QArgument' does not have any field named 'QGenericArgument' ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h: At global scope: ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h:287: error: expected class-name before '{' token ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h: In constructor 'QArgument::QArgument(const char*, T&)': ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h:290: error: class 'QArgument' does not have any field named 'QGenericArgument' ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h: At global scope: ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h:297: error: expected class-name before '{' token ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h: In constructor 'QReturnArgument::QReturnArgument(const char*, T&)': ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h:300: error: class 'QReturnArgument' does not have any field named 'QGenericReturnArgument' ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h: At global scope: ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h:304: error: function definition does not declare parameters ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h:476: error: expected initializer before '&' token ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h:483: error: ISO C++ forbids declaration of 'QMetaObject' with no type ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h:483: error: expected ';' before '*' token ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h:486: error: 'QMetaObject' has not been declared ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h:491: error: 'QMetaObject' has not been declared ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h:491: error: non-member function 'const char* className()' cannot have cv-qualifier ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h: In function 'const char* className()': ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h:492: error: 'd' was not declared in this scope ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h: At global scope: ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h:494: error: expected initializer before '*' token ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h:498: error: 'QMetaObject' has not been declared ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h:498: error: non-member function 'const char* superClassName()' cannot have cv-qualifier ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h: In function 'const char* superClassName()': ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h:499: error: 'd' was not declared in this scope ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h: At global scope: ../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h:502: error: 'QT_END_NAMESPACE' does not name a type In file included from ../../include/QtCore/qbasicatomic.h:1, from ../../include/QtCore/../../src/corelib/thread/qatomic.h:46, from ../../include/QtCore/qatomic.h:1, from ../../include/QtCore/../../src/corelib/tools/qbytearray.h:45, from ../../include/QtCore/qbytearray.h:1, from ../../include/QtCore/../../src/corelib/kernel/qobject.h:49, from ../../include/QtCore/qobject.h:1, from ../../include/QtCore/../../src/corelib/thread/qthread.h:45, from ../../include/QtCore/qthread.h:1, from ../../include/QtCore/private/../../../src/corelib/thread/qthread_p.h:58, from ../../include/QtCore/private/qthread_p.h:1, from global/qglobal.cpp:52: ../../include/QtCore/../../src/corelib/thread/qbasicatomic.h:207: error: expected ';' before '(' token ../../include/QtCore/../../src/corelib/thread/qbasicatomic.h:208: error: expected ';' before '(' token ../../include/QtCore/../../src/corelib/thread/qbasicatomic.h:209: error: expected ';' before '(' token ../../include/QtCore/../../src/corelib/thread/qbasicatomic.h:210: error: expected ';' before '(' token ../../include/QtCore/../../src/corelib/thread/qbasicatomic.h:221: error: 'QT_END_NAMESPACE' does not name a type In file included from ../../include/QtCore/qatomic.h:1, from ../../include/QtCore/../../src/corelib/tools/qbytearray.h:45, from ../../include/QtCore/qbytearray.h:1, from ../../include/QtCore/../../src/corelib/kernel/qobject.h:49, from ../../include/QtCore/qobject.h:1, from ../../include/QtCore/../../src/corelib/thread/qthread.h:45, from ../../include/QtCore/qthread.h:1, from ../../include/QtCore/private/../../../src/corelib/thread/qthread_p.h:58, from ../../include/QtCore/private/qthread_p.h:1, from global/qglobal.cpp:52: ../../include/QtCore/../../src/corelib/thread/qatomic.h:224: error: 'QT_END_NAMESPACE' does not name a type In file included from ../../include/QtCore/qbytearray.h:1, from ../../include/QtCore/../../src/corelib/kernel/qobject.h:49, from ../../include/QtCore/qobject.h:1, from ../../include/QtCore/../../src/corelib/thread/qthread.h:45, from ../../include/QtCore/qthread.h:1, from ../../include/QtCore/private/../../../src/corelib/thread/qthread_p.h:58, from ../../include/QtCore/private/qthread_p.h:1, from global/qglobal.cpp:52: ../../include/QtCore/../../src/corelib/tools/qbytearray.h: In function 'uint qstrlen(const char*)': ../../include/QtCore/../../src/corelib/tools/qbytearray.h:79: error: redefinition of 'uint qstrlen(const char*)' /usr/local/include/qcstring.h:57: error: 'uint qstrlen(const char*)' previously defined here ../../include/QtCore/../../src/corelib/tools/qbytearray.h: At global scope: ../../include/QtCore/../../src/corelib/tools/qbytearray.h:92: error: two or more data types in declaration of 'qstrcpy' ../../include/QtCore/../../src/corelib/tools/qbytearray.h:93: error: two or more data types in declaration of 'qstrncpy' ../../include/QtCore/../../src/corelib/tools/qbytearray.h:95: error: two or more data types in declaration of 'qstrcmp' ../../include/QtCore/../../src/corelib/tools/qbytearray.h:96: error: two or more data types in declaration of 'qstrcmp' ../../include/QtCore/../../src/corelib/tools/qbytearray.h:97: error: two or more data types in declaration of 'qstrcmp' ../../include/QtCore/../../src/corelib/tools/qbytearray.h: In function 'int qstrncmp(const char*, const char*, uint)': ../../include/QtCore/../../src/corelib/tools/qbytearray.h:101: error: redefinition of 'int qstrncmp(const char*, const char*, uint)' /usr/local/include/qcstring.h:71: error: 'int qstrncmp(const char*, const char*, uint)' previously defined here ../../include/QtCore/../../src/corelib/tools/qbytearray.h: At global scope: ../../include/QtCore/../../src/corelib/tools/qbytearray.h:106: error: two or more data types in declaration of 'qstricmp' ../../include/QtCore/../../src/corelib/tools/qbytearray.h:107: error: two or more data types in declaration of 'qstrnicmp' ../../include/QtCore/../../src/corelib/tools/qbytearray.h:112: error: two or more data types in declaration of 'qvsnprintf' ../../include/QtCore/../../src/corelib/tools/qbytearray.h:117: error: two or more data types in declaration of 'qsnprintf' ../../include/QtCore/../../src/corelib/tools/qbytearray.h:122: error: expected unqualified-id before numeric constant ../../include/QtCore/../../src/corelib/tools/qbytearray.h:124: error: expected unqualified-id before numeric constant ../../include/QtCore/../../src/corelib/tools/qbytearray.h:126: error: expected unqualified-id before numeric constant ../../include/QtCore/../../src/corelib/tools/qbytearray.h:128: error: expected unqualified-id before numeric constant ../../include/QtCore/../../src/corelib/tools/qbytearray.h:130: error: expected unqualified-id before numeric constant ../../include/QtCore/../../src/corelib/tools/qbytearray.h:136: error: expected initializer before 'qChecksum' ../../include/QtCore/../../src/corelib/tools/qbytearray.h:143: error: function definition does not declare parameters ../../include/QtCore/../../src/corelib/tools/qbytearray.h:408: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:409: error: typedef-name 'QByteArray' used as destructor declarator ../../include/QtCore/../../src/corelib/tools/qbytearray.h:409: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:410: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:421: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:423: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:425: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:429: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:432: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:434: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:437: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:439: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:441: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:443: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:445: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:447: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:450: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:454: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:457: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:460: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:463: error: function definition does not declare parameters ../../include/QtCore/../../src/corelib/tools/qbytearray.h:497: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:499: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:501: error: 'iterator' in class 'QByteArray' does not name a type ../../include/QtCore/../../src/corelib/tools/qbytearray.h:503: error: 'const_iterator' in class 'QByteArray' does not name a type ../../include/QtCore/../../src/corelib/tools/qbytearray.h:505: error: 'const_iterator' in class 'QByteArray' does not name a type ../../include/QtCore/../../src/corelib/tools/qbytearray.h:507: error: 'iterator' in class 'QByteArray' does not name a type ../../include/QtCore/../../src/corelib/tools/qbytearray.h:509: error: 'const_iterator' in class 'QByteArray' does not name a type ../../include/QtCore/../../src/corelib/tools/qbytearray.h:511: error: 'const_iterator' in class 'QByteArray' does not name a type ../../include/QtCore/../../src/corelib/tools/qbytearray.h:513: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:515: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:517: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:519: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:521: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:523: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:525: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:527: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:529: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:531: error: 'QBool' does not name a type ../../include/QtCore/../../src/corelib/tools/qbytearray.h:533: error: 'QBool' does not name a type ../../include/QtCore/../../src/corelib/tools/qbytearray.h: In function 'bool operator==(const QByteArray&, const QByteArray&)': ../../include/QtCore/../../src/corelib/tools/qbytearray.h:536: error: 'const class QMemArray' has no member named 'constData' ../../include/QtCore/../../src/corelib/tools/qbytearray.h:536: error: 'const class QMemArray' has no member named 'constData' ../../include/QtCore/../../src/corelib/tools/qbytearray.h: In function 'bool operator!=(const QByteArray&, const QByteArray&)': ../../include/QtCore/../../src/corelib/tools/qbytearray.h:542: error: ambiguous overload for 'operator==' in 'a1 == a2' ../../include/QtCore/../../src/corelib/tools/qbytearray.h:542: note: candidates are: operator==(const char*, const char*) /usr/local/include/qmemarray.h:104: note: bool QMemArray::operator==(const QMemArray&) const [with type = char] /usr/local/include/qstring.h:1017: note: bool operator==(const QString&, const QString&) /usr/local/include/qstring.h:1024: note: bool operator==(const QString&, const char*) /usr/local/include/qstring.h:1030: note: bool operator==(const char*, const QString&) ../../include/QtCore/../../src/corelib/tools/qbytearray.h:535: note: bool operator==(const QByteArray&, const QByteArray&) ../../include/QtCore/../../src/corelib/tools/qbytearray.h:537: note: bool operator==(const QByteArray&, const char*) ../../include/QtCore/../../src/corelib/tools/qbytearray.h:539: note: bool operator==(const char*, const QByteArray&) ../../include/QtCore/../../src/corelib/tools/qbytearray.h: At global scope: ../../include/QtCore/../../src/corelib/tools/qbytearray.h:583: error: 'QBool' does not name a type ../../include/QtCore/../../src/corelib/tools/qbytearray.h:585: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:587: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:589: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:592: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:594: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:596: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:598: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:600: error: too few template-parameter-lists ../../include/QtCore/../../src/corelib/tools/qbytearray.h:605: error: expected initializer before '&' token ../../include/QtCore/../../src/corelib/tools/qbytearray.h:606: error: expected initializer before '&' token ../../include/QtCore/../../src/corelib/tools/qbytearray.h:610: error: expected initializer before 'qCompress' ../../include/QtCore/../../src/corelib/tools/qbytearray.h:611: error: expected initializer before 'qUncompress' ../../include/QtCore/../../src/corelib/tools/qbytearray.h: In function 'QByteArray qCompress(const QByteArray&, int)': ../../include/QtCore/../../src/corelib/tools/qbytearray.h:613: error: 'const class QMemArray' has no member named 'constData' ../../include/QtCore/../../src/corelib/tools/qbytearray.h: In function 'QByteArray qUncompress(const QByteArray&)': ../../include/QtCore/../../src/corelib/tools/qbytearray.h:614: error: redefinition of 'QByteArray qUncompress(const QByteArray&)' /usr/local/include/qcstring.h:124: error: 'QByteArray qUncompress(const QByteArray&)' previously defined here ../../include/QtCore/../../src/corelib/tools/qbytearray.h:615: error: 'const class QMemArray' has no member named 'constData' ../../include/QtCore/../../src/corelib/tools/qbytearray.h: At global scope: ../../include/QtCore/../../src/corelib/tools/qbytearray.h:618: error: 'Q_MOVABLE_TYPE' has not been declared ../../include/QtCore/../../src/corelib/tools/qbytearray.h:618: error: expected constructor, destructor, or type conversion before ';' token ../../include/QtCore/../../src/corelib/tools/qbytearray.h:621: error: expected constructor, destructor, or type conversion before 'QT_END_NAMESPACE' *** [.obj/release-shared/qglobal.o] Error code 1 1 error *** [do-build] Error code 1 Stop in /usr/ports/devel/qt4-corelib. From owner-freebsd-ports@FreeBSD.ORG Sat Mar 9 21:49:46 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 71FCF363 for ; Sat, 9 Mar 2013 21:49:46 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-ee0-f43.google.com (mail-ee0-f43.google.com [74.125.83.43]) by mx1.freebsd.org (Postfix) with ESMTP id 09EC2B83 for ; Sat, 9 Mar 2013 21:49:45 +0000 (UTC) Received: by mail-ee0-f43.google.com with SMTP id c50so1646918eek.16 for ; Sat, 09 Mar 2013 13:49:39 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:sender:date:from:to:cc:subject:message-id:references :mime-version:content-type:content-disposition:in-reply-to :user-agent; bh=MrIhAFMAHyKfHQQAeWCB38n8098UKkm7Ii8pTTZJg6o=; b=Nak/bH5rijIpL+LYAl8FaP630OoEwwjCVSJpE2rxu4vdjBkiXOOZlLc5cE2lJ0WjoW A5Y15nYl+bihW7SlA/0zXxHietV4eC9f7OIyHMrhgVG1v+3WBnQm3m5JChlLyxcVK7YD lwTXvj1cZ7Pk/JP4Dt12IX5x/oxbjdMesRcVHgIK4vrfkmuyZWwTUx74Bfik/nf7EEGP UC/SGqr/ZoQfztZfLsRk87hNUcjxcnOe7OSAUMUFbUlnNWnVhmVNM/GrMPV4RDKlLCZ/ pdnex1Wx77IXLsSIxOwbX1JblUkx7U1Qc3pvoPE103C1pnDAIpnrwGck1NJvl9rn1fkr mc/g== X-Received: by 10.14.223.199 with SMTP id v47mr19691533eep.18.1362865779585; Sat, 09 Mar 2013 13:49:39 -0800 (PST) Received: from ithaqua.etoilebsd.net (ithaqua.etoilebsd.net. [37.59.37.188]) by mx.google.com with ESMTPS id k7sm15033122een.8.2013.03.09.13.49.38 (version=TLSv1 cipher=RC4-SHA bits=128/128); Sat, 09 Mar 2013 13:49:38 -0800 (PST) Sender: Baptiste Daroussin Date: Sat, 9 Mar 2013 22:49:36 +0100 From: Baptiste Daroussin To: Stephen Montgomery-Smith Subject: Re: Questions about ldconfig Message-ID: <20130309214936.GW18971@ithaqua.etoilebsd.net> References: <513BA7BC.3030300@missouri.edu> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="b/3kIrr+SWblMf9a" Content-Disposition: inline In-Reply-To: <513BA7BC.3030300@missouri.edu> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: FreeBSD Ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Mar 2013 21:49:46 -0000 --b/3kIrr+SWblMf9a Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Mar 09, 2013 at 03:21:00PM -0600, Stephen Montgomery-Smith wrote: > I am looking at committing a port which creates the following files: >=20 > /usr/local/lib/libGmsh.so > /usr/local/lib/libGmsh.so.0 > /usr/local/lib/libGmsh.so.2.7 > /usr/local/lib/libGmsh.so.2.7.0 >=20 > libGmsh.so is a link to libGmsh.so.0, which is a link to libGmsh.so.2.7, > which is a link to libGmsh.so.2.7.0. >=20 > My concern is that this will confuse ldconfig. Is my concern justified? It will not confuse the os at all but it will confuse ldconfig -r which is = not able to list libraries ending with more that one digit. Which is just informational, so not a big deal except that bsd.port.mk is not clever enou= gh to correctly deal with libraries. so only detection from ports will be confuse= d, all the rest will work. https://wiki.freebsd.org/ports/fix_lib_depends for more details regards, Bapt --b/3kIrr+SWblMf9a Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlE7rnAACgkQ8kTtMUmk6Ex7ZwCgl4EV2ta9zVuS78ZiRZ2jhODV d3gAoJhww5NoY6wUFlnzIigDyF1Ez+AV =YEto -----END PGP SIGNATURE----- --b/3kIrr+SWblMf9a--