Re: Problem with devel/libtool22? [was Re: OpenCASCADE marked broken]

2010-04-05 Thread Andrea Venturoli

On 04/06/10 00:26, Thierry Thomas wrote:

Le Mar 23 mar 10 à 22:37:24 +0100, Andrea Venturoli
  écrivait :

Just to let you know this used to work on 6.3, though I cannot test it
anymore now.

I can compile it without any problem on 7.2/i386, though I remove
"USE_FORTRAN=yes".

The latter is to avoid compilation with gcc4.4, which will lead to
incompatibilities with other libraries (such as boost) I use on a
project of mine.


It should be fixed now.

Actually, it used to work untill gcc-4.4.4.20100216. Gcc-44 is needed
because f77 has been removed from the base.


Are you sure OpenCASCADE requires f77?
I looked into the source and didn't find any file like "*.f" or "*.for", 
although of course they might have other extension or be generated 
during the build process.
Also I can confirm it compiles with the base system gcc, although I 
don't remember if I had gcc44 installed at the time, so it might also be 
it picked f77 from gcc44 anyway.




The whole point of the above is that, due to gcc44's libstdc++ recently 
becoming incompatible with older versions, if you mix different g++ 
versions in the same project, you'll get "Undefined symbol" errors when 
starting your executable.


In my case, I'm linking (amongst others) against Boost and OpenCASCADE, 
so I need them to use the same compiler (and use that myself).




Again, this is not a problem with OpenCASCADE only, but potentially 
affects any C++ library which is build with gcc44.




 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-unsubscr...@freebsd.org"


Re: ports/117921: New port: multimedia/feng Feng is a multimedia streaming server compliant with the IETF's standards for real-time streaming of multimedia contents over Internet.

2010-04-05 Thread linimon
Synopsis: New port: multimedia/feng Feng is a multimedia streaming server 
compliant with the IETF's standards for real-time streaming of multimedia 
contents over Internet.

Responsible-Changed-From-To: freebsd-ports->freebsd-ports-bugs
Responsible-Changed-By: linimon
Responsible-Changed-When: Tue Apr 6 02:52:35 UTC 2010
Responsible-Changed-Why: 
Canonicalize assignment.

http://www.freebsd.org/cgi/query-pr.cgi?pr=117921
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Assistance needed to update sysutils/di

2010-04-05 Thread Naram Qashat
I am attempting to update the sysutils/di port from 4.19 to 4.20.  Prior to 
4.19, there was a Build script in place that did configuring and building, 
including if the .po files for NLS were to be utilized or not.  With 4.20, they 
have done away with this Build script and now only have a Makefile to handle 
configuring and building in one step.  Installing was done manually instead of 
using Build, although I could use the install step of the Makefile now.


It seems as though the option to enable or disable if NLS is used has been 
removed from the latest version as well.  With 4.19 and earlier, I could call 
the build-po target of the Build script when I needed to, since I was telling 
Build earlier if I wanted NLS or not.  Trying to do the same with calling the 
Makefile doesn't seem to work, as it doesn't seem to properly invoke certain 
commands in the Makefile.  The command they created to help determine if NLS 
should be enabled or disabled does not seem to have a flag to allow the user to 
choose so.


What I did with the port, so far, is removed the do-configure step, changed the 
do-build step to call ${MAKE} instead of ./Build, also trying to call ${MAKE} 
build-po if WITHOUT_NLS is not set (but this fails because the Makefile doesn't 
properly include certain variables), and changed the do-install step to call 
${MAKE} install instead of manually copying files, also trying to use ${MAKE} 
install-po if WITHOUT_NLS is not set, same problem as build-po.


If I am doing something incorrectly, please let me know.  I am attaching my 
current diff of the port, which includes the old parts commented out as I was 
still testing the port.  Any help is appreciated.  If I need to clarify 
anything, let me know.


Thanks,
Naram Qashat
diff -ruN --exclude=CVS /usr/ports/sysutils/di/Makefile 
/kirby/shared/ports/di/Makefile
--- /usr/ports/sysutils/di/Makefile 2010-02-03 08:55:41.0 -0500
+++ /kirby/shared/ports/di/Makefile 2010-04-02 23:49:12.0 -0400
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=  di
-PORTVERSION=   4.19
+PORTVERSION=   4.20
 CATEGORIES=sysutils
 MASTER_SITES=  http://www.gentoo.com/di/ \
