diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2002-09-25 13:55:01 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2002-09-25 13:55:01 +0000 |
commit | be5a7982d7860aca6f88e858523342ef775734f2 (patch) | |
tree | 0fe8b1e43db1f4674ec78035fb56e337d94ea917 /x11-wm | |
parent | Fix values.h build problem (diff) |
Correct the packing list.
Notes
Notes:
svn path=/head/; revision=67126
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/matchbox/Makefile | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/x11-wm/matchbox/Makefile b/x11-wm/matchbox/Makefile index 601b2c1eb5c3..97ce4eb18175 100644 --- a/x11-wm/matchbox/Makefile +++ b/x11-wm/matchbox/Makefile @@ -25,21 +25,24 @@ pre-install: .for ii in minitime minisys minivol monolaunch mbcontrol mbdock ${ECHO_CMD} bin/${ii} >> ${PLIST} .endfor - cd ${WRKSRC}/data/themes && ${FIND} -s . -type f | \ +.for ii in defaults icon.xpm + ${ECHO_CMD} share/matchbox/${ii} >> ${PLIST} +.endfor +.for ii in mbdock themes + cd ${WRKSRC}/data/${ii} && ${FIND} -s . -type f | \ ${CUT} -c3-999 | \ - ${SED} -e 's:^:share/data/matchbox/:' >> ${PLIST} \ + ${SED} -e 's:^:share/matchbox/${ii}/:' >> ${PLIST} \ && ${FIND} -d . -type d | \ ${CUT} -c3-999 | \ - ${SED} -e 's:^:@dirrm share/data/matchbox/:' >> ${PLIST} + ${SED} -e 's:^:@dirrm share/matchbox/${ii}/:' >> ${PLIST} +.endfor .if !defined(NOPORTDOCS) .for ii in ${DOCS} ${ECHO_CMD} share/doc/matchbox/${ii} >> ${PLIST} .endfor ${ECHO_CMD} @dirrm share/doc/matchbox >> ${PLIST} .endif -.for ii in share/matchbox/mbdock share/matchbox - ${ECHO_CMD} @dirrm ${ii} >> ${PLIST} -.endfor + ${ECHO_CMD} @dirrm share/matchbox >> ${PLIST} do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/matchbox ${PREFIX}/bin |