Re: [gentoo-user] Re: [SOLVED] Automatically copy a file to a different location after package install/update

2016-05-10 Thread Neil Bothwick
On Tue, 10 May 2016 15:49:24 + (UTC), James wrote: > > post_src_unpack() { > > cd "${S}" > > epatch_user > > } > > > Didn't I read somewhere that 'epatch' is changing in EAPI 6 or 7? epatch_user is automatic with EAPI6 > That may affect your solution? No, because the ebuild in

[gentoo-user] Re: [SOLVED] Automatically copy a file to a different location after package install/update

2016-05-10 Thread James
Neil Bothwick digimed.co.uk> writes: > You can define functions as for ebuilds to have them executed in here. > For example, for one package that I wanted to apply a patch > from /etc/portage/patches, but didn't call epatch_user from its ebuild, > I put this in /etc/portage/env/cat/pkg I'm