http://fresh.t-systems-sfr.com/unix/src/privat2/
@@ -19,60 +19,89 @@
 .if !defined(WITHOUT_NLS)
 USE_GETTEXT=   yes
 PLIST_SUB= NLS=""
-DI_BUILD_NO_NLS=   0
+#DI_BUILD_NO_NLS=  0
 .else
-DI_BUILD_NO_NLS=   1
+#DI_BUILD_NO_NLS=  1
 PLIST_SUB= NLS="@comment "
 .endif
 
-USE_PERL5_BUILD=   yes
+#USE_PERL5_BUILD=  yes
 
 .include 
 
 post-patch:
@${REINPLACE_CMD} -e "s|zoneid_t|zoneId_t|g" ${WRKSRC}/di.c
 
-pre-configure:
-   @${CHMOD} +x ${WRKSRC}/Build
-   @${CHMOD} +x ${WRKSRC}/features/turnoffnls.sh
+#pre-configure:
+#  @${CHMOD} +x ${WRKSRC}/Build
+#  @${CHMOD} +x ${WRKSRC}/features/turnoffnls.sh
+
+#do-configure:
+#  (cd ${WRKSRC}; \
+#  ${SETENV} ${MAKE_ENV} DI_BUILD_MKCONFIG_PL=1 \
+#  CC="${CC}" LDFLAGS="${LDFLAGS}" \
+#  prefix="${PREFIX}" LOCALEDIR="${PREFIX}/share/locale" \
+#  DI_BUILD_NO_NLS=${DI_BUILD_NO_NLS} \
+#  ./Build config.h)
+
+#do-build:
+#  (cd ${WRKSRC}; \
+#  ${SETENV} ${MAKE_ENV} \
+#  CC="${CC}" LDFLAGS="${LDFLAGS}" \
+#  prefix="${PREFIX}" LOCALEDIR="${PREFIX}/share/locale" \
+#  DI_BUILD_NO_NLS=${DI_BUILD_NO_NLS} \
+#  ./Build)
 
-do-configure:
+do-build:
(cd ${WRKSRC}; \
-   ${SETENV} ${MAKE_ENV} DI_BUILD_MKCONFIG_PL=1 \
+   ${SETENV} ${MAKE_ENV} \
CC="${CC}" LDFLAGS="${LDFLAGS}" \
prefix="${PREFIX}" LOCALEDIR="${PREFIX}/share/locale" \
-   DI_BUILD_NO_NLS=${DI_BUILD_NO_NLS} \
-   ./Build config.h)
-
-do-build:
+   ${MAKE})
+.if !defined(WITHOUT_NLS)
(cd ${WRKSRC}; \
${SETENV} ${MAKE_ENV} \
CC="${CC}" LDFLAGS="${LDFLAGS}" \
prefix="${PREFIX}" LOCALEDIR="${PREFIX}/share/locale" \
-   DI_BUILD_NO_NLS=${DI_BUILD_NO_NLS} \
-   ./Build)
+   ${MAKE} build-po)
+.endif
 
 do-install:
-   ${INSTALL_PROGRAM} ${WRKSRC}/di ${PREFIX}/bin
-   ${LN} -sf ${PREFIX}/bin/di ${PREFIX}/bin/mi
-   ${INSTALL_MAN} ${WRKSRC}/di.1 ${PREFIX}/man/man1
+#  ${INSTALL_PROGRAM} ${WRKSRC}/di ${PREFIX}/bin
+#  ${LN} -sf ${PREFIX}/bin/di ${PREFIX}/bin/mi
+#  ${INSTALL_MAN} ${WRKSRC}/di.1 ${PREFIX}/man/man1
+   (cd ${WRKSRC}; \
+   ${SETENV} ${MAKE_ENV} \
+   CC="${CC}" LDFLAGS="${LDFLAGS}" \
+   prefix="${PREFIX}" LOCALEDIR="${PREFIX}/share/locale" \
+   ${MAKE} install)
 .if !defined(WITHOUT_NLS)
+#  (cd ${WRKSRC}; \
+#  ${SETENV} ${MAKE_ENV} \
+#  CC="${CC}" LDFLAGS="${LDFLAGS}" \
+#  prefix="${PREFIX}" \
+#  LOCALEDIR="${PREFIX}/share/locale" \
+#  ./Build build-po)
+#  

