Re: Staging issue with staging of net-im/libpurple (libtool?)

2014-05-21 Thread Dominic Fandrey
On 20/05/2014 22:13, Tijl Coosemans wrote:
 On Tue, 20 May 2014 08:52:46 -0700 Kevin Oberman wrote:
 Removed the FIND and re-built. After the build I looked in
 stage/usr/local/lib and the .so.0 files are still present! I then installed
 with no errors. I'll admit that I don't understand what is happening or why
 the touch of the files would break things, but it seems to be fixed, now.
 
 The touch didn't always give all files the same timestamp so sometimes
 make thought the configure script was out of date and regenerated it
 erasing any patches that had been applied to it.

I figure something like:
find FOO -exec touch {} +

would do the trick.

-- 
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: Staging issue with staging of net-im/libpurple (libtool?)

2014-05-21 Thread Tijl Coosemans
On Wed, 21 May 2014 11:26:57 +0200 Dominic Fandrey wrote:
 On 20/05/2014 22:13, Tijl Coosemans wrote:
 On Tue, 20 May 2014 08:52:46 -0700 Kevin Oberman wrote:
 Removed the FIND and re-built. After the build I looked in
 stage/usr/local/lib and the .so.0 files are still present! I then installed
 with no errors. I'll admit that I don't understand what is happening or why
 the touch of the files would break things, but it seems to be fixed, now.
 
 The touch didn't always give all files the same timestamp so sometimes
 make thought the configure script was out of date and regenerated it
 erasing any patches that had been applied to it.
 
 I figure something like:
 find FOO -exec touch {} +
 
 would do the trick.

No, that would run a separate touch for every file.  The touch command
just needs an explicit time (with -r or -t flag).
___
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: Staging issue with staging of net-im/libpurple (libtool?)

2014-05-20 Thread Albert Shih
 Le 18/05/2014 à 21:11:16-0700, Kevin Oberman a écrit
 I have a problem installing net-im/libpurple. I get the following error:
 ===   Registering installation for libpurple-2.10.9_2
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libjabber.so.0):
 No such file or directory
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/liboscar.so.0):
 No such file or directory
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libymsg.so.0):
 No such file or directory
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple-client.so.0):
 No such file or directory
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple.so.0):
 No such file or directory
 *** Error code 74
 
 Stop.
 
 Wherethis gets really weird is that on another system it installed
 correctly. I wanted to look at the stage directory content, so deinstalled
 and reinstalled. Now it won't install there, either. Same error. Why did it
 only install once?

Exact same problem for me. I got two PC, one laptop, another desktop, both
with FreeBSD 10-stable, both using portupgrade. 

On one everything work (the desktop), on the laptop I have exact same
message. 

Regards.

-- 
Albert SHIH
DIO bâtiment 15
Observatoire de Paris
5 Place Jules Janssen
92195 Meudon Cedex
France
Téléphone : +33 1 45 07 76 26/+33 6 86 69 95 71
xmpp: j...@obspm.fr
Heure local/Local time:
mar 20 mai 2014 10:54:30 CEST
___
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: Staging issue with staging of net-im/libpurple (libtool?)

2014-05-20 Thread Tijl Coosemans
On Tue, 20 May 2014 10:55:44 +0200 Albert Shih wrote:
  Le 18/05/2014 à 21:11:16-0700, Kevin Oberman a écrit
 I have a problem installing net-im/libpurple. I get the following error:
 ===   Registering installation for libpurple-2.10.9_2
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libjabber.so.0):
 No such file or directory
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/liboscar.so.0):
 No such file or directory
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libymsg.so.0):
 No such file or directory
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple-client.so.0):
 No such file or directory
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple.so.0):
 No such file or directory
 *** Error code 74
 
 Stop.
 
 Wherethis gets really weird is that on another system it installed
 correctly. I wanted to look at the stage directory content, so deinstalled
 and reinstalled. Now it won't install there, either. Same error. Why did it
 only install once?
 
 Exact same problem for me. I got two PC, one laptop, another desktop, both
 with FreeBSD 10-stable, both using portupgrade. 
 
 On one everything work (the desktop), on the laptop I have exact same
 message. 

