Re: Is staging a port really this simple?

2014-05-27 Thread Matthew Seaman
On 27/05/2014 04:37, Perry Hutchison wrote: post-install: - @[ -f ${PREFIX}/etc/diskcheckd.conf ] \ - || ${CP} -p ${PREFIX}/etc/diskcheckd.conf.sample \ - ${PREFIX}/etc/diskcheckd.conf + @${CP} -p ${STAGEDIR}${PREFIX}/etc/diskcheckd.conf.sample \ +

Re: Is staging a port really this simple?

2014-05-27 Thread Baptiste Daroussin
On Mon, May 26, 2014 at 08:37:13PM -0700, Perry Hutchison wrote: John Marino freebsd.cont...@marino.st wrote: You didn't miss much -- except adding the man page to the pkg-plist and removing the MAN* definitions from the makefile. ... On 5/25/2014 09:09, Zsolt Udvari wrote: Your

Re: Is staging a port really this simple?

2014-05-26 Thread Perry Hutchison
John Marino freebsd.cont...@marino.st wrote: You didn't miss much -- except adding the man page to the pkg-plist and removing the MAN* definitions from the makefile. ... On 5/25/2014 09:09, Zsolt Udvari wrote: Your condition is unneeded. You don't need check the existence of

Re: Is staging a port really this simple?

2014-05-25 Thread John Marino
On 5/25/2014 07:04, Perry Hutchison wrote: Some months ago, Baptiste Daroussin b...@freebsd.org wrote: ... if you need any help staging your ports I can provide reviews. I have a couple of ports that need staging support added, and I've finally managed to find time to look into it. Having

Re: Is staging a port really this simple?

2014-05-25 Thread Zsolt Udvari
2014-05-25 7:04 GMT+02:00 Perry Hutchison per...@pluto.rain.com: post-install: - @[ -f ${PREFIX}/etc/diskcheckd.conf ] \ - || ${CP} -p ${PREFIX}/etc/diskcheckd.conf.sample \ - ${PREFIX}/etc/diskcheckd.conf + @[ -f

Re: Is staging a port really this simple?

2014-05-25 Thread John Marino
On 5/25/2014 09:09, Zsolt Udvari wrote: 2014-05-25 7:04 GMT+02:00 Perry Hutchison per...@pluto.rain.com: post-install: - @[ -f ${PREFIX}/etc/diskcheckd.conf ] \ - || ${CP} -p ${PREFIX}/etc/diskcheckd.conf.sample \ - ${PREFIX}/etc/diskcheckd.conf +

Re: Is staging a port really this simple?

2014-05-25 Thread Zsolt Udvari
2014-05-25 9:12 GMT+02:00 John Marino freebsd.cont...@marino.st: no, the @sample keyword in pkg-plist does that (replacing other lines there). pkg doesn't do this by itself, it needs to be told. Yes, this is more accurate. ___

Re: Is staging a port really this simple?

2014-05-25 Thread Fbsd8
Perry Hutchison wrote: Some months ago, Baptiste Daroussin b...@freebsd.org wrote: ... if you need any help staging your ports I can provide reviews. I have a couple of ports that need staging support added, and I've finally managed to find time to look into it. Having read such

Re: Is staging a port really this simple?

2014-05-25 Thread Michael Gmelin
On Sun, 25 May 2014 04:14:42 -0400 Fbsd8 fb...@a1poweruser.com wrote: Perry Hutchison wrote: Some months ago, Baptiste Daroussin b...@freebsd.org wrote: ... if you need any help staging your ports I can provide reviews. I have a couple of ports that need staging support added, and

Is staging a port really this simple?

2014-05-24 Thread Perry Hutchison
Some months ago, Baptiste Daroussin b...@freebsd.org wrote: ... if you need any help staging your ports I can provide reviews. I have a couple of ports that need staging support added, and I've finally managed to find time to look into it. Having read such documentation as I could easily find