Major changes since 6.2?

2007-10-17 Thread Kris Kennaway
What are some of the major changes to ports/ported applications since 
6.2-RELEASE (01/2007)?  I am in the process of putting together a talk 
and would like to mention some of the highlights.  The main ones are 
xorg 7.3, KDE 3.5.7 and GNOME 2.18.3.  Have there been any other major 
changes of interest to end users over the past year?


Kris
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Major changes since 6.2?

2007-10-17 Thread Doug Barton

On Thu, 18 Oct 2007, Kris Kennaway wrote:

What are some of the major changes to ports/ported applications since 
6.2-RELEASE (01/2007)?  I am in the process of putting together a talk and 
would like to mention some of the highlights.  The main ones are xorg 7.3, 
KDE 3.5.7 and GNOME 2.18.3.  Have there been any other major changes of 
interest to end users over the past year?


I think the fact that OPTIONS now works as one would expect it to is 
pretty major. Of course I also feel the fact that portmaster has evolved 
to be fairly feature-complete in the 19 months since I first committed it 
is pretty major, but I'm biased. :)


Doug

--

This .signature sanitized for your protection

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Major changes since 6.2?

2007-10-17 Thread Chess Griffin
* Kris Kennaway [EMAIL PROTECTED] [2007-10-18 00:46:48]:

 What are some of the major changes to ports/ported applications since 
 6.2-RELEASE (01/2007)?  I am in the process of putting together a talk and 
 would like to mention some of the highlights.  The main ones are xorg 7.3, 
 KDE 3.5.7 and GNOME 2.18.3.  Have there been any other major changes of 
 interest to end users over the past year?


I think the addition of compiz and compiz-fusion to be of interest to
many desktop users.

Chess
 
-- 
Chess Griffin
GPG Public Key:  0x0C7558C3
http://www.chessgriffin.com


pgpDeDjIRMN6x.pgp
Description: PGP signature


linuxdoc command

2007-10-17 Thread Mark D. Foster
I maintain a port that calls the linuxdoc command in one of it's
Makefiles...
xca.html: xca.sgml
linuxdoc -B html $ || true

Is this command available for FreeBSD? I installed the linuxdoc port but
it does not contain the command. On my ubuntu linux system,
/usr/bin/linuxdoc is a perl script that comes from the linuxdoc-tools
package.
Any guidance is appreciated.

-- 
Said one park ranger, 'There is considerable overlap between the
 intelligence of the smartest bears and the dumbest tourists.'
Mark D. Foster, CISSP [EMAIL PROTECTED]  http://mark.foster.cc/


___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


ImageMagick test results

2007-10-17 Thread Doug Barton
I'm not sure where this conversation ended up, so I thought I'd mention 
that I got this tonight:


All 696 tests behaved as expected (11 expected failures)

Here is my options file:

# This file is auto-generated by 'make config'.
# No user-servicable parts inside!
# Options for ImageMagick-6.3.5.10_1
_OPTIONS_READ=ImageMagick-6.3.5.10_1
WITH_X11=true
WITH_IMAGEMAGICK_TESTS=true
WITH_IMAGEMAGICK_PERL=true
WITHOUT_IMAGEMAGICK_MODULES=true
WITH_IMAGEMAGICK_BZLIB=true
WITH_IMAGEMAGICK_16BIT_PIXEL=true
WITHOUT_IMAGEMAGICK_DJVU=true
WITH_IMAGEMAGICK_LCMS=true
WITH_IMAGEMAGICK_TTF=true
WITH_IMAGEMAGICK_FONTCONFIG=true
WITH_IMAGEMAGICK_JPEG=true
WITHOUT_IMAGEMAGICK_OPENEXR=true
WITH_IMAGEMAGICK_PNG=true
WITH_IMAGEMAGICK_TIFF=true
WITHOUT_IMAGEMAGICK_FPX=true
WITH_IMAGEMAGICK_JBIG=true
WITH_IMAGEMAGICK_JPEG2000=true
WITHOUT_IMAGEMAGICK_DOT=true
WITHOUT_IMAGEMAGICK_WMF=true
WITH_IMAGEMAGICK_SVG=true
WITH_IMAGEMAGICK_PDF=true
WITH_IMAGEMAGICK_MPEG2=true
WITHOUT_IMAGEMAGICK_GSLIB=true

If this is old or unwelcome news, sorry for the noise, otherwise I hope 
it's helpful.


Doug

--

This .signature sanitized for your protection

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


deskutils/taskjuggler

2007-10-17 Thread Arend P. van der Veen
Hi,

I tried to install taskjuggler on FreeBSD 6.2 and got the following
error message:

===  taskjuggler-2.4.0_1 is marked as broken: please unset SESSION_MANAGER.

I tried to unset SESSION_MANAGER but could not get rid of the error.
How to I unset SESSION_MANAGER?