Re: ports/117921: New port: multimedia/feng Feng is a multimedia streaming server compliant with the IETF's standards for real-time streaming of multimedia contents over Internet.

2010-04-05 Thread vanilla
Synopsis: New port: multimedia/feng Feng is a multimedia streaming server 
compliant with the IETF's standards for real-time streaming of multimedia 
contents over Internet.

Responsible-Changed-From-To: vanilla->freebsd-ports
Responsible-Changed-By: vanilla
Responsible-Changed-When: Tue Apr 6 01:57:30 UTC 2010
Responsible-Changed-Why: 
It's out of date, please upgrade. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=117921
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Problem with devel/libtool22? [was Re: OpenCASCADE marked broken]

2010-04-05 Thread Thierry Thomas
Le Mar 23 mar 10 à 22:37:24 +0100, Andrea Venturoli 
 écrivait :
> Just to let you know this used to work on 6.3, though I cannot test it 
> anymore now.
> 
> I can compile it without any problem on 7.2/i386, though I remove
> "USE_FORTRAN=yes".
> 
> The latter is to avoid compilation with gcc4.4, which will lead to 
> incompatibilities with other libraries (such as boost) I use on a 
> project of mine.

It should be fixed now.

Actually, it used to work untill gcc-4.4.4.20100216. Gcc-44 is needed
because f77 has been removed from the base.

Since gcc-4.4.4.20100216, we got errors at linkage:

local symbol 0: discarded in section `.text._ZNSs12_...
local symbol 1: discarded in section `.text._ZNSs12_...
etc.

The OpenCASCADE port was built using devel/libtool22, and this port
installs a libtool file where LD and CC are hardcoded.

To fix OpenCASCADE, I had to link it with g++44, so I switched to the
included libtool.

I guess there might be a problem with devel/libtool22, but I don't dare
patching this beast: it could fix some ports, and break many others...

Regards,
-- 
Th. Thomas.


pgpD06ZKVRyn0.pgp
Description: PGP signature


Now OK (Re: cvs commit: ports/misc/upclient Makefile)

2010-04-05 Thread QAT
misc/upclient, which was previously failing is OK after this commit.
Thanks for fixing it!


A description of the testing process can be found here:
http://T32.TecNik93.com/FreeBSD/QA-Tindy/


Thanks for your work on making FreeBSD better,

--
QAT - your friendly neighborhood Daemon,
preparing  a heck of an error trapping system:
 - "HMC and EOI?"
 - "Halt, Melt and Catch fire or Execute Operator Immediately."

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: [ HEADS UP ] Ports unstable for the next 10 days

2010-04-05 Thread Garrett Cooper
On Mon, Apr 5, 2010 at 12:05 PM, Antonio Olivares
 wrote:
