Re: New version of the fakeroot patch

2009-12-15 Thread Matthew Seaman

Julien Laffaye wrote:


It will also ensure the quality of the _packages_. For example, if the
port create an empty folder, it's common that the package forget to
create it.


Uh -- is it actually possible to create an empty directory when installing from
a pkg tarball?

I ran into this problem with the phpMyAdmin port, and the only good way I found
to solve it was to add a stub file into any empty directories.  You could use a 
post install script or an mtree file, but that seems like overkill for such a

trivial operation.

Cheers,

Matthew

--
Dr Matthew J Seaman MA, D.Phil.   7 Priory Courtyard
 Flat 3
PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate
 Kent, CT11 9PW



signature.asc
Description: OpenPGP digital signature


Re: port www/libxul broken on sparc64, but builds even on ia64

2009-12-15 Thread Anton Shterenlikht
On Mon, Dec 14, 2009 at 09:42:16PM +0100, Marius Strobl wrote:
 On Mon, Dec 14, 2009 at 05:04:06PM +, Anton Shterenlikht wrote:
  Port www/libxul is marked as broken on sparc64.
  HOwever, it builds even on ia64!
  Could anybody comment on why this port is broken for sparc64?
  
 
 See the follwing mail for a possible fix:
 http://lists.freebsd.org/pipermail/freebsd-sparc64/2009-November/006688.html

yes, this patch seems to work. I've built libxul-1.9.0.15 on 9.0

many thanks
anton

-- 
Anton Shterenlikht
Room 2.6, Queen's Building
Mech Eng Dept
Bristol University
University Walk, Bristol BS8 1TR, UK
Tel: +44 (0)117 331 5944
Fax: +44 (0)117 929 4423
___
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: configure failed on misc/mc

2009-12-15 Thread Dima Panov
On Tuesday 15 December 2009 19:04:30 Sergey V. Dyatko wrote:
 Hi,
 
 I have same error as http://forums.freebsd.org/showthread.php?p=55865 on
 my laptop, but on my desktop mc-4.7.0-pre4 build and works fine.
 
 desktop# make showconfig
 === The following configuration options are available for mc-4.7.0pre4:
  SLANG=on Build with SLang library
  ICONV=on Build with iconv recoding
  NLS=on Build with NLS support
  EDIT=on Build with internal editor
  X11=on Build with X11 library
  SUBSHELL=on Build with subshell support
  SAMBA=off Build with Samba support
 === Use 'make config' to modify these settings
 
 On laptop I have same config
 
 config.log:
 http://tiger.ipfw.ru/files/config.log
 

Index: Makefile 
 
=== 
 
RCS file: /home/ncvs/ports/misc/mc/Makefile,v   
 
retrieving revision 1.120   
 
diff -u -r1.120 Makefile
 
--- Makefile14 Dec 2009 18:54:05 -  1.120
+++ Makefile15 Dec 2009 09:26:38 -
@@ -76,6 +76,7 @@
 .if defined(WITH_UTF8)
 LIB_DEPENDS+=  slang.2:${PORTSDIR}/devel/libslang2
 CONFIGURE_ARGS+=--with-screen=slang
+CONFIGURE_ENV+=LDFLAGS=-L${LOCALBASE}/lib 
CFLAGS+=-I${LOCALBASE}/include
 .elif !defined(WITH_SLANG)  (defined(WITHOUT_SLANG) || defined(MINIMAL))
 CONFIGURE_ARGS+=--with-screen=ncurses
 .else

-- 
Dima Red Fox Panov @ Home | C73E 2B72 1FFD 61BD E206 1234 A626 76ED 93E3 B018
Khabarovsk, Russia  | 2D30 2CCB 9984 130C 6F87 BAFC FB8B A09D D539 8F29
k...@freebsd Team | FreeBSD committer since 10.08.2009 | FreeBSD since Sept 1995
Twitter.com:fluffy_khv | Skype:dima.panov | Jabber.org:fluffy.khv | ICQ:1745024
___
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 version of the fakeroot patch

2009-12-15 Thread Tijl Coosemans
On Tuesday 15 December 2009 09:10:47 Matthew Seaman wrote:
 Uh -- is it actually possible to create an empty directory when
 installing from a pkg tarball?
 
 I ran into this problem with the phpMyAdmin port, and the only good
 way I found to solve it was to add a stub file into any empty
 directories.  You could use a post install script or an mtree file,
 but that seems like overkill for such a trivial operation.

If you want to create ${PREFIX}/somedir you can add this line
to pkg-plist:

@exec mkdir -p %D/somedir
___
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 version of the fakeroot patch