The last command in the port Makefile is this:
@${FIND} ${WRKSRC} -type f | ${XARGS} ${TOUCH}

Try removing that line.
___
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: Staging issue with staging of net-im/libpurple (libtool?)

2014-05-20 Thread Albert Shih
 Le 20/05/2014 à 14:09:45+0200, Tijl Coosemans a écrit
 On Tue, 20 May 2014 10:55:44 +0200 Albert Shih wrote:
   Le 18/05/2014 à 21:11:16-0700, Kevin Oberman a écrit
  I have a problem installing net-im/libpurple. I get the following error:
  ===   Registering installation for libpurple-2.10.9_2
  pkg-static:
  lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libjabber.so.0):
  No such file or directory
  pkg-static:
  lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/liboscar.so.0):
  No such file or directory
  pkg-static:
  lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libymsg.so.0):
  No such file or directory
  pkg-static:
  lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple-client.so.0):
  No such file or directory
  pkg-static:
  lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple.so.0):
  No such file or directory
  *** Error code 74
  
  Stop.
  
  Wherethis gets really weird is that on another system it installed
  correctly. I wanted to look at the stage directory content, so deinstalled
  and reinstalled. Now it won't install there, either. Same error. Why did it
  only install once?
  
  Exact same problem for me. I got two PC, one laptop, another desktop, both
  with FreeBSD 10-stable, both using portupgrade. 
  
  On one everything work (the desktop), on the laptop I have exact same
  message. 
 
 The last command in the port Makefile is this:
 @${FIND} ${WRKSRC} -type f | ${XARGS} ${TOUCH}
 
 Try removing that line.

Change  nothing. 

Still get the same error

  ===  Checking if net-im/libpurple already installed
  ===   Registering installation for libpurple-2.10.9_2
  pkg-static: 
lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libjabber.so.0):
 No such file or directory
  pkg-static: 
lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/liboscar.so.0):
 No such file or directory
  pkg-static: 
lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libymsg.so.0):
 No such file or directory
  pkg-static: 
lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple-client.so.0):
 No such file or directory
  pkg-static: 
lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple.so.0): No 
such file or directory
  *** Error code 74

with

  [root@io libpurple]# tail Makefile 
  ${WRKSRC}/libpurple/purple-send-async
  @${REINPLACE_CMD} -e 's|/python|/env python|' \
  ${WRKSRC}/libpurple/purple-remote \
  ${WRKSRC}/libpurple/purple-url-handler
  .if defined(PIDGIN_SLAVE)
  @${FIND} ${BUILD_WRKSRC} -name Makefile.in | ${XARGS} 
${REINPLACE_CMD} -e \
  's|$$(top_builddir)/libpurple/libpurple.la|-lpurple|'
  .endif
  
  .include bsd.port.post.mk
  [root@io libpurple]# 

Regards.

JAS
-- 
Albert SHIH
DIO bâtiment 15
Observatoire de Paris
5 Place Jules Janssen
92195 Meudon Cedex
France
Téléphone : +33 1 45 07 76 26/+33 6 86 69 95 71
xmpp: j...@obspm.fr
Heure local/Local time:
mar 20 mai 2014 14:13:12 CEST
___
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: Staging issue with staging of net-im/libpurple (libtool?)

2014-05-20 Thread Tijl Coosemans
On Tue, 20 May 2014 14:14:49 +0200 Albert Shih wrote:
  Le 20/05/2014 à 14:09:45+0200, Tijl Coosemans a écrit
  On Tue, 20 May 2014 10:55:44 +0200 Albert Shih wrote:
