Re: patch to bsd.ports.mk to support out-of-tree patches.

2015-03-24 Thread Andrzej Tobola
On Tue, Mar 24, 2015 at 01:33:15PM +0800, Julian Elischer wrote: > Hi, I've a need to keep soe changes outside of the ports tree, to > allow me to tailor > our installs. I could use the "EXTRA_PATCHES" setting, but I'd have to > outline the > patches every time and keep track of them one by one.

Re: patch to bsd.ports.mk to support out-of-tree patches.

2015-03-24 Thread Julian Elischer
On 3/25/15 9:50 AM, Bryan Drewery wrote: On 3/24/2015 5:32 AM, Marcus von Appen wrote: Julian Elischer : [...] esac | ${PATCH} ${PATCH_DIST_ARGS} `patch_dist_strip $$i` ; \ done ) .endif +.if defined(EXTRA_PATCH_TREE) [...] +.endif .if defined(EXTRA_PATCHES) @set -e

Re: patch to bsd.ports.mk to support out-of-tree patches.

2015-03-24 Thread Bryan Drewery
On 3/24/2015 5:32 AM, Marcus von Appen wrote: > Julian Elischer : > > [...] >> esac | ${PATCH} ${PATCH_DIST_ARGS} `patch_dist_strip $$i` ; \ >> done ) >> .endif >> +.if defined(EXTRA_PATCH_TREE) > [...] >> +.endif >> .if defined(EXTRA_PATCHES) >> @set -e ; \ >> for i in $

Re: patch to bsd.ports.mk to support out-of-tree patches.

2015-03-24 Thread G. Paul Ziemba
m...@freebsd.org (Marcus von Appen) writes: >Julian Elischer : >[...] >> esac | ${PATCH} ${PATCH_DIST_ARGS} `patch_dist_strip $$i` ; \ >> done ) >> .endif >> +.if defined(EXTRA_PATCH_TREE) >[...] >> +.endif >> .if defined(EXTRA_PATCHES) >> @set -e ; \ >> for i in ${EXTRA

Re: patch to bsd.ports.mk to support out-of-tree patches.

2015-03-24 Thread Chris H
On Tue, 24 Mar 2015 16:06:23 +0800 Julian Elischer wrote > On 3/24/15 1:45 PM, Chris H wrote: > > On Tue, 24 Mar 2015 13:33:15 +0800 Julian Elischer > > wrote > > >> Hi, I've a need to keep soe changes outside of the ports tree, to > >> allow me to tailor > >> our installs. I could use the "EXTR

Re: patch to bsd.ports.mk to support out-of-tree patches.

2015-03-24 Thread Marcus von Appen
Julian Elischer : [...] esac | ${PATCH} ${PATCH_DIST_ARGS} `patch_dist_strip $$i` ; \ done ) .endif +.if defined(EXTRA_PATCH_TREE) [...] +.endif .if defined(EXTRA_PATCHES) @set -e ; \ for i in ${EXTRA_PATCHES}; do \ Nice. I'd however change the patch

Re: patch to bsd.ports.mk to support out-of-tree patches.

2015-03-24 Thread Julian Elischer
On 3/24/15 1:45 PM, Chris H wrote: On Tue, 24 Mar 2015 13:33:15 +0800 Julian Elischer wrote Hi, I've a need to keep soe changes outside of the ports tree, to allow me to tailor our installs. I could use the "EXTRA_PATCHES" setting, but I'd have to outline the patches every time and keep track

Re: patch to bsd.ports.mk to support out-of-tree patches.

2015-03-23 Thread Chris H
On Tue, 24 Mar 2015 13:33:15 +0800 Julian Elischer wrote > Hi, I've a need to keep soe changes outside of the ports tree, to > allow me to tailor > our installs. I could use the "EXTRA_PATCHES" setting, but I'd have to > outline the > patches every time and keep track of them one by one. > > I

patch to bsd.ports.mk to support out-of-tree patches.

2015-03-23 Thread Julian Elischer
Hi, I've a need to keep soe changes outside of the ports tree, to allow me to tailor our installs. I could use the "EXTRA_PATCHES" setting, but I'd have to outline the patches every time and keep track of them one by one. Instead, I have adde dhte following to bsd.ports.mk: diff -u bsd.port.