2009-12-15 Thread Baptiste Daroussin

 Uh -- is it actually possible to create an empty directory when installing
 from
 a pkg tarball?

 I ran into this problem with the phpMyAdmin port, and the only good way I
 found
 to solve it was to add a stub file into any empty directories.  You could
 use a post install script or an mtree file, but that seems like overkill for
 such a
 trivial operation.

Normally for empty directories : you add to the plist:
@exec mkdir -p %D/path/to/empty
@dirrm path/to/empty

USE_FAKE can't solve this, but would prevent from forgetting to do
such things, you also won't have a method for the ports (in the
Makefile)
and a method for the package.

The installation being always done by installing the package, porters
should only take care of the way the package does it : install
scripts, user creation etc.

regards,
Bapt
___
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: configure failed on misc/mc

2009-12-15 Thread Sergey V. Dyatko
On Tue, 15 Dec 2009 19:27:51 +1000
Dima Panov flu...@fluffy.khv.ru wrote:

DP On Tuesday 15 December 2009 19:04:30 Sergey V. Dyatko wrote:
DP  Hi,
DP  
DP  I have same error as
DP  http://forums.freebsd.org/showthread.php?p=55865 on my laptop,
DP  but on my desktop mc-4.7.0-pre4 build and works fine.
DP  
DP  desktop# make showconfig
DP  === The following configuration options are available for
DP  mc-4.7.0pre4: SLANG=on Build with SLang library
DP   ICONV=on Build with iconv recoding
DP   NLS=on Build with NLS support
DP   EDIT=on Build with internal editor
DP   X11=on Build with X11 library
DP   SUBSHELL=on Build with subshell support
DP   SAMBA=off Build with Samba support
DP  === Use 'make config' to modify these settings
DP  
DP  On laptop I have same config
DP  
DP  config.log:
DP  http://tiger.ipfw.ru/files/config.log
DP  
DP 
DP Index:
DP Makefile
DP ===
DP RCS file: /home/ncvs/ports/misc/mc/Makefile,v retrieving revision
DP 1.120 diff -u -r1.120
DP Makefile --- Makefile14 Dec 2009 18:54:05 -  1.120
DP +++ Makefile15 Dec 2009 09:26:38 -
DP @@ -76,6 +76,7 @@
DP  .if defined(WITH_UTF8)
DP  LIB_DEPENDS+=  slang.2:${PORTSDIR}/devel/libslang2
DP  CONFIGURE_ARGS+=--with-screen=slang
DP +CONFIGURE_ENV+=LDFLAGS=-L${LOCALBASE}/lib
DP CFLAGS+=-I${LOCALBASE}/include .elif !defined(WITH_SLANG) 
DP (defined(WITHOUT_SLANG) || defined(MINIMAL))
DP CONFIGURE_ARGS+=--with-screen=ncurses .else
DP 

same error.

--
wbr, tiger
___
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: configure failed on misc/mc

2009-12-15 Thread Dima Panov
On Tuesday 15 December 2009 19:55:25 Sergey V. Dyatko wrote:
 On Tue, 15 Dec 2009 19:27:51 +1000
 Dima Panov flu...@fluffy.khv.ru wrote:
 
 DP On Tuesday 15 December 2009 19:04:30 Sergey V. Dyatko wrote:
 DP  Hi,
 DP 
 DP  I have same error as
 DP  http://forums.freebsd.org/showthread.php?p=55865 on my laptop,
 DP  but on my desktop mc-4.7.0-pre4 build and works fine.
 DP 
 DP  desktop# make showconfig
 DP  === The following configuration options are available for
 DP  mc-4.7.0pre4: SLANG=on Build with SLang library
 DP   ICONV=on Build with iconv recoding
 DP   NLS=on Build with NLS support
 DP   EDIT=on Build with internal editor
 DP   X11=on Build with X11 library
 DP   SUBSHELL=on Build with subshell support
 DP   SAMBA=off Build with Samba support
 DP  === Use 'make config' to modify these settings
 DP 
 DP  On laptop I have same config
 DP 
 DP  config.log:
 DP  http://tiger.ipfw.ru/files/config.log
 DP 
 DP
 DP Index:
 DP Makefile
 DP ===
 DP RCS file: /home/ncvs/ports/misc/mc/Makefile,v retrieving revision
 DP 1.120 diff -u -r1.120
 DP Makefile --- Makefile14 Dec 2009 18:54:05 -  1.120
 DP +++ Makefile15 Dec 2009 09:26:38 -
 DP @@ -76,6 +76,7 @@
 DP  .if defined(WITH_UTF8)
 DP  LIB_DEPENDS+=  slang.2:${PORTSDIR}/devel/libslang2
 DP  CONFIGURE_ARGS+=--with-screen=slang
 DP +CONFIGURE_ENV+=LDFLAGS=-L${LOCALBASE}/lib
 DP CFLAGS+=-I${LOCALBASE}/include .elif !defined(WITH_SLANG) 
 DP (defined(WITHOUT_SLANG) || defined(MINIMAL))
 DP CONFIGURE_ARGS+=--with-screen=ncurses .else
 DP
 
 same error.
 

