Re: bsdadminscripts and pkng

2013-11-01 Thread Jakub Lach
Actually, nevermind those. They are supporting pkng just fine. Real bumps when converted to pkgng was: - portmaster cannot use packages for dependencies- huge let down - pkg_cleanup doesn't support pkng - when installing port from portmaster it looks like it's ignoring my ports.conf which is

Re: devel/kdesdk4: compilation dies on FreeBSD 10.0-BETA and FreeBSD 11.0-CURRENT

2013-11-01 Thread Tijl Coosemans
On Thu, 31 Oct 2013 18:27:22 -0700 Cy Schubert wrote: Since a while, I'm unable ti update/recompile/install port devel/kdesdk4 on both FreeBSD 10.0 (starting with the last CURRENT, over ALPHA up to BETA2 now) and on all systems running FreeBSD 11.0-CURRENT. Haven't had a chance to look at

Re: Problems dealing with ports use of pkgconf

2013-11-01 Thread Tijl Coosemans
On Wed, 30 Oct 2013 11:46:30 -0700 Kevin Oberman wrote: I have run into a dilemma in regards to the use of pkgconf in ports. Here is what has bitten me: To allow sftp to get files, multimedia/vlc uses libssh2. libssh2, in turn, uses openssl or the GNU crypto library. If i have installed

Re: Stage and /var ?

2013-11-01 Thread Tijl Coosemans
On Thu, 31 Oct 2013 15:20:25 +0100 Thierry Thomas wrote: Hello, How should we stagify ports writing out of their $PREFIX for good reasons, e.g. a statedir like /var/foo/$PORTNAME. I don't like the idea of $PREFIX/var, and prefer the real /var. Thanks for your suggestions. Something

Re: bsdadminscripts and pkng

2013-11-01 Thread Mathieu Arnold
+--On 31 octobre 2013 23:13:38 -0700 Jakub Lach jakub_l...@mailplus.pl wrote: | - portmaster cannot use packages for dependencies- huge let down Well, if you want to use binary packages, doing pkg upgrade would be easier, I'd say. -- Mathieu Arnold

Re: bsdadminscripts and pkng

2013-11-01 Thread Boris Samorodov
01.11.2013 14:13, Mathieu Arnold пишет: +--On 31 octobre 2013 23:13:38 -0700 Jakub Lach jakub_l...@mailplus.pl wrote: | - portmaster cannot use packages for dependencies- huge let down Well, if you want to use binary packages, doing pkg upgrade would be easier, I'd say. There are some

Re: Ports distfiles mirror - e.g. ftp://ftp4.de.freebsd.org/FreeBSD/distfiles/

2013-11-01 Thread RW
On Thu, 31 Oct 2013 19:00:52 +0100 Matthias Petermann wrote: Is there some automatic mechanism in place which does this mirroring, or is this done manually from a ports committer once he commits a new or updated port? I'm just curious because I can find the distfiles from some of my

Re: bsdadminscripts and pkng

2013-11-01 Thread RW
On Thu, 31 Oct 2013 23:13:38 -0700 (PDT) Jakub Lach wrote: Actually, nevermind those. They are supporting pkng just fine. Real bumps when converted to pkgng was: - portmaster cannot use packages for dependencies- huge let down - pkg_cleanup doesn't support pkng distviper uses pkg_info

Re: bsdadminscripts and pkng

2013-11-01 Thread Anton Afanasyev
Real bumps when converted to pkgng was: - portmaster cannot use packages for dependencies- huge let down This one is a big issue for me as well. I usually compile my own, but let portmaster install build-time dependencies from packages. No pkgng support means it has to recompile everything,

Re: devel/kdesdk4: compilation dies on FreeBSD 10.0-BETA and FreeBSD 11.0-CURRENT

2013-11-01 Thread Cy Schubert
In message 20131101092933.2253b...@kalimero.tijl.coosemans.org, Tijl Cooseman s writes: On Thu, 31 Oct 2013 18:27:22 -0700 Cy Schubert wrote: Since a while, I'm unable ti update/recompile/install port devel/kdesdk4 on both FreeBSD 10.0 (starting with the last CURRENT, over ALPHA up to

Re: Stage and /var ?

2013-11-01 Thread Thierry Thomas
Le ven 1 nov 13 à 10:11:50 +0100, Tijl Coosemans t...@freebsd.org écrivait : Something like this should work: In post-install do: ${MKDIR} /var/foo In pkg-plist add: @unexec rmdir /var/foo 2/dev/null || true @exec mkdir -p /var/foo Thanks for this, it could be useful for some

Re: cinepaint

2013-11-01 Thread Alexander Janus
In my experiment I installed cinepaint and all other soft from packages repository under VirtualBox and FreeBSD 9.2 AMD64 Release. I've got the same results: Segmentation fault. I just recompile glib20 with debugging symbols, and get new backtrace: #0 0x000805b3a5ce in

Re: bsdadminscripts and pkng

2013-11-01 Thread Dominic Fandrey
On 01/11/2013 00:58, Jakub Lach wrote: any plans for updating those? Kind of. I just don't know when. -- 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?

Re: portdowngrade(CVS) deprecated - alternative for portsnap(8) usage

2013-11-01 Thread Torfinn Ingolfsen
On Wed, Mar 6, 2013 at 9:00 PM, Chris Rees utis...@gmail.com wrote: Portdowngrade now simply checks out the port to your current directory; if you run it in ~, you simply cd $portname. I got bitten by this change today. I think portdowngrade should warn users that it will work on the current

Re: portdowngrade(CVS) deprecated - alternative for portsnap(8) usage

2013-11-01 Thread Chris Rees
OK, done :) Chris -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe,

Re: cinepaint

2013-11-01 Thread Fernando Apesteguía
El 01/11/2013 18:53, Alexander Janus avjw...@gmail.com escribió: In my experiment I installed cinepaint and all other soft from packages repository under VirtualBox and FreeBSD 9.2 AMD64 Release. I've got the same results: Segmentation fault. I just recompile glib20 with debugging symbols, and

Re: How to reference /var/foo in pkg-plist?

2013-11-01 Thread Christian Weisgerber
Scot Hetzel swhet...@gmail.com wrote: @exec mkdir -pm 770 /var/spool/bsmtp; chown uucp:uucp /var/spool/bsmtp @dirrmtry /var/spool/bsmtp The correct way to handle this is to have the port create ${STAGEDIR}/var/spool/bsmtp. This could be created in the post-install target or in the