Le 18/05/2014 à 21:11:16-0700, Kevin Oberman a écrit
   I have a problem installing net-im/libpurple. I get the following error:
   ===   Registering installation for libpurple-2.10.9_2
   pkg-static:
   lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libjabber.so.0):
   No such file or directory
   pkg-static:
   lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/liboscar.so.0):
   No such file or directory
   pkg-static:
   lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libymsg.so.0):
   No such file or directory
   pkg-static:
   lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple-client.so.0):
   No such file or directory
   pkg-static:
   lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple.so.0):
   No such file or directory
   *** Error code 74
   
   Stop.
   
   Wherethis gets really weird is that on another system it installed
   correctly. I wanted to look at the stage directory content, so 
   deinstalled
   and reinstalled. Now it won't install there, either. Same error. Why did 
   it
   only install once?
   
   Exact same problem for me. I got two PC, one laptop, another desktop, both
   with FreeBSD 10-stable, both using portupgrade. 
   
   On one everything work (the desktop), on the laptop I have exact same
   message. 
  
  The last command in the port Makefile is this:
  @${FIND} ${WRKSRC} -type f | ${XARGS} ${TOUCH}
  
  Try removing that line.
 
 Change  nothing. 
 
 Still get the same error
 
   ===  Checking if net-im/libpurple already installed
   ===   Registering installation for libpurple-2.10.9_2
   pkg-static: 
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libjabber.so.0):
  No such file or directory
   pkg-static: 
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/liboscar.so.0):
  No such file or directory
   pkg-static: 
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libymsg.so.0):
  No such file or directory
   pkg-static: 
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple-client.so.0):
  No such file or directory
   pkg-static: 
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple.so.0): 
 No such file or directory
   *** Error code 74
 
 with
 
   [root@io libpurple]# tail Makefile 
   ${WRKSRC}/libpurple/purple-send-async
   @${REINPLACE_CMD} -e 's|/python|/env python|' \
   ${WRKSRC}/libpurple/purple-remote \
   ${WRKSRC}/libpurple/purple-url-handler
   .if defined(PIDGIN_SLAVE)
   @${FIND} ${BUILD_WRKSRC} -name Makefile.in | ${XARGS} 
 ${REINPLACE_CMD} -e \
   's|$$(top_builddir)/libpurple/libpurple.la|-lpurple|'
   .endif
   
   .include bsd.port.post.mk
   [root@io libpurple]# 

Silly question perhaps, but did you run make clean before rebuilding?
___
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: Staging issue with staging of net-im/libpurple (libtool?)

2014-05-20 Thread Dominic Fandrey
On 20/05/2014 14:55, Tijl Coosemans wrote:
 On Tue, 20 May 2014 14:14:49 +0200 Albert Shih wrote:
  Le 20/05/2014 à 14:09:45+0200, Tijl Coosemans a écrit
 On Tue, 20 May 2014 10:55:44 +0200 Albert Shih wrote:
  Le 18/05/2014 à 21:11:16-0700, Kevin Oberman a écrit
 I have a problem installing net-im/libpurple. I get the following error:
 ===   Registering installation for libpurple-2.10.9_2
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libjabber.so.0):
 No such file or directory
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/liboscar.so.0):
 No such file or directory
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libymsg.so.0):
 No such file or directory
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple-client.so.0):
 No such file or directory
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple.so.0):
 No such file or directory
 *** Error code 74

 Stop.

 Wherethis gets really weird is that on another system it installed
 correctly. I wanted to look at the stage directory content, so deinstalled
 and reinstalled. Now it won't install there, either. Same error. Why did 
 it
 only install once?

 Exact same problem for me. I got two PC, one laptop, another desktop, both
 with FreeBSD 10-stable, both using portupgrade. 

 On one everything work (the desktop), on the laptop I have exact same
 message. 

 The last command in the port Makefile is this:
 @${FIND} ${WRKSRC} -type f | ${XARGS} ${TOUCH}

 Try removing that line.

 Change  nothing. 

 Still get the same error

   ===  Checking if net-im/libpurple already installed
   ===   Registering installation for libpurple-2.10.9_2
   pkg-static: 
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libjabber.so.0):
  No such file or directory
   pkg-static: 
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/liboscar.so.0):
  No such file or directory
   pkg-static: 
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libymsg.so.0):
  No such file or directory
   pkg-static: 
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple-client.so.0):
  No such file or directory
   pkg-static: 
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple.so.0): 
 No such file or directory
   *** Error code 74

 with

   [root@io libpurple]# tail Makefile 
   ${WRKSRC}/libpurple/purple-send-async
   @${REINPLACE_CMD} -e 's|/python|/env python|' \
   ${WRKSRC}/libpurple/purple-remote \
   ${WRKSRC}/libpurple/purple-url-handler
   .if defined(PIDGIN_SLAVE)
   @${FIND} ${BUILD_WRKSRC} -name Makefile.in | ${XARGS} 
 ${REINPLACE_CMD} -e \
   's|$$(top_builddir)/libpurple/libpurple.la|-lpurple|'
   .endif
   
   .include bsd.port.post.mk
   [root@io libpurple]# 
 
 Silly question perhaps, but did you run make clean before rebuilding?

