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 | 3e5f91e24615cd6697ca01336b97c2f2b5efe7d2 (patch) | |
tree | d62f28aef2cd3616cc1d50158128b6a3810afe17 /x11/gtk2 | |
parent | 45deb6209b25b0ad44a91166966b4ce20b788335 (diff) | |
download | pkgsrc-3e5f91e24615cd6697ca01336b97c2f2b5efe7d2.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/gtk2')
-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 |