Oops, was wrong patch. Now it should be fine

Index: Makefile 
 
=== 
 
RCS file: /home/ncvs/ports/misc/mc/Makefile,v   
 
retrieving revision 1.120   
 
diff -u -r1.120 Makefile
 
--- Makefile14 Dec 2009 18:54:05 -  1.120   
 
+++ Makefile15 Dec 2009 10:04:35 -  
 
@@ -73,13 +73,12 @@
 PLIST_SUB+=EDITOR=
 .endif

-.if defined(WITH_UTF8)
+.if defined(WITH_SLANG) !defined(MINIMAL)
 LIB_DEPENDS+=  slang.2:${PORTSDIR}/devel/libslang2
 CONFIGURE_ARGS+=--with-screen=slang
-.elif !defined(WITH_SLANG)  (defined(WITHOUT_SLANG) || defined(MINIMAL))
-CONFIGURE_ARGS+=--with-screen=ncurses
+CONFIGURE_ENV+=LDFLAGS=-L${LOCALBASE}/lib 
CFLAGS+=-I${LOCALBASE}/include
 .else
-CONFIGURE_ARGS+=--with-screen=mcslang
+CONFIGURE_ARGS+=--with-screen=ncurses
 .endif

 .if !defined(WITH_SUBSHELL)  (defined(WITHOUT_SUBSHELL) || defined(MINIMAL))

-- 
Dima Red Fox Panov @ Home | C73E 2B72 1FFD 61BD E206 1234 A626 76ED 93E3 B018
Khabarovsk, Russia  | 2D30 2CCB 9984 130C 6F87 BAFC FB8B A09D D539 8F29
k...@freebsd Team | FreeBSD committer since 10.08.2009 | FreeBSD since Sept 1995
Twitter.com:fluffy_khv | Skype:dima.panov | Jabber.org:fluffy.khv | ICQ:1745024
___
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: configure failed on misc/mc

2009-12-15 Thread Sergey V. Dyatko
В Tue, 15 Dec 2009 20:08:40 +1000
Dima Panov flu...@fluffy.khv.ru пишет:

DP On Tuesday 15 December 2009 19:55:25 Sergey V. Dyatko wrote:
DP  On Tue, 15 Dec 2009 19:27:51 +1000
DP  Dima Panov flu...@fluffy.khv.ru wrote:
DP  
DP  DP On Tuesday 15 December 2009 19:04:30 Sergey V. Dyatko wrote:
DP  DP  Hi,
DP  DP 
DP  DP  I have same error as
DP  DP  http://forums.freebsd.org/showthread.php?p=55865 on my
DP  DP  laptop, but on my desktop mc-4.7.0-pre4 build and works
DP  DP  fine.
DP  DP 
DP  DP  desktop# make showconfig
DP  DP  === The following configuration options are available for
DP  DP  mc-4.7.0pre4: SLANG=on Build with SLang library
DP  DP   ICONV=on Build with iconv recoding
DP  DP   NLS=on Build with NLS support
DP  DP   EDIT=on Build with internal editor
DP  DP   X11=on Build with X11 library
DP  DP   SUBSHELL=on Build with subshell support
DP  DP   SAMBA=off Build with Samba support
DP  DP  === Use 'make config' to modify these settings
DP  DP 
DP  DP  On laptop I have same config
DP  DP 
DP  DP  config.log:
DP  DP  http://tiger.ipfw.ru/files/config.log
DP  DP 
DP  DP
DP  DP Index:
DP  DP Makefile
DP  DP ===
DP  DP RCS file: /home/ncvs/ports/misc/mc/Makefile,v retrieving
DP  DP revision 1.120 diff -u -r1.120
DP  DP Makefile --- Makefile14 Dec 2009 18:54:05 -  1.120
DP  DP +++ Makefile15 Dec 2009 09:26:38 -
DP  DP @@ -76,6 +76,7 @@
DP  DP  .if defined(WITH_UTF8)
DP  DP  LIB_DEPENDS+=  slang.2:${PORTSDIR}/devel/libslang2
DP  DP  CONFIGURE_ARGS+=--with-screen=slang
DP  DP +CONFIGURE_ENV+=LDFLAGS=-L${LOCALBASE}/lib
DP  DP CFLAGS+=-I${LOCALBASE}/include .elif !defined(WITH_SLANG) 
DP  DP (defined(WITHOUT_SLANG) || defined(MINIMAL))
DP  DP CONFIGURE_ARGS+=--with-screen=ncurses .else
DP  DP
DP  
DP  same error.
DP  
DP 
DP Oops, was wrong patch. Now it should be fine
DP 
DP Index:
DP Makefile
DP ===
DP RCS file: /home/ncvs/ports/misc/mc/Makefile,v retrieving revision
DP 1.120 diff -u -r1.120
DP Makefile --- Makefile14 Dec 2009 18:54:05 -
DP 1.120 +++ Makefile15 Dec 2009 10:04:35
DP - @@ -73,13 +73,12 @@
DP  PLIST_SUB+=EDITOR=
DP  .endif
DP 
DP -.if defined(WITH_UTF8)
DP +.if defined(WITH_SLANG) !defined(MINIMAL)
DP  LIB_DEPENDS+=  slang.2:${PORTSDIR}/devel/libslang2
DP  CONFIGURE_ARGS+=--with-screen=slang
DP -.elif !defined(WITH_SLANG)  (defined(WITHOUT_SLANG) ||
DP defined(MINIMAL)) -CONFIGURE_ARGS+=--with-screen=ncurses
DP +CONFIGURE_ENV+=LDFLAGS=-L${LOCALBASE}/lib
DP CFLAGS+=-I${LOCALBASE}/include .else
DP -CONFIGURE_ARGS+=--with-screen=mcslang
DP +CONFIGURE_ARGS+=--with-screen=ncurses
DP  .endif
DP 
DP  .if !defined(WITH_SUBSHELL)  (defined(WITHOUT_SUBSHELL) ||
DP defined(MINIMAL))
DP 