I turned MYSPACE support of and reproduced the problem. Then I tried
with MYSPACE and it works. Afterwards I tried again without MYSPACE
and it still works.

Then I turned MYSPACE back on and got the error again.

Looks like a timing issue to me. I'd say turn MAKE_JOBS off.

-- 
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: Staging issue with staging of net-im/libpurple (libtool?)

2014-05-20 Thread Tijl Coosemans
On Tue, 20 May 2014 15:06:43 +0200 Dominic Fandrey wrote:
 On 20/05/2014 14:55, Tijl Coosemans wrote:
  On Tue, 20 May 2014 14:14:49 +0200 Albert Shih wrote:
   Le 20/05/2014 à 14:09:45+0200, Tijl Coosemans a écrit
  On Tue, 20 May 2014 10:55:44 +0200 Albert Shih wrote:
   Le 18/05/2014 à 21:11:16-0700, Kevin Oberman a écrit
  I have a problem installing net-im/libpurple. I get the following error:
  ===   Registering installation for libpurple-2.10.9_2
  pkg-static:
  lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libjabber.so.0):
  No such file or directory
  pkg-static:
  lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/liboscar.so.0):
  No such file or directory
  pkg-static:
  lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libymsg.so.0):
  No such file or directory
  pkg-static:
  lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple-client.so.0):
  No such file or directory
  pkg-static:
  lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple.so.0):
  No such file or directory
  *** Error code 74
 
  Stop.
 
  Wherethis gets really weird is that on another system it installed
  correctly. I wanted to look at the stage directory content, so 
  deinstalled
  and reinstalled. Now it won't install there, either. Same error. Why 
  did it
  only install once?
 
  Exact same problem for me. I got two PC, one laptop, another desktop, 
  both
  with FreeBSD 10-stable, both using portupgrade. 
 
  On one everything work (the desktop), on the laptop I have exact same
  message. 
 
  The last command in the port Makefile is this:
  @${FIND} ${WRKSRC} -type f | ${XARGS} ${TOUCH}
 
  Try removing that line.
 
  Change  nothing. 
 
  Still get the same error
 
===  Checking if net-im/libpurple already installed
===   Registering installation for libpurple-2.10.9_2
pkg-static: 
  lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libjabber.so.0):
   No such file or directory
pkg-static: 
  lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/liboscar.so.0):
   No such file or directory
pkg-static: 
  lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libymsg.so.0):
   No such file or directory
pkg-static: 
  lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple-client.so.0):
   No such file or directory
pkg-static: 
  lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple.so.0):
   No such file or directory
*** Error code 74
 
  with
 
[root@io libpurple]# tail Makefile 
${WRKSRC}/libpurple/purple-send-async
@${REINPLACE_CMD} -e 's|/python|/env python|' \
${WRKSRC}/libpurple/purple-remote \
${WRKSRC}/libpurple/purple-url-handler
.if defined(PIDGIN_SLAVE)
@${FIND} ${BUILD_WRKSRC} -name Makefile.in | ${XARGS} 
  ${REINPLACE_CMD} -e \
's|$$(top_builddir)/libpurple/libpurple.la|-lpurple|'
.endif

