Re: [new-port] JDownloader

2012-07-02 Thread Bernhard Fröhlich
On Sun, Jul 1, 2012 at 11:49 PM, Fernando Apesteguía
fernando.apesteg...@gmail.com wrote:

 El 01/07/2012 20:45, Bernhard Fröhlich de...@bluelife.at escribió:

 On So.,   1. Jul. 2012 20:09:09 CEST, Fernando Apesteguía
 fernando.apesteg...@gmail.com wrote:

  On Sun, Jul 1, 2012 at 7:44 PM, Bernhard Fröhlich de...@bluelife.at
  wrote:
   On So., 1. Jul. 2012 19:32:58 CEST, Fernando Apesteguía
   fernando.apesteg...@gmail.com wrote:
  
Hi all,
   
I have a preliminary version of a port for JDownloader[1] since it
seems to be a wanted port[2]
   
Here is the Makefile:
   
   
---
# New ports collection makefile for:   jdownloader
# Date created:
Sun Jul 1 2012
# Whom:   Fernando Apesteguia
fernando.apesteg...@gmail.com #
# $FreeBSD$
   
PORTNAME=   jdownloader
PORTVERSION=   1.0
CATEGORIES=   java ftp
MASTER_SITES=   http://212.117.163.148/
DISTNAME=   jd.sh
EXTRACT_SUFX=
   
MAINTAINER=   fernando.apesteg...@gmail.com
COMMENT=   Download management for one-click-hosters
   
RUN_DEPENDS=
${LOCALBASE}/bin/java:${PORTSDIR}/java/diablo-jdk16
RUN_DEPENDS+=   ${LOCALBASE}/bin/wget:${PORTSDIR}/ftp/wget
   
USE_JAVA=   yes
JAVA_VERSION=   1.6+
NO_BUILD=   yes
   
WRKSRC=   ${WRKDIR}
   
do-extract:
@${MKDIR} ${WRKDIR}
@${CP} ${DISTDIR}/jd.sh ${WRKSRC}
   
do-install:
@${MKDIR} ${PREFIX}/${PORTNAME}
@${INSTALL_SCRIPT} ${WRKSRC}/jd.sh ${PREFIX}/bin
   
post-install:
@${ECHO_MSG} 
@${ECHO_MSG}
   
*
@${ECHO_MSG} JDownloader will update itself to the latest version
when it runs for the   @${ECHO_MSG} first time. Please run
${LOCALBASE}/bin/jd.sh   @${ECHO_MSG} to complete the
installation
@${ECHO_MSG}
   
*
@${ECHO_MSG}@${CAT} ${PKGMESSAGE}
   
.include bsd.port.mk
   
---
   
The port just needs a simple patch file (patch-jd.sh):
   
   
---
--- jd.sh.orig   2012-07-01 14:23:07.0 +0200
+++ jd.sh   2012-07-01 14:24:15.0 +0200
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
#JD Installer/Starter Version 0.2
#by Jiaz(JD-Team), j...@jdownloader.org
#You need at least:
   
---
   
The jd.sh runs fine with sh(1) so there is no need for a new run
dependency for bash(1).
   
The port installs one single file (jd.sh). This script when
executed,
checks for the presence of the JDownloader jar files under the ~/.jd
directory. If they don't exist it starts the uploader application
and
downloads the latest files. If the files were already present, it
launches the installation and if the installation is already
present,
it launches the program.
Uninstalling the port uninstalls the jd.sh file but _not_ the actual
application that might be installed by the users in their respective
home directories. Taking into account that JDownloader can be
installed anyway just by downloading the source I don't suppose this
is a concern. Since the program can act as a server (it installs a
plugin for remote controlling the application similarly to what
transmission torrent does), it shows a message after the
installation.
   
I haven't submitted a PR yet, so any suggestions are welcomed.
   
Thanks in advance.
   
