diff options
author | lioux <lioux@FreeBSD.org> | 2004-11-25 07:52:43 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2004-11-25 07:52:43 +0800 |
commit | b874b932ec6343ebcdfd32681f2218bf970c9a7a (patch) | |
tree | a1b50134dfccb1d0b7238317f359186a959884f1 /x11-themes | |
parent | a2eab27ace694f7fc2213555ced776dac48d6661 (diff) | |
download | freebsd-ports-gnome-b874b932ec6343ebcdfd32681f2218bf970c9a7a.tar.gz freebsd-ports-gnome-b874b932ec6343ebcdfd32681f2218bf970c9a7a.tar.zst freebsd-ports-gnome-b874b932ec6343ebcdfd32681f2218bf970c9a7a.zip |
Add PLIST_DIR_PATTERN_EXTRA support so that it is possible to filter
the automatic created TMPPLIST
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/kde-icons-noia/Makefile.icons | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/x11-themes/kde-icons-noia/Makefile.icons b/x11-themes/kde-icons-noia/Makefile.icons index fc5f1df57ba4..4f4003c3ed25 100644 --- a/x11-themes/kde-icons-noia/Makefile.icons +++ b/x11-themes/kde-icons-noia/Makefile.icons @@ -28,6 +28,9 @@ NO_PACKAGE?= ${RESTRICTED} INDEX_FILES= index.desktop index.theme +# do not create some dirs +PLIST_DIR_PATTERN_EXTRA?= . + # do not install some files PLIST_FILE_PATTERN= -i -v "(Thumbs\.db|(\.(bak|txt)|/(copying|readme))\$$)" PLIST_FILE_PATTERN_EXTRA?= . @@ -47,6 +50,7 @@ post-patch: annotate-install: # annotate dirs @cd ${WRKSRC} ; ${FIND} . -type d ! -empty \ + | ${GREP} -E ${PLIST_DIR_PATTERN_EXTRA} \ | ${SORT} -r \ > ${WRKDIR}/dirs.list # annotate files |