now it build and works fine on laptop too, but strange that on the
desktop `make configure` works w/o errors:-/


--
wbr, tiger
___
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 version of the fakeroot patch

2009-12-15 Thread Matthew Seaman

Tijl Coosemans wrote:

On Tuesday 15 December 2009 09:10:47 Matthew Seaman wrote:

Uh -- is it actually possible to create an empty directory when
installing from a pkg tarball?

I ran into this problem with the phpMyAdmin port, and the only good
way I found to solve it was to add a stub file into any empty
directories.  You could use a post install script or an mtree file,
but that seems like overkill for such a trivial operation.


If you want to create ${PREFIX}/somedir you can add this line
to pkg-plist:

@exec mkdir -p %D/somedir


Or I could do that, yes.  Hmmm... must try that actually, along with a
few other mods I have lined up.

Cheers,

Matthew

--
Dr Matthew J Seaman MA, D.Phil.   7 Priory Courtyard
 Flat 3
PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate
 Kent, CT11 9PW



signature.asc
Description: OpenPGP digital signature


Re: [Announce] Maintained TeXLive (2009 and devel) binaries for FreeBSD-6,7,8 available

2009-12-15 Thread Jamie Griffin
On Mon, Dec 14, 2009 at 04:57:49PM +, Nikola Lečić wrote:
 Dear all,
 
 The TeXLive binaries for FreeBSD 6, 7 and 8, for i386 and amd64 each,
 are available for download. I will maintain binary sets for TeXLive
 2009; I will also regularly release binaries built from the current SVN
 TeXLive sources:
 
   TeXLive-2009 binaries:
 
 http://anthesphoria.net/FreeBSD/TeXLive-2009/bin
 ftp://tug.org/historic/systems/texlive/2009
 
   Binaries from the current sources:
 
 http://anthesphoria.net/FreeBSD/TeXLive-Devel/
 
 (bin-r${SVNVER} directories).
 
 Please refer to the respective README.txt files for more details.
 
Hi there, i'm still using teTeX port and i'm desperate to upgrade to
something more up-to-date and so made a first attempt yesterday to install
your binaries but somehow got it wrong, or at least it didn't appear to
work for me. 

I extracted them into /usr/local/texlive/2009/bin/i386-freebsd7/ and
updated my path, which is how I understood it needed to be done from
reading the README.txt; however, this did not work for me. 

I wonder, would you be able to help by explaining the steps needed to
install them properly? up-to-now i've only ever used ports to install
software and i'm not familiar with installing binaries on FreeBSD
 
Jamie


pgpmp3XI4GDI3.pgp
Description: PGP signature


postgresql 8.4.2

2009-12-15 Thread Alexander Pyhalov

Hello.
I'd like to share my patch for postgresql port to update it for 8.4.2 
version.


--
Best regards,
Alexander Pyhalov,
system administrator of Computer Center of South Federal University
diff -ru postgresql84-server.orig/Makefile postgresql84-server/Makefile
--- postgresql84-server.orig/Makefile   2009-12-02 22:21:27.0 +
+++ postgresql84-server/Makefile2009-12-15 12:15:05.742312495 +
@@ -6,7 +6,7 @@
 #
 
 PORTNAME?= postgresql