Thanks,
Arend van der Veen
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: DATADIR question

2007-10-17 Thread Tijl Coosemans
On Monday 15 October 2007 18:30:24 Dmitry Marakasov wrote:
 I'm porting silvertree game (from creators of wesnoth), and I have
 some issues with it's DATADIR.
 
 The problem is that port is named silvertree, but it installs data
 under ${PREFIX}/share/silvertree-rpg. What do I do with DATADIR in
 this case?
 
 1. Rename the port:
 Not a best solution, as I'll have to introduce additional variables
 like DISTNAME, which are overwise correct with their default values.
 Also, this -rpg suffix may change in future.
 
 2. Leave it as it is:
 * Will install data to ${PREFIX}/share/silvertree-rpg
 * Plist: share/silvertree-rpg/somefile
 * portlint complaints, DATADIR is not used at all
 
 3. Force configure to use DATADIR with adding --datadir to
 CONFIGURE_ARGS
 * Will install data to ${PREFIX}/share/silvertree/silvertree-rpg
 * Plist: %%DATADIR%%/silvertree-rpg/somefile
 
 4. Change DATADIR in port
 * Will install data to ${PREFIX}/share/silvertree-rpg
 * Plist: %%DATADIR%%/somefile
 * DATADIR=${PREFIX}/share/silvertree-rpg
 
 I think the correct way is 3 or 4, but I didn't find enough data on
 DATADIR meaning: should it be user-changeable (i.e. user can install
 a port without touching PREFIX but changing DATADIR), or is more like
 a shortcut to sync port's Makefile and plist, so port could change it
 to actual value and plist should only use %%DATADIR%%?
 
 Seems that DATADIR user-changeable is not the case, as it's not even
 passed to configure by default. So correct way is more like #4, am I
 right?

Actually I'd like to see this clarified as well, because none of the
port maintainers I've ever spoken to knows this. Is DATADIR supposed
to be user changeable or not? Does it need to be passed to configure
or not?
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Appropriate way of submitting multiple related ports at once?

2007-10-17 Thread Q

Hi,

I have written a collection of ports (16 in total) for building a  
typical Apple WebObjects deployment environment. As most of these  
ports depend on one another in some way could someone advise what the  
most appropriate way to submit these ports as a bundle would be?


Thanks.

--
Seeya...Q

Quinton Dolan - [EMAIL PROTECTED]
Gold Coast, QLD, Australia (GMT+10)
Ph: +61 419 729 806



___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


asterisk-addons build problem on 6.2/i386

2007-10-17 Thread [EMAIL PROTECTED]

Hi to all!
I have problem building net/asterisk-addons on two FreeBSD 6.2/i386 
machines.


src/chan_h323.c:3249: error: dereferencing pointer to incomplete type
src/chan_h323.c:3250: error: dereferencing pointer to incomplete type
src/chan_h323.c:3251: error: dereferencing pointer to incomplete type
src/chan_h323.c:3220: error: storage size of `null_frame' isn't known
src/chan_h323.c: In function `ooh323_convert_hangupcause_asteriskToH323':
src/chan_h323.c:3271: error: `AST_CAUSE_CALL_REJECTED' undeclared (first 
use in this function)
src/chan_h323.c:3273: error: `AST_CAUSE_UNALLOCATED' undeclared (first 
use in this function)
src/chan_h323.c:3275: error: `AST_CAUSE_BUSY' undeclared (first use in 
this function)
src/chan_h323.c:3277: error: `AST_CAUSE_BEARERCAPABILITY_NOTAVAIL' 
undeclared (first use in this function)
src/chan_h323.c:3279: error: `AST_CAUSE_CONGESTION' undeclared (first 
use in this function)
src/chan_h323.c:3281: error: `AST_CAUSE_NO_ANSWER' undeclared (first use 
in this function)
src/chan_h323.c:3283: error: `AST_CAUSE_NORMAL' undeclared (first use in 
this function)
src/chan_h323.c:3285: error: `AST_CAUSE_FAILURE' undeclared (first use 
in this function)

