Fixup pkg-plist: "@dirrm share/applications" is missing from pkg-plist. Generated with FreeBSD Port Tools 0.63
On Mon, Jan 31, 2005 at 04:14:06PM +0200, Valentin Zahariev wrote: > --- xca-0.5.1.patch begins here --- > diff -ruN --exclude=CVS /usr/ports/security/xca/pkg-plist /usr/home/curly/ports/xca/pkg-plist > --- /usr/ports/security/xca/pkg-plist Thu Jan 27 13:33:10 2005 > +++ /usr/home/curly/ports/xca/pkg-plist Mon Jan 31 16:08:44 2005 > @@ -37,3 +37,4 @@ > share/xca/xca.html > @dirrm share/xca > @dirrm share/pixmaps > +@dirrm share/applications > --- xca-0.5.1.patch ends here --- How about @unexec rmdir %D/share/applications 2>/dev/null || true instead? (There are other ports that write to share/applications) \Anton. -- The moronity of the universe is a monotonically increasing function. -- Jarkko Hietaniemi
On Mon, Jan 31, 2005 at 03:30:30PM +0100, Anton Berezin wrote: > > How about > > @unexec rmdir %D/share/applications 2>/dev/null || true > > instead? (There are other ports that write to share/applications) > > \Anton. > -- > The moronity of the universe is a monotonically increasing function. -- > Jarkko Hietaniemi > Sure :) And 10x :) Here is real patch: --- xca-0.5.1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/security/xca/pkg-plist /usr/home/curly/ports/xca/pkg-plist --- /usr/ports/security/xca/pkg-plist Thu Jan 27 13:33:10 2005 +++ /usr/home/curly/ports/xca/pkg-plist Mon Jan 31 17:30:21 2005 @@ -36,4 +36,5 @@ share/xca/xca-9.html share/xca/xca.html @dirrm share/xca -@dirrm share/pixmaps +@unexec rmdir %D/share/pixmaps || true +@unexec rmdir %D/share/applications 2>/dev/null || true --- xca-0.5.1.patch ends here ---
State Changed From-To: open->closed Committed, thanks!