-DISTVERSION?=  8.4.1
+DISTVERSION?=  8.4.2
 CATEGORIES?=   databases
 MASTER_SITES=  ${MASTER_SITE_PGSQL}
 MASTER_SITE_SUBDIR=source/v${DISTVERSION}
diff -ru postgresql84-server.orig/distinfo postgresql84-server/distinfo
--- postgresql84-server.orig/distinfo   2009-12-02 22:21:27.0 +
+++ postgresql84-server/distinfo2009-12-15 09:21:17.685474773 +
@@ -1,3 +1,3 @@
-MD5 (postgresql/postgresql-8.4.1.tar.bz2) = f2015af17bacbbfe140daf0d1067f9c9
-SHA256 (postgresql/postgresql-8.4.1.tar.bz2) = 
85f5a5053aea196a2c997785cb5f61368aa46407527de820006d04b594fd9d7c
-SIZE (postgresql/postgresql-8.4.1.tar.bz2) = 13579302
+MD5 (postgresql/postgresql-8.4.2.tar.bz2) = d738227e2f1f742d2f2d4ab56496c5c6
+SHA256 (postgresql/postgresql-8.4.2.tar.bz2) = 
adb3c5c90396195d76e986f835c2bd0e0dad438f91f4dc2b62048caf6d9869f2
+SIZE (postgresql/postgresql-8.4.2.tar.bz2) = 13600699
diff -ru postgresql84-server.orig/pkg-plist-server 
postgresql84-server/pkg-plist-server
--- postgresql84-server.orig/pkg-plist-server   2009-12-02 22:21:27.0 
+
+++ postgresql84-server/pkg-plist-server2009-12-15 12:21:30.811168790 
+
@@ -376,6 +376,7 @@
 %%TZDATA%%share/postgresql/timezone/Asia/Manila
 %%TZDATA%%share/postgresql/timezone/Asia/Muscat
 %%TZDATA%%share/postgresql/timezone/Asia/Nicosia
+%%TZDATA%%share/postgresql/timezone/Asia/Novokuznetsk
 %%TZDATA%%share/postgresql/timezone/Asia/Novosibirsk
 %%TZDATA%%share/postgresql/timezone/Asia/Omsk
 %%TZDATA%%share/postgresql/timezone/Asia/Oral
___
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: openoffice.org-3.1.1

2009-12-15 Thread Dominic Fandrey
Jerry wrote:
 On Sun, 13 Dec 2009 10:12:38 +0100
 Baal Sebul belzeb...@seznam.cz replied:
 
 Is this some sort of joke? Two posts sans data approximately ten
 minutes apart.
 

I bet he tried to send HTML mail or a similar folly.

-- 
A: Because it fouls the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail? 
___
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 version of the fakeroot patch

2009-12-15 Thread Warren Block
A suggestion: USE_FAKE is not descriptive.  It doesn't tell what is fake 
or what happens.  I'm not sure fake is the even the right word.


USE_FAKEROOT is better, but still ambiguous: it's not really fake, and 
root can mean too many things.


I guess what I'm trying to say is consider a name that describes what is 
accomplished, not how it works.


-Warren Block * Rapid City, South Dakota USA
___
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


port devel/gobject-introspection fails to build on sparc

2009-12-15 Thread Anton Shterenlikht
on FreeBSD 9.0-CURRENT sparc64
port devel/gobject-introspection fails to build:


Making all in gir
gmake[2]: Entering directory 
`/usr/ports/devel/gobject-introspection/work/gobject-introspection-0.6.6/gir'
../tools/g-ir-compiler --includedir=.  GLib-2.0.gir -o GLib-2.0.typelib
gmake[2]: *** [GLib-2.0.typelib] Illegal instruction: 4 (core dumped)
gmake[2]: Leaving directory 
`/usr/ports/devel/gobject-introspection/work/gobject-introspection-0.6.6/gir'
gmake[1]: *** [all-recursive] Error 1

Any advice?

many thanks
anton

-- 
Anton Shterenlikht
Room 2.6, Queen's Building
Mech Eng Dept
Bristol University
University Walk, Bristol BS8 1TR, UK
Tel: +44 (0)117 331 5944
Fax: +44 (0)117 929 4423
___
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 version of the fakeroot patch

2009-12-15 Thread Baptiste Daroussin
2009/12/15 Warren Block wbl...@wonkity.com:
 A suggestion: USE_FAKE is not descriptive.  It doesn't tell what is fake or
 what happens.  I'm not sure fake is the even the right word.

 USE_FAKEROOT is better, but still ambiguous: it's not really fake, and
 root can mean too many things.

 I guess what I'm trying to say is consider a name that describes what is
 accomplished, not how it works.

 -Warren Block * Rapid City, South Dakota USA