src/chan_h323.c: In function `ooh323_convert_hangupcause_h323ToAsterisk':
src/chan_h323.c:3299: error: `AST_CAUSE_CALL_REJECTED' undeclared (first 
use in this function)
src/chan_h323.c:3301: error: `AST_CAUSE_UNALLOCATED' undeclared (first 
use in this function)
src/chan_h323.c:3304: error: `AST_CAUSE_BUSY' undeclared (first use in 
this function)
src/chan_h323.c:3306: error: `AST_CAUSE_BEARERCAPABILITY_NOTAVAIL' 
undeclared (first use in this function)
src/chan_h323.c:3309: error: `AST_CAUSE_CONGESTION' undeclared (first 
use in this function)
src/chan_h323.c:3311: error: `AST_CAUSE_NO_ANSWER' undeclared (first use 
in this function)
src/chan_h323.c:3315: error: `AST_CAUSE_FAILURE' undeclared (first use 
in this function)
src/chan_h323.c:3317: error: `AST_CAUSE_NORMAL' undeclared (first use in 
this function)

src/chan_h323.c: At top level:
src/chan_h323.c:3330: error: syntax error before string constant
src/chan_h323.c:3330: warning: data definition has no type or storage class
src/chan_h323.c:67: error: storage size of `ooh323_tech' isn't known
src/chan_h323.c:86: error: storage size of `ooh323_rtp' isn't known
src/chan_h323.c:206: error: storage size of `gCallerID' isn't known
src/chan_h323.c:209: error: storage size of `gPrefs' isn't known
src/chan_h323.c:222: error: storage size of `gContext' isn't known
src/chan_h323.c:2427: error: storage size of `cli_debug' isn't known
src/chan_h323.c:2434: error: storage size of `cli_no_debug' isn't known
src/chan_h323.c:2441: error: storage size of `cli_show_users' isn't known
src/chan_h323.c:2448: error: storage size of `cli_show_user' isn't known
src/chan_h323.c:2455: error: storage size of `cli_show_peers' isn't known
src/chan_h323.c:2462: error: storage size of `cli_show_peer' isn't known
src/chan_h323.c:2465: error: storage size of `cli_show_config' isn't known
gmake[3]: *** [chan_h323.lo] Ошибка 1
gmake[3]: Leaving directory 
`/usr/ports/net/asterisk-addons/work/asterisk-addons-1.4.2/asterisk-ooh323c'

gmake[2]: *** [all] Ошибка 2
gmake[2]: Leaving directory 
`/usr/ports/net/asterisk-addons/work/asterisk-addons-1.4.2/asterisk-ooh323c'

gmake[1]: *** [chan_ooh323.so] Ошибка 2
rm app_saycountpl.o
gmake[1]: Leaving directory 
`/usr/ports/net/asterisk-addons/work/asterisk-addons-1.4.2'

gmake: *** [all] Ошибка 2
*** Error code 2

Stop in /usr/ports/net/asterisk-addons.
*** Error code 1

Stop in /usr/ports/net/asterisk-addons.
** Command failed [exit code 1]: /usr/bin/script -qa 
/tmp/portupgrade.42772.0 env make

** Fix the problem and try again.
** Listing the failed packages (*:skipped / !:failed)
! net/asterisk-addons   (missing header)
---  Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed
gw# uname -a
FreeBSD gw 6.2-RELEASE FreeBSD 6.2-RELEASE #0: Fri Jan 12 11:05:30 UTC 
2007 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/SMP  i386


--
С уважением, Савчук Тарас
ООО Элантек : Аутсорсинг ИТ, WEB-разработка
http://www.elantech.ru
+7 (495) 589 68 81
+7 (926) 779 07 05
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: DATADIR question

2007-10-17 Thread Dmitry Marakasov
* Tijl Coosemans ([EMAIL PROTECTED]) wrote:
 Actually I'd like to see this clarified as well, because none of the
 port maintainers I've ever spoken to knows this. Is DATADIR supposed
 to be user changeable or not? Does it need to be passed to configure
 or not?
Seems like it's not user-changeable.
- it's not passed to configure by default
- it's changed by many ports

As far as I understand, it (along with DOCSDIR and some more) is
just convenient variable that gets substituded into plist by default,
so it's good practice to change it in your port if it uses non
share/$PORTNAME datadir, and use in both Makefile and plist.