> Ion-Mihai,
>
> Does this fix the following issue?
>
> I have installed FreeBSD 8.0 and updated it to current p2
>
>  I try to use konqueror and I get
>
>  There was an error loading the module About-Page for Konqueror.
>  The diagnostics is:
>  Cannot load library /usr/local/kde4/lib/kde4/konq_aboutpage.so:
>  (Shared object "libjpeg.so.10" not found, required by "libkhtml.so.7")
>
> Other programs like kile and k3b don't work because of the same
> message or others.  I did not know about this, otherwise I would not
> have tried to install these programs in the first place, till the
> coast was clear :(
>
> Thanks though, I saw the message a little bit late :(

Nope. You need to update all of jpeg. See UPDATING for more
details (but substitute this for the portmaster directions: "
portmaster -r 'jpeg-*' ".
HTH,
-Garrett
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: [ HEADS UP ] Ports unstable for the next 10 days

2010-04-05 Thread Antonio Olivares
Ion-Mihai,

Does this fix the following issue?

I have installed FreeBSD 8.0 and updated it to current p2

 I try to use konqueror and I get

 There was an error loading the module About-Page for Konqueror.
 The diagnostics is:
 Cannot load library /usr/local/kde4/lib/kde4/konq_aboutpage.so:
 (Shared object "libjpeg.so.10" not found, required by "libkhtml.so.7")

Other programs like kile and k3b don't work because of the same
message or others.  I did not know about this, otherwise I would not
have tried to install these programs in the first place, till the
coast was clear :(

Thanks though, I saw the message a little bit late :(

Regards,

Antonio




On 4/5/10, Ion-Mihai Tetcu  wrote:
> Just a status update:
>
> PNG and cURL are in, and png fall-outs are believed to be fixed.
>
> Xorg update has gone through an -exp run on Pointy and our xorg team is
> working on fixing the approx. 60 ports with problems.
>
> I will begin -exp runs for Gnome and KDE updates tonight or tomorrow
> morning.
>
>
> Packages status:
> - i386:
>   - 6 after png and curl
>   - 7 after png and curl
>   - an 8 incremental build is in progress and should be shortly finished
>   - 9 pacakges are from middle March
> - amd64:
>   - 6 packages are post png and curl
>   - 7 build is in progress and will be finished tomorrow
>   - 8 last build was done in the middle of the png update/fixes; we
> won't run an other before Xorg, KDE and Gnome go in (for lack of
> resources).
>   - 9 build in progress (with sources that are believed to fix the zlib
> problem).
>
>
> In other words, if you wish to update without waiting for Xorg, Gnome
> and KDE now it's a good moment.
>
>
> HTH,
>
> --
> IOnut - Un^d^dregistered ;) FreeBSD "user"
>   "Intellectual Property" is   nowhere near as valuable   as "Intellect"
> FreeBSD committer -> ite...@freebsd.org, PGP Key ID 057E9F8B493A297B
>
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: [ HEADS UP ] Ports unstable for the next 10 days

2010-04-05 Thread Ion-Mihai Tetcu
Just a status update:

PNG and cURL are in, and png fall-outs are believed to be fixed.

Xorg update has gone through an -exp run on Pointy and our xorg team is
working on fixing the approx. 60 ports with problems.

I will begin -exp runs for Gnome and KDE updates tonight or tomorrow
morning.


Packages status:
- i386: 
  - 6 after png and curl
  - 7 after png and curl
  - an 8 incremental build is in progress and should be shortly finished
  - 9 pacakges are from middle March
- amd64:
  - 6 packages are post png and curl
  - 7 build is in progress and will be finished tomorrow
  - 8 last build was done in the middle of the png update/fixes; we
won't run an other before Xorg, KDE and Gnome go in (for lack of
resources).
  - 9 build in progress (with sources that are believed to fix the zlib
problem).


In other words, if you wish to update without waiting for Xorg, Gnome
and KDE now it's a good moment.


HTH,

-- 
IOnut - Un^d^dregistered ;) FreeBSD "user"
  "Intellectual Property" is   nowhere near as valuable   as "Intellect"
FreeBSD committer -> ite...@freebsd.org, PGP Key ID 057E9F8B493A297B


signature.asc
Description: PGP signature


FreeBSD Port: qsheff-II-2.1.r3_4

2010-04-05 Thread Toni Tiveron

Hi there
I just realized there is a small error in the Makefile for this port.
the default path for the sock file for clamav is /var/run/clamav/clamd.sock
furthermore the port does not inlcude the option for whom, like me, compiled 
qmail w/ the qmail_queue_pathc


I've attached a small patch for those issues.
Regards,
Toni

--- /usr/ports/mail/qsheff/Makefile 2009-08-22 02:27:54.0 +0200
+++ /home/toni/Makefile_qsheff_pr   2010-04-05 05:03:29.0 +0200
@@ -35,6 +35,7 @@
CONFIGURE_ARGS+=   --with-qmaildir=${QMAIL_PREFIX}

OPTIONS=   CLAMAV "Integrate with Clam AntiVirus" on \
+   QUEUPATCH "Enable qmail queue patch" off \
   SPAMTAG "Enable Spam Tagging" off \
   VIRUSTAG "Enable Virus Tagging" off \
   DISABLELOCAL "Disable Filters For Local Users" off \
@@ -49,7 +50,11 @@
RUN_DEPENDS+=  ${LOCALBASE}/bin/clamdscan:${PORTSDIR}/security/clamav
BUILD_DEPENDS+= 
${LOCALBASE}/bin/clamdscan:${PORTSDIR}/security/clamav

CONFIGURE_ARGS+=   --with-clamav
-CONFIGURE_ARGS+=   --with-clamd-socket=/var/run/clamav/clamd
+CONFIGURE_ARGS+=   --with-clamd-socket=/var/run/clamav/clamd.sock
+.endif
+
+.if defined(WITH_QUEUPATCH)
+CONFIGURE_ARGS+=   --enable-qq-patch
.endif

.if defined(WITH_SPAMTAG)

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: FreeBSD Port: clamav-0.95.3

2010-04-05 Thread Renato Botelho
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Mon, Apr 05, 2010 at 01:09:18PM +0300, admin wrote:
> Hi
> Please update ports clamav
> Local version: 0.95.3 Recommended version: 0.96
> --- 

Clamav 0.96 has API/ABI changes, and because of it i need to test all
dependant ports before commit. I'm working on it.

- -- 
Renato Botelho 
   
GnuPG Key: http://www.FreeBSD.org/~garga/pubkey.asc

Laetrile is the pits.
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.14 (FreeBSD)

iEYEARECAAYFAku5xRkACgkQ6CRbiSJE7akcOQCfcBQqu1qeW6JjYivS5apkXrto
07YAnAwaW1JH13hpVvrtnI3MeRNSOo5l
=SgDb
-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-unsubscr...@freebsd.org"


Current unassigned ports problem reports

2010-04-05 Thread FreeBSD bugmaster
(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/145402[maintainer-update] games/ioquake3-devel
o ports/145398[NEW PORT] devel/py26-jinja2: A small but fast stand-a
o ports/145386new port: devel/p5-File-BOM  "Unicode Byte Order Mark 
o ports/145384new port: devel/p5-Data-JavaScript-Anon  "anonymous ja
o ports/145381repo copy games/tuxracer games/etuxracer
o ports/145371new port: www/fusionpbx, fusionpbx php5 webgui for Fre
o ports/145370new port: audio/freeswitch-pizzademo: Additional port 
o ports/145369update to net/freeswitch and many changes to structure
o ports/145365[PATCH] Update games/klavaro to 1.5.0
o ports/145364x11-wm/wmconfig port update to version 1.3.1
o ports/145315[MAINTAINER] devel/gearmand: update to 0.12, reset mai
o ports/145303new port: security/p5-Crypt-T_e_a
o ports/145302New port: security/pam_jail A PAM module dropping user
o ports/145297Upgrade audio/audacity-devel 1.3.11 to 1.3.12
o ports/145294[PATCH] www/rt: update to 3.8.7
f ports/145288editors/cle make fails
o ports/145286multimedia/playd2 update to v2.1.3
f ports/145285PORT multimedia/playd update to v1.3.8
o ports/145282[MAINTAINER] sysutils/duplicity-devel: update to 0.6.0
o ports/145278[PATCH] irc/kvirc-devel update to rc2
o ports/145275new port devel/shiboken - a part of PySide toolkit
o ports/145274new port devel/generatorrunner
o ports/145273new port devel/apiextractor
o ports/145260New Port: net/rabbitmq-c-devel
f ports/145258Port update: games/openjazz - Update to v.20100328
f ports/145256[UPDATE] www/squid31 to version 3.1.1
o ports/145250Maintainer update: net-mgmt/nagios-check_bacula
o ports/145245devel/libslang is still referenced by some other ports
o ports/145242New Port: net/rabbitmq-c
f ports/145239net-mgmt/collectd update to new version
o ports/145221ports/audacity-devel fails to compile
o ports/145220graphics/aalib: Fixed syntax waring in aalib.m4
o ports/145217The ??-freebsd-doc package needs a warning about port 
o ports/145182[MAINTAINER] www/thundercache: update to 4.0 snap 2903
o ports/145179shells/ksh93 upgrade
o ports/145177[PATCH] Add option to use svn instead of cvs for net-m
f ports/145169shells/ksh93 does not fetch
o ports/145154New port: devel/luafilesystem A library to access dire
o ports/145146[PATCH] update print/hplip3 to 3.10.2
o ports/145144[NEW PORT] databases/xtrabackup: OpenSource version of
o ports/145107[patch] net/csync2 improvements
o ports/145099[UPDATE] devel/ioncube - new version 3.3.12_1 (added I
f ports/145094[patch][repocopy] audio/linux-nerodigitalaudio: update
o ports/145089[new port] multimedia/umph
o ports/145088new port: devel/buildapp
f ports/145080[patch] update net-mgmt/snmptt to 1.3
f ports/145077[PATCH] upgrade multimedia/clive to version 2.2.10
o ports/145076I could not build devel/pwlib
o ports/145075New port: databases/beansdb: Yet anonther distributed 
o ports/145050Update ports emulator/sdlmame : Update to v0.137 and r
o ports/145017New port: databases/dm-validations.
o ports/145015net-im/prosody rc.d script doesn't stop the server whe
o ports/145002databases/postgresql-client : libpgport.a is missing a
o ports/144993databases/postgresql-odbc: contents of numeric fields 
o ports/144989irc/inspircd will not compile if gnutls module is sele
o ports/144988[NEW PORT] net/monast: A monitoring and an operator pa
o ports/144979new port net-im/komclean
o ports/144973New port: devel/p5-App-Ack grep on steriods
f ports/144964x11-wm/echinus out-of-date
o ports/144939New port databases/xtrabackup OpenSource version of In
o ports/144923make devel/netbsd-pkgsrc-mk-files install files to dif
o ports/144910[new port] java/hgeclipse Mercurial VCS plugin for the
o ports/144904[PATCH] www/free-sa-devel: update to 2.0.0b3
f ports/144897[UPDATE] Update mail/dovecot to 1.2.11
f ports/144884[PATCH] www/davical - update to 0.9.8.4
o p

Re: FreeBSD Port: clamav-0.95.3

2010-04-05 Thread Jerry
On Mon, 5 Apr 2010 13:09:18 +0300, admin  articulated:

> Hi
> Please update ports clamav
> Local version: 0.95.3 Recommended version: 0.96
> --- 
> Br
> Yurij

The new version was only released on April 2. Considering the holiday
weekend (for some) and the fact that some of us work for a living, you
might want to give the port maintainer  a break. I
am sure that he will attend to the matter in good time.

-- 
Jerry
freebsd-ports.u...@seibercom.net

Disclaimer: off-list followups get on-list replies or get ignored.
Please do not ignore the Reply-To header.
__

The person who's taking you to lunch has no intention of paying.
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


FreeBSD Port: clamav-0.95.3

2010-04-05 Thread admin
Hi
Please update ports clamav
Local version: 0.95.3 Recommended version: 0.96
--- 
Br
Yurij

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Ports breakage since r205471

2010-04-05 Thread Garrett Cooper
On Mon, Apr 5, 2010 at 2:12 AM, Erwin Lansing  wrote:
> On Mon, Apr 05, 2010 at 02:02:46AM -0700, Xin LI wrote:
>> On 2010/04/05 01:50, Erwin Lansing wrote:
>> > On Sun, Apr 04, 2010 at 03:06:15PM -0700, Garrett Cooper wrote:
>> >> Hi all,
>> >>     I realize that this is most suitable for current@ and I'm
>> >> cross-posting, but I wanted to jot down all of the ports broken since
>> >> the zlib version bump so that we can keep track of what's going on and
>> >> what needs to be fixed.
>> >
>> > I have just started a new package build against todays HEAD on pointyhat
>> > , actually before seeing this thread, so these, and any others, will be
>> > picked up there.  I'll update the list with the results when it finishes
>> > in a day or two.
>>
>> Which svn revision is currently using on the build cluster?
>>
> Unfortunately, we're still using cvs for updating, but I just double
> checked that it is past r206058.  The update is less than an hour old
> from cvs.

You won't see the issue unless you roll back to before r206057;
r206057 and r206058 disguise the compatibility issue by completely
zapping the #ifdef _LARGEFILE64_SOURCE and #if _FILE_OFFSET_BITS == 64
enable pieces.
Thanks,
-Garrett
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Ports breakage since r205471

2010-04-05 Thread Erwin Lansing
On Mon, Apr 05, 2010 at 02:02:46AM -0700, Xin LI wrote:
> On 2010/04/05 01:50, Erwin Lansing wrote:
> > On Sun, Apr 04, 2010 at 03:06:15PM -0700, Garrett Cooper wrote:
> >> Hi all,
> >> I realize that this is most suitable for current@ and I'm
> >> cross-posting, but I wanted to jot down all of the ports broken since
> >> the zlib version bump so that we can keep track of what's going on and
> >> what needs to be fixed.
> > 
> > I have just started a new package build against todays HEAD on pointyhat
> > , actually before seeing this thread, so these, and any others, will be
> > picked up there.  I'll update the list with the results when it finishes
> > in a day or two.
> 
> Which svn revision is currently using on the build cluster?
> 
Unfortunately, we're still using cvs for updating, but I just double
checked that it is past r206058.  The update is less than an hour old
from cvs.

-erwin

-- 
Erwin Lansing   http://droso.org
Prediction is very difficult
especially about the futureer...@freebsd.org


pgpTl79mCyvkE.pgp
Description: PGP signature


Re: Ports breakage since r205471

2010-04-05 Thread Xin LI
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 2010/04/05 01:50, Erwin Lansing wrote:
> On Sun, Apr 04, 2010 at 03:06:15PM -0700, Garrett Cooper wrote:
>> Hi all,
>> I realize that this is most suitable for current@ and I'm
>> cross-posting, but I wanted to jot down all of the ports broken since
>> the zlib version bump so that we can keep track of what's going on and
>> what needs to be fixed.
> 
> I have just started a new package build against todays HEAD on pointyhat
> , actually before seeing this thread, so these, and any others, will be
> picked up there.  I'll update the list with the results when it finishes
> in a day or two.

Which svn revision is currently using on the build cluster?

Cheers,
- -- 
Xin LI http://www.delphij.net/
FreeBSD - The Power to Serve!  Live free or die
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.14 (FreeBSD)

iQEcBAEBAgAGBQJLuac2AAoJEATO+BI/yjfBusMH/jAc2pH439rkteRRX5oK+IXo
hV3qXE0pMNkrGDDciVbYuJ9r/niqdkBIqaaw2te8K97YwBAdpikheHV0NaHoOzYT
J+OiKmTu2o96J7FV7ORSRmPUcKhHHTjXwLMF2Kz9MeoRvYJqyVk1m33wMuDdIGEe
57Pxq3sXpbfmUoOq5S7ITLXSPqE+l5Xh0j4wM7wULQWhabTw1akliDGxvwr1XqrU
8r+3dbLASzV8hitIXk92MLCfomJNDgsW3VV3nqlzmiLlwBOfGrGowZblKlgHUWO4
VEJ6qCXpRPGpelIVSDyguR3BCEl2m9tyQ3xQ8MEznjwuOJGpp8vwNrwAUOB0PpE=
=g4ur
-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-unsubscr...@freebsd.org"


Re: Ports breakage since r205471

2010-04-05 Thread Erwin Lansing
On Sun, Apr 04, 2010 at 03:06:15PM -0700, Garrett Cooper wrote:
> Hi all,
> I realize that this is most suitable for current@ and I'm
> cross-posting, but I wanted to jot down all of the ports broken since
> the zlib version bump so that we can keep track of what's going on and
> what needs to be fixed.

I have just started a new package build against todays HEAD on pointyhat
, actually before seeing this thread, so these, and any others, will be
picked up there.  I'll update the list with the results when it finishes
in a day or two.
> 
>Also, I really think we should add packaging metadata to third
> party libraries in base and at least track the versioning and
> dependencies because this CURRENT upgrade has turned into a royal mess
> and has eaten up more of my time than it should have.

Unfortunately, the story of ports on CuRRENT :-(

-erwin

-- 
Erwin Lansing   http://droso.org
Prediction is very difficult
especially about the futureer...@freebsd.org


pgpdPSJdIPYU5.pgp
Description: PGP signature


virtualbox-ose-3.1.6_2 font issue with X forwarding

2010-04-05 Thread Lawrence Stewart

Hi all,

I installed Virtual Box 3.1.6 from yesterday's ports tree on my amd64 
8-STABLE home server. Everything went fine, but when I X forwarded 
"VirtualBox" to my desktop PC, the fonts were completely broken, and all 
the places where characters should have been were small boxes.


After installing the same port on my desktop and finding that it worked 
just fine, I suspected a lack of fonts installed on the server.  Sure 
enough, installing the "x11-fonts/xorg-fonts" meta package resolved the 
issue and now it looks great.


Might I suggest adding a dependency on "x11-fonts/xorg-fonts" or one of 
its appropriate children packages? People that want to X forward from a 
headless machine that doesn't have a full X.org install would be grateful!


My sincere thanks go to those responsible for getting Virtual Box 
working on FreeBSD - I'm very much looking forward to taking it for a 
spin in the coming days.


Cheers,
Lawrence
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"