I note that, if someone has a better idea for the name.

Don't forget the goal of the mail is also to get the people opinion of
the usefullness or not of the kind of patch, and you would expect from
it, particulary portmgr@ :)

regards
Bapt
___
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: amsn-0.97.2_3

2009-12-15 Thread Sylvio Cesar
Hi Marco,

Still to test.

The tarball style ports can be downloaded at:
http://people.freebsd.org/~sylvio/amsn-0.98.1.tar.gz

Some screens:

http://people.freebsd.org/~sylvio/amsn-0.98.1.png
http://people.freebsd.org/~sylvio/amsn_with_voice.png

Thank you all.

Regards,

Sylvio Cesar.

2009/12/10 Marco Alberoni m.alber...@cineca.it:
 Hello, are there any news about the Amsn 0.98.1 port?


 Yours sincerely

 --
                Marco Alberoni

 ___
 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-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 version of the fakeroot patch

2009-12-15 Thread Lars Engels
On Tue, Dec 15, 2009 at 09:09:22AM -0700, Warren Block wrote:
 A suggestion: USE_FAKE is not descriptive.  It doesn't tell what is fake 
 or what happens.  I'm not sure fake is the even the right word.
 
 USE_FAKEROOT is better, but still ambiguous: it's not really fake, and 
 root can mean too many things.

Isn't this function also called fakeroot on OpenBSD?


pgpbvrbhlfgix.pgp
Description: PGP signature


net-im/ejabberd 2.0.5 to 2.1.0

2009-12-15 Thread Kamigishi Rei

Hello,

I have a question about ejabberd port; the question is related to the 
patch that comes with revision 2.0.5_1, patch-919-fileioserver. I'd like 
to know if the crash mentioned in the commit message is repeatable, and 
what should I do to reproduce it.
I have updated the port's Makefile, plist and other patches (not 
including the aforementioned one) to use 2.1.0, and it 
builds/installs/deinstalls/runs without problems on my system 
(8.0-STABLE, amd64, Erlang R13B03).
The question is, whether the patch is still required for 2.1.0, and if 
so, I'll try to adapt it (as it does not apply cleanly now).


--
Kamigishi Rei
KREI-RIPE
http://fujibayashi.jp

___
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: net-im/ejabberd 2.0.5 to 2.1.0

2009-12-15 Thread Guy Brand
On Dec 15, Kamigishi Rei wrote:

Hi

 
 I have a question about ejabberd port; the question is related to the 
 patch that comes with revision 2.0.5_1, patch-919-fileioserver. I'd like 
 to know if the crash mentioned in the commit message is repeatable, and 
 what should I do to reproduce it.
 I have updated the port's Makefile, plist and other patches (not 
 including the aforementioned one) to use 2.1.0, and it 

I'd gladly test this 2.1.0 port and report back to you (I'm using
9-CURRENT and 7.1-RELEASE on amd64). Is your testing port available
somewhere?

gb

___
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: deskutils/calibre build error

2009-12-15 Thread Greg Rivers

On Mon, 14 Dec 2009, Stanislav Sedov wrote:


On Fri, 11 Dec 2009 16:29:02 -0600 (CST)
Greg Rivers gcr+freebsd-po...@tharned.org mentioned:


The deskutils/calibre port fails to build on both 7.2-STABLE and
8.0-STABLE i386:



This was caused by recent gnome update.
Try the latest version of the port (I just fixed and updated it).



Thank you very much!  The port now builds and runs great.

You may want to check the distfile; I had to locate and fetch it 
(calibre-0.6.27.tar.gz) manually, as it is not on the FreeBSD FTP site, 
and the preferred googlecode.com site seems to have already moved onto 
version 28.


--
Greg Rivers
___
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: net-im/ejabberd 2.0.5 to 2.1.0

2009-12-15 Thread Kamigishi Rei

On 15.12.2009 22:14, Guy Brand wrote:
   

I have a question about ejabberd port; the question is related to the
patch that comes with revision 2.0.5_1, patch-919-fileioserver. I'd like
to know if the crash mentioned in the commit message is repeatable, and
what should I do to reproduce it.
I have updated the port's Makefile, plist and other patches (not
including the aforementioned one) to use 2.1.0, and it
 

I'd gladly test this 2.1.0 port and report back to you (I'm using
9-CURRENT and 7.1-RELEASE on amd64). Is your testing port available
somewhere?
   