I can't come out with any idea why user would need to change it
(there's $PREFIX for that purpose).

-- 
Dmitry A. Marakasov| jabber: [EMAIL PROTECTED]
[EMAIL PROTECTED]   | http://www.amdmi3.ru
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE : asterisk-addons build problem on 6.2/i386

2007-10-17 Thread tracy musaza
Can U update ports tree then reinstall asterisk? I see there is some probl with 
some dependancies:  asterisk-addons
   
  cheers!! 

[EMAIL PROTECTED] [EMAIL PROTECTED] a écrit :
  Hi to all!
I have problem building net/asterisk-addons on two FreeBSD 6.2/i386 
machines.

src/chan_h323.c:3249: error: dereferencing pointer to incomplete type
src/chan_h323.c:3250: error: dereferencing pointer to incomplete type
src/chan_h323.c:3251: error: dereferencing pointer to incomplete type
src/chan_h323.c:3220: error: storage size of `null_frame' isn't known
src/chan_h323.c: In function `ooh323_convert_hangupcause_asteriskToH323':
src/chan_h323.c:3271: error: `AST_CAUSE_CALL_REJECTED' undeclared (first 
use in this function)
src/chan_h323.c:3273: error: `AST_CAUSE_UNALLOCATED' undeclared (first 
use in this function)
src/chan_h323.c:3275: error: `AST_CAUSE_BUSY' undeclared (first use in 
this function)
src/chan_h323.c:3277: error: `AST_CAUSE_BEARERCAPABILITY_NOTAVAIL' 
undeclared (first use in this function)
src/chan_h323.c:3279: error: `AST_CAUSE_CONGESTION' undeclared (first 
use in this function)
src/chan_h323.c:3281: error: `AST_CAUSE_NO_ANSWER' undeclared (first use 
in this function)
src/chan_h323.c:3283: error: `AST_CAUSE_NORMAL' undeclared (first use in 
this function)
src/chan_h323.c:3285: error: `AST_CAUSE_FAILURE' undeclared (first use 
in this function)
src/chan_h323.c: In function `ooh323_convert_hangupcause_h323ToAsterisk':
src/chan_h323.c:3299: error: `AST_CAUSE_CALL_REJECTED' undeclared (first 
use in this function)
src/chan_h323.c:3301: error: `AST_CAUSE_UNALLOCATED' undeclared (first 
use in this function)
src/chan_h323.c:3304: error: `AST_CAUSE_BUSY' undeclared (first use in 
this function)
src/chan_h323.c:3306: error: `AST_CAUSE_BEARERCAPABILITY_NOTAVAIL' 
undeclared (first use in this function)
src/chan_h323.c:3309: error: `AST_CAUSE_CONGESTION' undeclared (first 
use in this function)
src/chan_h323.c:3311: error: `AST_CAUSE_NO_ANSWER' undeclared (first use 
in this function)
src/chan_h323.c:3315: error: `AST_CAUSE_FAILURE' undeclared (first use 
in this function)
src/chan_h323.c:3317: error: `AST_CAUSE_NORMAL' undeclared (first use in 
this function)
src/chan_h323.c: At top level:
src/chan_h323.c:3330: error: syntax error before string constant
src/chan_h323.c:3330: warning: data definition has no type or storage class
src/chan_h323.c:67: error: storage size of `ooh323_tech' isn't known
src/chan_h323.c:86: error: storage size of `ooh323_rtp' isn't known
src/chan_h323.c:206: error: storage size of `gCallerID' isn't known
src/chan_h323.c:209: error: storage size of `gPrefs' isn't known
src/chan_h323.c:222: error: storage size of `gContext' isn't known
src/chan_h323.c:2427: error: storage size of `cli_debug' isn't known
src/chan_h323.c:2434: error: storage size of `cli_no_debug' isn't known
src/chan_h323.c:2441: error: storage size of `cli_show_users' isn't known
src/chan_h323.c:2448: error: storage size of `cli_show_user' isn't known
src/chan_h323.c:2455: error: storage size of `cli_show_peers' isn't known
src/chan_h323.c:2462: error: storage size of `cli_show_peer' isn't known
src/chan_h323.c:2465: error: storage size of `cli_show_config' isn't known
gmake[3]: *** [chan_h323.lo] Ошибка 1
gmake[3]: Leaving directory 
`/usr/ports/net/asterisk-addons/work/asterisk-addons-1.4.2/asterisk-ooh323c'
gmake[2]: *** [all] Ошибка 2
gmake[2]: Leaving directory 
`/usr/ports/net/asterisk-addons/work/asterisk-addons-1.4.2/asterisk-ooh323c'
gmake[1]: *** [chan_ooh323.so] Ошибка 2
rm app_saycountpl.o
gmake[1]: Leaving directory 
`/usr/ports/net/asterisk-addons/work/asterisk-addons-1.4.2'
gmake: *** [all] Ошибка 2
*** Error code 2

Stop in /usr/ports/net/asterisk-addons.
*** Error code 1

Stop in /usr/ports/net/asterisk-addons.
** Command failed [exit code 1]: /usr/bin/script -qa 
/tmp/portupgrade.42772.0 env make
** Fix the problem and try again.
** Listing the failed packages (*:skipped / !:failed)
! net/asterisk-addons (missing header)
--- Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed
gw# uname -a
FreeBSD gw 6.2-RELEASE FreeBSD 6.2-RELEASE #0: Fri Jan 12 11:05:30 UTC 
2007 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/SMP i386

-- 
С уважением, Савчук Тарас
ООО Ðshy;лантек : Аутсорсинг ИТ, 
WEB-разработка
http://www.elantech.ru
+7 (495) 589 68 81
+7 (926) 779 07 05
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]



Coko Tracy MIRINDI MUSAZA

mobiles: 00242 576 14 00Congo
 00243 81 250 0472  RDC
www.airnetcg.net
   
-
 Stockage illimité de vos mails avec Yahoo! Mail. Changez aujourd'hui de mail !
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To