[1] http://jdownloader.org/
[2] http://wiki.freebsd.org/WantedPorts
  
   Is there a reason why you explicitly add diablo-jdk16 as runtime
   dependency? The use_java stuff should be sufficient.
 
  You're right, doesn't seem to be necessary.
 
  
   Why have you decided to download and install the jar files on first
   run of the shellscript? That doesn't sound like a good idea to me
   because it breaks proper updates, deinstall and creates useless binary
   packages.
 
  I haven't. jd.sh is provided by the upstream project. The alternative
  is another nicer installation program.

 FreeBSD portstree is exactly that nicer installer that you are talking
 about.

  Since this is just a wrapper to do several things and the actual
  software is installed in the user's home directory, I agree we could
  have two different users with two different versions of JDownloader.
  By the way, the jd.sh script tries to update _just the first time_ but
  after that, the user can always look for new versions from inside
  JDownloader (in fact, it checks for new versions from the java code
  every time it 

Re: [new-port] JDownloader

2012-07-02 Thread Fernando Apesteguía
El 02/07/2012 09:51, Bernhard Fröhlich de...@bluelife.at escribió:

 On Sun, Jul 1, 2012 at 11:49 PM, Fernando Apesteguía
 fernando.apesteg...@gmail.com wrote:
 
  El 01/07/2012 20:45, Bernhard Fröhlich de...@bluelife.at escribió:
 
  On So.,   1. Jul. 2012 20:09:09 CEST, Fernando Apesteguía
  fernando.apesteg...@gmail.com wrote:
 
   On Sun, Jul 1, 2012 at 7:44 PM, Bernhard Fröhlich de...@bluelife.at
   wrote:
On So., 1. Jul. 2012 19:32:58 CEST, Fernando Apesteguía
fernando.apesteg...@gmail.com wrote:
   
 Hi all,

 I have a preliminary version of a port for JDownloader[1] since
it
 seems to be a wanted port[2]

 Here is the Makefile:



---
 # New ports collection makefile for:   jdownloader
 # Date created:
 Sun Jul 1 2012
 # Whom:   Fernando Apesteguia
 fernando.apesteg...@gmail.com #
 # $FreeBSD$

 PORTNAME=   jdownloader
 PORTVERSION=   1.0
 CATEGORIES=   java ftp
 MASTER_SITES=   http://212.117.163.148/
 DISTNAME=   jd.sh
 EXTRACT_SUFX=

 MAINTAINER=   fernando.apesteg...@gmail.com
 COMMENT=   Download management for one-click-hosters

 RUN_DEPENDS=
 ${LOCALBASE}/bin/java:${PORTSDIR}/java/diablo-jdk16
 RUN_DEPENDS+=   ${LOCALBASE}/bin/wget:${PORTSDIR}/ftp/wget

 USE_JAVA=   yes
 JAVA_VERSION=   1.6+
 NO_BUILD=   yes

 WRKSRC=   ${WRKDIR}

 do-extract:
 @${MKDIR} ${WRKDIR}
 @${CP} ${DISTDIR}/jd.sh ${WRKSRC}

 do-install:
 @${MKDIR} ${PREFIX}/${PORTNAME}
 @${INSTALL_SCRIPT} ${WRKSRC}/jd.sh ${PREFIX}/bin

 post-install:
 @${ECHO_MSG} 
 @${ECHO_MSG}


*
 @${ECHO_MSG} JDownloader will update itself to the latest version
 when it runs for the   @${ECHO_MSG} first time. Please run
 ${LOCALBASE}/bin/jd.sh   @${ECHO_MSG} to complete the
 installation
 @${ECHO_MSG}


*
 @${ECHO_MSG}@${CAT} ${PKGMESSAGE}

 .include bsd.port.mk


---

 The port just needs a simple patch file (patch-jd.sh):



---
 --- jd.sh.orig   2012-07-01 14:23:07.0 +0200
 +++ jd.sh   2012-07-01 14:24:15.0 +0200
 @@ -1,4 +1,4 @@
 -#!/bin/bash
 +#!/bin/sh
 #JD Installer/Starter Version 0.2
 #by Jiaz(JD-Team), j...@jdownloader.org
 #You need at least:


---

 The jd.sh runs fine with sh(1) so there is no need for a new run
 dependency for bash(1).

 The port installs one single file (jd.sh). This script when
 executed,
 checks for the presence of the JDownloader jar files under the
~/.jd
 directory. If they don't exist it starts the uploader application
 and
 downloads the latest files. If the files were already present, it
 launches the installation and if the installation is already
 present,
 it launches the program.
 Uninstalling the port uninstalls the jd.sh file but _not_ the
actual
 application that might be installed by the users in their
respective
 home directories. Taking into account that JDownloader can be
 installed anyway just by downloading the source I don't suppose
this
 is a concern. Since the program can act as a server (it installs
a
 plugin for remote controlling the application similarly to what
 transmission torrent does), it shows a message after the
 installation.

 I haven't submitted a PR yet, so any suggestions are welcomed.

 Thanks in advance.

 [1] http://jdownloader.org/
 [2] http://wiki.freebsd.org/WantedPorts
   
Is there a reason why you explicitly add diablo-jdk16 as runtime
dependency? The use_java stuff should be sufficient.
  
   You're right, doesn't seem to be necessary.
  
   
Why have you decided to download and install the jar files on first
run of the shellscript? That doesn't sound like a good idea to me
because it breaks proper updates, deinstall and creates useless
binary
packages.
  
   I haven't. jd.sh is provided by the upstream project. The alternative
   is another nicer installation program.
 
  FreeBSD portstree is exactly that nicer installer that you are talking
  about.
 
   Since this is just a wrapper to do several things and the actual
   software is installed in the user's home directory, I agree we could
   have two different users with two different versions of JDownloader.
   By the way, the 

Re: packages for i386

2012-07-02 Thread Erwin Lansing
On Sun, Jul 01, 2012 at 09:40:56PM +0300, l...@lena.kiev.ua wrote:
 
  ~ $ ftp ftp://ftp.freebsd.org/pub/FreeBSD/ports/
  ftp dir i386/packages-9-stable/All/firefox*
  -rw-r--r--  1 967  100  28100116 Jun 03 05:59 firefox-10.0.4_1,1.tbz
  -rw-r--r--  1 967  100  29286471 Jun 03 08:34 firefox-12.0_1,1.tbz
  -rw-r--r--  1 967  100   9579905 Jun 03 22:03 firefox-i18n-10.0.4.tbz
  -rw-r--r--  1 967  100  10016511 Jun 03 22:10 firefox-i18n-12.0.tbz
  -rw-r--r--  1 967  100  3114 Dec 04  2011 firefox-remote-20040803_3.tbz
 
  In ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-9-stable/
  all files seem to be dated June 04, 2012 or older.
 
 There is a package
 http://pointyhat.freebsd.org/errorlogs/i386-9-packages-latest/www/firefox-13.0.1,1.tbz
 built on June 27
 http://pointyhat.freebsd.org/errorlogs/i386-9-latest-logs/firefox-13.0.1,1.log
 
 but it wasn't uploaded to
 ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-9-stable/All/
 and mirrors.
 
 http://portsmon.freebsd.org/portsuploadstatus.py
 shows upload date 06/04/12 for i386 9.
 
 Why?
 
Unfortunately our current model is very dependent on single persons and
I've been travelling extensively the last few weeks, add a few cluster
errors and you'll get the picture.  With the upcoming moves to PKGNG and
Subversion, we're in a good position to change that in a few months,
hopefully.

Anyway, I'll upload the new i386-9-stable packages now and start a new 8
build as well.  The packages should show up on the mirrors in a few
hours.

Erwin

-- 
Erwin Lansinghttp://droso.dk
er...@freebsd.orghttp:// www.FreeBSD.org
___
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


make failed for editors/libreoffice

2012-07-02 Thread Leslie Jensen


Help Please.

Thanks




.2/solver/unxfbsd.pro/inc/vcl/msgbox.hxx:34:
In file included from 
/usr/ports/editors/libreoffice/work/libreoffice-core-3.5.4.2/solver/unxfbsd.pro/inc/vcl/btndlg.hxx:32:
In file included from 
/usr/local/include/boost/ptr_container/ptr_vector.hpp:20:
/usr/local/include/boost/ptr_container/ptr_sequence_adapter.hpp:667:41: 
warning: unused parameter 'first' [-Wunused-parameter]

void range_check_impl( iterator first, iterator last,
^
/usr/local/include/boost/ptr_container/ptr_sequence_adapter.hpp:667:57: 
warning: unused parameter 'last' [-Wunused-parameter]

void range_check_impl( iterator first, iterator last,
^
/usr/local/include/boost/ptr_container/ptr_sequence_adapter.hpp:671:41: 
warning: unused parameter 'first' [-Wunused-parameter]

void range_check_impl( iterator first, iterator last,
^
/usr/local/include/boost/ptr_container/ptr_sequence_adapter.hpp:671:57: 
warning: unused parameter 'last' [-Wunused-parameter]

void range_check_impl( iterator first, iterator last,
^
6 warnings generated.
[ build CXX ] avmedia/source/viewer/mediawindow_impl
[ build LNK ] Library/libavmedialo.so
clang: warning: argument unused during compilation: 
'-rpath=/usr/lib:/usr/local/lib'

[ build CMP ] avmedia/util/avmedia
[ build MOD ] avmedia
[ build ALL ] top level modules: bootstrap src.downloaded avmedia
[ build ALL ] loaded modules: avmedia

[ build CHK ] avmedia
[ build CHK ] loaded modules: avmedia

avmedia deliver
Module 'avmedia' delivered successfully. 0 files copied, 0 files unchanged

---
Oh dear - something failed during the build - sorry !
  For more help with debugging build errors, please see the section in:
http://wiki.documentfoundation.org/Development

  internal build errors:

ERROR: error 65280 occurred while making 
/usr/ports/editors/libreoffice/work/libreoffice-core-3.5.4.2/canvas/prj


 it seems that the error is inside 'canvas', please re-run build
 inside this module to isolate the error and/or test your fix:
---

/usr/local/bin/bash
cd /usr/ports/editors/libreoffice/work/libreoffice-core-3.5.4.2
source ./Env.Host.sh
cd canvas
gmake clean # optional
gmake -r

when the problem is isolated and fixed exit and re-run 'make' from the 
top-level

gmake[1]: *** [build] Fel 1
gmake[1]: Lämnar katalogen 
/usr/ports/editors/libreoffice/work/libreoffice-core-3.5.4.2

gmake: *** [source-env-and-recurse] Fel 2
*** Error code 1

Stop in /usr/ports/editors/libreoffice.
*** Error code 1

Stop in /usr/ports/editors/libreoffice.

=== make failed for editors/libreoffice
=== Aborting update

=== Update for editors/libreoffice failed
=== Aborting update

Terminated









When following the instructions given above I get:



[ build CUT ] sfx2_metadatable
[ build CHK ] sfx2
[ build CHK ] loaded modules: sfx2

sfx2 deliver
Module 'sfx2' delivered successfully. 0 files copied, 0 files unchanged

=
(97/105) Building module avmedia
=
Entering 
/usr/ports/editors/libreoffice/work/libreoffice-core-3.5.4.2/avmedia/prj


[ build MOD ] avmedia
[ build ALL ] top level modules: bootstrap src.downloaded avmedia
[ build ALL ] loaded modules: avmedia

[ build CHK ] loaded modules: avmedia

avmedia deliver
Module 'avmedia' delivered successfully. 0 files copied, 0 files unchanged

---
Oh dear - something failed during the build - sorry !
  For more help with debugging build errors, please see the section in:
http://wiki.documentfoundation.org/Development

  internal build errors:

ERROR: error 65280 occurred while making 
/usr/ports/editors/libreoffice/work/libreoffice-core-3.5.4.2/canvas/prj


 it seems that the error is inside 'canvas', please re-run build
 inside this module to isolate the error and/or test your fix:
---

/usr/local/bin/bash
cd /usr/ports/editors/libreoffice/work/libreoffice-core-3.5.4.2
source ./Env.Host.sh
cd canvas
gmake clean # optional
gmake -r

when the problem is isolated and fixed exit and re-run 'make' from the 
top-level

gmake[1]: *** [build] Fel 1
gmake[1]: Lämnar katalogen 
/usr/ports/editors/libreoffice/work/libreoffice-core-3.5.4.2

gmake: *** [source-env-and-recurse] Fel 2
*** Error code 1

Stop in /usr/ports/editors/libreoffice.
*** Error code 1






Doing the same again gives:



gmake -r
[ build CXX ] canvas/source/null/null_canvasbitmap
gmake[1]: Går till katalogen 
/usr/ports/editors/libreoffice/work/libreoffice-core-3.5.4.2/canvas
R=/usr/ports/editors/libreoffice/work  S=$R/libreoffice-core-3.5.4.2 
 

Re: KDE 4 hangs at splash screen when using KMS enabled 10-CURRENT

2012-07-02 Thread Nikolay Tychina
 FreeBSD X220.ovitrap.com 10.0-CURRENT FreeBSD 10.0-CURRENT #9: Sun Jul  1 
 15:34:52 WIT 2012

 But the sources are one day older.

 And did you start KDE with no previous configuration available?

 No, as I have started KDE before. I should not have had a configuration when 
 I started it for the first time. I am not able to tell you if I started KDE 
 while this machine was on VESA.

 Is Composite enabled in your xorg.conf?

 My xorg.conf:

 Section Files
 ModulePath  /usr/local/lib/xorg/modules
 FontPath/usr/local/lib/X11/fonts/misc/
 FontPath/usr/local/lib/X11/fonts/TTF/
 FontPath/usr/local/lib/X11/fonts/OTF
 FontPath/usr/local/lib/X11/fonts/Type1/
 FontPath/usr/local/lib/X11/fonts/100dpi/
 FontPath/usr/local/lib/X11/fonts/75dpi/
 FontPath/usr/local/lib/X11/fonts/dejavu/
 FontPath/usr/local/lib/X11/fonts/WindowsFonts/
 FontPath/usr/local/lib/X11/fonts/Windows-7-Fonts/
 EndSection

 Section Module
 Load  extmod
 Load  record
 Load  dbe
 Load  glx
 Load  dri
 Load  dri2
 Loadfreetype
 EndSection

 Erich



Could you please backup ~/.kde4 and start it once again?
My system seems to be quite the same as yours but KDE behaves differently.
___
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: KDE 4 hangs at splash screen when using KMS enabled 10-CURRENT

2012-07-02 Thread Erich Dollansky
Hi,

On Monday, July 02, 2012 04:32:41 PM Nikolay Tychina wrote:
  FreeBSD X220.ovitrap.com 10.0-CURRENT FreeBSD 10.0-CURRENT #9: Sun Jul  1 
  15:34:52 WIT 2012
 
 Could you please backup ~/.kde4 and start it once again?
 My system seems to be quite the same as yours but KDE behaves differently.

I moved .kde4 out of the way, edited .xinitrc and came to the same result. The 
only difference was that KDE did some 'migration' and was real slow coming up.

Stupid question. When did you compile the ports the last time? Could it be that 
your KDE is a bit too old?

My installation is pretty fresh as I just replaced the hard disk.

Erich
___
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

2012-07-02 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/169596[MAINTAINER] chinese/CNS11643-font: remove RESITRCTED 
f ports/169593Update sysutils/smartmontools to 5.43
o ports/169588suck makefile needs a change for inn 2.5.2
o ports/169574update multimedia/qmmp; add port multimedia/qmmp-plugi
f ports/169545graphics/libjpeg-turbo is a build conflict with java/o
f ports/169521astro/weatherspect: Exiting with SIGUse of uninitializ
o ports/169519[net/cvsup] socksify and cvsup cannot be used together
o ports/169509New software Netmagis with FreeBSD ports
o ports/169492databases/pecl-sqlite must be restored
f ports/169430net-mgmt/flowviewer Makefile does not install scripts 
o ports/169383New Port: graphics/puf Photographer productivity tool 
f ports/169380security/sshguard: no startup script for sshguard
f ports/169376Update port games/megaglest to 3.6.0.3
o ports/169371port graphics/sane-backends segfaults
o ports/169366www/xpi-* ports need re-install after each Firefox upd
f ports/169333[PATCH] sysutils/syslog-ng2: move sample config to EXA
o ports/169332editors/xemacs-packages: wide-edit.el wrong mode
o ports/169322New port: net/armsd: SMFv2/ARMS Service Adapter daemon
o ports/169314graphics/ImageMagick fails to build: test failure
o ports/169296New port: textproc/libcrm114 CRM114 C-callable Library
f ports/169243lang/swi-pl: does not compile with OpenJDK installed
f ports/169240[patch] japanese/emacs-emcws: Fix the BROKEN flag
o ports/169211new port: emulators/vboxtool, provides effective contr
o ports/169181New port: databases/spatialite_gui spatialite-gui is a
o ports/169180New port: graphics/libgaiagraphics libgaiagraphics is 
f ports/169174[patch] sysutils/htop: fix swap size calculation on i3
f ports/169165sysutils/fusefs-kmod: calling fchown(2) on sshfs files
o ports/169095New port: audio/mous A simpe yet powerful audio playe
o ports/169090New Port: comms/ge-x2212-2 An EEPROM programmer for GE
o ports/169074[NEW PORT] net/jicmp6: ICMPv6 JNI
f ports/169043Add CONFLICTS_INSTALL=fusefs-ntfs to sysutils/ntfsprog
f ports/169032Update net-im/qutim port to 0.3.0
f ports/169026print/gutenprint-cups build prompts unprivileged user
f ports/168975databases/couchdb stops on start and did not return to
o ports/168972[PATCH] for net/rdist6 to handle files  2GB
f ports/168935www/firefox-remote shares PORTNAME with www/firefox
o ports/168926Second '59.xxx' out of range 0..59 at security/snort-r
o ports/168861devel/tkcvs: tkdiff no longer runs correctly
o ports/168841x11/slim fails to authorize (through kereros) if built
f ports/168611conflict: cad/brlcad: Port shares files with other por
o ports/168486[PATCH] www/sams, warnings strftime() [function.strft
o ports/168466[PATCH] www/sams, web-interface, needs GetHostnameSam.
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/168385every port has vulnerabilities in case of locale probl
o ports/168328[REPOCOPY] devel/codeblocks -- devel/codeblocks-devel
f ports/168319graphics/qiviewer: Not displaying image jpeg
s ports/168215[PATCH] print/scribus-devel: update to 1.5.0 svn
s ports/168161[PATCH] sysutils/conky: update to 1.9.0
f ports/168160ports-mgmt/jailaudit doesn't return a non-0 exit code 
o ports/168141faild to install lang/ezm3
s ports/167955[update] graphics/tinyows: Fix dependency to postgis
f ports/167950databases/memcachedb does not work on 10-CURRENT
f ports/167691security/heimdal: problem compiling kerberos/heimdal
o ports/167591security/openssh-portable looks for ecdsa key but none
o ports/167554security/openssh-portable has some drawbacks
o ports/167428net/samba36 could not be configured to start only nmbd
f ports/167090sysutils/ezjail: Invalid command line option in ezjail
o ports/167042New port: net-p2p/tahoe-lafs
f ports/167031security/heimdal ignore environment after process call
f 

[clang from ports bug?] libreoffice and clang from ports: C preprocessor /usr/local/bin/clang-cpp fails sanity check

2012-07-02 Thread Boris Samorodov

Hi List,

with latest ports after installing devel/llvm and lang/clang I get:
-
checking whether to include symbols... no
checking whether to strip the solver or not yes
checking whether cups support is present... checking for cupsPrintFiles 
in -lcups... yes

checking how to run the C preprocessor... /usr/local/bin/clang-cpp
configure: error: in 
`/usr/ports/editors/libreoffice/work/libreoffice-core-3.5.4.2':
configure: error: C preprocessor /usr/local/bin/clang-cpp fails sanity 
check

See `config.log' for more details.
===  Script configure failed unexpectedly.
-

From config.log:
-
[...]
configure:7956: checking how to run the C preprocessor
configure:8074: result: /usr/local/bin/clang-cpp
configure:8103: /usr/local/bin/clang-cpp -I/usr/local/include 
-I/usr/local/include/db42 conftest.c

eval: /usr/local/bin/clang-cpp: not found
configure:8110: $? = 127
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME LibreOffice
| #define PACKAGE_TARNAME libreoffice
| #define PACKAGE_VERSION 3.5
| #define PACKAGE_STRING LibreOffice 3.5
| #define PACKAGE_BUGREPORT 
| #define HAVE_LIBCUPS 1
| /* end confdefs.h.  */
| #ifdef __STDC__
| # include limits.h
| #else
| # include assert.h
| #endif
|Syntax error
configure:8103: /usr/local/bin/clang-cpp -I/usr/local/include 
-I/usr/local/include/db42 conftest.c

eval: /usr/local/bin/clang-cpp: not found
[...]
-

And clang-cpp does not exist at LOCALBASE:
-
% ls -l /usr/local/bin/clang*
-rwxr-xr-x  1 root  wheel  39237392  2 июл 19:25 /usr/local/bin/clang
lrwxr-xr-x  1 root  wheel 5  2 июл 19:25 /usr/local/bin/clang++ 
- clang

-rwxr-xr-x  1 root  wheel896552  2 июл 19:24 /usr/local/bin/clang-tblgen
-

Creating a symlink clang-clang-cpp helps to configure libreoffice.
Is it lang/clang bug?

The system:
-
% uname -a
FreeBSD bsam.wart.ru 10.0-CURRENT FreeBSD 10.0-CURRENT #18 r237572M: Wed 
Jun 27 18:15:27 SAMT 2012 b...@bsam.wart.ru:/usr/obj/usr/src/sys/BBX 
 i386

-

It is built with clang and options:
-
WITH_CLANG_IS_CC=YES
WITH_LIBCPLUSPLUS=YES
-

--
WBR, Boris Samorodov (bsam)
FreeBSD Committer, http://www.FreeBSD.org The Power To Serve

___
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


Can I get some love on this PR?

2012-07-02 Thread Bill Moran

http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/168583

This bugger is about a month old at this point.  Of course,
part of that is my fault for being slow to respond, so I'm
just putting a heads-up out -- if anyone is able to commit
that, it'd be great.

-- 
Bill Moran
http://www.potentialtech.com
http://people.collaborativefusion.com/~wmoran/
___
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: Can I get some love on this PR?

2012-07-02 Thread Wesley Shields
On Mon, Jul 02, 2012 at 12:55:28PM -0400, Bill Moran wrote:
 
 http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/168583
 
 This bugger is about a month old at this point.  Of course,
 part of that is my fault for being slow to respond, so I'm
 just putting a heads-up out -- if anyone is able to commit
 that, it'd be great.

I'll grab it, unless sylvio@ speaks up and says he's going to commit it
soon.

-- WXS
___
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: KDE 4 hangs at splash screen when using KMS enabled 10-CURRENT

2012-07-02 Thread Nikolay Tychina
2012/7/2 Erich Dollansky erichfreebsdl...@ovitrap.com:
 Hi,

 On Monday, July 02, 2012 04:32:41 PM Nikolay Tychina wrote:
  FreeBSD X220.ovitrap.com 10.0-CURRENT FreeBSD 10.0-CURRENT #9: Sun Jul  1 
  15:34:52 WIT 2012

 Could you please backup ~/.kde4 and start it once again?
 My system seems to be quite the same as yours but KDE behaves differently.

 I moved .kde4 out of the way, edited .xinitrc and came to the same result. 
 The only difference was that KDE did some 'migration' and was real slow 
 coming up.

 Stupid question. When did you compile the ports the last time? Could it be 
 that your KDE is a bit too old?

 My installation is pretty fresh as I just replaced the hard disk.

 Erich

I compiled fresh CURRENT and fresh ports right after, all this appox.
the day before I mailed first message.
BTW, CPU is Intel Celeron G530 and maybe that's relevant. Will do some
googling about it.
___
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: KDE 4 hangs at splash screen when using KMS enabled 10-CURRENT

2012-07-02 Thread Matthias Apitz
El día Monday, July 02, 2012 a las 10:09:08PM +0300, Nikolay Tychina escribió:

 I compiled fresh CURRENT and fresh ports right after, all this appox.
 the day before I mailed first message.
 BTW, CPU is Intel Celeron G530 and maybe that's relevant. Will do some
 googling about it.

Maybe it would also help to SSH into the box to see what proc is waiting
for what or doing CPU loop.

HIH

matthias
-- 
Matthias Apitz
e g...@unixarea.de - w http://www.unixarea.de/
UNIX since V7 on PDP-11, UNIX on mainframe since ESER 1055 (IBM /370)
UNIX on x86 since SVR4.2 UnixWare 2.1.2, FreeBSD since 2.2.5
___
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: [new-port] JDownloader

2012-07-02 Thread Fernando Apesteguía
On Mon, Jul 2, 2012 at 9:59 AM, Fernando Apesteguía
fernando.apesteg...@gmail.com wrote:

 El 02/07/2012 09:51, Bernhard Fröhlich de...@bluelife.at escribió:



 On Sun, Jul 1, 2012 at 11:49 PM, Fernando Apesteguía
 fernando.apesteg...@gmail.com wrote:
 
  El 01/07/2012 20:45, Bernhard Fröhlich de...@bluelife.at escribió:
 
  On So.,   1. Jul. 2012 20:09:09 CEST, Fernando Apesteguía
  fernando.apesteg...@gmail.com wrote:
 
   On Sun, Jul 1, 2012 at 7:44 PM, Bernhard Fröhlich de...@bluelife.at
   wrote:
On So., 1. Jul. 2012 19:32:58 CEST, Fernando Apesteguía
fernando.apesteg...@gmail.com wrote:
   
 Hi all,

 I have a preliminary version of a port for JDownloader[1] since
 it
 seems to be a wanted port[2]

 Here is the Makefile:



 ---
 # New ports collection makefile for:   jdownloader
 # Date created:
 Sun Jul 1 2012
 # Whom:   Fernando Apesteguia
 fernando.apesteg...@gmail.com #
 # $FreeBSD$

 PORTNAME=   jdownloader
 PORTVERSION=   1.0
 CATEGORIES=   java ftp
 MASTER_SITES=   http://212.117.163.148/
 DISTNAME=   jd.sh
 EXTRACT_SUFX=

 MAINTAINER=   fernando.apesteg...@gmail.com
 COMMENT=   Download management for one-click-hosters

 RUN_DEPENDS=
 ${LOCALBASE}/bin/java:${PORTSDIR}/java/diablo-jdk16
 RUN_DEPENDS+=   ${LOCALBASE}/bin/wget:${PORTSDIR}/ftp/wget

 USE_JAVA=   yes
 JAVA_VERSION=   1.6+
 NO_BUILD=   yes

 WRKSRC=   ${WRKDIR}

 do-extract:
 @${MKDIR} ${WRKDIR}
 @${CP} ${DISTDIR}/jd.sh ${WRKSRC}

 do-install:
 @${MKDIR} ${PREFIX}/${PORTNAME}
 @${INSTALL_SCRIPT} ${WRKSRC}/jd.sh ${PREFIX}/bin

 post-install:
 @${ECHO_MSG} 
 @${ECHO_MSG}


 *
 @${ECHO_MSG} JDownloader will update itself to the latest version
 when it runs for the   @${ECHO_MSG} first time. Please run
 ${LOCALBASE}/bin/jd.sh   @${ECHO_MSG} to complete the
 installation
 @${ECHO_MSG}


 *
 @${ECHO_MSG}@${CAT} ${PKGMESSAGE}

 .include bsd.port.mk


 ---

 The port just needs a simple patch file (patch-jd.sh):



 ---
 --- jd.sh.orig   2012-07-01 14:23:07.0 +0200
 +++ jd.sh   2012-07-01 14:24:15.0 +0200
 @@ -1,4 +1,4 @@
 -#!/bin/bash
 +#!/bin/sh
 #JD Installer/Starter Version 0.2
 #by Jiaz(JD-Team), j...@jdownloader.org
 #You need at least:


 ---

 The jd.sh runs fine with sh(1) so there is no need for a new run
 dependency for bash(1).

 The port installs one single file (jd.sh). This script when
 executed,
 checks for the presence of the JDownloader jar files under the
 ~/.jd
 directory. If they don't exist it starts the uploader application
 and
 downloads the latest files. If the files were already present, it
 launches the installation and if the installation is already
 present,
 it launches the program.
 Uninstalling the port uninstalls the jd.sh file but _not_ the
 actual
 application that might be installed by the users in their
 respective
 home directories. Taking into account that JDownloader can be
 installed anyway just by downloading the source I don't suppose
 this
 is a concern. Since the program can act as a server (it installs
 a
 plugin for remote controlling the application similarly to what
 transmission torrent does), it shows a message after the
 installation.

 I haven't submitted a PR yet, so any suggestions are welcomed.

 Thanks in advance.

 [1] http://jdownloader.org/
 [2] http://wiki.freebsd.org/WantedPorts
   
Is there a reason why you explicitly add diablo-jdk16 as runtime
dependency? The use_java stuff should be sufficient.
  
   You're right, doesn't seem to be necessary.
  
   
Why have you decided to download and install the jar files on first
run of the shellscript? That doesn't sound like a good idea to me
because it breaks proper updates, deinstall and creates useless
binary
packages.
  
   I haven't. jd.sh is provided by the upstream project. The alternative
   is another nicer installation program.
 
  FreeBSD portstree is exactly that nicer installer that you are talking
  about.
 
   Since this is just a wrapper to do several things and the actual