See 
http://fujibayashi.jp/2009/12/13/amusingly-enough-freebsd-and-ejabberd/ 
for a short description and 
http://media.fujibayashi.jp/software/ejabberd2-port.tar.gz (available as 
a hyperlink in that post, too) for the port directory.
Please also check if you get any warning from pkg_info after the 
installation, too - I'm afraid there might be something about the 
dependencies line.


--
Kamigishi Rei
KREI-RIPE
http://fujibayashi.jp

___
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: security/gsasl is broken

2009-12-15 Thread Kirill Ponomarew
Thanks for information. I've updated the port to 1.4.0 version.

On Dec 15, 2009, at 10:18 PM, pluknet wrote:

 Hi.
 
 security/gsasl is broken due to upstream update (and removed old
 tar.gz version).
 If noone is working on updating the port currently, I'll prepare a
 diff tomorrow (I left my wip on my work).
 There is some changes in pkg-plist also and chase libs need due to
 libgsasl version bump to 14.
 
 -- 
 wbr,
 pluknet

-Kirill



___
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


editors/jed 0.99.19 freezing

2009-12-15 Thread andrew clarke
Hi,

After upgrading to the latest version of Jed from ports, Jed is now
freezing when run from sh with the -c option:

$ sh -c jed

loading /usr/local/lib/jed/lib/emacs.sl

I had to open another terminal and kill -9 the process.

$ jed --version
jed version: 0.99.19/Unix
 Compiled with GNU C 4.2
S-Lang version: 2.2.2

jed compile-time options:
 +LINE_ATTRIBUTES +BUFFER_LOCAL_VARS +SAVE_NARROW +TTY_MENUS
 +EMACS_LOCKING +MULTICLICK +SUBPROCESSES +DFA_SYNTAX +ABBREVS
 +COLOR_COLUMNS +LINE_MARKS -GPM_MOUSE +IMPORT

Using JED_ROOT=/usr/local/lib/jed

$ uname -a
FreeBSD blizzard.phoenix 7.2-RELEASE-p4 FreeBSD 7.2-RELEASE-p4 #0: Fri Oct  2 
12:21:39 UTC 2009
 r...@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC  i386

Downgrading to jed-0.99.18_3 (but with libslang2-2.2.2 still
installed) and the fault goes away.

Thanks,

Regards
Andrew
___
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: verlihub-0.9.8.e.r1,1

2009-12-15 Thread Daniel Dvořák
Hi all,
 
after upgrading my verlihub to the latest version, the hub does not work 
anymore. Segmentation Fault. What´s happen to it ? And how may I help to solve 
the problem ?
 
At the begging I snip gdb output, if it helps.
 