.include bsd.port.post.mk
[root@io libpurple]# 
  
  Silly question perhaps, but did you run make clean before rebuilding?
 
 I turned MYSPACE support of and reproduced the problem. Then I tried
 with MYSPACE and it works. Afterwards I tried again without MYSPACE
 and it still works.
 
 Then I turned MYSPACE back on and got the error again.
 
 Looks like a timing issue to me. I'd say turn MAKE_JOBS off.
 

Is this with or without that ${FIND} command?
___
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: Staging issue with staging of net-im/libpurple (libtool?)

2014-05-20 Thread Albert Shih
 Le 20/05/2014 à 14:55:59+0200, Tijl Coosemans a écrit
 On Tue, 20 May 2014 14:14:49 +0200 Albert Shih wrote:
   Le 20/05/2014 à 14:09:45+0200, Tijl Coosemans a écrit
  with
  
[root@io libpurple]# tail Makefile 
${WRKSRC}/libpurple/purple-send-async
@${REINPLACE_CMD} -e 's|/python|/env python|' \
${WRKSRC}/libpurple/purple-remote \
${WRKSRC}/libpurple/purple-url-handler
.if defined(PIDGIN_SLAVE)
@${FIND} ${BUILD_WRKSRC} -name Makefile.in | ${XARGS} 
  ${REINPLACE_CMD} -e \
's|$$(top_builddir)/libpurple/libpurple.la|-lpurple|'
.endif

.include bsd.port.post.mk
[root@io libpurple]# 
 
 Silly question perhaps, but did you run make clean before rebuilding?

Why silly ? ;-)

You rightafter a make clean  everything works.

I was able to upgrade everything.


Thanks.

Regards.

JAS
-- 
Albert SHIH
DIO bâtiment 15
Observatoire de Paris
5 Place Jules Janssen
92195 Meudon Cedex
France
Téléphone : +33 1 45 07 76 26/+33 6 86 69 95 71
xmpp: j...@obspm.fr
Heure local/Local time:
mar 20 mai 2014 16:38:16 CEST
___
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: Staging issue with staging of net-im/libpurple (libtool?)

2014-05-20 Thread Kevin Oberman
On Tue, May 20, 2014 at 7:39 AM, Albert Shih albert.s...@obspm.fr wrote:

  Le 20/05/2014 à 14:55:59+0200, Tijl Coosemans a écrit
  On Tue, 20 May 2014 14:14:49 +0200 Albert Shih wrote:
Le 20/05/2014 à 14:09:45+0200, Tijl Coosemans a écrit
   with
  
 [root@io libpurple]# tail Makefile
 ${WRKSRC}/libpurple/purple-send-async
 @${REINPLACE_CMD} -e 's|/python|/env python|' \
 ${WRKSRC}/libpurple/purple-remote \
 ${WRKSRC}/libpurple/purple-url-handler
 .if defined(PIDGIN_SLAVE)
 @${FIND} ${BUILD_WRKSRC} -name Makefile.in | ${XARGS}
 ${REINPLACE_CMD} -e \
 's|$$(top_builddir)/libpurple/libpurple.la
 |-lpurple|'
 .endif
  
 .include bsd.port.post.mk
 [root@io libpurple]#
 
  Silly question perhaps, but did you run make clean before rebuilding?

 Why silly ? ;-)

 You rightafter a make clean  everything works.

 I was able to upgrade everything.


 Thanks.

 Regards.

 JAS
 --
 Albert SHIH
 DIO bâtiment 15
 Observatoire de Paris
 5 Place Jules Janssen
 92195 Meudon Cedex
 France
 Téléphone : +33 1 45 07 76 26/+33 6 86 69 95 71
 xmpp: j...@obspm.fr
 Heure local/Local time:
 mar 20 mai 2014 16:38:16 CEST


Removed the FIND and re-built. After the build I looked in
stage/usr/local/lib and the .so.0 files are still present! I then installed
with no errors. I'll admit that I don't understand what is happening or why
the touch of the files would break things, but it seems to be fixed, now.

Now to rebuild pidgin.

