diff options
author | jmmv <jmmv@pkgsrc.org> | 2004-04-12 21:21:19 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2004-04-12 21:21:19 +0000 |
commit | 3351cee8f90c0aec3ac066ac722d992baa4a3c72 (patch) | |
tree | d62f28aef2cd3616cc1d50158128b6a3810afe17 /x11 | |
parent | 5299506e305804e6847bc3688c22e767b3df9a8a (diff) | |
download | pkgsrc-3351cee8f90c0aec3ac066ac722d992baa4a3c72.tar.gz |
During print-PLIST, suppress any files installed under libdata/gtk-2.0, and
the directory itself, as they are automatically handled during post install
by this package.
Diffstat (limited to 'x11')
-rw-r--r-- | x11/gtk2/modules.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/x11/gtk2/modules.mk b/x11/gtk2/modules.mk index d8a3ade1e23..46c1457d012 100644 --- a/x11/gtk2/modules.mk +++ b/x11/gtk2/modules.mk @@ -1,4 +1,4 @@ -# $NetBSD: modules.mk,v 1.6 2004/02/12 15:31:56 minskim Exp $ +# $NetBSD: modules.mk,v 1.7 2004/04/12 21:21:19 jmmv Exp $ # # This Makefile fragment is intended to be included by packages that install # GTK2 modules. It takes care of rebuilding the corresponding databases at @@ -33,6 +33,9 @@ DEINSTALL_EXTRA_TMPL+= ../../x11/gtk2/files/loaders.tmpl USE_PKGINSTALL= YES .endif +PRINT_PLIST_AWK+= /^libdata\/gtk-2.0/ { next; } +PRINT_PLIST_AWK+= /^@dirrm libdata\/gtk-2.0/ { next; } + .if defined(USE_BUILDLINK3) && !empty(USE_BUILDLINK3:M[Yy][Ee][Ss]) .include "../../x11/gtk2/buildlink3.mk" .else |