# gdb /usr/local/bin/verlihub /usr/home/verlihub/verlihub.core
GNU gdb 6.1.1 [FreeBSD]
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type show copying to see the conditions.
There is absolutely no warranty for GDB.  Type show warranty for details.
This GDB was configured as i386-marcel-freebsd...(no debugging symbols 
found)...
Core was generated by `verlihub'.
Program terminated with signal 11, Segmentation fault.
Reading symbols from /usr/local/lib/libverlihub.so.0...(no debugging symbols 
found)...done.
Loaded symbols for /usr/local/lib/libverlihub.so.0
Reading symbols from /usr/local/lib/libpcre.so.0...(no debugging symbols 
found)...done.
Loaded symbols for /usr/local/lib/libpcre.so.0
Reading symbols from /usr/local/lib/mysql/libmysqlclient.so.15...(no debugging 
symbols found)...done.
Loaded symbols for /usr/local/lib/mysql/libmysqlclient.so.15
Reading symbols from /lib/libz.so.4...(no debugging symbols found)...done.
Loaded symbols for /lib/libz.so.4
Reading symbols from /usr/local/lib/libGeoIP.so.5...(no debugging symbols 
found)...done.
Loaded symbols for /usr/local/lib/libGeoIP.so.5
Reading symbols from /usr/lib/libssl.so.5...(no debugging symbols found)...done.
Loaded symbols for /usr/lib/libssl.so.5
Reading symbols from /lib/libcrypt.so.4...(no debugging symbols found)...done.
Loaded symbols for /lib/libcrypt.so.4
Reading symbols from /usr/lib/libstdc++.so.6...(no debugging symbols 
found)...done.
Loaded symbols for /usr/lib/libstdc++.so.6
Reading symbols from /lib/libm.so.5...(no debugging symbols found)...done.
Loaded symbols for /lib/libm.so.5
Reading symbols from /lib/libgcc_s.so.1...(no debugging symbols found)...done.
Loaded symbols for /lib/libgcc_s.so.1
Reading symbols from /lib/libc.so.7...(no debugging symbols found)...done.
Loaded symbols for /lib/libc.so.7
Reading symbols from /lib/libcrypto.so.5...(no debugging symbols found)...done.
Loaded symbols for /lib/libcrypto.so.5
Reading symbols from /usr/local/etc/verlihub/plugins/libplug_pi.so...(no 
debugging symbols found)...done.
Loaded symbols for /usr/local/etc/verlihub/plugins/libplug_pi.so
Reading symbols from /usr/local/etc/verlihub/plugins/libiplog_pi.so...(no 
debugging symbols found)...done.
Loaded symbols for /usr/local/etc/verlihub/plugins/libiplog_pi.so
Reading symbols from /libexec/ld-elf.so.1...(no debugging symbols found)...done.
Loaded symbols for /libexec/ld-elf.so.1
#0  0x458b08ec in ?? ()
[New Thread 0x28701040 (LWP 100126)]
(gdb)

Thank you for your help.
 
Bye
 
Stay d
___
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: verlihub-0.9.8.e.r1,1

2009-12-15 Thread wen heping
Maybe you can try this update:
http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/140704

wen

2009/12/16 Daniel Dvořák dan...@hellteam.net

 Hi all,

 after upgrading my verlihub to the latest version, the hub does not work
 anymore. Segmentation Fault. What´s happen to it ? And how may I help to
 solve the problem ?

 At the begging I snip gdb output, if it helps.

 # gdb /usr/local/bin/verlihub /usr/home/verlihub/verlihub.core
 GNU gdb 6.1.1 [FreeBSD]
 Copyright 2004 Free Software Foundation, Inc.
 GDB is free software, covered by the GNU General Public License, and you
 are
 welcome to change it and/or distribute copies of it under certain
 conditions.
 Type show copying to see the conditions.
 There is absolutely no warranty for GDB.  Type show warranty for details.
 This GDB was configured as i386-marcel-freebsd...(no debugging symbols
 found)...
 Core was generated by `verlihub'.
 Program terminated with signal 11, Segmentation fault.
 Reading symbols from /usr/local/lib/libverlihub.so.0...(no debugging
 symbols found)...done.
 Loaded symbols for /usr/local/lib/libverlihub.so.0
 Reading symbols from /usr/local/lib/libpcre.so.0...(no debugging symbols
 found)...done.
 Loaded symbols for /usr/local/lib/libpcre.so.0
 Reading symbols from /usr/local/lib/mysql/libmysqlclient.so.15...(no
 debugging symbols found)...done.
 Loaded symbols for /usr/local/lib/mysql/libmysqlclient.so.15
 Reading symbols from /lib/libz.so.4...(no debugging symbols found)...done.
 Loaded symbols for /lib/libz.so.4
 Reading symbols from /usr/local/lib/libGeoIP.so.5...(no debugging symbols
 found)...done.
 Loaded symbols for /usr/local/lib/libGeoIP.so.5
 Reading symbols from /usr/lib/libssl.so.5...(no debugging symbols
 found)...done.
 Loaded symbols for /usr/lib/libssl.so.5
 Reading symbols from /lib/libcrypt.so.4...(no debugging symbols
 found)...done.
 Loaded symbols for /lib/libcrypt.so.4
 Reading symbols from /usr/lib/libstdc++.so.6...(no debugging symbols
 found)...done.
 Loaded symbols for /usr/lib/libstdc++.so.6
 Reading symbols from /lib/libm.so.5...(no debugging symbols found)...done.
 Loaded symbols for /lib/libm.so.5
 Reading symbols from /lib/libgcc_s.so.1...(no debugging symbols
 found)...done.
 Loaded symbols for /lib/libgcc_s.so.1
 Reading symbols from /lib/libc.so.7...(no debugging symbols found)...done.
 Loaded symbols for /lib/libc.so.7
 Reading symbols from /lib/libcrypto.so.5...(no debugging symbols
 found)...done.
 Loaded symbols for /lib/libcrypto.so.5
 Reading symbols from /usr/local/etc/verlihub/plugins/libplug_pi.so...(no
 debugging symbols found)...done.
 Loaded symbols for /usr/local/etc/verlihub/plugins/libplug_pi.so
 Reading symbols from /usr/local/etc/verlihub/plugins/libiplog_pi.so...(no
 debugging symbols found)...done.
 Loaded symbols for /usr/local/etc/verlihub/plugins/libiplog_pi.so
 Reading symbols from /libexec/ld-elf.so.1...(no debugging symbols
 found)...done.
 Loaded symbols for /libexec/ld-elf.so.1
 #0  0x458b08ec in ?? ()
 [New Thread 0x28701040 (LWP 100126)]
 (gdb)

 Thank you for your help.

 Bye

 Stay d
 ___
 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-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org