Thanks, Tijl. (Some day I'd like to know how Tijl is pronounced.)
-- 
R. Kevin Oberman, Network Engineer, Retired
E-mail: rkober...@gmail.com
___
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: Staging issue with staging of net-im/libpurple (libtool?)

2014-05-20 Thread Tijl Coosemans
On Tue, 20 May 2014 08:52:46 -0700 Kevin Oberman wrote:
 Removed the FIND and re-built. After the build I looked in
 stage/usr/local/lib and the .so.0 files are still present! I then installed
 with no errors. I'll admit that I don't understand what is happening or why
 the touch of the files would break things, but it seems to be fixed, now.

The touch didn't always give all files the same timestamp so sometimes
make thought the configure script was out of date and regenerated it
erasing any patches that had been applied to it.

 Thanks, Tijl. (Some day I'd like to know how Tijl is pronounced.)

It's difficult to explain in English.  My name is actually Tijl (3 letters)
with ij being some sort of vowel.  There's a fairly long article about it
on wikipedia: https://en.wikipedia.org/wiki/IJ_%28digraph%29
It sounds like this: http://www.dutchgrammar.com/sound/y.mp3
Then just add t and l :)
___
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: Staging issue with staging of net-im/libpurple (libtool?)

2014-05-19 Thread Tijl Coosemans
On Sun, 18 May 2014 21:11:16 -0700 Kevin Oberman wrote:
 I have a problem installing net-im/libpurple. I get the following error:
 ===   Registering installation for libpurple-2.10.9_2
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libjabber.so.0):
 No such file or directory
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/liboscar.so.0):
 No such file or directory
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libymsg.so.0):
 No such file or directory
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple-client.so.0):
 No such file or directory
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple.so.0):
 No such file or directory
 *** Error code 74
 
 Stop.
 
 Wherethis gets really weird is that on another system it installed
 correctly. I wanted to look at the stage directory content, so deinstalled
 and reinstalled. Now it won't install there, either. Same error. Why did it
 only install once?

What's the output of make check-plist.
___
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: Staging issue with staging of net-im/libpurple (libtool?)

2014-05-19 Thread Mark Felder

On 2014-05-18 23:11, Kevin Oberman wrote:
I have a problem installing net-im/libpurple. I get the following 
error:

===   Registering installation for libpurple-2.10.9_2
pkg-static:
lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libjabber.so.0):
No such file or directory
pkg-static:
lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/liboscar.so.0):
No such file or directory
pkg-static:
lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libymsg.so.0):
No such file or directory
pkg-static:
lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple-client.so.0):
No such file or directory
pkg-static:
lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple.so.0):
No such file or directory
*** Error code 74

Stop.

Wherethis gets really weird is that on another system it installed
correctly. I wanted to look at the stage directory content, so 
deinstalled
and reinstalled. Now it won't install there, either. Same error. Why 
did it

only install once?



Are there differences in the ports tree revisions on these two systems? 
I believe something changed with libtool and the ports tree recently. I 
will research and try to get back to you...

___
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: Staging issue with staging of net-im/libpurple (libtool?)

2014-05-19 Thread Tijl Coosemans
On Sun, 18 May 2014 21:11:16 -0700 Kevin Oberman wrote:
 I have a problem installing net-im/libpurple. I get the following error:
 ===   Registering installation for libpurple-2.10.9_2
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libjabber.so.0):
 No such file or directory
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/liboscar.so.0):
 No such file or directory
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libymsg.so.0):
 No such file or directory
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple-client.so.0):
 No such file or directory
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple.so.0):
 No such file or directory
 *** Error code 74
 
 Stop.
 
 Wherethis gets really weird is that on another system it installed
 correctly. I wanted to look at the stage directory content, so deinstalled
 and reinstalled. Now it won't install there, either. Same error. Why did it
 only install once?

Can you send the full build log with the attached patch applied?  The
patch enables more verbose output.Index: net-im/libpurple/Makefile
===
--- net-im/libpurple/Makefile	(revision 354496)
+++ net-im/libpurple/Makefile	(working copy)
@@ -19,7 +19,7 @@ CONFIGURE_ARGS?=--disable-gtkui \
 		--disable-consoleui \
 		--with-dynamic-prpls=${PRPL_MODULES:S/,$//} \
 		--enable-static \
-		--disable-nm
+		--disable-nm --disable-silent-rules
 CONFIGURE_ENV=	LIBS=-L${LOCALBASE}/lib ${PTHREAD_LIBS} \
 		PTHREAD_LIB=${PTHREAD_LIBS}
 CFLAGS+=	-D_XOPEN_SOURCE_EXTENDED
@@ -333,6 +333,7 @@ post-patch:
 	@${REINPLACE_CMD} -e 's|/python|/env python|' \
 			${WRKSRC}/libpurple/purple-remote \
 			${WRKSRC}/libpurple/purple-url-handler
+	@${REINPLACE_CMD} '/LIBTOOL/s/--silent//' ${WRKSRC}/configure
 .if defined(PIDGIN_SLAVE)
 	@${FIND} ${BUILD_WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -e \
 		's|$$(top_builddir)/libpurple/libpurple.la|-lpurple|'
___
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: Staging issue with staging of net-im/libpurple (libtool?)

2014-05-19 Thread Kevin Oberman
On Mon, May 19, 2014 at 2:31 AM, Tijl Coosemans t...@freebsd.org wrote:

 On Sun, 18 May 2014 21:11:16 -0700 Kevin Oberman wrote:
  I have a problem installing net-im/libpurple. I get the following error:
  ===   Registering installation for libpurple-2.10.9_2
  pkg-static:
 
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libjabber.so.0):
  No such file or directory
  pkg-static:
 
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/liboscar.so.0):
  No such file or directory
  pkg-static:
 
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libymsg.so.0):
  No such file or directory
  pkg-static:
 
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple-client.so.0):
  No such file or directory
  pkg-static:
 
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple.so.0):
  No such file or directory
  *** Error code 74
 
  Stop.
 
  Wherethis gets really weird is that on another system it installed
  correctly. I wanted to look at the stage directory content, so
 deinstalled
  and reinstalled. Now it won't install there, either. Same error. Why did
 it
  only install once?

 What's the output of make check-plist.


About what you would expect from the error message:

Warning: Possibly owned by dependency: @dirrmtry share/locale/be@latin
/LC_MESSAGES
Warning: Possibly owned by dependency: @dirrmtry share/locale/be@latin
Warning: Possibly owned by dependency: @dirrmtry
share/locale/bn_IN/LC_MESSAGES
Warning: Possibly owned by dependency: @dirrmtry share/locale/bn_IN
Warning: Possibly owned by dependency: @dirrmtry share/locale/ca@valencia
/LC_MESSAGES
Warning: Possibly owned by dependency: @dirrmtry share/locale/ca@valencia
Warning: Possibly owned by dependency: @dirrmtry share/locale/dz/LC_MESSAGES
Warning: Possibly owned by dependency: @dirrmtry share/locale/dz
Warning: Possibly owned by dependency: @dirrmtry share/locale/hy/LC_MESSAGES
Warning: Possibly owned by dependency: @dirrmtry share/locale/hy
Warning: Possibly owned by dependency: @dirrmtry share/locale/km/LC_MESSAGES
Warning: Possibly owned by dependency: @dirrmtry share/locale/km
Warning: Possibly owned by dependency: @dirrmtry share/locale/ku/LC_MESSAGES
Warning: Possibly owned by dependency: @dirrmtry share/locale/ku
Warning: Possibly owned by dependency: @dirrmtry
share/locale/mai/LC_MESSAGES
Warning: Possibly owned by dependency: @dirrmtry share/locale/mai
Warning: Possibly owned by dependency: @dirrmtry share/locale/mr/LC_MESSAGES
Warning: Possibly owned by dependency: @dirrmtry share/locale/mr
Warning: Possibly owned by dependency: @dirrmtry share/locale/oc/LC_MESSAGES
Warning: Possibly owned by dependency: @dirrmtry share/locale/oc
Warning: Possibly owned by dependency: @dirrmtry share/locale/ps/LC_MESSAGES
Warning: Possibly owned by dependency: @dirrmtry share/locale/ps
Warning: Possibly owned by dependency: @dirrmtry share/locale/si/LC_MESSAGES
Warning: Possibly owned by dependency: @dirrmtry share/locale/si
Warning: Possibly owned by dependency: @dirrmtry share/locale/sr@latin
/LC_MESSAGES
Warning: Possibly owned by dependency: @dirrmtry share/locale/sr@latin
Warning: Possibly owned by dependency: @dirrmtry share/locale/te/LC_MESSAGES
Warning: Possibly owned by dependency: @dirrmtry share/locale/te
Warning: Possibly owned by dependency: @dirrmtry share/locale/ur/LC_MESSAGES
Warning: Possibly owned by dependency: @dirrmtry share/locale/ur
Warning: Possibly owned by dependency: @dirrmtry share/locale/xh/LC_MESSAGES
Warning: Possibly owned by dependency: @dirrmtry share/locale/xh
Warning: Possibly owned by dependency: @dirrmtry
share/locale/zh_HK/LC_MESSAGES
Warning: Possibly owned by dependency: @dirrmtry share/locale/zh_HK
=== Checking for items in pkg-plist which are not in STAGEDIR
Error: Missing: lib/libpurple-client.so.0
Error: Missing: lib/libpurple.so.0
Error: Missing: lib/purple-2/libjabber.so.0
Error: Missing: lib/purple-2/liboscar.so.0
Error: Missing: lib/purple-2/libymsg.so.0
=== Error: Plist issues found.
*** Error code 1

Stop.
-- 
R. Kevin Oberman, Network Engineer, Retired
E-mail: rkober...@gmail.com
___
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: Staging issue with staging of net-im/libpurple (libtool?)

2014-05-19 Thread Kevin Oberman
On Mon, May 19, 2014 at 4:27 AM, Mark Felder f...@freebsd.org wrote:

 On 2014-05-18 23:11, Kevin Oberman wrote:

 I have a problem installing net-im/libpurple. I get the following error:
 ===   Registering installation for libpurple-2.10.9_2
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/
 local/lib/purple-2/libjabber.so.0):
 No such file or directory
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/
 local/lib/purple-2/liboscar.so.0):
 No such file or directory
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/
 local/lib/purple-2/libymsg.so.0):
 No such file or directory
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/
 local/lib/libpurple-client.so.0):
 No such file or directory
 pkg-static:
 lstat(/usr/ports/net-im/libpurple/work/stage/usr/
 local/lib/libpurple.so.0):
 No such file or directory
 *** Error code 74

 Stop.

 Wherethis gets really weird is that on another system it installed
 correctly. I wanted to look at the stage directory content, so deinstalled
 and reinstalled. Now it won't install there, either. Same error. Why did
 it
 only install once?



 Are there differences in the ports tree revisions on these two systems? I
 believe something changed with libtool and the ports tree recently. I will
 research and try to get back to you...


Yep! That's why the libtool? in the subject. I know that libtool does the
three-part versioning of shareables and I suspect that this is related.

Thanks!
-- 
R. Kevin Oberman, Network Engineer, Retired
E-mail: rkober...@gmail.com
___
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


Staging issue with staging of net-im/libpurple (libtool?)

2014-05-18 Thread Kevin Oberman
I have a problem installing net-im/libpurple. I get the following error:
===   Registering installation for libpurple-2.10.9_2
pkg-static:
lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libjabber.so.0):
No such file or directory
pkg-static:
lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/liboscar.so.0):
No such file or directory
pkg-static:
lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/purple-2/libymsg.so.0):
No such file or directory
pkg-static:
lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple-client.so.0):
No such file or directory
pkg-static:
lstat(/usr/ports/net-im/libpurple/work/stage/usr/local/lib/libpurple.so.0):
No such file or directory
*** Error code 74

Stop.

Wherethis gets really weird is that on another system it installed
correctly. I wanted to look at the stage directory content, so deinstalled
and reinstalled. Now it won't install there, either. Same error. Why did it
only install once?
-- 
R. Kevin Oberman, Network Engineer, Retired
E-mail: rkober...@gmail.com
___
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